From 2550f16204eaff0ff66d695a812f8a8d0b2bc570 Mon Sep 17 00:00:00 2001 From: Anirudh Reddy B Date: Wed, 5 Aug 2026 14:24:22 +0000 Subject: [PATCH 1/8] Ignore local run archives and scratch dirs --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index d2b4e02c..61a1dfb5 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,7 @@ *.ipr *.iws .Rproj.user + +# local working artifacts (not part of the repo) +/archived-runs/ +/_to_delete/ From c468eec0f0eca83ec793d299f2c81e8abfb227f5 Mon Sep 17 00:00:00 2001 From: Anirudh Reddy B Date: Wed, 5 Aug 2026 14:24:29 +0000 Subject: [PATCH 2/8] Add script to reduce+reorder population by numeric id Fixes the issue Dhirendra spotted: person ids in the demand file were sorted alphabetically as strings (0,1,10,100,1000,...) rather than numerically. Also lets us cut population size for faster dev-loop runs. --- ees/scripts/reduce_population.py | 98 ++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 ees/scripts/reduce_population.py diff --git a/ees/scripts/reduce_population.py b/ees/scripts/reduce_population.py new file mode 100644 index 00000000..76719c36 --- /dev/null +++ b/ees/scripts/reduce_population.py @@ -0,0 +1,98 @@ +#!/usr/bin/env python3 +""" +Reduce and re-order a MATSim population XML. + +Motivation (Aug 2026, S7 debugging with Dhirendra): + - The original demand file has person ids sorted alphabetically as + strings ("0", "1", "10", "100", "1000", ...) rather than numerically. + - For faster IT-test / dev-loop runs we also want a smaller population. + +This script keeps only persons with numeric id < --max-agents, and writes +them back out in ascending numeric id order (which also happens to fix the +ordering issue above, since ids in this dataset are a contiguous 0..N-1 +range). + +Usage: + python3 reduce_population.py \ + --input demand-seasonal-40k-50it-epsg32754-7886c91.xml.gz \ + --output demand-seasonal-20k-50it-epsg32754-7886c91.xml.gz \ + --max-agents 20000 +""" +import argparse +import gzip +import re +import sys + +PERSON_START_RE = re.compile(r'" in line: + total_persons += 1 + if current_id < keep_max: + kept[current_id] = current_lines + current_lines = [] + current_id = None + state = "between" + continue + + if state == "between": + m = PERSON_START_RE.search(line) + if m: + state = "body" + current_id = int(m.group(1)) + current_lines = [line] + elif "" in line: + footer_line = line + state = "footer" + continue + + print(f"Total persons seen: {total_persons}", file=sys.stderr) + print(f"Kept (id < {keep_max}): {len(kept)}", file=sys.stderr) + + if footer_line is None: + footer_line = "\n" + + with gzip.open(dst, "wt", encoding="utf-8") as out: + out.writelines(header_lines) + for pid in sorted(kept.keys()): + out.writelines(kept[pid]) + out.write("\n") + out.write(footer_line) + + print(f"Wrote {dst}", file=sys.stderr) + + +def main(): + parser = argparse.ArgumentParser(description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter) + parser.add_argument("--input", required=True, help="source population .xml.gz") + parser.add_argument("--output", required=True, help="destination population .xml.gz") + parser.add_argument("--max-agents", type=int, default=20000, help="keep persons with numeric id below this value (default: 20000)") + args = parser.parse_args() + reduce_population(args.input, args.output, args.max_agents) + + +if __name__ == "__main__": + main() From 6e0b933f1af8237ff388d4570efb12acc73ea127 Mon Sep 17 00:00:00 2001 From: Anirudh Reddy B Date: Wed, 5 Aug 2026 14:26:09 +0000 Subject: [PATCH 3/8] Point midweek-in-jan scenario at reduced 20k population file Generated with scripts/reduce_population.py from the original 40k demand file. Not committing the .gz itself (matches the existing .gitignore convention for demand-seasonal*.xml.gz in this folder) - regenerate with: python3 scripts/reduce_population.py \ --input demand-seasonal-40k-50it-epsg32754-7886c91.xml.gz \ --output demand-seasonal-20k-50it-epsg32754-7886c91.xml.gz \ --max-agents 20000 --- ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml b/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml index c9960c19..53d3808f 100644 --- a/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml +++ b/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml @@ -17,7 +17,7 @@ - + From 773b5fb31965a55f2496a3b38c6f4324155560ae Mon Sep 17 00:00:00 2001 From: Anirudh Reddy B Date: Wed, 5 Aug 2026 14:26:16 +0000 Subject: [PATCH 4/8] Cut qsim endTime to 16:00 to shorten simulated day Per Dhirendra: end the sim at 4pm instead of 23:59:59 to get closer to a 1-minute runtime. Fire ignites at 11:15 and the evacuate order goes out at 12:15, so this still covers the full event with headroom. --- ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml b/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml index 53d3808f..c0b69912 100644 --- a/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml +++ b/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml @@ -35,7 +35,7 @@ - + From 58c97ebbb4741f0f2a5ce71e6f405f074dc7928a Mon Sep 17 00:00:00 2001 From: Anirudh Reddy B Date: Wed, 5 Aug 2026 14:26:27 +0000 Subject: [PATCH 5/8] Fix IT-test forked JVM heap: failsafe wasn't inheriting -Xmx at all The maven-failsafe-plugin (which actually runs the *IT.java integration tests) had no argLine configured, so it forked with Java's default heap instead of anything close to the surefire config below it. That's what caused the EOFException/NullPointerException crash pattern on SCSMidweekInJanScenario7IT - the forked JVM was getting killed, and surefire/failsafe surfaced that as a misleading NPE at the Run.main() call site rather than a real error. Set -Xmx10g -Xms3g on both plugins: capped below what would risk the OS killing the process on a 16GB machine, and starting small (3g) so it only grows toward the cap if actually needed rather than eagerly reserving the max up front. --- ees/pom.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ees/pom.xml b/ees/pom.xml index 79ee2743..f19a31e1 100644 --- a/ees/pom.xml +++ b/ees/pom.xml @@ -304,6 +304,8 @@ false ${skipITs} + + -Xmx10g -Xms3g -Djava.awt.headless=true -Dmatsim.preferLocalDtds=true @@ -327,7 +329,7 @@ 1 false - -Xmx8g -Xms8g -Djava.awt.headless=true -Dmatsim.preferLocalDtds=true + -Xmx10g -Xms3g -Djava.awt.headless=true -Dmatsim.preferLocalDtds=true From 4c3be9c9c9cf8451080af5c2bfd7f114591f1a36 Mon Sep 17 00:00:00 2001 From: Anirudh Reddy B Date: Wed, 5 Aug 2026 14:26:34 +0000 Subject: [PATCH 6/8] Add script to convert MATSim network XML to GeoJSON For loading the road network directly into QGIS alongside the zones and fire GeoJSON files already in scenarios/surf-coast-shire/. --- ees/scripts/network_to_geojson.py | 90 +++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 ees/scripts/network_to_geojson.py diff --git a/ees/scripts/network_to_geojson.py b/ees/scripts/network_to_geojson.py new file mode 100644 index 00000000..269c23db --- /dev/null +++ b/ees/scripts/network_to_geojson.py @@ -0,0 +1,90 @@ +#!/usr/bin/env python3 +""" +Convert a MATSim network XML (nodes + links) into GeoJSON, for loading +directly into QGIS or any other GIS tool. + +Usage: + python3 network_to_geojson.py \ + --input surf-coast-shire-network-2021-epsg32754.xml.gz \ + --output-links network-links.geojson \ + --output-nodes network-nodes.geojson \ + --epsg 32754 +""" +import argparse +import gzip +import json +import re +import sys + +NODE_RE = re.compile(r' Date: Wed, 5 Aug 2026 14:26:41 +0000 Subject: [PATCH 7/8] Add generated network GeoJSON for the surf-coast-shire road graph Output of scripts/network_to_geojson.py against surf-coast-shire-network-2021-epsg32754.xml.gz - 5187 nodes, 10145 links. For visual QGIS work, not used by the simulation itself. --- ees/scenarios/surf-coast-shire/network-links.geojson | 1 + ees/scenarios/surf-coast-shire/network-nodes.geojson | 1 + 2 files changed, 2 insertions(+) create mode 100644 ees/scenarios/surf-coast-shire/network-links.geojson create mode 100644 ees/scenarios/surf-coast-shire/network-nodes.geojson diff --git a/ees/scenarios/surf-coast-shire/network-links.geojson b/ees/scenarios/surf-coast-shire/network-links.geojson new file mode 100644 index 00000000..18167db1 --- /dev/null +++ b/ees/scenarios/surf-coast-shire/network-links.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "name": "network-links", "crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:EPSG::32754"}}, "features": [{"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750843.322599295, 5836746.4797047125], [750865.3616278877, 5836743.280041555]]}, "properties": {"id": "1-2-3-4-5-6", "from": "363993828", "to": "5642242410", "length_m": 25.285517434636073, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784981.6229587398, 5752517.286654734], [784714.1349667116, 5752286.706481231]]}, "properties": {"id": "10007-10005-10003-10001-9999-9997-9995-9993-9991-9989-9987", "from": "148800372", "to": "509915122", "length_m": 414.81091700693713, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784628.7571400607, 5753167.866766654], [785389.4632569688, 5753025.022046961]]}, "properties": {"id": "10008-10010-10012-9967-9969-9971-9973-9975", "from": "1708444920", "to": "148800346", "length_m": 774.4976737850642, "freespeed_mps": 13.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787811.4745040955, 5750135.361337991], [787781.13873631, 5749968.407734389]]}, "properties": {"id": "10018", "from": "509914501", "to": "509914493", "length_m": 169.6872550734153, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787781.13873631, 5749968.407734389], [787811.4745040955, 5750135.361337991]]}, "properties": {"id": "10019", "from": "509914493", "to": "509914501", "length_m": 169.6872550734153, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787781.13873631, 5749968.407734389], [787716.8893399956, 5749881.353818155]]}, "properties": {"id": "10020-10022-10024-10026-10028", "from": "509914493", "to": "509914504", "length_m": 115.35217882918903, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787716.8893399956, 5749881.353818155], [787781.13873631, 5749968.407734389]]}, "properties": {"id": "10029-10027-10025-10023-10021", "from": "509914504", "to": "509914493", "length_m": 115.35217882918903, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788886.3794121346, 5750751.281256215], [788978.456050039, 5750757.4731841115]]}, "properties": {"id": "10030-10032", "from": "509913946", "to": "508067879", "length_m": 95.34599592651068, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788978.456050039, 5750757.4731841115], [788886.3794121346, 5750751.281256215]]}, "properties": {"id": "10033-10031", "from": "508067879", "to": "509913946", "length_m": 95.34599592651068, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828932.5107488041, 5821972.357395974], [828932.2919153305, 5821992.579078415]]}, "properties": {"id": "10037-10038-10039-10040", "from": "3289276809", "to": "33085400", "length_m": 21.279356095745026, "freespeed_mps": 11.11111111111111, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828932.2919153305, 5821992.579078415], [828962.6913862354, 5821994.947343923]]}, "properties": {"id": "10041-10042-10043-10044-10045-10046-10047", "from": "33085400", "to": "3289276811", "length_m": 35.338173960526746, "freespeed_mps": 11.11111111111111, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828962.6913862354, 5821994.947343923], [828959.8702748427, 5821967.619981058]]}, "properties": {"id": "10048-10049-10050-10051-10052", "from": "3289276811", "to": "33085391", "length_m": 30.691534795708257, "freespeed_mps": 11.11111111111111, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828959.8702748427, 5821967.619981058], [828932.5107488041, 5821972.357395974]]}, "properties": {"id": "10053-10054-10034-10035-10036", "from": "33085391", "to": "3289276809", "length_m": 30.995744831537348, "freespeed_mps": 11.11111111111111, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[839902.9077270374, 5808211.42186505], [838793.5740077336, 5808399.022435313]]}, "properties": {"id": "10055-10057-10059-10061-10063-10065-10067-10069-10071", "from": "1833869065", "to": "250291495", "length_m": 1126.8289010036272, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838793.5740077336, 5808399.022435313], [839902.9077270374, 5808211.42186505]]}, "properties": {"id": "10072-10070-10068-10066-10064-10062-10060-10058-10056", "from": "250291495", "to": "1833869065", "length_m": 1126.8289010036272, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761748.4776480645, 5763268.691612593], [761721.1916169021, 5763526.756329525]]}, "properties": {"id": "101-103-105-58511-58513-58515", "from": "559370738", "to": "559370741", "length_m": 339.4347026291954, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778420.389280318, 5765477.544012043], [779212.846180803, 5765329.559356822]]}, "properties": {"id": "10100", "from": "186874517", "to": "476319392", "length_m": 806.1559371389718, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779212.846180803, 5765329.559356822], [778420.389280318, 5765477.544012043]]}, "properties": {"id": "10101", "from": "476319392", "to": "186874517", "length_m": 806.1559371389718, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779212.846180803, 5765329.559356822], [779996.5539189803, 5765185.709092471]]}, "properties": {"id": "10102-10104-10106-10108-10110", "from": "476319392", "to": "3756752399", "length_m": 796.8003016822126, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779996.5539189803, 5765185.709092471], [779212.846180803, 5765329.559356822]]}, "properties": {"id": "10111-10109-10107-10105-10103", "from": "3756752399", "to": "476319392", "length_m": 796.8003016822126, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780804.5712582387, 5765037.270690706], [781576.1067095948, 5764900.208549793]]}, "properties": {"id": "10114", "from": "475483151", "to": "177785793", "length_m": 783.6153271238823, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781576.1067095948, 5764900.208549793], [780804.5712582387, 5765037.270690706]]}, "properties": {"id": "10115", "from": "177785793", "to": "475483151", "length_m": 783.6153271238823, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781576.1067095948, 5764900.208549793], [782388.8921178392, 5764748.296677323]]}, "properties": {"id": "10116", "from": "177785793", "to": "476151606", "length_m": 826.8599242114291, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782388.8921178392, 5764748.296677323], [781576.1067095948, 5764900.208549793]]}, "properties": {"id": "10117", "from": "476151606", "to": "177785793", "length_m": 826.8599242114291, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783976.890456976, 5764453.317987577], [784765.3776309456, 5764298.244958133]]}, "properties": {"id": "10120", "from": "370245225", "to": "475483157", "length_m": 803.5917281759075, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784765.3776309456, 5764298.244958133], [783976.890456976, 5764453.317987577]]}, "properties": {"id": "10121", "from": "475483157", "to": "370245225", "length_m": 803.5917281759075, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784765.3776309456, 5764298.244958133], [785563.8357154015, 5764151.543091721]]}, "properties": {"id": "10122-10124-10126-10128-10130-10132-10134-10136-10138-10140-10142-10144-10146", "from": "475483157", "to": "370246490", "length_m": 819.1407414710616, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785563.8357154015, 5764151.543091721], [784765.3776309456, 5764298.244958133]]}, "properties": {"id": "10147-10145-10143-10141-10139-10137-10135-10133-10131-10129-10127-10125-10123", "from": "370246490", "to": "475483157", "length_m": 819.1407414710616, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785563.8357154015, 5764151.543091721], [787283.0861990207, 5763889.547713383]]}, "properties": {"id": "10148-10150-10152-10154", "from": "370246490", "to": "148800269", "length_m": 1630.695578283433, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787283.0861990207, 5763889.547713383], [785563.8357154015, 5764151.543091721]]}, "properties": {"id": "10155-10153-10151-10149", "from": "148800269", "to": "370246490", "length_m": 1630.695578283433, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788037.218129466, 5750586.718558006], [787919.3708488601, 5750606.565969417]]}, "properties": {"id": "10156", "from": "509914413", "to": "509914435", "length_m": 119.50690869416465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787919.3708488601, 5750606.565969417], [788037.218129466, 5750586.718558006]]}, "properties": {"id": "10157", "from": "509914435", "to": "509914413", "length_m": 119.50690869416465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787919.3708488601, 5750606.565969417], [787848.1885979029, 5750643.939941279]]}, "properties": {"id": "10158-10160-10162", "from": "509914435", "to": "509914415", "length_m": 81.5357592766687, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787848.1885979029, 5750643.939941279], [787919.3708488601, 5750606.565969417]]}, "properties": {"id": "10163-10161-10159", "from": "509914415", "to": "509914435", "length_m": 81.5357592766687, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787848.1885979029, 5750643.939941279], [787841.6544541264, 5750759.772727971]]}, "properties": {"id": "10164-10166-10168-10170", "from": "509914415", "to": "509914410", "length_m": 119.45203181430414, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787841.6544541264, 5750759.772727971], [787848.1885979029, 5750643.939941279]]}, "properties": {"id": "10171-10169-10167-10165", "from": "509914410", "to": "509914415", "length_m": 119.45203181430414, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832633.4601111048, 5821263.725434182], [832105.1311718433, 5821368.388969801]]}, "properties": {"id": "10176-10177-10178-10179-10180-10181-10182-10183-10184-10185-10186-10187-10188", "from": "5931587939", "to": "5350111002", "length_m": 539.2206515948637, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788581.3362780248, 5751365.903997046], [788348.9670570707, 5751401.557591491]]}, "properties": {"id": "10189-10191", "from": "509914438", "to": "509914439", "length_m": 236.0828906932646, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788348.9670570707, 5751401.557591491], [788581.3362780248, 5751365.903997046]]}, "properties": {"id": "10192-10190", "from": "509914439", "to": "509914438", "length_m": 236.0828906932646, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786683.676168802, 5753123.47695081], [787175.4305807627, 5753760.47764585]]}, "properties": {"id": "10207-10205-10203-10201-10199-2103", "from": "509915216", "to": "509915208", "length_m": 991.4536609306153, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788301.0495553452, 5751472.079551443], [788104.9370645293, 5751415.414598861]]}, "properties": {"id": "10208-10210", "from": "509914444", "to": "509914441", "length_m": 204.75912282380187, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788104.9370645293, 5751415.414598861], [788301.0495553452, 5751472.079551443]]}, "properties": {"id": "10211-10209", "from": "509914441", "to": "509914444", "length_m": 204.75912282380187, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788147.1006149407, 5750922.000480263], [788079.8910494938, 5750789.141178659]]}, "properties": {"id": "10212-10214-10216-10218-10220-10222-10224-10226-10228-10230-10232-10234-10236", "from": "509914310", "to": "509914334", "length_m": 372.3897139107168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788079.8910494938, 5750789.141178659], [788147.1006149407, 5750922.000480263]]}, "properties": {"id": "10237-10235-10233-10231-10229-10227-10225-10223-10221-10219-10217-10215-10213", "from": "509914334", "to": "509914310", "length_m": 372.3897139107168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785591.9262047864, 5749011.469857245], [785083.964851251, 5749037.404170029]]}, "properties": {"id": "10274-10276-10278-10280", "from": "976340767", "to": "976340776", "length_m": 509.3479471126142, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785083.964851251, 5749037.404170029], [785591.9262047864, 5749011.469857245]]}, "properties": {"id": "10281-10279-10277-10275", "from": "976340776", "to": "976340767", "length_m": 509.3479471126142, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785083.964851251, 5749037.404170029], [784534.0876722797, 5749638.55158832]]}, "properties": {"id": "10282-10284-10286-10288-10290-10292-10294-10296-2200-2202-2204-2206-2208", "from": "976340776", "to": "509914701", "length_m": 924.9206816194653, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787939.1237687764, 5751170.721325343], [787842.8366260418, 5751195.487366636]]}, "properties": {"id": "10298-10300-10302", "from": "509914075", "to": "509914287", "length_m": 100.42748077344478, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787842.8366260418, 5751195.487366636], [787939.1237687764, 5751170.721325343]]}, "properties": {"id": "10303-10301-10299", "from": "509914287", "to": "509914075", "length_m": 100.42748077344478, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787928.5989390858, 5750221.415411569], [787925.2844436648, 5750131.80814501]]}, "properties": {"id": "10304", "from": "509914449", "to": "509914448", "length_m": 89.66854577902535, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787925.2844436648, 5750131.80814501], [787928.5989390858, 5750221.415411569]]}, "properties": {"id": "10305", "from": "509914448", "to": "509914449", "length_m": 89.66854577902535, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787925.2844436648, 5750131.80814501], [787939.4891336896, 5750071.039050874]]}, "properties": {"id": "10306-10308", "from": "509914448", "to": "509914446", "length_m": 63.652840392478275, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787939.4891336896, 5750071.039050874], [787925.2844436648, 5750131.80814501]]}, "properties": {"id": "10309-10307", "from": "509914446", "to": "509914448", "length_m": 63.652840392478275, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787939.4891336896, 5750071.039050874], [787990.4691280641, 5750010.4898113]]}, "properties": {"id": "10310", "from": "509914446", "to": "509914507", "length_m": 79.15282845511932, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787990.4691280641, 5750010.4898113], [787939.4891336896, 5750071.039050874]]}, "properties": {"id": "10311", "from": "509914507", "to": "509914446", "length_m": 79.15282845511932, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787990.4691280641, 5750010.4898113], [788069.8155529641, 5749916.194763929]]}, "properties": {"id": "10312", "from": "509914507", "to": "509914445", "length_m": 123.2372148628967, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788069.8155529641, 5749916.194763929], [787990.4691280641, 5750010.4898113]]}, "properties": {"id": "10313", "from": "509914445", "to": "509914507", "length_m": 123.2372148628967, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788468.4042747868, 5761932.997696291], [788463.3367912428, 5761933.945228253]]}, "properties": {"id": "10315-48413", "from": "321710621", "to": "1708355795", "length_m": 5.155312192889605, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788468.4042747868, 5761932.997696291], [789726.8456660245, 5761696.380627897]]}, "properties": {"id": "10316-10318-10320", "from": "321710621", "to": "1708355616", "length_m": 1280.4943957031069, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789726.8456660245, 5761696.380627897], [788468.4042747868, 5761932.997696291]]}, "properties": {"id": "10321-10319-10317", "from": "1708355616", "to": "321710621", "length_m": 1280.4943957031069, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787852.335975819, 5749955.39575808], [787864.9562814555, 5749899.273580211]]}, "properties": {"id": "10322-10324-10326", "from": "509914489", "to": "509914517", "length_m": 57.890423856136756, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787864.9562814555, 5749899.273580211], [787852.335975819, 5749955.39575808]]}, "properties": {"id": "10327-10325-10323", "from": "509914517", "to": "509914489", "length_m": 57.890423856136756, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787864.9562814555, 5749899.273580211], [787906.9347642469, 5749852.094468207]]}, "properties": {"id": "10328-10330", "from": "509914517", "to": "509914497", "length_m": 63.152078119872165, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787906.9347642469, 5749852.094468207], [787864.9562814555, 5749899.273580211]]}, "properties": {"id": "10331-10329", "from": "509914497", "to": "509914517", "length_m": 63.152078119872165, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790360.8121063283, 5754937.5128159], [790347.6468616365, 5754818.616605818]]}, "properties": {"id": "10332-10333-10334-10335-10336-10337-10338", "from": "1580591389", "to": "1580591289", "length_m": 124.06196087945257, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825968.5152439883, 5816281.424274581], [826261.9344591104, 5815911.106964639]]}, "properties": {"id": "10351-10352-10353-10354-10355-10356-10357-10358-10359-10360-10361-10362-10363-10364-10365-10366-10367-10368-10369-10370-10371-10372-10373-10374-1147-1148", "from": "3048590286", "to": "36715125", "length_m": 579.609339434232, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790269.7239557349, 5754723.944684677], [790282.3039593311, 5754822.455762995]]}, "properties": {"id": "10375-10376-10377-10378", "from": "1580591323", "to": "1580591301", "length_m": 101.50556071456039, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790549.1311712906, 5755135.367020636], [790499.6434168855, 5754833.4214421455]]}, "properties": {"id": "10379-10381-10383-10385-10387-10389-10391-10393-10395-10397-10399-10401-10403-10405-10407-10409-10411-10413-10415-10417", "from": "1580591507", "to": "2548347211", "length_m": 309.39353223073283, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790499.6434168855, 5754833.4214421455], [790549.1311712906, 5755135.367020636]]}, "properties": {"id": "10418-10416-10414-10412-10410-10408-10406-10404-10402-10400-10398-10396-10394-10392-10390-10388-10386-10384-10382-10380", "from": "2548347211", "to": "1580591507", "length_m": 309.39353223073283, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790476.7393160686, 5754792.455014968], [790348.5366147961, 5754805.369466977]]}, "properties": {"id": "10419-10420-10421-10422-10423", "from": "3464604466", "to": "1580591542", "length_m": 128.97298175761412, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790348.5366147961, 5754805.369466977], [790318.097645988, 5754810.798818617]]}, "properties": {"id": "10424-10425-10426", "from": "1580591542", "to": "1580591387", "length_m": 30.919413519723133, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790318.097645988, 5754810.798818617], [790300.2811341684, 5754815.329584787]]}, "properties": {"id": "10427", "from": "1580591387", "to": "1580591273", "length_m": 18.3835778372139, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832105.1311718433, 5821368.388969801], [832082.7955327224, 5821372.768169595]]}, "properties": {"id": "10428", "from": "5350111002", "to": "5931587936", "length_m": 22.760891064793086, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774390.88634825, 5837517.071446553], [775119.5562182054, 5837446.815327258]]}, "properties": {"id": "10434-10435-10436-10437-10438", "from": "35098326", "to": "317109034", "length_m": 734.1314794805086, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775119.5562182054, 5837446.815327258], [777768.1010970664, 5836018.899124195]]}, "properties": {"id": "10439-10440-10441-9920-9923-9924", "from": "317109034", "to": "317109025", "length_m": 3011.0918758886264, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775189.7456061256, 5837392.031639196], [774521.1459083853, 5837475.305271465]]}, "properties": {"id": "10444-10445-10446-10447-10448", "from": "317109057", "to": "317109101", "length_m": 678.4342669668547, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774521.1459083853, 5837475.305271465], [773854.9475347779, 5837719.5942961]]}, "properties": {"id": "10449-10450-10451-10452-10453-10442", "from": "317109101", "to": "35095687", "length_m": 720.2270846763226, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832858.7805177483, 5814900.179280497], [832728.3769082546, 5814097.947255109]]}, "properties": {"id": "10460-10461-10462-10463-10464-10465-10466-10467-10468-10469-10470-10471-10472-10473-10474", "from": "30918604", "to": "36714111", "length_m": 813.1460246233147, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832728.3769082546, 5814097.947255109], [832726.3018444455, 5814085.266564433]]}, "properties": {"id": "10475", "from": "36714111", "to": "310002366", "length_m": 12.849350393855564, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832726.3018444455, 5814085.266564433], [832616.2430994597, 5813498.4309458975]]}, "properties": {"id": "10476-10477-10478-10479-10480-10481-10482-10483-10484-10485", "from": "310002366", "to": "369131560", "length_m": 597.2986458472641, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832616.2430994597, 5813498.4309458975], [832567.4083845527, 5813265.271983169]]}, "properties": {"id": "10486-19985-19986-19987-19988", "from": "369131560", "to": "369130854", "length_m": 238.235097746802, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794132.8268144501, 5777497.521066876], [794161.3969552558, 5777540.023182388]]}, "properties": {"id": "10487-10488-10489-10490-10491-10492", "from": "5711728465", "to": "867695760", "length_m": 53.23263359446149, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832989.0679593838, 5815830.650373744], [833035.6903000579, 5816088.170690347]]}, "properties": {"id": "10493-10494-10495", "from": "30918593", "to": "30918489", "length_m": 261.7066539288863, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834559.7508885547, 5809478.7490844615], [834377.0103457607, 5809495.6260815915]]}, "properties": {"id": "10496", "from": "1834824664", "to": "661586444", "length_m": 183.51822445902863, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790348.5366147961, 5754805.369466977], [790313.5596894361, 5754795.901870971]]}, "properties": {"id": "10497-10498-10499", "from": "1580591542", "to": "3464604485", "length_m": 36.6290943040707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790262.6954585994, 5754834.630956954], [790099.2886785661, 5754764.503812419]]}, "properties": {"id": "10500-10502-10504-10506-10508-10510", "from": "1580591326", "to": "513382253", "length_m": 240.21744876878742, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790099.2886785661, 5754764.503812419], [790262.6954585994, 5754834.630956954]]}, "properties": {"id": "10511-10509-10507-10505-10503-10501", "from": "513382253", "to": "1580591326", "length_m": 240.21744876878742, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790099.2886785661, 5754764.503812419], [790083.3024822309, 5754687.632664302]]}, "properties": {"id": "10512", "from": "513382253", "to": "513382348", "length_m": 78.5158065547818, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790083.3024822309, 5754687.632664302], [790099.2886785661, 5754764.503812419]]}, "properties": {"id": "10513", "from": "513382348", "to": "513382253", "length_m": 78.5158065547818, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790083.3024822309, 5754687.632664302], [790063.8238021135, 5754629.325895508]]}, "properties": {"id": "10514", "from": "513382348", "to": "513382319", "length_m": 61.474370730348724, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790063.8238021135, 5754629.325895508], [790083.3024822309, 5754687.632664302]]}, "properties": {"id": "10515", "from": "513382319", "to": "513382348", "length_m": 61.474370730348724, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790063.8238021135, 5754629.325895508], [790057.6967000905, 5754608.695318128]]}, "properties": {"id": "10516", "from": "513382319", "to": "513382238", "length_m": 21.52120120787754, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790057.6967000905, 5754608.695318128], [790063.8238021135, 5754629.325895508]]}, "properties": {"id": "10517", "from": "513382238", "to": "513382319", "length_m": 21.52120120787754, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790727.0165205697, 5754763.050551913], [790725.5920486148, 5754752.92092534]]}, "properties": {"id": "10518", "from": "3464604491", "to": "3464607396", "length_m": 10.22929395428462, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790725.5920486148, 5754752.92092534], [790727.0165205697, 5754763.050551913]]}, "properties": {"id": "10519", "from": "3464607396", "to": "3464604491", "length_m": 10.22929395428462, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790300.2811341684, 5754815.329584787], [790282.3039593311, 5754822.455762995]]}, "properties": {"id": "10520", "from": "1580591273", "to": "1580591301", "length_m": 19.33807720842136, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790282.3039593311, 5754822.455762995], [790262.6954585994, 5754834.630956954]]}, "properties": {"id": "10521", "from": "1580591301", "to": "1580591326", "length_m": 23.080915242771372, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790499.6434168855, 5754833.4214421455], [790491.8447218122, 5754809.205672115]]}, "properties": {"id": "10522-10523", "from": "2548347211", "to": "2548347219", "length_m": 25.467234212411753, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837854.2123927546, 5819056.470102961], [837709.5274403951, 5819116.427928694]]}, "properties": {"id": "10524-10525-10526-10527-10528-10529-10530", "from": "2915452222", "to": "961256781", "length_m": 157.23212824888165, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790830.317681246, 5754777.0352083715], [790939.911270553, 5754757.592576578]]}, "properties": {"id": "10531", "from": "2548347232", "to": "2548347241", "length_m": 111.3048547692162, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790939.911270553, 5754757.592576578], [790830.317681246, 5754777.0352083715]]}, "properties": {"id": "10532", "from": "2548347241", "to": "2548347232", "length_m": 111.3048547692162, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790939.911270553, 5754757.592576578], [791127.3012321279, 5754720.972059381]]}, "properties": {"id": "10533", "from": "2548347241", "to": "3577715442", "length_m": 190.93470042503483, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791127.3012321279, 5754720.972059381], [790939.911270553, 5754757.592576578]]}, "properties": {"id": "10534", "from": "3577715442", "to": "2548347241", "length_m": 190.93470042503483, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832890.9819913823, 5815075.190831019], [832870.046419675, 5815075.770384115]]}, "properties": {"id": "10535", "from": "30918600", "to": "30918601", "length_m": 20.943591860287118, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804692.7289066319, 5787172.438725374], [806319.3487188411, 5788043.670660938]]}, "properties": {"id": "10545", "from": "174828888", "to": "319641334", "length_m": 1845.2471561700395, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804979.3190780925, 5787295.585671995], [803756.0946667057, 5786643.796044217]]}, "properties": {"id": "10546-10547-10548-10549-30745-30746", "from": "616936239", "to": "616936360", "length_m": 1386.0592669813554, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835510.4447702856, 5806902.489860088], [836276.0458112652, 5806635.949497155]]}, "properties": {"id": "10550-10551-10552-10553-10554-10555-10556-10557-10558-10559-10560-10561-10562-10563-10564-10565-10566-13718-13719-13720", "from": "26476043", "to": "2100656002", "length_m": 872.7578323555073, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833449.6883656697, 5821199.465232262], [833467.3757881445, 5821257.1579564065]]}, "properties": {"id": "10567-10568-10569-10570-10571", "from": "584248061", "to": "2932437177", "length_m": 60.37344085755352, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833467.3757881445, 5821257.1579564065], [833592.330487249, 5821545.5570653025]]}, "properties": {"id": "10572-10573-10574-10575-10576-10577-10578-10579-10580-10581-10582", "from": "2932437177", "to": "2894998228", "length_m": 315.06899757411946, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833592.330487249, 5821545.5570653025], [833637.6139228091, 5821641.950695332]]}, "properties": {"id": "10583-10584-10585-10586-10587", "from": "2894998228", "to": "1605942470", "length_m": 106.58360680824187, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833637.6139228091, 5821641.950695332], [833698.5334243954, 5821877.421201184]]}, "properties": {"id": "10588-10589-10590-10591-10592-10593-10594-10595-10596-10597-10598", "from": "1605942470", "to": "1534937610", "length_m": 243.55725740891802, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833698.5334243954, 5821877.421201184], [833779.171457748, 5822014.425285319]]}, "properties": {"id": "10599-10600-10601-10602-10603", "from": "1534937610", "to": "1257432190", "length_m": 159.6655080139847, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833779.171457748, 5822014.425285319], [833820.3902594536, 5822064.627869295]]}, "properties": {"id": "10604-10605-10606", "from": "1257432190", "to": "603452959", "length_m": 64.96704201925868, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833333.0811639366, 5821064.0904963575], [833399.8065570304, 5821042.314114787]]}, "properties": {"id": "10610-10611-10612", "from": "603462869", "to": "255031362", "length_m": 70.19001987739952, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833467.2827370819, 5821196.27457022], [833432.4656596517, 5821087.9048423655]]}, "properties": {"id": "10613-10614-10615", "from": "584248057", "to": "603462890", "length_m": 113.8292077121376, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833432.4656596517, 5821087.9048423655], [833416.807633714, 5821036.256586455]]}, "properties": {"id": "10616-10617-10618-10619", "from": "603462890", "to": "255031363", "length_m": 53.98782950171095, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832821.204676121, 5821203.895329885], [832808.7443853486, 5821207.766990917]]}, "properties": {"id": "10626", "from": "26118266", "to": "2101262410", "length_m": 13.047934878149432, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832808.7443853486, 5821207.766990917], [832633.4601111048, 5821263.725434182]]}, "properties": {"id": "10627-10628-13817-13818-13819-13820", "from": "2101262410", "to": "5931587939", "length_m": 184.00482488739195, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833416.807633714, 5821036.256586455], [833434.748461702, 5821030.716982938]]}, "properties": {"id": "10629", "from": "255031363", "to": "603462904", "length_m": 18.77659483865604, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833434.748461702, 5821030.716982938], [833856.8768510327, 5820897.773663776]]}, "properties": {"id": "10630-10631-10632-10633-10634", "from": "603462904", "to": "26032511", "length_m": 442.56815131134607, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829672.9265238459, 5813577.628379844], [829241.8008673547, 5814361.650599072]]}, "properties": {"id": "10641-10642-10643-10644-10645", "from": "4435303979", "to": "369742994", "length_m": 894.7503570432683, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829241.8008673547, 5814361.650599072], [828905.6670948996, 5814846.108193727]]}, "properties": {"id": "10646-10647-10648-10649-10650-10651-10652", "from": "369742994", "to": "2449311782", "length_m": 593.0478289952034, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828905.6670948996, 5814846.108193727], [828260.1846719956, 5815207.542648011]]}, "properties": {"id": "10653-10654-10655-10656-10657-10658-10659-10660-10661-10662", "from": "2449311782", "to": "36715507", "length_m": 744.7484244667629, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795030.6023249429, 5755472.0156289395], [795269.8428406357, 5755007.973199507]]}, "properties": {"id": "10674-10676-10678-10680-10682-10684", "from": "2574037173", "to": "510175397", "length_m": 531.7775994399981, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795269.8428406357, 5755007.973199507], [795030.6023249429, 5755472.0156289395]]}, "properties": {"id": "10685-10683-10681-10679-10677-10675", "from": "510175397", "to": "2574037173", "length_m": 531.7775994399981, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795269.8428406357, 5755007.973199507], [795296.5839000463, 5754879.41565846]]}, "properties": {"id": "10686-10688-10690-10692-10694-10696-10698-10700-10702-10704-10706-10708-10710-10712-10714-10716-10718-10720-10722-10724-10726-10728-10730-10732-10734-10736-10738", "from": "510175397", "to": "510175509", "length_m": 212.6198377236173, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795296.5839000463, 5754879.41565846], [795269.8428406357, 5755007.973199507]]}, "properties": {"id": "10739-10737-10735-10733-10731-10729-10727-10725-10723-10721-10719-10717-10715-10713-10711-10709-10707-10705-10703-10701-10699-10697-10695-10693-10691-10689-10687", "from": "510175509", "to": "510175397", "length_m": 212.6198377236173, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795296.5839000463, 5754879.41565846], [795269.8428406357, 5755007.973199507]]}, "properties": {"id": "10740-10742-10744-10746-10748-10750-10752-10754-10756-10758", "from": "510175509", "to": "510175397", "length_m": 141.22097259202621, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795269.8428406357, 5755007.973199507], [795296.5839000463, 5754879.41565846]]}, "properties": {"id": "10759-10757-10755-10753-10751-10749-10747-10745-10743-10741", "from": "510175397", "to": "510175509", "length_m": 141.22097259202621, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760207.2199772865, 5762477.709336418], [760454.855390273, 5762561.472383756]]}, "properties": {"id": "10766", "from": "4096350031", "to": "5857617039", "length_m": 261.418334391413, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796293.358038041, 5759727.765103431], [796434.2056782667, 5760468.13071561]]}, "properties": {"id": "10767", "from": "469629209", "to": "367119855", "length_m": 753.644011955912, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796434.2056782667, 5760468.13071561], [796293.358038041, 5759727.765103431]]}, "properties": {"id": "10768", "from": "367119855", "to": "469629209", "length_m": 753.644011955912, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796434.2056782667, 5760468.13071561], [796514.3972554753, 5760827.8347141305]]}, "properties": {"id": "10769-10771-10773-10775-10777", "from": "367119855", "to": "944855272", "length_m": 371.3695720033717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796514.3972554753, 5760827.8347141305], [796434.2056782667, 5760468.13071561]]}, "properties": {"id": "10778-10776-10774-10772-10770", "from": "944855272", "to": "367119855", "length_m": 371.3695720033717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776892.7295923433, 5770755.140976769], [777137.8558404499, 5772050.0896898825]]}, "properties": {"id": "10779", "from": "364643363", "to": "364643376", "length_m": 1317.945008543524, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777137.8558404499, 5772050.0896898825], [776892.7295923433, 5770755.140976769]]}, "properties": {"id": "10780", "from": "364643376", "to": "364643363", "length_m": 1317.945008543524, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777137.8558404499, 5772050.0896898825], [777178.9037398077, 5772266.248299171]]}, "properties": {"id": "10781", "from": "364643376", "to": "364643554", "length_m": 220.02153160849574, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777178.9037398077, 5772266.248299171], [777137.8558404499, 5772050.0896898825]]}, "properties": {"id": "10782", "from": "364643554", "to": "364643376", "length_m": 220.02153160849574, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790954.6319580999, 5754525.278591678], [790907.6235498171, 5754498.830710604]]}, "properties": {"id": "10783-10785", "from": "2244716817", "to": "2244716799", "length_m": 55.364604994392465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790907.6235498171, 5754498.830710604], [790954.6319580999, 5754525.278591678]]}, "properties": {"id": "10786-10784", "from": "2244716799", "to": "2244716817", "length_m": 55.364604994392465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829471.0349137184, 5814632.697878911], [828822.5123128057, 5814796.428480172]]}, "properties": {"id": "10790-10791-10792-10793-10794-10795-10796-10797-10798-10799-10800-52816-52817-52818-52819-52801-52802-52803-52804-52805-52806-52807-52808", "from": "1764268289", "to": "1536031865", "length_m": 682.6227923326583, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790987.6142439133, 5754402.162685961], [790954.6319580999, 5754525.278591678]]}, "properties": {"id": "10801-10803-10805", "from": "2244716815", "to": "2244716817", "length_m": 129.223234574661, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790954.6319580999, 5754525.278591678], [790987.6142439133, 5754402.162685961]]}, "properties": {"id": "10806-10804-10802", "from": "2244716817", "to": "2244716815", "length_m": 129.223234574661, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790954.6319580999, 5754525.278591678], [790941.2635966778, 5754671.672621358]]}, "properties": {"id": "10807-10809-10811-10813", "from": "2244716817", "to": "2244716746", "length_m": 150.32605074430174, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790941.2635966778, 5754671.672621358], [790954.6319580999, 5754525.278591678]]}, "properties": {"id": "10814-10812-10810-10808", "from": "2244716746", "to": "2244716817", "length_m": 150.32605074430174, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791102.8551994977, 5754633.448104694], [791101.3664857012, 5754635.635791931]]}, "properties": {"id": "10817", "from": "2244716773", "to": "3464608656", "length_m": 2.64617539869766, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791101.3664857012, 5754635.635791931], [791103.555132783, 5754648.972188385]]}, "properties": {"id": "10818-10819-10820", "from": "3464608656", "to": "2244716818", "length_m": 14.39016450263312, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791103.555132783, 5754648.972188385], [791106.6967616731, 5754651.092932455]]}, "properties": {"id": "10821", "from": "2244716818", "to": "2244716775", "length_m": 3.790433674833762, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791106.6967616731, 5754651.092932455], [791119.4677417963, 5754648.731788765]]}, "properties": {"id": "10822-10823-10824-10825", "from": "2244716775", "to": "2244716825", "length_m": 13.770636153292742, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791119.4677417963, 5754648.731788765], [791122.4853907843, 5754643.043433463]]}, "properties": {"id": "10826-10827", "from": "2244716825", "to": "2244716804", "length_m": 6.508299962219787, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791122.4853907843, 5754643.043433463], [791121.628108124, 5754636.027692569]]}, "properties": {"id": "10828-10829", "from": "2244716804", "to": "3464608670", "length_m": 7.158073238631284, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791121.628108124, 5754636.027692569], [791113.37087481, 5754629.7456273055]]}, "properties": {"id": "10830-10831-10832", "from": "3464608670", "to": "2244716789", "length_m": 10.730735127663914, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791113.37087481, 5754629.7456273055], [791102.8551994977, 5754633.448104694]]}, "properties": {"id": "10833-10815-10816", "from": "2244716789", "to": "2244716773", "length_m": 11.596829163065179, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791082.0086954948, 5754647.437306066], [791103.555132783, 5754648.972188385]]}, "properties": {"id": "10834-10835", "from": "3464608671", "to": "2244716818", "length_m": 21.81916939322777, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793853.2633746966, 5774901.291863698], [793814.5100634219, 5774728.917871125]]}, "properties": {"id": "10836-10837", "from": "60278256", "to": "3964004487", "length_m": 176.67899286043638, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793814.5100634219, 5774728.917871125], [793812.532712182, 5774720.609031979]]}, "properties": {"id": "10838", "from": "3964004487", "to": "472534118", "length_m": 8.540885536885954, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793723.7363470839, 5774004.999804096], [793716.4595960281, 5774074.706398841]]}, "properties": {"id": "10839-10840-10841-10842-10843-10844-10845-10846-10847-10848-10849", "from": "3996617765", "to": "3996617763", "length_m": 70.15591426544964, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793716.4595960281, 5774074.706398841], [793726.0521945297, 5774084.829430955]]}, "properties": {"id": "10850-10851-10852-10853-10854-10855-10856", "from": "3996617763", "to": "318039630", "length_m": 15.48399626152813, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793812.532712182, 5774720.609031979], [793715.8979242158, 5774214.5694930265]]}, "properties": {"id": "10857-10858-10859-10860-10861-10862-10863", "from": "472534118", "to": "870702524", "length_m": 515.710480181411, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792713.2023863964, 5774831.041201365], [792723.7637673542, 5774838.585272448]]}, "properties": {"id": "10864", "from": "253506644", "to": "30732277", "length_m": 12.979051372964074, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792723.7637673542, 5774838.585272448], [792713.2023863964, 5774831.041201365]]}, "properties": {"id": "10865", "from": "30732277", "to": "253506644", "length_m": 12.979051372964074, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794001.3611173193, 5775608.764783437], [793959.1724226654, 5775422.133194294]]}, "properties": {"id": "10866-10867-10868", "from": "26755975", "to": "4704750615", "length_m": 191.3406547756221, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793959.1724226654, 5775422.133194294], [793913.6443397474, 5775211.348180891]]}, "properties": {"id": "10869-10870-10871", "from": "4704750615", "to": "317732031", "length_m": 215.64888035943557, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790491.7019565206, 5752038.243140384], [790509.3624438904, 5752152.0649939515]]}, "properties": {"id": "10872-10874-10876", "from": "510171670", "to": "1321582051", "length_m": 115.19611481834107, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790509.3624438904, 5752152.0649939515], [790491.7019565206, 5752038.243140384]]}, "properties": {"id": "10877-10875-10873", "from": "1321582051", "to": "510171670", "length_m": 115.19611481834107, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790509.6059361612, 5752155.179420304], [790471.1017499213, 5752164.401880683]]}, "properties": {"id": "10878-10879-10880", "from": "510171671", "to": "846538717", "length_m": 39.62811669020567, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830213.3914907192, 5814258.566682481], [830109.0741539192, 5814324.681369584]]}, "properties": {"id": "10884-55768-55769-5976-5945", "from": "981835734", "to": "981838881", "length_m": 123.5051348776405, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790491.7019565206, 5752038.243140384], [790522.9182062058, 5751911.29062555]]}, "properties": {"id": "10886-8109", "from": "510171670", "to": "510171662", "length_m": 170.41096788515236, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790508.783643635, 5752160.788553623], [790544.689318483, 5752171.543494663]]}, "properties": {"id": "10890-10891-10892-10893-10894-10895-10896-10897-10898", "from": "1321582130", "to": "510171683", "length_m": 38.48310972146913, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838673.6700674526, 5805727.638481267], [838639.7633297362, 5805532.557566715]]}, "properties": {"id": "10899", "from": "250287618", "to": "319847144", "length_m": 198.00563127245078, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791998.907008975, 5765237.824220382], [792339.8485761558, 5765268.617744205]]}, "properties": {"id": "10917-10918-10919-10920-10921-10922-10923-10924-10925", "from": "3546176054", "to": "2948697188", "length_m": 346.9781877247907, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792339.8485761558, 5765268.617744205], [792355.0069310784, 5765267.303765255]]}, "properties": {"id": "10926", "from": "2948697188", "to": "3546176175", "length_m": 15.215198424291636, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792351.2908646292, 5765241.363198688], [792335.3875144117, 5765243.41539161]]}, "properties": {"id": "10930", "from": "3726903731", "to": "3726903730", "length_m": 16.035212629971483, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792335.3875144117, 5765243.41539161], [791998.907008975, 5765237.824220382]]}, "properties": {"id": "10931-10932-10933-10934-10935-10936-10937", "from": "3726903730", "to": "3546176054", "length_m": 338.9092944732105, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832969.4418486184, 5805438.807318656], [832881.8055630717, 5805022.456842042]]}, "properties": {"id": "10947-10948-10900-10901-10902-10903-10904", "from": "1763048114", "to": "5642368851", "length_m": 426.6427251617938, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789190.7069619686, 5764718.920837702], [788933.6177354187, 5764706.179859539]]}, "properties": {"id": "10949-10950-10951-10952-10953-10954-10955-10956", "from": "3713166048", "to": "3726903744", "length_m": 258.73317349750846, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788933.6177354187, 5764706.179859539], [788662.5242517102, 5764746.721825061]]}, "properties": {"id": "10957-10958-10959-10960", "from": "3726903744", "to": "3726903738", "length_m": 274.1363601158848, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747448.0606676108, 5835923.6837337725], [747683.0918849929, 5835924.992592691]]}, "properties": {"id": "10961-10963", "from": "2315437916", "to": "363996626", "length_m": 235.03486147675468, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747683.0918849929, 5835924.992592691], [747448.0606676108, 5835923.6837337725]]}, "properties": {"id": "10964-10962", "from": "363996626", "to": "2315437916", "length_m": 235.03486147675468, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789190.7069619686, 5764718.920837702], [789691.9590826475, 5764884.168607788]]}, "properties": {"id": "10965-10967-10969-10971-10973-10975-10977", "from": "3713166048", "to": "2411604969", "length_m": 528.1285874405461, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789691.9590826475, 5764884.168607788], [789190.7069619686, 5764718.920837702]]}, "properties": {"id": "10978-10976-10974-10972-10970-10968-10966", "from": "2411604969", "to": "3713166048", "length_m": 528.1285874405461, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789691.9590826475, 5764884.168607788], [790287.7255711413, 5765088.30146917]]}, "properties": {"id": "10979-10981-10983-10985-10987-10989", "from": "2411604969", "to": "2411604974", "length_m": 630.3808406864933, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790287.7255711413, 5765088.30146917], [789691.9590826475, 5764884.168607788]]}, "properties": {"id": "10990-10988-10986-10984-10982-10980", "from": "2411604974", "to": "2411604969", "length_m": 630.3808406864933, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790287.7255711413, 5765088.30146917], [791219.9781402665, 5765105.385027444]]}, "properties": {"id": "10991-10993-10995-10997-10999-11001-11003-11005-11007-11009", "from": "2411604974", "to": "5481813912", "length_m": 937.9166463662164, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791219.9781402665, 5765105.385027444], [790287.7255711413, 5765088.30146917]]}, "properties": {"id": "11010-11008-11006-11004-11002-11000-10998-10996-10994-10992", "from": "5481813912", "to": "2411604974", "length_m": 937.9166463662164, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791219.9781402665, 5765105.385027444], [791998.907008975, 5765237.824220382]]}, "properties": {"id": "11011-11013-11015-11017-11019-11021-11023-11025-11027-11029-11031-11033", "from": "5481813912", "to": "3546176054", "length_m": 797.9315750118874, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825413.6476699609, 5816370.127602361], [826261.9344591104, 5815911.106964639]]}, "properties": {"id": "1103-1102-19862", "from": "36715197", "to": "36715125", "length_m": 964.5157524372399, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791998.907008975, 5765237.824220382], [791219.9781402665, 5765105.385027444]]}, "properties": {"id": "11034-11032-11030-11028-11026-11024-11022-11020-11018-11016-11014-11012", "from": "3546176054", "to": "5481813912", "length_m": 797.9315750118874, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737885.5528549846, 5831425.255343078], [738336.786640579, 5832046.161241346]]}, "properties": {"id": "11035", "from": "2315437915", "to": "3545568272", "length_m": 767.5519934399043, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738336.786640579, 5832046.161241346], [737885.5528549846, 5831425.255343078]]}, "properties": {"id": "11036", "from": "3545568272", "to": "2315437915", "length_m": 767.5519934399043, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738336.786640579, 5832046.161241346], [738806.636614601, 5832697.642723443]]}, "properties": {"id": "11037-11039", "from": "3545568272", "to": "2892750617", "length_m": 803.2710831837882, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738806.636614601, 5832697.642723443], [738336.786640579, 5832046.161241346]]}, "properties": {"id": "11040-11038", "from": "2892750617", "to": "3545568272", "length_m": 803.2710831837882, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738806.636614601, 5832697.642723443], [739191.9775949541, 5833064.730051927]]}, "properties": {"id": "11041-11043-11045", "from": "2892750617", "to": "3444578413", "length_m": 532.9421409869027, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[739191.9775949541, 5833064.730051927], [738806.636614601, 5832697.642723443]]}, "properties": {"id": "11046-11044-11042", "from": "3444578413", "to": "2892750617", "length_m": 532.9421409869027, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[739191.9775949541, 5833064.730051927], [739679.7723880444, 5833337.814793084]]}, "properties": {"id": "11047-11049-11051-11053-11055-11057", "from": "3444578413", "to": "1848367816", "length_m": 560.0030087092268, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[739679.7723880444, 5833337.814793084], [739191.9775949541, 5833064.730051927]]}, "properties": {"id": "11058-11056-11054-11052-11050-11048", "from": "1848367816", "to": "3444578413", "length_m": 560.0030087092268, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[739679.7723880444, 5833337.814793084], [740535.7024181567, 5833478.87525164]]}, "properties": {"id": "11059-11061-11063-11065-11067-11069-11071-11073-11075-11077", "from": "1848367816", "to": "1848367796", "length_m": 880.9320906369308, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740535.7024181567, 5833478.87525164], [739679.7723880444, 5833337.814793084]]}, "properties": {"id": "11078-11076-11074-11072-11070-11068-11066-11064-11062-11060", "from": "1848367796", "to": "1848367816", "length_m": 880.9320906369308, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740535.7024181567, 5833478.87525164], [741370.9887512806, 5833926.47591251]]}, "properties": {"id": "11079-11081-11083-11085-11087-11089-11091-11093-11095-11097-11099-11101", "from": "1848367796", "to": "1416490286", "length_m": 985.869652751416, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825839.1103863037, 5816093.0258445125], [824988.6282283078, 5816554.631173976]]}, "properties": {"id": "1109-1110-30829-30830-30831-30832", "from": "582326921", "to": "582329658", "length_m": 967.7420927656758, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741370.9887512806, 5833926.47591251], [740535.7024181567, 5833478.87525164]]}, "properties": {"id": "11102-11100-11098-11096-11094-11092-11090-11088-11086-11084-11082-11080", "from": "1416490286", "to": "1848367796", "length_m": 985.869652751416, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741370.9887512806, 5833926.47591251], [742287.2079484131, 5834249.885495203]]}, "properties": {"id": "11103-11105-11107-11109-11111-11113-11115-11117", "from": "1416490286", "to": "1848349218", "length_m": 979.3486800099389, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742287.2079484131, 5834249.885495203], [741370.9887512806, 5833926.47591251]]}, "properties": {"id": "11118-11116-11114-11112-11110-11108-11106-11104", "from": "1848349218", "to": "1416490286", "length_m": 979.3486800099389, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742287.2079484131, 5834249.885495203], [742946.351100145, 5834300.040287113]]}, "properties": {"id": "11119-11121-11123-11125-11127-11129-11131-11133-11135-11137", "from": "1848349218", "to": "1848368573", "length_m": 693.8562848771888, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742946.351100145, 5834300.040287113], [742287.2079484131, 5834249.885495203]]}, "properties": {"id": "11138-11136-11134-11132-11130-11128-11126-11124-11122-11120", "from": "1848368573", "to": "1848349218", "length_m": 693.8562848771888, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742946.351100145, 5834300.040287113], [743767.7131600915, 5834717.889980435]]}, "properties": {"id": "11139-11141-11143-11145-11147-11149-11151-11153-11155-11157-11159-11161", "from": "1848368573", "to": "214444165", "length_m": 975.0587931301549, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743767.7131600915, 5834717.889980435], [742946.351100145, 5834300.040287113]]}, "properties": {"id": "11162-11160-11158-11156-11154-11152-11150-11148-11146-11144-11142-11140", "from": "214444165", "to": "1848368573", "length_m": 975.0587931301549, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743767.7131600915, 5834717.889980435], [744384.829382828, 5835293.709103658]]}, "properties": {"id": "11163", "from": "214444165", "to": "1416197972", "length_m": 844.0379689541962, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744384.829382828, 5835293.709103658], [743767.7131600915, 5834717.889980435]]}, "properties": {"id": "11164", "from": "1416197972", "to": "214444165", "length_m": 844.0379689541962, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744384.829382828, 5835293.709103658], [744949.4399313566, 5835715.780389028]]}, "properties": {"id": "11165-11167-11169-11171", "from": "1416197972", "to": "363132882", "length_m": 705.4255744582388, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744949.4399313566, 5835715.780389028], [744384.829382828, 5835293.709103658]]}, "properties": {"id": "11172-11170-11168-11166", "from": "363132882", "to": "1416197972", "length_m": 705.4255744582388, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744949.4399313566, 5835715.780389028], [746021.1044331355, 5835988.4329272825]]}, "properties": {"id": "11173-11175-11177-11179-11181", "from": "363132882", "to": "1416210977", "length_m": 1106.5627607232573, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746021.1044331355, 5835988.4329272825], [744949.4399313566, 5835715.780389028]]}, "properties": {"id": "11182-11180-11178-11176-11174", "from": "1416210977", "to": "363132882", "length_m": 1106.5627607232573, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746021.1044331355, 5835988.4329272825], [746655.6488591506, 5836078.779625954]]}, "properties": {"id": "11183-11185-11187-14761-14763", "from": "1416210977", "to": "2875552966", "length_m": 647.7414794768845, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793874.3495755354, 5775008.517905575], [793852.8814339074, 5775012.850915695]]}, "properties": {"id": "11189", "from": "867706358", "to": "867706362", "length_m": 21.901052030818565, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791110.8134499331, 5754599.383848119], [791102.8551994977, 5754633.448104694]]}, "properties": {"id": "11190-11191-11192-11193", "from": "3464608673", "to": "2244716773", "length_m": 35.13651363400001, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791122.4853907843, 5754643.043433463], [791144.3035640614, 5754635.843443172]]}, "properties": {"id": "11194-11195", "from": "2244716804", "to": "3464608660", "length_m": 22.976909058624905, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783692.2880987604, 5762833.403781643], [783853.3560840879, 5763750.209773448]]}, "properties": {"id": "11196-11198", "from": "616999271", "to": "1852697862", "length_m": 930.8469923137751, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783853.3560840879, 5763750.209773448], [783692.2880987604, 5762833.403781643]]}, "properties": {"id": "11199-11197", "from": "1852697862", "to": "616999271", "length_m": 930.8469923137751, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750834.602478113, 5836428.85178064], [750844.072595589, 5836723.940876767]]}, "properties": {"id": "112-113-114-115-116-117-118-119-120-121", "from": "363993762", "to": "5642242408", "length_m": 296.65402310946223, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791117.1459039369, 5754672.500733646], [791127.3012321279, 5754720.972059381]]}, "properties": {"id": "11200-11202", "from": "2548347248", "to": "3577715442", "length_m": 49.53013249117204, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791127.3012321279, 5754720.972059381], [791117.1459039369, 5754672.500733646]]}, "properties": {"id": "11203-11201", "from": "3577715442", "to": "2548347248", "length_m": 49.53013249117204, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757297.4829749775, 5839547.019812113], [757801.7154643342, 5839066.984506555]]}, "properties": {"id": "11213-11214-11215-11216-11217-11218-11219-57233-57230-57231-57232", "from": "364000833", "to": "1556440095", "length_m": 699.8366897969593, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791101.3664857012, 5754635.635791931], [791082.0086954948, 5754647.437306066]]}, "properties": {"id": "11220-11221", "from": "3464608656", "to": "3464608671", "length_m": 22.95512162025839, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791144.3035640614, 5754635.843443172], [791121.628108124, 5754636.027692569]]}, "properties": {"id": "11223-11224", "from": "3464608660", "to": "3464608670", "length_m": 22.82362760973618, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768181.2527652085, 5758910.875465117], [767309.9899803983, 5758726.182743314]]}, "properties": {"id": "11249", "from": "849463752", "to": "5676562697", "length_m": 890.6235106919202, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767309.9899803983, 5758726.182743314], [768181.2527652085, 5758910.875465117]]}, "properties": {"id": "11250", "from": "5676562697", "to": "849463752", "length_m": 890.6235106919202, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791082.0086954948, 5754647.437306066], [791025.6836909351, 5754656.770371386]]}, "properties": {"id": "11251", "from": "3464608671", "to": "2244716811", "length_m": 57.09301386687989, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791025.6836909351, 5754656.770371386], [791082.0086954948, 5754647.437306066]]}, "properties": {"id": "11252", "from": "2244716811", "to": "3464608671", "length_m": 57.09301386687989, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791025.6836909351, 5754656.770371386], [790941.2635966778, 5754671.672621358]]}, "properties": {"id": "11253", "from": "2244716811", "to": "2244716746", "length_m": 85.72531325432062, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790941.2635966778, 5754671.672621358], [791025.6836909351, 5754656.770371386]]}, "properties": {"id": "11254", "from": "2244716746", "to": "2244716811", "length_m": 85.72531325432062, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790941.2635966778, 5754671.672621358], [790903.7556122448, 5754679.226271742]]}, "properties": {"id": "11255", "from": "2244716746", "to": "2244716749", "length_m": 38.261031405364164, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790903.7556122448, 5754679.226271742], [790941.2635966778, 5754671.672621358]]}, "properties": {"id": "11256", "from": "2244716749", "to": "2244716746", "length_m": 38.261031405364164, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791113.37087481, 5754629.7456273055], [791110.8134499331, 5754599.383848119]]}, "properties": {"id": "11257-11258-11259", "from": "2244716789", "to": "3464608673", "length_m": 31.211598367429218, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792723.7637673542, 5774838.585272448], [792919.5593301923, 5774517.458615918]]}, "properties": {"id": "11273-11274-13062", "from": "30732277", "to": "1548463856", "length_m": 376.25150366088, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756507.7646766041, 5840292.504004855], [755993.1179691418, 5840431.112863699]]}, "properties": {"id": "11279-11280-11281-11282-11283-11284", "from": "1844189644", "to": "3340929869", "length_m": 533.683430688825, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755993.1179691418, 5840431.112863699], [755287.5932512664, 5840939.732591687]]}, "properties": {"id": "11285-11286-11287-11288-11289-11290-49598-49599", "from": "3340929869", "to": "3340866176", "length_m": 874.5214134024174, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757758.7742315399, 5726191.608951215], [758212.2473208534, 5726593.539714377]]}, "properties": {"id": "11291-11293-11295-11297-11299-11301-11303-11305-11307-11309-11311-11313-11315-11317-11319-11321-11323-11325-11327-11329-11331-11333-11335-11337-11339-11341-11343-11345-11347-11349", "from": "234756825", "to": "863348682", "length_m": 640.0942731912298, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758212.2473208534, 5726593.539714377], [757758.7742315399, 5726191.608951215]]}, "properties": {"id": "11350-11348-11346-11344-11342-11340-11338-11336-11334-11332-11330-11328-11326-11324-11322-11320-11318-11316-11314-11312-11310-11308-11306-11304-11302-11300-11298-11296-11294-11292", "from": "863348682", "to": "234756825", "length_m": 640.0942731912298, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758212.2473208534, 5726593.539714377], [758500.0449335829, 5727138.415995723]]}, "properties": {"id": "11351-11353-11355-11357-11359-11361-11363-11365-11367-11369-11371-11373-11375-11377-11379-11381-11383-11385-11387-11389-11391-11393-11395-11397-11399-11401-11403-11405-11407-11409-11411-11413-11415-11417-11419-11421-11423-11425-42887-44166-44168", "from": "863348682", "to": "863349856", "length_m": 670.5603207123726, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752153.3334299256, 5839006.85479681], [752160.9059404671, 5839005.5026652515]]}, "properties": {"id": "11448", "from": "60303498", "to": "363999778", "length_m": 7.692280213065131, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793627.0355602994, 5774233.719997508], [793625.1127560742, 5774220.84110408]]}, "properties": {"id": "11460", "from": "293567339", "to": "318039939", "length_m": 13.02163861278164, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793625.1127560742, 5774220.84110408], [793627.0355602994, 5774233.719997508]]}, "properties": {"id": "11461", "from": "318039939", "to": "293567339", "length_m": 13.02163861278164, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793627.0355602994, 5774233.719997508], [793812.55501557, 5774169.18366148]]}, "properties": {"id": "11466-36162-36163-36164-36165-36166-36167-36168-36169-36170", "from": "293567339", "to": "318039780", "length_m": 198.84824893792324, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750252.0501551501, 5832001.604038926], [750163.3730031403, 5832745.88540069]]}, "properties": {"id": "11468-11465-11463-27824-27822-28568-34201-34203-34205-57489-57491", "from": "2744576173", "to": "364001256", "length_m": 758.9731483218046, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796649.5484200488, 5781567.623501042], [796656.8488942779, 5781575.293469162]]}, "properties": {"id": "11469", "from": "2069599529", "to": "286389331", "length_m": 10.588925051709838, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796668.5454476548, 5781557.4616894545], [796661.302034767, 5781550.634372869]]}, "properties": {"id": "11470", "from": "286389293", "to": "632191149", "length_m": 9.953857623574384, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789514.2420407564, 5766567.315781208], [789523.6842053789, 5766570.168198056]]}, "properties": {"id": "11472", "from": "266584657", "to": "3332965297", "length_m": 9.863607572216225, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795005.2376465164, 5771528.697381242], [795014.813899396, 5771512.555287271]]}, "properties": {"id": "11474-11475-11476-11477", "from": "5500087650", "to": "705054511", "length_m": 19.91169722533516, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760427.1468705309, 5775844.3054752145], [760382.8642311927, 5775772.07343361]]}, "properties": {"id": "11479-11562", "from": "789295617", "to": "1743089313", "length_m": 84.73219627479396, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770606.5739219721, 5738119.147435802], [770609.5997848304, 5738100.309934536]]}, "properties": {"id": "11481-11483-11485", "from": "60287154", "to": "4005357849", "length_m": 19.259624537448943, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770609.5997848304, 5738100.309934536], [770606.5739219721, 5738119.147435802]]}, "properties": {"id": "11486-11484-11482", "from": "4005357849", "to": "60287154", "length_m": 19.259624537448943, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770609.5997848304, 5738100.309934536], [770774.7995112956, 5738079.12726974]]}, "properties": {"id": "11487-11489-11491-11493-11495-11497-11499-11501-11503", "from": "4005357849", "to": "60287160", "length_m": 172.45528241461355, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771104.1563538245, 5765912.538000349], [771102.3700648957, 5765880.117757097]]}, "properties": {"id": "1149-1151-1153-1155", "from": "2379163082", "to": "2379163074", "length_m": 33.22657720057906, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770774.7995112956, 5738079.12726974], [770609.5997848304, 5738100.309934536]]}, "properties": {"id": "11504-11502-11500-11498-11496-11494-11492-11490-11488", "from": "60287160", "to": "4005357849", "length_m": 172.45528241461355, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770774.7995112956, 5738079.12726974], [770781.7486272377, 5738021.197178157]]}, "properties": {"id": "11505-11507-11509-11511", "from": "60287160", "to": "60287163", "length_m": 58.75286819941472, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770781.7486272377, 5738021.197178157], [770774.7995112956, 5738079.12726974]]}, "properties": {"id": "11512-11510-11508-11506", "from": "60287163", "to": "60287160", "length_m": 58.75286819941472, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770781.7486272377, 5738021.197178157], [770689.8705105886, 5737929.162004812]]}, "properties": {"id": "11513-11515", "from": "60287163", "to": "831202226", "length_m": 130.5649676081253, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770689.8705105886, 5737929.162004812], [770781.7486272377, 5738021.197178157]]}, "properties": {"id": "11516-11514", "from": "831202226", "to": "60287163", "length_m": 130.5649676081253, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770689.8705105886, 5737929.162004812], [770660.4445763592, 5737903.228706181]]}, "properties": {"id": "11517", "from": "831202226", "to": "831201420", "length_m": 39.222717596311576, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770660.4445763592, 5737903.228706181], [770689.8705105886, 5737929.162004812]]}, "properties": {"id": "11518", "from": "831201420", "to": "831202226", "length_m": 39.222717596311576, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770660.4445763592, 5737903.228706181], [770596.3968427272, 5737836.901920273]]}, "properties": {"id": "11519-11521", "from": "831201420", "to": "831202439", "length_m": 92.20409186228282, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770596.3968427272, 5737836.901920273], [770660.4445763592, 5737903.228706181]]}, "properties": {"id": "11522-11520", "from": "831202439", "to": "831201420", "length_m": 92.20409186228282, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770596.3968427272, 5737836.901920273], [770368.3900735701, 5737983.255255538]]}, "properties": {"id": "11523-11525-11527-11529-11531-11533-11535-11537-11539-11541", "from": "831202439", "to": "37673670", "length_m": 346.18766692041225, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770368.3900735701, 5737983.255255538], [770596.3968427272, 5737836.901920273]]}, "properties": {"id": "11542-11540-11538-11536-11534-11532-11530-11528-11526-11524", "from": "37673670", "to": "831202439", "length_m": 346.18766692041225, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759546.2681442694, 5774174.792393533], [759969.4393162454, 5775076.033731358]]}, "properties": {"id": "11543-11545-11547-11549-11551-11553-11555", "from": "724309228", "to": "789295613", "length_m": 1014.3266507246192, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759969.4393162454, 5775076.033731358], [759546.2681442694, 5774174.792393533]]}, "properties": {"id": "11556-11554-11552-11550-11548-11546-11544", "from": "789295613", "to": "724309228", "length_m": 1014.3266507246192, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759969.4393162454, 5775076.033731358], [760382.8642311927, 5775772.07343361]]}, "properties": {"id": "11557-11559", "from": "789295613", "to": "1743089313", "length_m": 809.5636078806162, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771102.3700648957, 5765880.117757097], [771104.1563538245, 5765912.538000349]]}, "properties": {"id": "1156-1154-1152-1150", "from": "2379163074", "to": "2379163082", "length_m": 33.22657720057906, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760382.8642311927, 5775772.07343361], [759969.4393162454, 5775076.033731358]]}, "properties": {"id": "11560-11558", "from": "1743089313", "to": "789295613", "length_m": 809.5636078806162, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760382.8642311927, 5775772.07343361], [760427.1468705309, 5775844.3054752145]]}, "properties": {"id": "11561-11478", "from": "1743089313", "to": "789295617", "length_m": 84.73219627479396, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771069.9665784709, 5765880.879819605], [771073.8436922983, 5765912.907853914]]}, "properties": {"id": "1157-1159-1161-1163", "from": "2379163073", "to": "2379163081", "length_m": 33.01797853346312, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783350.4515928947, 5747800.844739193], [783484.074536056, 5747435.06375489]]}, "properties": {"id": "11571-11573-29935-29937-29939-29941-29943-29945", "from": "513381373", "to": "513381588", "length_m": 563.0555888127242, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773473.6110997581, 5774676.792649852], [774316.2136743735, 5774524.588688431]]}, "properties": {"id": "11575-11577-11579-11581-11583-11585-11587-11589-11591-11593", "from": "5604438397", "to": "5604438407", "length_m": 849.0070200216559, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774316.2136743735, 5774524.588688431], [773473.6110997581, 5774676.792649852]]}, "properties": {"id": "11594-11592-11590-11588-11586-11584-11582-11580-11578-11576", "from": "5604438407", "to": "5604438397", "length_m": 849.0070200216559, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774316.2136743735, 5774524.588688431], [775506.9502957624, 5774307.009829934]]}, "properties": {"id": "11595-11597-11599-11601-11603-11605-11607-11609-11611", "from": "5604438407", "to": "916620018", "length_m": 1210.4666187108464, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775506.9502957624, 5774307.009829934], [774316.2136743735, 5774524.588688431]]}, "properties": {"id": "11612-11610-11608-11606-11604-11602-11600-11598-11596", "from": "916620018", "to": "5604438407", "length_m": 1210.4666187108464, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775506.9502957624, 5774307.009829934], [777461.9205399698, 5773944.090159143]]}, "properties": {"id": "11613-11615-11617-11619-11621", "from": "916620018", "to": "916620002", "length_m": 1989.5605327256735, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777461.9205399698, 5773944.090159143], [775506.9502957624, 5774307.009829934]]}, "properties": {"id": "11622-11620-11618-11616-11614", "from": "916620002", "to": "916620018", "length_m": 1989.5605327256735, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734499.6540881407, 5787578.322112429], [735578.3301826594, 5786702.560376483]]}, "properties": {"id": "11628-11626-11624-37324-37322-37320-37318", "from": "177850254", "to": "5705903953", "length_m": 1392.5993524706712, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734499.6540881407, 5787578.322112429], [733575.2494832352, 5787858.757061567]]}, "properties": {"id": "11629-11631-11633-11635", "from": "177850254", "to": "317721068", "length_m": 966.448118434184, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733575.2494832352, 5787858.757061567], [734499.6540881407, 5787578.322112429]]}, "properties": {"id": "11636-11634-11632-11630", "from": "317721068", "to": "177850254", "length_m": 966.448118434184, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733575.2494832352, 5787858.757061567], [733005.502237871, 5787954.355966018]]}, "properties": {"id": "11637-11639", "from": "317721068", "to": "2321615733", "length_m": 577.7126229313237, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771073.8436922983, 5765912.907853914], [771069.9665784709, 5765880.879819605]]}, "properties": {"id": "1164-1162-1160-1158", "from": "2379163081", "to": "2379163073", "length_m": 33.01797853346312, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733005.502237871, 5787954.355966018], [733575.2494832352, 5787858.757061567]]}, "properties": {"id": "11640-11638", "from": "2321615733", "to": "317721068", "length_m": 577.7126229313237, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733005.502237871, 5787954.355966018], [731956.0216720946, 5788131.077226033]]}, "properties": {"id": "11641-30421-30423", "from": "2321615733", "to": "2152827783", "length_m": 1064.2560586303953, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770781.7486272377, 5738021.197178157], [770939.0011851138, 5737916.024409447]]}, "properties": {"id": "11643-11645-11647", "from": "60287163", "to": "831202141", "length_m": 190.10227014975317, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770939.0011851138, 5737916.024409447], [770781.7486272377, 5738021.197178157]]}, "properties": {"id": "11648-11646-11644", "from": "831202141", "to": "60287163", "length_m": 190.10227014975317, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770939.0011851138, 5737916.024409447], [770859.2655386633, 5737702.789035203]]}, "properties": {"id": "11649-35188-35190-35192-35194-35196", "from": "831202141", "to": "831201855", "length_m": 273.2530708548948, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771073.8436922983, 5765912.907853914], [771098.2942578373, 5765961.882002459]]}, "properties": {"id": "1165-1166-1167-1168", "from": "2379163081", "to": "2379163064", "length_m": 54.763870945466856, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835191.4372512235, 5807791.743052645], [835187.9381282185, 5807804.784417812]]}, "properties": {"id": "11652", "from": "75158825", "to": "75158826", "length_m": 13.502631888831603, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835187.9381282185, 5807804.784417812], [835188.9749676437, 5807835.598630518]]}, "properties": {"id": "11653-11654", "from": "75158826", "to": "75158828", "length_m": 30.929980804779355, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835305.3141757246, 5807751.868917359], [835381.710634989, 5807292.505771585]]}, "properties": {"id": "11655-11656-11657-11658-11659-11660", "from": "298326708", "to": "2100479247", "length_m": 467.09489113084265, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777461.9205399698, 5773944.090159143], [777178.9037398077, 5772266.248299171]]}, "properties": {"id": "11661-11663-11665-11667", "from": "916620002", "to": "364643554", "length_m": 1703.2472726150454, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777178.9037398077, 5772266.248299171], [777461.9205399698, 5773944.090159143]]}, "properties": {"id": "11668-11666-11664-11662", "from": "364643554", "to": "916620002", "length_m": 1703.2472726150454, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762423.3115469685, 5773340.209967869], [763411.8948055273, 5773164.061414403]]}, "properties": {"id": "11669", "from": "916620067", "to": "209025166", "length_m": 1004.1539568748213, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763411.8948055273, 5773164.061414403], [762423.3115469685, 5773340.209967869]]}, "properties": {"id": "11670", "from": "209025166", "to": "916620067", "length_m": 1004.1539568748213, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777861.8993602337, 5762696.311845656], [777836.281430813, 5762688.156678869]]}, "properties": {"id": "11671", "from": "475575492", "to": "3879204254", "length_m": 26.884661961358194, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777836.281430813, 5762688.156678869], [777861.8993602337, 5762696.311845656]]}, "properties": {"id": "11672", "from": "3879204254", "to": "475575492", "length_m": 26.884661961358194, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777836.281430813, 5762688.156678869], [777784.0317871785, 5762671.669771375]]}, "properties": {"id": "11673-11675", "from": "3879204254", "to": "474069775", "length_m": 54.78910289622432, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777784.0317871785, 5762671.669771375], [777836.281430813, 5762688.156678869]]}, "properties": {"id": "11676-11674", "from": "474069775", "to": "3879204254", "length_m": 54.78910289622432, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777784.0317871785, 5762671.669771375], [777672.5325673553, 5762634.923479097]]}, "properties": {"id": "11677", "from": "474069775", "to": "475483069", "length_m": 117.39832169154347, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777672.5325673553, 5762634.923479097], [777784.0317871785, 5762671.669771375]]}, "properties": {"id": "11678", "from": "475483069", "to": "474069775", "length_m": 117.39832169154347, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777672.5325673553, 5762634.923479097], [777319.1223263047, 5762520.145554707]]}, "properties": {"id": "11679-11681", "from": "475483069", "to": "1851048861", "length_m": 371.58222083258676, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777319.1223263047, 5762520.145554707], [777672.5325673553, 5762634.923479097]]}, "properties": {"id": "11682-11680", "from": "1851048861", "to": "475483069", "length_m": 371.58222083258676, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777319.1223263047, 5762520.145554707], [777144.5577633188, 5762461.283205491]]}, "properties": {"id": "11683", "from": "1851048861", "to": "1851048862", "length_m": 184.2215041523577, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777144.5577633188, 5762461.283205491], [777319.1223263047, 5762520.145554707]]}, "properties": {"id": "11684", "from": "1851048862", "to": "1851048861", "length_m": 184.2215041523577, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777144.5577633188, 5762461.283205491], [776169.6643762055, 5762573.711125087]]}, "properties": {"id": "11685-11687-11689-11691-11693-11695-11697-11699", "from": "1851048862", "to": "475575503", "length_m": 992.9470417574753, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837519.5579098662, 5813613.794493121], [837507.7457653354, 5813613.13358625]]}, "properties": {"id": "1169-1170", "from": "33531726", "to": "33531737", "length_m": 11.843662057696534, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776169.6643762055, 5762573.711125087], [777144.5577633188, 5762461.283205491]]}, "properties": {"id": "11700-11698-11696-11694-11692-11690-11688-11686", "from": "475575503", "to": "1851048862", "length_m": 992.9470417574753, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776169.6643762055, 5762573.711125087], [775264.5504119578, 5761740.032271103]]}, "properties": {"id": "11701-11703-11705-11707-11709-11711-11713-11715-11717-11719", "from": "475575503", "to": "474125970", "length_m": 1242.6653579619551, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771102.3700648957, 5765880.117757097], [771083.5779031635, 5765832.298825209]]}, "properties": {"id": "1171-1198-1199-1200-1201", "from": "2379163074", "to": "2379163063", "length_m": 51.78162222474348, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771098.2942578373, 5765961.882002459], [771104.1563538245, 5765912.538000349]]}, "properties": {"id": "1172-1173-1174-1175", "from": "2379163064", "to": "2379163082", "length_m": 50.55789739963422, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775264.5504119578, 5761740.032271103], [776169.6643762055, 5762573.711125087]]}, "properties": {"id": "11720-11718-11716-11714-11712-11710-11708-11706-11704-11702", "from": "474125970", "to": "475575503", "length_m": 1242.6653579619551, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775264.5504119578, 5761740.032271103], [774557.5695730683, 5761234.005395289]]}, "properties": {"id": "11721-11723-11725-11727", "from": "474125970", "to": "489289818", "length_m": 869.4259553955036, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774557.5695730683, 5761234.005395289], [775264.5504119578, 5761740.032271103]]}, "properties": {"id": "11728-11726-11724-11722", "from": "489289818", "to": "474125970", "length_m": 869.4259553955036, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774557.5695730683, 5761234.005395289], [773373.0333497468, 5760378.56441353]]}, "properties": {"id": "11729-11731", "from": "489289818", "to": "934542719", "length_m": 1461.1523707367285, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773373.0333497468, 5760378.56441353], [774557.5695730683, 5761234.005395289]]}, "properties": {"id": "11732-11730", "from": "934542719", "to": "489289818", "length_m": 1461.1523707367285, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773373.0333497468, 5760378.56441353], [773185.4367538533, 5760243.989473116]]}, "properties": {"id": "11733", "from": "934542719", "to": "934542720", "length_m": 230.87420185757063, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773185.4367538533, 5760243.989473116], [773373.0333497468, 5760378.56441353]]}, "properties": {"id": "11734", "from": "934542720", "to": "934542719", "length_m": 230.87420185757063, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773185.4367538533, 5760243.989473116], [772995.80534043, 5760106.301312452]]}, "properties": {"id": "11735-11737", "from": "934542720", "to": "535081566", "length_m": 234.34618168814507, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772995.80534043, 5760106.301312452], [773185.4367538533, 5760243.989473116]]}, "properties": {"id": "11738-11736", "from": "535081566", "to": "934542720", "length_m": 234.34618168814507, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772995.80534043, 5760106.301312452], [772691.9473283164, 5759894.2880546115]]}, "properties": {"id": "11739-11741", "from": "535081566", "to": "535081559", "length_m": 370.61227849236366, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772691.9473283164, 5759894.2880546115], [772995.80534043, 5760106.301312452]]}, "properties": {"id": "11742-11740", "from": "535081559", "to": "535081566", "length_m": 370.61227849236366, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772691.9473283164, 5759894.2880546115], [772275.271665052, 5759643.005251568]]}, "properties": {"id": "11743-11745", "from": "535081559", "to": "177786909", "length_m": 486.94003196417526, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772275.271665052, 5759643.005251568], [772691.9473283164, 5759894.2880546115]]}, "properties": {"id": "11746-11744", "from": "177786909", "to": "535081559", "length_m": 486.94003196417526, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772275.271665052, 5759643.005251568], [770918.2993372807, 5759564.824651232]]}, "properties": {"id": "11747-11749-11751-11753-11755-11757-11759-11761", "from": "177786909", "to": "1835206964", "length_m": 1365.9061396331133, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837703.2335568394, 5814568.902506981], [837557.7337979971, 5813735.301384375]]}, "properties": {"id": "1176-1178-1180-1182-1184-1186-1188-1190-1192-1194-1196", "from": "356259711", "to": "3480752970", "length_m": 846.2631333202482, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770918.2993372807, 5759564.824651232], [772275.271665052, 5759643.005251568]]}, "properties": {"id": "11762-11760-11758-11756-11754-11752-11750-11748", "from": "1835206964", "to": "177786909", "length_m": 1365.9061396331133, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770918.2993372807, 5759564.824651232], [770502.0766531699, 5759064.700829339]]}, "properties": {"id": "11763-11765-11767", "from": "1835206964", "to": "333978396", "length_m": 654.8933274307112, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770502.0766531699, 5759064.700829339], [770918.2993372807, 5759564.824651232]]}, "properties": {"id": "11768-11766-11764", "from": "333978396", "to": "1835206964", "length_m": 654.8933274307112, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770502.0766531699, 5759064.700829339], [770002.7876797016, 5758894.080523422]]}, "properties": {"id": "11769-11771", "from": "333978396", "to": "535081533", "length_m": 527.9350474057482, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770002.7876797016, 5758894.080523422], [770502.0766531699, 5759064.700829339]]}, "properties": {"id": "11772-11770", "from": "535081533", "to": "333978396", "length_m": 527.9350474057482, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770002.7876797016, 5758894.080523422], [768815.1514621626, 5758508.785098783]]}, "properties": {"id": "11773-11775-11777-11779", "from": "535081533", "to": "849464226", "length_m": 1249.0263531731264, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768815.1514621626, 5758508.785098783], [770002.7876797016, 5758894.080523422]]}, "properties": {"id": "11780-11778-11776-11774", "from": "849464226", "to": "535081533", "length_m": 1249.0263531731264, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768815.1514621626, 5758508.785098783], [768034.5970556086, 5757824.396045349]]}, "properties": {"id": "11781-11783-11785-11787", "from": "849464226", "to": "5934623177", "length_m": 1038.5411297779312, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768034.5970556086, 5757824.396045349], [768815.1514621626, 5758508.785098783]]}, "properties": {"id": "11788-11786-11784-11782", "from": "5934623177", "to": "849464226", "length_m": 1038.5411297779312, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768034.5970556086, 5757824.396045349], [767874.9737372489, 5757761.719530386]]}, "properties": {"id": "11789-11791-11793-11795", "from": "5934623177", "to": "177786920", "length_m": 173.78119864843993, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767874.9737372489, 5757761.719530386], [768034.5970556086, 5757824.396045349]]}, "properties": {"id": "11796-11794-11792-11790", "from": "177786920", "to": "5934623177", "length_m": 173.78119864843993, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767874.9737372489, 5757761.719530386], [767046.5547967863, 5757764.96324123]]}, "properties": {"id": "11797-11799", "from": "177786920", "to": "535081519", "length_m": 828.4326251658204, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767046.5547967863, 5757764.96324123], [767874.9737372489, 5757761.719530386]]}, "properties": {"id": "11800-11798", "from": "535081519", "to": "177786920", "length_m": 828.4326251658204, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767046.5547967863, 5757764.96324123], [766624.8387376126, 5757475.190292808]]}, "properties": {"id": "11801-11803-11805-11807-11809-11811-11813-11815-11817", "from": "535081519", "to": "849463639", "length_m": 594.6989002852127, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766624.8387376126, 5757475.190292808], [767046.5547967863, 5757764.96324123]]}, "properties": {"id": "11818-11816-11814-11812-11810-11808-11806-11804-11802", "from": "849463639", "to": "535081519", "length_m": 594.6989002852127, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766624.8387376126, 5757475.190292808], [766611.1792542825, 5756904.775159659]]}, "properties": {"id": "11819", "from": "849463639", "to": "333978384", "length_m": 570.5786586243017, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766611.1792542825, 5756904.775159659], [766624.8387376126, 5757475.190292808]]}, "properties": {"id": "11820", "from": "333978384", "to": "849463639", "length_m": 570.5786586243017, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766611.1792542825, 5756904.775159659], [766068.5107815699, 5756342.327129366]]}, "properties": {"id": "11821-11823-11825-11827-11829-11831-11833-11835-11837-11839", "from": "333978384", "to": "371398944", "length_m": 851.2618988518421, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766068.5107815699, 5756342.327129366], [766611.1792542825, 5756904.775159659]]}, "properties": {"id": "11840-11838-11836-11834-11832-11830-11828-11826-11824-11822", "from": "371398944", "to": "333978384", "length_m": 851.2618988518421, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766068.5107815699, 5756342.327129366], [765436.367392837, 5756236.958454742]]}, "properties": {"id": "11841-11843-11845-11847-11849", "from": "371398944", "to": "849463730", "length_m": 645.3271589412861, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765436.367392837, 5756236.958454742], [766068.5107815699, 5756342.327129366]]}, "properties": {"id": "11850-11848-11846-11844-11842", "from": "849463730", "to": "371398944", "length_m": 645.3271589412861, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765436.367392837, 5756236.958454742], [764988.242079944, 5756624.349919003]]}, "properties": {"id": "11851-11853-11855-11857-11859-11861-11863-11865-11867-11869-11871", "from": "849463730", "to": "849463727", "length_m": 622.0205845766242, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764988.242079944, 5756624.349919003], [765436.367392837, 5756236.958454742]]}, "properties": {"id": "11872-11870-11868-11866-11864-11862-11860-11858-11856-11854-11852", "from": "849463727", "to": "849463730", "length_m": 622.0205845766242, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764988.242079944, 5756624.349919003], [764640.0193894318, 5757265.589121548]]}, "properties": {"id": "11873-11875-11877-11879-11881-11883-11885-11887-11889-11891-11893-11895-11897", "from": "849463727", "to": "849463573", "length_m": 805.9679723310841, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764640.0193894318, 5757265.589121548], [764988.242079944, 5756624.349919003]]}, "properties": {"id": "11898-11896-11894-11892-11890-11888-11886-11884-11882-11880-11878-11876-11874", "from": "849463573", "to": "849463727", "length_m": 805.9679723310841, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764640.0193894318, 5757265.589121548], [763761.4522884302, 5757104.9873714065]]}, "properties": {"id": "11899-11901-11903-11905", "from": "849463573", "to": "535080913", "length_m": 893.5979893022013, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763761.4522884302, 5757104.9873714065], [764640.0193894318, 5757265.589121548]]}, "properties": {"id": "11906-11904-11902-11900", "from": "535080913", "to": "849463573", "length_m": 893.5979893022013, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763761.4522884302, 5757104.9873714065], [762878.5046976395, 5756995.646958774]]}, "properties": {"id": "11907-11909-11911-11913-11915-11917", "from": "535080913", "to": "177787407", "length_m": 897.0782055481056, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762878.5046976395, 5756995.646958774], [763761.4522884302, 5757104.9873714065]]}, "properties": {"id": "11918-11916-11914-11912-11910-11908", "from": "177787407", "to": "535080913", "length_m": 897.0782055481056, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762878.5046976395, 5756995.646958774], [762231.6873823864, 5757250.035712574]]}, "properties": {"id": "11919-11921-11923-11925-11927-11929", "from": "177787407", "to": "849463920", "length_m": 696.7213885288409, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762231.6873823864, 5757250.035712574], [762878.5046976395, 5756995.646958774]]}, "properties": {"id": "11930-11928-11926-11924-11922-11920", "from": "849463920", "to": "177787407", "length_m": 696.7213885288409, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762231.6873823864, 5757250.035712574], [761235.7580013113, 5756982.642258016]]}, "properties": {"id": "11931-11933-11935-11937-11939-11941-11943-11945-11947", "from": "849463920", "to": "849463523", "length_m": 1038.132583263407, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761235.7580013113, 5756982.642258016], [762231.6873823864, 5757250.035712574]]}, "properties": {"id": "11948-11946-11944-11942-11940-11938-11936-11934-11932", "from": "849463523", "to": "849463920", "length_m": 1038.132583263407, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761235.7580013113, 5756982.642258016], [760657.4903283372, 5756748.507106248]]}, "properties": {"id": "11949", "from": "849463523", "to": "177787414", "length_m": 623.869192297432, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760657.4903283372, 5756748.507106248], [761235.7580013113, 5756982.642258016]]}, "properties": {"id": "11950", "from": "177787414", "to": "849463523", "length_m": 623.869192297432, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760657.4903283372, 5756748.507106248], [759037.1694120292, 5756096.00772621]]}, "properties": {"id": "11951", "from": "177787414", "to": "177788318", "length_m": 1746.7670992260466, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759037.1694120292, 5756096.00772621], [760657.4903283372, 5756748.507106248]]}, "properties": {"id": "11952", "from": "177788318", "to": "177787414", "length_m": 1746.7670992260466, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759037.1694120292, 5756096.00772621], [757263.3176024422, 5755230.389225128]]}, "properties": {"id": "11953", "from": "177788318", "to": "849463174", "length_m": 1973.7896581168316, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757263.3176024422, 5755230.389225128], [759037.1694120292, 5756096.00772621]]}, "properties": {"id": "11954", "from": "849463174", "to": "177788318", "length_m": 1973.7896581168316, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757263.3176024422, 5755230.389225128], [756551.2541751927, 5754880.450814186]]}, "properties": {"id": "11955-11957", "from": "849463174", "to": "1012123616", "length_m": 793.4048576553371, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756551.2541751927, 5754880.450814186], [757263.3176024422, 5755230.389225128]]}, "properties": {"id": "11958-11956", "from": "1012123616", "to": "849463174", "length_m": 793.4048576553371, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756551.2541751927, 5754880.450814186], [755864.4875263066, 5754543.074059171]]}, "properties": {"id": "11959-11961-11963", "from": "1012123616", "to": "849463760", "length_m": 765.1613658203664, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755864.4875263066, 5754543.074059171], [756551.2541751927, 5754880.450814186]]}, "properties": {"id": "11964-11962-11960", "from": "849463760", "to": "1012123616", "length_m": 765.1613658203664, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755864.4875263066, 5754543.074059171], [754940.7664048502, 5754055.155984361]]}, "properties": {"id": "11965", "from": "849463760", "to": "177788321", "length_m": 1044.6649000207108, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754940.7664048502, 5754055.155984361], [755864.4875263066, 5754543.074059171]]}, "properties": {"id": "11966", "from": "177788321", "to": "849463760", "length_m": 1044.6649000207108, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754940.7664048502, 5754055.155984361], [754382.2950487888, 5753815.901298133]]}, "properties": {"id": "11967", "from": "177788321", "to": "177788322", "length_m": 607.563213929381, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754382.2950487888, 5753815.901298133], [754940.7664048502, 5754055.155984361]]}, "properties": {"id": "11968", "from": "177788322", "to": "177788321", "length_m": 607.563213929381, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754382.2950487888, 5753815.901298133], [753763.9877717652, 5753786.907693256]]}, "properties": {"id": "11969-11971", "from": "177788322", "to": "177788323", "length_m": 623.3567488082342, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837557.7337979971, 5813735.301384375], [837703.2335568394, 5814568.902506981]]}, "properties": {"id": "1197-1195-1193-1191-1189-1187-1185-1183-1181-1179-1177", "from": "3480752970", "to": "356259711", "length_m": 846.2631333202482, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753763.9877717652, 5753786.907693256], [754382.2950487888, 5753815.901298133]]}, "properties": {"id": "11972-11970", "from": "177788323", "to": "177788322", "length_m": 623.3567488082342, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835194.4008013313, 5807902.85015304], [835230.8084813419, 5808350.401875716]]}, "properties": {"id": "11973-11974", "from": "75156941", "to": "75156943", "length_m": 449.0918985938051, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785169.2491370954, 5751563.59618689], [785209.242916577, 5751583.131561742]]}, "properties": {"id": "11975-11976-11977", "from": "324204843", "to": "509915186", "length_m": 45.12198789907483, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785209.242916577, 5751583.131561742], [785418.2585006749, 5751639.286186104]]}, "properties": {"id": "11978-11979-11980-11981-11982-11983", "from": "509915186", "to": "2085414782", "length_m": 217.7150527678835, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785425.4989994026, 5753348.995793971], [785389.4632569688, 5753025.022046961]]}, "properties": {"id": "11984-11986-11988", "from": "148800334", "to": "148800346", "length_m": 326.02532091476974, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785389.4632569688, 5753025.022046961], [785425.4989994026, 5753348.995793971]]}, "properties": {"id": "11989-11987-11985", "from": "148800346", "to": "148800334", "length_m": 326.02532091476974, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785389.4632569688, 5753025.022046961], [785395.1992481574, 5752811.476544057]]}, "properties": {"id": "11990-11992-11994-11996-11998-12000", "from": "148800346", "to": "513379642", "length_m": 214.00091504987745, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785395.1992481574, 5752811.476544057], [785389.4632569688, 5753025.022046961]]}, "properties": {"id": "12001-11999-11997-11995-11993-11991", "from": "513379642", "to": "148800346", "length_m": 214.00091504987745, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785395.1992481574, 5752811.476544057], [785251.4237587112, 5752593.472175976]]}, "properties": {"id": "12002-12004-12006-12008-12010-12012-2728-2955-2957-2959-2961-2963-2965", "from": "513379642", "to": "509914950", "length_m": 273.6704943857542, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837367.1709271745, 5818159.397100767], [837363.413364894, 5818138.590557268]]}, "properties": {"id": "12014", "from": "30928562", "to": "1502841898", "length_m": 21.143120065955667, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794205.2736740815, 5777905.392251887], [794270.3498689033, 5778278.863689505]]}, "properties": {"id": "12015-12016-12017-12018-55392", "from": "252359226", "to": "621549608", "length_m": 379.14001545155355, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771083.5779031635, 5765832.298825209], [771069.9665784709, 5765880.879819605]]}, "properties": {"id": "1202-1203-1204", "from": "2379163063", "to": "2379163073", "length_m": 50.69066571357178, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837470.791563225, 5818720.695700446], [837410.7633068415, 5818400.285754586]]}, "properties": {"id": "12042", "from": "303682984", "to": "30928564", "length_m": 325.9845468225717, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837410.7633068415, 5818400.285754586], [837367.1709271745, 5818159.397100767]]}, "properties": {"id": "12043-12044", "from": "30928564", "to": "30928562", "length_m": 244.80140267835228, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785141.2314680826, 5751551.027929569], [785138.2598249624, 5751642.756038796]]}, "properties": {"id": "12045-12046", "from": "324204863", "to": "846620186", "length_m": 92.12766521969509, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838442.2045730181, 5811785.0660664495], [838258.8194801569, 5811817.262471665]]}, "properties": {"id": "12047-12048", "from": "289845521", "to": "289870593", "length_m": 186.1899586009063, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837547.0194751972, 5818722.578589456], [837479.2182196034, 5818767.297477125]]}, "properties": {"id": "12049-12050", "from": "303682972", "to": "1505977492", "length_m": 81.22071156800212, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838476.3091131498, 5804681.334656247], [838554.5267566089, 5805124.443805709]]}, "properties": {"id": "1205-22333-4752-4753-22334-22335-22336", "from": "3189541012", "to": "615241058", "length_m": 449.9632085247167, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785138.2598249624, 5751642.756038796], [785162.0797219484, 5751566.061375665]]}, "properties": {"id": "12051-12052", "from": "846620186", "to": "37685294", "length_m": 80.53006247422091, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837351.4366055543, 5818162.331751705], [837394.2940817024, 5818402.972531017]]}, "properties": {"id": "12066", "from": "1502841906", "to": "1502841890", "length_m": 244.42738763336394, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837394.2940817024, 5818402.972531017], [837465.4708046953, 5818776.28887015]]}, "properties": {"id": "12067-12068-12069", "from": "1502841890", "to": "30928565", "length_m": 380.04959455423995, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763364.6574370936, 5761643.719523931], [763438.9455643402, 5762060.521038535]]}, "properties": {"id": "1207-1209-1211-1213", "from": "614531167", "to": "614531219", "length_m": 423.6878736152069, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837465.4708046953, 5818776.28887015], [837468.7907390723, 5818790.497182984]]}, "properties": {"id": "12070", "from": "30928565", "to": "30928566", "length_m": 14.591028660800914, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838258.8194801569, 5811817.262471665], [837636.3370698491, 5811932.719000312]]}, "properties": {"id": "12071-12072-12073-12074-12075-12076-12077-12078-12079-12080-12081", "from": "289870593", "to": "268181355", "length_m": 633.1276378824275, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836961.9521470134, 5819325.460453972], [837083.2922278583, 5819172.478140971]]}, "properties": {"id": "12082", "from": "1510910441", "to": "585216289", "length_m": 195.26137216475655, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837083.2922278583, 5819172.478140971], [837202.0275872534, 5819026.116080623]]}, "properties": {"id": "12083", "from": "585216289", "to": "585216210", "length_m": 188.46734040964847, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837202.0275872534, 5819026.116080623], [837208.5190323468, 5819018.745210027]]}, "properties": {"id": "12084", "from": "585216210", "to": "585216209", "length_m": 9.821842675103587, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837208.5190323468, 5819018.745210027], [837354.6006205631, 5818867.7035848275]]}, "properties": {"id": "12085-12086-12087-12088-12089-12090", "from": "585216209", "to": "303682977", "length_m": 210.63683699499225, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837354.6006205631, 5818867.7035848275], [837468.7907390723, 5818790.497182984]]}, "properties": {"id": "12091-12092-12093", "from": "303682977", "to": "30928566", "length_m": 137.87317952753017, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785163.6754454842, 5751529.251249648], [785106.2933497687, 5751389.511202669]]}, "properties": {"id": "12094-12095-12096-12097-12098-12099-12100-12101-12102-12103", "from": "324204855", "to": "509915055", "length_m": 155.27068201040504, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837479.2182196034, 5818767.297477125], [837465.4708046953, 5818776.28887015]]}, "properties": {"id": "12104", "from": "1505977492", "to": "30928565", "length_m": 16.42670282048775, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837465.4708046953, 5818776.28887015], [837196.6151960685, 5819016.674600739]]}, "properties": {"id": "12105-12106-12107-12108-12109-12110-12111-12112-12113-12114-12115-12116-12117", "from": "30928565", "to": "1510910501", "length_m": 362.3827966843124, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837196.6151960685, 5819016.674600739], [837185.6428590356, 5819029.388173642]]}, "properties": {"id": "12118", "from": "1510910501", "to": "1505977542", "length_m": 16.793663000889886, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785209.242916577, 5751583.131561742], [785213.3467672473, 5751577.396121989]]}, "properties": {"id": "12119", "from": "509915186", "to": "846619476", "length_m": 7.0524364334315335, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785213.3467672473, 5751577.396121989], [785209.242916577, 5751583.131561742]]}, "properties": {"id": "12120", "from": "846619476", "to": "509915186", "length_m": 7.0524364334315335, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792929.599178941, 5759465.496066408], [794524.1598704611, 5759167.995600637]]}, "properties": {"id": "12122-37938", "from": "331120875", "to": "331120847", "length_m": 1622.0759281875069, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792929.599178941, 5759465.496066408], [791330.7860614425, 5759750.232831925]]}, "properties": {"id": "12123", "from": "331120875", "to": "469074552", "length_m": 1623.9699501153957, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791330.7860614425, 5759750.232831925], [792929.599178941, 5759465.496066408]]}, "properties": {"id": "12124", "from": "469074552", "to": "331120875", "length_m": 1623.9699501153957, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836956.9326793435, 5819321.306757279], [836854.908430949, 5819449.6575156255]]}, "properties": {"id": "12125", "from": "1510910487", "to": "1510910459", "length_m": 163.95994796456748, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836854.908430949, 5819449.6575156255], [836726.2295275416, 5819603.335484241]]}, "properties": {"id": "12126-12127-12128-12129-12130-12131-12132-12133", "from": "1510910459", "to": "1834050708", "length_m": 201.30576634424506, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837468.7907390723, 5818790.497182984], [837481.9415189433, 5818781.81932016]]}, "properties": {"id": "12134", "from": "30928566", "to": "30928568", "length_m": 15.755897776995612, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837481.9415189433, 5818781.81932016], [837511.4993843158, 5818761.583674584]]}, "properties": {"id": "12135-12136", "from": "30928568", "to": "1511218216", "length_m": 35.826222215732855, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837511.4993843158, 5818761.583674584], [837598.1397840637, 5818694.387606069]]}, "properties": {"id": "12137-12138", "from": "1511218216", "to": "169812102", "length_m": 109.68936436411076, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785106.2933497687, 5751389.511202669], [784790.8334618879, 5750440.619582346]]}, "properties": {"id": "12139-12141-12143-12145-12147-12149-12151-12153-12155-12157-12159-12161-12163-12165-12167-12169-12171-12173", "from": "509915055", "to": "310176853", "length_m": 1040.0472016987178, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763438.9455643402, 5762060.521038535], [763364.6574370936, 5761643.719523931]]}, "properties": {"id": "1214-1212-1210-1208", "from": "614531219", "to": "614531167", "length_m": 423.6878736152069, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763438.9455643402, 5762060.521038535], [763543.4679957156, 5762659.7144642435]]}, "properties": {"id": "1215", "from": "614531219", "to": "614531205", "length_m": 608.2414815167191, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763543.4679957156, 5762659.7144642435], [763438.9455643402, 5762060.521038535]]}, "properties": {"id": "1216", "from": "614531205", "to": "614531219", "length_m": 608.2414815167191, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763543.4679957156, 5762659.7144642435], [763760.8685363785, 5763860.760276893]]}, "properties": {"id": "1217-1219", "from": "614531205", "to": "614531192", "length_m": 1220.5630008279168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784790.8334618879, 5750440.619582346], [785106.2933497687, 5751389.511202669]]}, "properties": {"id": "12174-12172-12170-12168-12166-12164-12162-12160-12158-12156-12154-12152-12150-12148-12146-12144-12142-12140", "from": "310176853", "to": "509915055", "length_m": 1040.0472016987178, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784790.8334618879, 5750440.619582346], [784653.8455355375, 5750363.804296993]]}, "properties": {"id": "12175-12177-12179", "from": "310176853", "to": "37685198", "length_m": 157.19569270062678, "freespeed_mps": 22.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784653.8455355375, 5750363.804296993], [784790.8334618879, 5750440.619582346]]}, "properties": {"id": "12180-12178-12176", "from": "37685198", "to": "310176853", "length_m": 157.19569270062678, "freespeed_mps": 22.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784653.8455355375, 5750363.804296993], [784033.6620636513, 5749950.819482544]]}, "properties": {"id": "12181-12183-12185-12187-12189-12191", "from": "37685198", "to": "37685162", "length_m": 761.2234332998734, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784033.6620636513, 5749950.819482544], [784653.8455355375, 5750363.804296993]]}, "properties": {"id": "12192-12190-12188-12186-12184-12182", "from": "37685162", "to": "37685198", "length_m": 761.2234332998734, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784033.6620636513, 5749950.819482544], [783755.247249312, 5749368.6174184065]]}, "properties": {"id": "12193", "from": "37685162", "to": "4544316640", "length_m": 645.3480076311108, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783755.247249312, 5749368.6174184065], [784033.6620636513, 5749950.819482544]]}, "properties": {"id": "12194", "from": "4544316640", "to": "37685162", "length_m": 645.3480076311108, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783755.247249312, 5749368.6174184065], [783551.1938565096, 5748906.299155162]]}, "properties": {"id": "12195-12197-12199-12201", "from": "4544316640", "to": "37685144", "length_m": 506.09585472968, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763760.8685363785, 5763860.760276893], [763543.4679957156, 5762659.7144642435]]}, "properties": {"id": "1220-1218", "from": "614531192", "to": "614531205", "length_m": 1220.5630008279168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783551.1938565096, 5748906.299155162], [783755.247249312, 5749368.6174184065]]}, "properties": {"id": "12202-12200-12198-12196", "from": "37685144", "to": "4544316640", "length_m": 506.09585472968, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783551.1938565096, 5748906.299155162], [783437.629273269, 5748322.732833721]]}, "properties": {"id": "12203-12205-12207", "from": "37685144", "to": "310177055", "length_m": 594.513722256244, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783437.629273269, 5748322.732833721], [783551.1938565096, 5748906.299155162]]}, "properties": {"id": "12208-12206-12204", "from": "310177055", "to": "37685144", "length_m": 594.513722256244, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783437.629273269, 5748322.732833721], [783330.7658290137, 5747883.071184028]]}, "properties": {"id": "12209", "from": "310177055", "to": "37685128", "length_m": 296.8539376429834, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771083.5779031635, 5765832.298825209], [770778.0409588878, 5764217.152405518]]}, "properties": {"id": "1221", "from": "2379163063", "to": "1856823181", "length_m": 1643.7915862989666, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783330.7658290137, 5747883.071184028], [783437.629273269, 5748322.732833721]]}, "properties": {"id": "12210", "from": "37685128", "to": "310177055", "length_m": 296.8539376429834, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783330.7658290137, 5747883.071184028], [782545.3306179636, 5747835.754034548]]}, "properties": {"id": "12211-12213-12215-12217-12219-12221-12223-12225-12227-12229-12231", "from": "37685128", "to": "513380037", "length_m": 930.7550649952543, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770778.0409588878, 5764217.152405518], [771083.5779031635, 5765832.298825209]]}, "properties": {"id": "1222", "from": "1856823181", "to": "2379163063", "length_m": 1643.7915862989666, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770778.0409588878, 5764217.152405518], [770665.5638990011, 5763615.649708078]]}, "properties": {"id": "1223-1225-1227-1229", "from": "1856823181", "to": "559367554", "length_m": 611.9877001280222, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782545.3306179636, 5747835.754034548], [783330.7658290137, 5747883.071184028]]}, "properties": {"id": "12232-12230-12228-12226-12224-12222-12220-12218-12216-12214-12212", "from": "513380037", "to": "37685128", "length_m": 930.7550649952543, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782545.3306179636, 5747835.754034548], [781981.4935504275, 5747883.010809293]]}, "properties": {"id": "12235-12237-12239-12241-12243-12245-12247", "from": "513380037", "to": "37685036", "length_m": 585.2339516562382, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781981.4935504275, 5747883.010809293], [782545.3306179636, 5747835.754034548]]}, "properties": {"id": "12248-12246-12244-12242-12240-12238-12236", "from": "37685036", "to": "513380037", "length_m": 585.2339516562382, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781981.4935504275, 5747883.010809293], [780879.930798558, 5747438.174867957]]}, "properties": {"id": "12249-12251-12253", "from": "37685036", "to": "5743445304", "length_m": 1187.9911701397991, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780879.930798558, 5747438.174867957], [781981.4935504275, 5747883.010809293]]}, "properties": {"id": "12254-12252-12250", "from": "5743445304", "to": "37685036", "length_m": 1187.9911701397991, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780879.930798558, 5747438.174867957], [780868.3160356884, 5747433.748880553]]}, "properties": {"id": "12255", "from": "5743445304", "to": "292878979", "length_m": 8.562510913726156, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780868.3160356884, 5747433.748880553], [780879.930798558, 5747438.174867957]]}, "properties": {"id": "12256", "from": "292878979", "to": "5743445304", "length_m": 8.562510913726156, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780868.3160356884, 5747433.748880553], [780201.581258223, 5747160.24679965]]}, "properties": {"id": "12257-12259-12261-12263-12265", "from": "292878979", "to": "37685021", "length_m": 720.7350343119433, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780201.581258223, 5747160.24679965], [780868.3160356884, 5747433.748880553]]}, "properties": {"id": "12266-12264-12262-12260-12258", "from": "37685021", "to": "292878979", "length_m": 720.7350343119433, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758683.6473448433, 5773735.513058982], [756740.5240817128, 5774360.819164311]]}, "properties": {"id": "12273-12275-12277-12279", "from": "789296019", "to": "5784973446", "length_m": 2122.3946076896186, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756740.5240817128, 5774360.819164311], [758683.6473448433, 5773735.513058982]]}, "properties": {"id": "12280-12278-12276-12274", "from": "5784973446", "to": "789296019", "length_m": 2122.3946076896186, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756740.5240817128, 5774360.819164311], [755820.7316124258, 5774848.645535665]]}, "properties": {"id": "12281-12283", "from": "5784973446", "to": "789296536", "length_m": 1041.6261799868316, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755820.7316124258, 5774848.645535665], [756740.5240817128, 5774360.819164311]]}, "properties": {"id": "12284-12282", "from": "789296536", "to": "5784973446", "length_m": 1041.6261799868316, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755820.7316124258, 5774848.645535665], [755370.4996339359, 5775377.530403538]]}, "properties": {"id": "12285", "from": "789296536", "to": "789296537", "length_m": 694.5703983669745, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755370.4996339359, 5775377.530403538], [755820.7316124258, 5774848.645535665]]}, "properties": {"id": "12286", "from": "789296537", "to": "789296536", "length_m": 694.5703983669745, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838639.7633297362, 5805532.557566715], [838619.0024609313, 5805419.033449526]]}, "properties": {"id": "12287", "from": "319847144", "to": "608107551", "length_m": 115.40684048639774, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780977.060485403, 5771411.934360248], [781752.2367389711, 5771499.747318091]]}, "properties": {"id": "12295-12297-12299-55031-55033-55035-55037-55039-55041", "from": "948960415", "to": "948960402", "length_m": 783.9257917898453, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770665.5638990011, 5763615.649708078], [770778.0409588878, 5764217.152405518]]}, "properties": {"id": "1230-1228-1226-1224", "from": "559367554", "to": "1856823181", "length_m": 611.9877001280222, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797217.2579825046, 5759556.495348353], [797051.0994629877, 5758663.609226915]]}, "properties": {"id": "12302-13596-13594", "from": "916567954", "to": "916567900", "length_m": 908.2496965334633, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750833.1974461966, 5835036.102077282], [750836.9374729095, 5834916.476346573]]}, "properties": {"id": "12303-12304-12305", "from": "363996457", "to": "363996317", "length_m": 120.16374436305766, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733703.7081307115, 5827298.523860816], [734054.9431468036, 5827566.422785373]]}, "properties": {"id": "12306-12308-12310", "from": "2315437917", "to": "214442350", "length_m": 441.8856871039324, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770665.5638990011, 5763615.649708078], [770096.6976743138, 5762074.96113075]]}, "properties": {"id": "1231-1233", "from": "559367554", "to": "888208909", "length_m": 1642.397743124574, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734054.9431468036, 5827566.422785373], [733703.7081307115, 5827298.523860816]]}, "properties": {"id": "12311-12309-12307", "from": "214442350", "to": "2315437917", "length_m": 441.8856871039324, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749083.403949877, 5836133.356924178], [747885.8449196324, 5835936.3799949]]}, "properties": {"id": "12312-12314-12316-12318-12320-12322-12324-12326-12328-12330-12332-12334-12336-12338", "from": "655405112", "to": "363996581", "length_m": 1213.6902312253064, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747885.8449196324, 5835936.3799949], [749083.403949877, 5836133.356924178]]}, "properties": {"id": "12339-12337-12335-12333-12331-12329-12327-12325-12323-12321-12319-12317-12315-12313", "from": "363996581", "to": "655405112", "length_m": 1213.6902312253064, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770096.6976743138, 5762074.96113075], [770665.5638990011, 5763615.649708078]]}, "properties": {"id": "1234-1232", "from": "888208909", "to": "559367554", "length_m": 1642.397743124574, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736207.2965295642, 5829678.319481959], [736570.0149203071, 5829755.560368266]]}, "properties": {"id": "12340-12342-12344-12346-12348-12350-12352-12354", "from": "214442660", "to": "2315437913", "length_m": 373.523589779815, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770096.6976743138, 5762074.96113075], [769540.25556486, 5760534.010715193]]}, "properties": {"id": "1235-1237-1239-1241", "from": "888208909", "to": "614531246", "length_m": 1639.2620511129883, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736570.0149203071, 5829755.560368266], [736207.2965295642, 5829678.319481959]]}, "properties": {"id": "12355-12353-12351-12349-12347-12345-12343-12341", "from": "2315437913", "to": "214442660", "length_m": 373.523589779815, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750802.647891318, 5834686.554145974], [750814.1073099952, 5834893.38510967]]}, "properties": {"id": "12356-12357-12358-12359-12360-12361-12362-12363", "from": "363994886", "to": "363994892", "length_m": 208.03048675583696, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726470.7343532529, 5826332.7066647075], [727191.1139090688, 5826432.000568859]]}, "properties": {"id": "12366-12368-12370-12372-12374-12376-12378-12380-12382-12384-12386-12388-12390-12392", "from": "2315437914", "to": "2315437918", "length_m": 733.6899982956982, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727191.1139090688, 5826432.000568859], [726470.7343532529, 5826332.7066647075]]}, "properties": {"id": "12393-12391-12389-12387-12385-12383-12381-12379-12377-12375-12373-12371-12369-12367", "from": "2315437918", "to": "2315437914", "length_m": 733.6899982956982, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750823.8810063575, 5835035.784328992], [750838.9955275656, 5836222.941019166]]}, "properties": {"id": "12394-12395-12396-12397-12398-12399-12400-12401", "from": "363994897", "to": "3205831997", "length_m": 1187.3066911901803, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750838.9955275656, 5836222.941019166], [750836.15497348, 5836404.50024542]]}, "properties": {"id": "12402-12403-12404-12405-12406-12407-12408-12409", "from": "3205831997", "to": "363993773", "length_m": 182.00707823130287, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734054.9431468036, 5827566.422785373], [734333.2488094836, 5828014.29247183]]}, "properties": {"id": "12410-12412-12414-12416-12418-12420-12422-29137-29139-29141", "from": "214442350", "to": "2315437919", "length_m": 529.773503817328, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769540.25556486, 5760534.010715193], [770096.6976743138, 5762074.96113075]]}, "properties": {"id": "1242-1240-1238-1236", "from": "614531246", "to": "888208909", "length_m": 1639.2620511129883, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750815.9719305771, 5834684.973231057], [750667.9267714021, 5833779.25406776]]}, "properties": {"id": "12424-12425-12426-12427-12428-12429-12430-12431-12432-12433", "from": "364001235", "to": "363994873", "length_m": 919.850172887071, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769540.25556486, 5760534.010715193], [769769.452788624, 5759676.934805469]]}, "properties": {"id": "1243-1245-1247", "from": "614531246", "to": "614507406", "length_m": 888.5827364212801, "freespeed_mps": 27.77777777777778, "capacity_vph": 1800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750557.7489306123, 5833428.016855061], [750163.3730031403, 5832745.88540069]]}, "properties": {"id": "12439-12437-12435-57528-57526-51427-51425-57502-57500-57498-57496-57494", "from": "2744598325", "to": "364001256", "length_m": 790.9410060081142, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737698.6115414539, 5831178.41433952], [737885.5528549846, 5831425.255343078]]}, "properties": {"id": "12440", "from": "2315437912", "to": "2315437915", "length_m": 309.64097847616847, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737885.5528549846, 5831425.255343078], [737698.6115414539, 5831178.41433952]]}, "properties": {"id": "12441", "from": "2315437915", "to": "2315437912", "length_m": 309.64097847616847, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734333.2488094836, 5828014.29247183], [734592.8627293153, 5828499.436868425]]}, "properties": {"id": "12442-12444-12446", "from": "2315437919", "to": "2315437920", "length_m": 550.2404563030116, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734592.8627293153, 5828499.436868425], [734333.2488094836, 5828014.29247183]]}, "properties": {"id": "12447-12445-12443", "from": "2315437920", "to": "2315437919", "length_m": 550.2404563030116, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734592.8627293153, 5828499.436868425], [735069.5222711699, 5829100.712239828]]}, "properties": {"id": "12448-12450-12452-12454-12456-12458", "from": "2315437920", "to": "3545692728", "length_m": 768.5909337967117, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735069.5222711699, 5829100.712239828], [734592.8627293153, 5828499.436868425]]}, "properties": {"id": "12459-12457-12455-12453-12451-12449", "from": "3545692728", "to": "2315437920", "length_m": 768.5909337967117, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735069.5222711699, 5829100.712239828], [735607.990307674, 5829446.750367779]]}, "properties": {"id": "12460-12462-12464-12466-12468-12470-12472", "from": "3545692728", "to": "3545693211", "length_m": 642.7869664402529, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735607.990307674, 5829446.750367779], [735069.5222711699, 5829100.712239828]]}, "properties": {"id": "12473-12471-12469-12467-12465-12463-12461", "from": "3545693211", "to": "3545692728", "length_m": 642.7869664402529, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735607.990307674, 5829446.750367779], [736207.2965295642, 5829678.319481959]]}, "properties": {"id": "12474-12476-12478-12480", "from": "3545693211", "to": "214442660", "length_m": 644.2582476525681, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769769.452788624, 5759676.934805469], [769540.25556486, 5760534.010715193]]}, "properties": {"id": "1248-1246-1244", "from": "614507406", "to": "614531246", "length_m": 888.5827364212801, "freespeed_mps": 27.77777777777778, "capacity_vph": 1800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736207.2965295642, 5829678.319481959], [735607.990307674, 5829446.750367779]]}, "properties": {"id": "12481-12479-12477-12475", "from": "214442660", "to": "3545693211", "length_m": 644.2582476525681, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764995.341313923, 5776251.878748423], [764767.5865938332, 5776928.82192901]]}, "properties": {"id": "12482-12484-12486", "from": "789295068", "to": "789295071", "length_m": 974.5906346123527, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764767.5865938332, 5776928.82192901], [764995.341313923, 5776251.878748423]]}, "properties": {"id": "12487-12485-12483", "from": "789295071", "to": "789295068", "length_m": 974.5906346123527, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764767.5865938332, 5776928.82192901], [764872.1577067417, 5777512.7048657155]]}, "properties": {"id": "12488-12490", "from": "789295071", "to": "789295154", "length_m": 593.1731629103662, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769769.452788624, 5759676.934805469], [770002.7876797016, 5758894.080523422]]}, "properties": {"id": "1249", "from": "614507406", "to": "535081533", "length_m": 816.8879967650141, "freespeed_mps": 27.77777777777778, "capacity_vph": 1800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764872.1577067417, 5777512.7048657155], [764767.5865938332, 5776928.82192901]]}, "properties": {"id": "12491-12489", "from": "789295154", "to": "789295071", "length_m": 593.1731629103662, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764872.1577067417, 5777512.7048657155], [765011.0173959611, 5778274.810968877]]}, "properties": {"id": "12492", "from": "789295154", "to": "789295153", "length_m": 774.6532936493352, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765011.0173959611, 5778274.810968877], [764872.1577067417, 5777512.7048657155]]}, "properties": {"id": "12493", "from": "789295153", "to": "789295154", "length_m": 774.6532936493352, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765011.0173959611, 5778274.810968877], [765157.7454760022, 5779074.125347875]]}, "properties": {"id": "12494-12496-12498", "from": "789295153", "to": "1856694813", "length_m": 812.6895008216411, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765157.7454760022, 5779074.125347875], [765011.0173959611, 5778274.810968877]]}, "properties": {"id": "12499-12497-12495", "from": "1856694813", "to": "789295153", "length_m": 812.6895008216411, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770002.7876797016, 5758894.080523422], [769769.452788624, 5759676.934805469]]}, "properties": {"id": "1250", "from": "535081533", "to": "614507406", "length_m": 816.8879967650141, "freespeed_mps": 27.77777777777778, "capacity_vph": 1800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838262.156217112, 5811837.663566866], [838445.8272574221, 5811804.25442709]]}, "properties": {"id": "12500", "from": "289870592", "to": "289845474", "length_m": 186.68481832049054, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837343.7933730388, 5812612.0362281045], [837454.3580650999, 5813190.395732724]]}, "properties": {"id": "12505-12507-12509-12511-12513-12515-12517-12519-12521", "from": "33531752", "to": "3088561078", "length_m": 588.8356170273003, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837454.3580650999, 5813190.395732724], [837343.7933730388, 5812612.0362281045]]}, "properties": {"id": "12522-12520-12518-12516-12514-12512-12510-12508-12506", "from": "3088561078", "to": "33531752", "length_m": 588.8356170273003, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833360.0101000122, 5822727.4651254965], [832671.0260184288, 5823315.502859787]]}, "properties": {"id": "12523-12524-12525-12526", "from": "426766418", "to": "303685060", "length_m": 905.8624534376139, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832671.0260184288, 5823315.502859787], [832427.4023569706, 5823536.571763508]]}, "properties": {"id": "12527-12528-12529-12530-12531", "from": "303685060", "to": "303685039", "length_m": 328.9740883347575, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832427.4023569706, 5823536.571763508], [831386.4375060059, 5824373.205994418]]}, "properties": {"id": "12532-12533-12534-12535-12536-12537-12538-12539-12540-12541-12542-12543-12544-12545-12546", "from": "303685039", "to": "2791828162", "length_m": 1339.3386823656806, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780109.5228066412, 5747097.024914645], [780126.0656280967, 5747119.420796667]]}, "properties": {"id": "1255-1256", "from": "4005368879", "to": "4005368873", "length_m": 27.843143359082077, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730982.1162021853, 5788290.160213216], [731956.0216720946, 5788131.077226033]]}, "properties": {"id": "12555-12553-30430-30428-30426-20869-20867-48367-48365", "from": "2852231213", "to": "2152827783", "length_m": 987.0135712289468, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780148.3426288108, 5747140.428032581], [780201.581258223, 5747160.24679965]]}, "properties": {"id": "1257-1258", "from": "1835233410", "to": "37685021", "length_m": 56.97403463174397, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764970.6570891293, 5776109.107908759], [764995.341313923, 5776251.878748423]]}, "properties": {"id": "12591", "from": "789295126", "to": "789295068", "length_m": 144.8890044123866, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764995.341313923, 5776251.878748423], [764970.6570891293, 5776109.107908759]]}, "properties": {"id": "12592", "from": "789295068", "to": "789295126", "length_m": 144.8890044123866, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764995.341313923, 5776251.878748423], [765133.0655792941, 5777046.331352944]]}, "properties": {"id": "12593-12595", "from": "789295068", "to": "789295128", "length_m": 806.3020797051487, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765133.0655792941, 5777046.331352944], [764995.341313923, 5776251.878748423]]}, "properties": {"id": "12596-12594", "from": "789295128", "to": "789295068", "length_m": 806.3020797051487, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834356.8665141871, 5821886.798149931], [833360.0101000122, 5822727.4651254965]]}, "properties": {"id": "12609-12610-12611-12612-12613-12614", "from": "1257432044", "to": "426766418", "length_m": 1304.0534803661376, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791315.1280038175, 5759752.953185669], [789775.5809426554, 5760040.472764641]]}, "properties": {"id": "12641", "from": "469074032", "to": "480636137", "length_m": 1566.164950317683, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789775.5809426554, 5760040.472764641], [791315.1280038175, 5759752.953185669]]}, "properties": {"id": "12642", "from": "480636137", "to": "469074032", "length_m": 1566.164950317683, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789775.5809426554, 5760040.472764641], [788165.8024203058, 5760340.773697633]]}, "properties": {"id": "12643", "from": "480636137", "to": "469074029", "length_m": 1637.5492451849775, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788165.8024203058, 5760340.773697633], [789775.5809426554, 5760040.472764641]]}, "properties": {"id": "12644", "from": "469074029", "to": "480636137", "length_m": 1637.5492451849775, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788165.8024203058, 5760340.773697633], [786596.4659344524, 5760637.588865142]]}, "properties": {"id": "12645-12647-12649", "from": "469074029", "to": "469074031", "length_m": 1597.1588419759344, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786596.4659344524, 5760637.588865142], [788165.8024203058, 5760340.773697633]]}, "properties": {"id": "12650-12648-12646", "from": "469074031", "to": "469074029", "length_m": 1597.1588419759344, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786596.4659344524, 5760637.588865142], [785006.3123576099, 5760936.9797425205]]}, "properties": {"id": "12651-12653-12655-12657-12659", "from": "469074031", "to": "469074027", "length_m": 1618.0944070275502, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785006.3123576099, 5760936.9797425205], [786596.4659344524, 5760637.588865142]]}, "properties": {"id": "12660-12658-12656-12654-12652", "from": "469074027", "to": "469074031", "length_m": 1618.0944070275502, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785006.3123576099, 5760936.9797425205], [783940.4771546351, 5761141.68964038]]}, "properties": {"id": "12661-12663", "from": "469074027", "to": "3450272591", "length_m": 1085.3230906116514, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783940.4771546351, 5761141.68964038], [785006.3123576099, 5760936.9797425205]]}, "properties": {"id": "12664-12662", "from": "3450272591", "to": "469074027", "length_m": 1085.3230906116514, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783940.4771546351, 5761141.68964038], [783422.1903957813, 5761240.182550224]]}, "properties": {"id": "12665-12667", "from": "3450272591", "to": "616997571", "length_m": 527.5623346331965, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783422.1903957813, 5761240.182550224], [783940.4771546351, 5761141.68964038]]}, "properties": {"id": "12668-12666", "from": "616997571", "to": "3450272591", "length_m": 527.5623346331965, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783422.1903957813, 5761240.182550224], [781823.6062942988, 5761543.369332313]]}, "properties": {"id": "12669", "from": "616997571", "to": "484264180", "length_m": 1627.081234771363, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781823.6062942988, 5761543.369332313], [783422.1903957813, 5761240.182550224]]}, "properties": {"id": "12670", "from": "484264180", "to": "616997571", "length_m": 1627.081234771363, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781823.6062942988, 5761543.369332313], [780246.6961501176, 5761837.53409342]]}, "properties": {"id": "12671", "from": "484264180", "to": "480636120", "length_m": 1604.1129948241905, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780246.6961501176, 5761837.53409342], [781823.6062942988, 5761543.369332313]]}, "properties": {"id": "12672", "from": "480636120", "to": "484264180", "length_m": 1604.1129948241905, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800961.0588408483, 5785470.619838685], [801047.1364605732, 5785497.842324017]]}, "properties": {"id": "12673-12674-12675-12676-12677-12678-12679-12680-12681-12682", "from": "322483534", "to": "619112894", "length_m": 96.50163559560144, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793852.8814339074, 5775012.850915695], [793897.2336437867, 5775214.242401259]]}, "properties": {"id": "12688", "from": "867706362", "to": "317732030", "length_m": 206.2174796624435, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793897.2336437867, 5775214.242401259], [793942.7186398549, 5775426.518369449]]}, "properties": {"id": "12689", "from": "317732030", "to": "651255267", "length_m": 217.09438378293154, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793942.7186398549, 5775426.518369449], [793960.7759629488, 5775509.190758606]]}, "properties": {"id": "12690-12691", "from": "651255267", "to": "880404467", "length_m": 84.6235465957304, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793960.7759629488, 5775509.190758606], [794024.3072156918, 5775768.061568903]]}, "properties": {"id": "12692-12693-12694-12695-12696-12700-12701-12702", "from": "880404467", "to": "867706489", "length_m": 266.60053117560494, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794024.3072156918, 5775768.061568903], [794024.1148750989, 5776489.60018097]]}, "properties": {"id": "12703-12704-12705-12706-12707-12708-12709-12710-12711-12712-12713-12714-12715-12716-8434-8435-8436-8437-8438-8439", "from": "867706489", "to": "2735737972", "length_m": 758.9526840117019, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797112.7653197098, 5769817.727215483], [797114.9771730572, 5769829.483733076]]}, "properties": {"id": "12717", "from": "270421130", "to": "380256747", "length_m": 11.96277563385164, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797114.9771730572, 5769829.483733076], [797112.7653197098, 5769817.727215483]]}, "properties": {"id": "12718", "from": "380256747", "to": "270421130", "length_m": 11.96277563385164, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832359.7874747311, 5811987.58752711], [832321.9992527366, 5811730.098213784]]}, "properties": {"id": "12719", "from": "366746068", "to": "298335238", "length_m": 260.24737485661535, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830174.9587201104, 5821746.266497003], [830162.2921167769, 5821748.552282466]]}, "properties": {"id": "12744", "from": "309586885", "to": "26118246", "length_m": 12.871194718285748, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751723.2676403994, 5838038.822022971], [751248.6336365705, 5837501.2096072305]]}, "properties": {"id": "12752-12753-12754-12755-12756-12757-12758-12759-12760", "from": "1140763089", "to": "1140763095", "length_m": 719.9312408550137, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834778.7757166411, 5813171.954660025], [834574.894702612, 5813076.893429015]]}, "properties": {"id": "12761-12762-12763-12764", "from": "268219066", "to": "268219071", "length_m": 225.9695656191289, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832861.485748704, 5805025.849548473], [832956.272900773, 5805441.5542461965]]}, "properties": {"id": "12765-12766-12767-12768-51799", "from": "2097822450", "to": "1763048103", "length_m": 426.78008468166894, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832795.4159144392, 5804729.7564693075], [832798.9026734572, 5804743.113760565]]}, "properties": {"id": "12779", "from": "1745518698", "to": "1745600780", "length_m": 13.804880204299407, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789352.8806934556, 5773265.011595374], [790229.9750993559, 5773340.931344876]]}, "properties": {"id": "1278-1276-1274-1272-1270-1268-1266-1264-1262-1260-1254-1252-55701-55699-25742-25740-25738-55697-32590-32588", "from": "3431090321", "to": "690279991", "length_m": 915.3676775717531, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780132.937519101, 5747110.002091461], [780109.5228066412, 5747097.024914645]]}, "properties": {"id": "1279", "from": "4005368876", "to": "4005368879", "length_m": 26.770429082570423, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834634.6252867342, 5813148.307546269], [835165.7876424863, 5813165.618259322]]}, "properties": {"id": "12799-12800-12801-12802-12803-12804-12805-12806-12807-12808-12809-12810-12811", "from": "268218803", "to": "268219026", "length_m": 543.0595548069874, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835165.7876424863, 5813165.618259322], [835672.9330113487, 5813067.665878372]]}, "properties": {"id": "12812-57711-48829-48830-48831-48832-48833-48834-48835", "from": "268219026", "to": "268172431", "length_m": 520.257915797832, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785925.8128182171, 5757152.450430012], [785470.6219331467, 5757219.071010898]]}, "properties": {"id": "12813-12815-12817-12819-12821-12823-12825-12827", "from": "994354529", "to": "994354523", "length_m": 464.5555411058162, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785470.6219331467, 5757219.071010898], [785925.8128182171, 5757152.450430012]]}, "properties": {"id": "12828-12826-12824-12822-12820-12818-12816-12814", "from": "994354523", "to": "994354529", "length_m": 464.5555411058162, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834245.4727255865, 5812889.99108329], [834275.9068943686, 5812943.4501140695]]}, "properties": {"id": "12829-12830-12831-12832", "from": "268170300", "to": "268218863", "length_m": 64.01381792230148, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760570.5127805402, 5762995.755381466], [760452.6548493403, 5762850.288028656]]}, "properties": {"id": "1283-1281-32153-32151", "from": "2982813930", "to": "2982824137", "length_m": 215.2674322960233, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836028.9007743483, 5807710.480066734], [836193.5691161893, 5807425.195610007]]}, "properties": {"id": "12833-12834-12835-12836-12837-12838-12839-12840-12841-12842", "from": "75148590", "to": "2325319134", "length_m": 339.3670671118755, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760570.5127805402, 5762995.755381466], [760874.9910373404, 5763146.574596284]]}, "properties": {"id": "1284-1286-1288-1290", "from": "2982813930", "to": "2982813927", "length_m": 340.32851341130134, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830162.2921167769, 5821748.552282466], [829979.0023083003, 5821784.480715966]]}, "properties": {"id": "12843-12844-9222-9223", "from": "26118246", "to": "2960825840", "length_m": 186.77905362634112, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833596.3327334016, 5810763.847580891], [833506.5133823063, 5809986.058744386]]}, "properties": {"id": "12858-12859-12860-12861-12862-12863-12864-12865-13073-13074-19812-19813-19814-19815-19816-19817-19818-19819-19820-19821-19822-19823-19824-19825", "from": "1843397643", "to": "290666840", "length_m": 799.7357276050492, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[808254.7849606737, 5764501.817325217], [808240.6225959458, 5764488.971902891]]}, "properties": {"id": "12881", "from": "3285056290", "to": "3285056289", "length_m": 19.120079654117102, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[808240.6225959458, 5764488.971902891], [808254.7849606737, 5764501.817325217]]}, "properties": {"id": "12882", "from": "3285056289", "to": "3285056290", "length_m": 19.120079654117102, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760874.9910373404, 5763146.574596284], [760570.5127805402, 5762995.755381466]]}, "properties": {"id": "1291-1289-1287-1285", "from": "2982813927", "to": "2982813930", "length_m": 340.32851341130134, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816965.2077048337, 5757886.5565498], [816501.7068734374, 5758538.198194456]]}, "properties": {"id": "12912-12910-12908-12906-12904-12902-12900-12898-12896-12894-12892-12890-12888-12886-12884-862-860-858-856-854-23547", "from": "631416076", "to": "631420121", "length_m": 821.4741866067441, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777419.5706997197, 5744727.534749035], [777527.4903178264, 5744730.0031640455]]}, "properties": {"id": "1292-1294-1296-1298-1300", "from": "1851184949", "to": "294989012", "length_m": 109.14875742996655, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787703.1905117494, 5765043.791571635], [787744.1616736475, 5765073.321817973]]}, "properties": {"id": "12926-12927-12928-12929-12930-12931-12932", "from": "1412037741", "to": "1412037725", "length_m": 56.71020953144821, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787744.1616736475, 5765073.321817973], [787837.1307048574, 5764874.657357141]]}, "properties": {"id": "12933-12934-12935-12936-12937-12938-12939-12940-12941-12942-12943-12944-12945-12974-12975-12976-19977-19992-19993-19994-19995-19996-19997", "from": "1412037725", "to": "1412037731", "length_m": 240.96506590933592, "freespeed_mps": 3.5, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792152.5883109989, 5775765.934372057], [791885.0338169925, 5776233.053499948]]}, "properties": {"id": "12946-12947-12948-54525-54526-54527-54528", "from": "622320061", "to": "318039572", "length_m": 538.5414089181004, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791697.9377777575, 5761332.4894375065], [791630.6376547958, 5761334.093288241]]}, "properties": {"id": "12949-12950-12951-12951", "from": "270450452", "to": "270450508", "length_m": 67.53831016789208, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791631.5191072009, 5761355.22055219], [791697.9377777575, 5761332.4894375065]]}, "properties": {"id": "12949-12950-12951-12952", "from": "1708365711", "to": "270450452", "length_m": 67.53831016789208, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832262.6272621638, 5811310.11001452], [832140.318156661, 5810494.805659711]]}, "properties": {"id": "12953-12954-12955-12956-12957-12958-12959-12960-12961-12962-12963-12964-12965-12966-12967-12968-12969-12970-12971-12972-12973", "from": "366746064", "to": "36045744", "length_m": 826.8030214015978, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791627.9581947501, 5761331.73356825], [791602.8427485886, 5761335.995471511]]}, "properties": {"id": "12983-12984-12985-12986-12987", "from": "5550633336", "to": "270450513", "length_m": 28.46120412498227, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791602.8427485886, 5761335.995471511], [791600.6244464116, 5761339.620960304]]}, "properties": {"id": "12988", "from": "270450513", "to": "5550633339", "length_m": 4.250298062342152, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791600.6244464116, 5761339.620960304], [791605.9412443741, 5761360.497098653]]}, "properties": {"id": "12989-12990-12991-12992-12993", "from": "5550633339", "to": "270450517", "length_m": 23.562856409473756, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791605.9412443741, 5761360.497098653], [791631.5191072009, 5761355.22055219]]}, "properties": {"id": "12994-12995-12996-12997-12998", "from": "270450517", "to": "1708365711", "length_m": 29.02167352804306, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791631.5191072009, 5761355.22055219], [791630.6376547958, 5761334.093288241]]}, "properties": {"id": "12999-13000-13001-13002-13003", "from": "1708365711", "to": "270450508", "length_m": 23.306817610734694, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791630.6376547958, 5761334.093288241], [791627.9581947501, 5761331.73356825]]}, "properties": {"id": "13004", "from": "270450508", "to": "5550633336", "length_m": 3.570403974805837, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793548.5412072206, 5761014.790698574], [793226.6898956726, 5761074.257181655]]}, "properties": {"id": "13005-13007", "from": "1708355623", "to": "317376782", "length_m": 327.2988372698846, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793226.6898956726, 5761074.257181655], [793548.5412072206, 5761014.790698574]]}, "properties": {"id": "13008-13006", "from": "317376782", "to": "1708355623", "length_m": 327.2988372698846, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833288.2776247002, 5817323.02429594], [833274.8850644374, 5817330.548715977]]}, "properties": {"id": "13009", "from": "232342716", "to": "2299094484", "length_m": 15.361561357225781, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777527.4903178264, 5744730.0031640455], [777419.5706997197, 5744727.534749035]]}, "properties": {"id": "1301-1299-1297-1295-1293", "from": "294989012", "to": "1851184949", "length_m": 109.14875742996655, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818046.6529527827, 5823022.341383537], [818097.9409644387, 5823001.544474388]]}, "properties": {"id": "13020-13021-13022-13023-13024-13025", "from": "1412762889", "to": "1412762886", "length_m": 63.89614876118474, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818097.9409644387, 5823001.544474388], [818084.3647461827, 5822964.704454472]]}, "properties": {"id": "13026-13027-13028-13029", "from": "1412762886", "to": "174713243", "length_m": 41.63428241326204, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818084.3647461827, 5822964.704454472], [818032.4829219151, 5822979.943604699]]}, "properties": {"id": "13030-13031-13032-13033-13034-13035", "from": "174713243", "to": "1412762947", "length_m": 61.82072590371023, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818032.4829219151, 5822979.943604699], [818046.6529527827, 5823022.341383537]]}, "properties": {"id": "13036-13037-13038-13039-13040-13041-13042", "from": "1412762947", "to": "1412762889", "length_m": 48.54614704032864, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780132.8752478685, 5747138.387819897], [780148.3426288108, 5747140.428032581]]}, "properties": {"id": "1304-1305", "from": "4005368867", "to": "1835233410", "length_m": 16.037786354505563, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818046.6529527827, 5823022.341383537], [818627.1761056023, 5823264.509448486]]}, "properties": {"id": "13043-13044-13045-13046-13047-13048-13049-13050-13051-13052-13053-13054-13055-13056-13057-13058-13059-13060", "from": "1412762889", "to": "1412762814", "length_m": 659.0440236741682, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780148.3426288108, 5747140.428032581], [780159.2735342407, 5747128.745435944]]}, "properties": {"id": "1306-1307", "from": "1835233410", "to": "4005368870", "length_m": 16.47926562566861, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792919.5593301923, 5774517.458615918], [793627.0355602994, 5774233.719997508]]}, "properties": {"id": "13061-9840-9841-9842-9843-9844-7587-7588-7589-7590-7591-10172-10173-10174-10175-10238-10239", "from": "1548463856", "to": "293567339", "length_m": 805.1948156227013, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788460.5240080915, 5761905.693426844], [788463.3367912428, 5761933.945228253]]}, "properties": {"id": "13063-13064-13065", "from": "1708355755", "to": "1708355795", "length_m": 28.42923400525668, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788463.3367912428, 5761933.945228253], [788468.4042747868, 5761932.997696291]]}, "properties": {"id": "13066-13067-13216-13217-13218", "from": "1708355795", "to": "321710621", "length_m": 57.95842031554951, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793216.972086132, 5761022.092319809], [793180.7594713392, 5760833.320746634]]}, "properties": {"id": "13075", "from": "1708355693", "to": "441019267", "length_m": 192.2135798077892, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793180.7594713392, 5760833.320746634], [793216.972086132, 5761022.092319809]]}, "properties": {"id": "13076", "from": "441019267", "to": "1708355693", "length_m": 192.2135798077892, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793180.7594713392, 5760833.320746634], [793164.6411856285, 5760745.531717657]]}, "properties": {"id": "13077", "from": "441019267", "to": "441019327", "length_m": 89.256443655171, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793164.6411856285, 5760745.531717657], [793180.7594713392, 5760833.320746634]]}, "properties": {"id": "13078", "from": "441019327", "to": "441019267", "length_m": 89.256443655171, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793164.6411856285, 5760745.531717657], [793116.8144214831, 5760485.090810794]]}, "properties": {"id": "13079", "from": "441019327", "to": "441019287", "length_m": 264.79589358803514, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780159.2735342407, 5747128.745435944], [780132.937519101, 5747110.002091461]]}, "properties": {"id": "1308-1309-1310-1311-1312", "from": "4005368870", "to": "4005368876", "length_m": 41.50238799149382, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793116.8144214831, 5760485.090810794], [793164.6411856285, 5760745.531717657]]}, "properties": {"id": "13080", "from": "441019287", "to": "441019327", "length_m": 264.79589358803514, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793116.8144214831, 5760485.090810794], [793108.5043058777, 5760439.821581478]]}, "properties": {"id": "13081", "from": "441019287", "to": "441019288", "length_m": 46.02565743071756, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793108.5043058777, 5760439.821581478], [793116.8144214831, 5760485.090810794]]}, "properties": {"id": "13082", "from": "441019288", "to": "441019287", "length_m": 46.02565743071756, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793108.5043058777, 5760439.821581478], [792929.599178941, 5759465.496066408]]}, "properties": {"id": "13083", "from": "441019288", "to": "331120875", "length_m": 990.6145833234049, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792929.599178941, 5759465.496066408], [793108.5043058777, 5760439.821581478]]}, "properties": {"id": "13084", "from": "331120875", "to": "441019288", "length_m": 990.6145833234049, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792929.599178941, 5759465.496066408], [793091.05680626, 5758804.163072979]]}, "properties": {"id": "13085-13087-13089-13091-13093-13095-13097-13099-13101-13103-13105-13107-13109-13111-13113-13115-13117-13119-13121-13123-13125-13127", "from": "331120875", "to": "331121163", "length_m": 716.3920688866452, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793091.05680626, 5758804.163072979], [792929.599178941, 5759465.496066408]]}, "properties": {"id": "13128-13126-13124-13122-13120-13118-13116-13114-13112-13110-13108-13106-13104-13102-13100-13098-13096-13094-13092-13090-13088-13086", "from": "331121163", "to": "331120875", "length_m": 716.3920688866452, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817857.7929363623, 5822403.425461587], [817959.4168566959, 5822724.607011689]]}, "properties": {"id": "13129-13130-13131-13132-13133-13134-13135-13136-13137", "from": "2955175456", "to": "1412762736", "length_m": 337.6508032644134, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780132.937519101, 5747110.002091461], [780126.0656280967, 5747119.420796667]]}, "properties": {"id": "1313-1314", "from": "4005368876", "to": "4005368873", "length_m": 11.8339298420711, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817959.4168566959, 5822724.607011689], [818032.4829219151, 5822979.943604699]]}, "properties": {"id": "13138-13139-13140-13141-13142-13143-13144", "from": "1412762736", "to": "1412762947", "length_m": 266.2997705200626, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780126.0656280967, 5747119.420796667], [780132.8752478685, 5747138.387819897]]}, "properties": {"id": "1315-1302-1303", "from": "4005368873", "to": "4005368867", "length_m": 21.385168758505493, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830811.5817891492, 5810051.847040325], [832732.5290537194, 5809762.497549461]]}, "properties": {"id": "13151-13152-13153-13154-13155-13156", "from": "4435281077", "to": "290667056", "length_m": 1943.620693900877, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789726.8456660245, 5761696.380627897], [790442.4530547608, 5761564.403764447]]}, "properties": {"id": "13157-13159", "from": "1708355616", "to": "837417422", "length_m": 727.676635840594, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780201.581258223, 5747160.24679965], [780159.2735342407, 5747128.745435944]]}, "properties": {"id": "1316-1317", "from": "37685021", "to": "4005368870", "length_m": 52.75244373478228, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790442.4530547608, 5761564.403764447], [789726.8456660245, 5761696.380627897]]}, "properties": {"id": "13160-13158", "from": "837417422", "to": "1708355616", "length_m": 727.676635840594, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790442.4530547608, 5761564.403764447], [790450.287909512, 5761562.91103283]]}, "properties": {"id": "13161", "from": "837417422", "to": "1708355672", "length_m": 7.975788107951871, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790450.287909512, 5761562.91103283], [790442.4530547608, 5761564.403764447]]}, "properties": {"id": "13162", "from": "1708355672", "to": "837417422", "length_m": 7.975788107951871, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790450.287909512, 5761562.91103283], [791538.1389195442, 5761360.75652207]]}, "properties": {"id": "13163-13165-13167-13169-13171", "from": "1708355672", "to": "270450451", "length_m": 1106.4814814611564, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791538.1389195442, 5761360.75652207], [790450.287909512, 5761562.91103283]]}, "properties": {"id": "13172-13170-13168-13166-13164", "from": "270450451", "to": "1708355672", "length_m": 1106.4814814611564, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792910.4279270213, 5774511.585993617], [792713.2023863964, 5774831.041201365]]}, "properties": {"id": "13173-13174-13175-13176-13177-53243", "from": "1548463854", "to": "253506644", "length_m": 375.6455637622817, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792163.0150209388, 5775771.916947609], [792723.7637673542, 5774838.585272448]]}, "properties": {"id": "13178-13179-13180-13181-13182-13183-13184-13185-13186-11272", "from": "268179135", "to": "30732277", "length_m": 1088.9578472489695, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837106.7717734664, 5807005.656899456], [837158.7892247571, 5807022.6808523275]]}, "properties": {"id": "1318", "from": "2971220963", "to": "36022318", "length_m": 54.73235028320965, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790450.287909512, 5761562.91103283], [790433.3930906839, 5761543.000421805]]}, "properties": {"id": "13187-13188-13189-13190", "from": "1708355672", "to": "837417555", "length_m": 27.790365904466135, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812486.4564277914, 5791816.3162984075], [812547.9834583747, 5791922.205641992]]}, "properties": {"id": "1319-1320-1321-1322-1323-1324-1325-1326-1327-1328-1592-1593-1594-1595-1596-1597", "from": "351095899", "to": "351095902", "length_m": 306.260447659171, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817895.3077354574, 5822343.484483162], [817849.7473681576, 5822350.041806903]]}, "properties": {"id": "13191-13192-13193-13194-13195", "from": "174718870", "to": "303686027", "length_m": 50.08179092652895, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817849.7473681576, 5822350.041806903], [817857.7929363623, 5822403.425461587]]}, "properties": {"id": "13196-13197-13198-13199-13200-13201-13202", "from": "303686027", "to": "2955175456", "length_m": 62.41255723854823, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817857.7929363623, 5822403.425461587], [817905.7917493938, 5822390.904582992]]}, "properties": {"id": "13203-13204-13205-13206-13207-13208", "from": "2955175456", "to": "174717943", "length_m": 54.008688185006655, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817905.7917493938, 5822390.904582992], [817895.3077354574, 5822343.484483162]]}, "properties": {"id": "13209-13210-13211-13212-13213-13214-13215", "from": "174717943", "to": "174718870", "length_m": 53.72343169532058, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788468.4042747868, 5761932.997696291], [788460.5240080915, 5761905.693426844]]}, "properties": {"id": "13219-13220", "from": "321710621", "to": "1708355755", "length_m": 28.520469863799025, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832262.6272621638, 5811310.11001452], [832243.0865477961, 5811298.66865136]]}, "properties": {"id": "13224-13225-13226-13227", "from": "366746064", "to": "666715008", "length_m": 23.952299617831407, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817817.0179719187, 5822091.094380629], [817866.6674514161, 5822051.529774898]]}, "properties": {"id": "13228-13229-13230-13231-13232-13233-13234-13235", "from": "303686091", "to": "59961704", "length_m": 68.78671982217466, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793216.972086132, 5761022.092319809], [793216.2008135305, 5761076.015611994]]}, "properties": {"id": "13236-13237-13238-13239", "from": "1708355693", "to": "1604837584", "length_m": 53.96507062982258, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817752.2135865605, 5822071.123284263], [817823.9217450217, 5822186.39853817]]}, "properties": {"id": "13240-13241-13242-13243-13244-13245-13246-13247-13248-13249-13250", "from": "59961700", "to": "59961701", "length_m": 139.80324639560536, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817757.5173992804, 5821801.462061206], [817735.1566383328, 5821643.788308984]]}, "properties": {"id": "13251-13252-13253-13254", "from": "1412762778", "to": "360521334", "length_m": 159.34272634040934, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833161.7924520957, 5816698.283735268], [833145.9873730416, 5816694.820010578]]}, "properties": {"id": "13255", "from": "30918471", "to": "1536231975", "length_m": 16.180170272761686, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837699.3057129008, 5814844.653689072], [837686.2732675767, 5814836.025613962]]}, "properties": {"id": "13258", "from": "5430685149", "to": "5430685148", "length_m": 15.62972514144661, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832732.5290537194, 5809762.497549461], [833427.528311346, 5810094.183332669]]}, "properties": {"id": "13259-13260-13261-13262-13263-13264-13265-13266-13267-13268-13269-13270-13271-13272-13273", "from": "290667056", "to": "290667571", "length_m": 868.4095800771993, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833427.528311346, 5810094.183332669], [833540.3049243456, 5810707.200157939]]}, "properties": {"id": "13274-13275-13276-13277-13278-13279-13280-13281", "from": "290667571", "to": "268219446", "length_m": 625.2123334542908, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778481.4027670252, 5765785.904320066], [778479.6260310685, 5765821.959668274]]}, "properties": {"id": "1329-1331-1333-1335", "from": "2379162976", "to": "2379162971", "length_m": 37.07914381545969, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833577.3250126061, 5804600.270384775], [833567.1047462667, 5804601.986805805]]}, "properties": {"id": "13297", "from": "75203366", "to": "293310991", "length_m": 10.363394439189676, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832119.7585335013, 5809827.608687505], [831521.7505215796, 5809914.060024185]]}, "properties": {"id": "13298-13299-13300", "from": "290666918", "to": "290667812", "length_m": 604.2305671578961, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831521.7505215796, 5809914.060024185], [830982.4920406977, 5809989.00622011]]}, "properties": {"id": "13301", "from": "290667812", "to": "290667986", "length_m": 544.4415846837205, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830982.4920406977, 5809989.00622011], [830307.6509959352, 5810405.2502785325]]}, "properties": {"id": "13302-13303-13304-13305-13306-13307-13308-13309-13310-19685-19493-19494-19495", "from": "290667986", "to": "369735914", "length_m": 814.7092402212435, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833575.1068861452, 5804615.549525798], [833693.4045802956, 5804595.6397118345]]}, "properties": {"id": "13311", "from": "253337734", "to": "1537828670", "length_m": 119.9614314165611, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789474.4357829248, 5753326.601337162], [789426.0697273797, 5753131.611168148]]}, "properties": {"id": "13312-13314-13316-13318-13320-13322", "from": "844859801", "to": "971202646", "length_m": 203.43632807085655, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789426.0697273797, 5753131.611168148], [789474.4357829248, 5753326.601337162]]}, "properties": {"id": "13323-13321-13319-13317-13315-13313", "from": "971202646", "to": "844859801", "length_m": 203.43632807085655, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789426.0697273797, 5753131.611168148], [789426.9187328254, 5753118.910278276]]}, "properties": {"id": "13324", "from": "971202646", "to": "2332735781", "length_m": 12.72923461989398, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789426.9187328254, 5753118.910278276], [789426.0697273797, 5753131.611168148]]}, "properties": {"id": "13325", "from": "2332735781", "to": "971202646", "length_m": 12.72923461989398, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747806.2953546045, 5835937.015433069], [747885.8449196324, 5835936.3799949]]}, "properties": {"id": "13326-13327", "from": "363996588", "to": "363996581", "length_m": 79.61249499684453, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789480.2194647661, 5753342.598670933], [789515.6547843716, 5753518.068879015]]}, "properties": {"id": "13329-9839", "from": "844859922", "to": "3577715662", "length_m": 179.3646170761051, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833393.3930333938, 5821021.780958851], [833371.8356359231, 5821028.556273157]]}, "properties": {"id": "13330-13331", "from": "26118268", "to": "385825913", "length_m": 22.59995473753977, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833371.8356359231, 5821028.556273157], [833233.3274810144, 5821073.112865429]]}, "properties": {"id": "13332-13333", "from": "385825913", "to": "602912177", "length_m": 145.49844951525728, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830988.5481941206, 5821612.147503382], [831240.3626103095, 5821562.226564094]]}, "properties": {"id": "13335-13336-13337", "from": "605203301", "to": "309587586", "length_m": 256.71748649365173, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834184.0785844332, 5812721.860678319], [834199.216377463, 5812781.634221255]]}, "properties": {"id": "13338", "from": "268220063", "to": "268220075", "length_m": 61.660596835842576, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833399.8065570304, 5821042.314114787], [833416.807633714, 5821036.256586455]]}, "properties": {"id": "13339", "from": "255031362", "to": "255031363", "length_m": 18.04799870488451, "freespeed_mps": 22.22222222222222, "capacity_vph": 12000.0, "lanes": 6.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833506.5133823063, 5809986.058744386], [832119.7585335013, 5809827.608687505]]}, "properties": {"id": "13342-13343-13344-13345-13346-13347-13348-13349-13350-13351-13352-13353-13354-13355-13356-13357-13358-13359-13360-13361-13362-13363-13364-13365-13366-13367", "from": "290666840", "to": "290666918", "length_m": 1535.2867418616004, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778479.6260310685, 5765821.959668274], [778481.4027670252, 5765785.904320066]]}, "properties": {"id": "1336-1334-1332-1330", "from": "2379162971", "to": "2379162976", "length_m": 37.07914381545969, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789469.9527757233, 5753336.365019109], [788932.2350955133, 5753436.849657111]]}, "properties": {"id": "13368-13370-13372-13374", "from": "844859710", "to": "321711594", "length_m": 547.1566760336309, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788932.2350955133, 5753436.849657111], [789469.9527757233, 5753336.365019109]]}, "properties": {"id": "13375-13373-13371-13369", "from": "321711594", "to": "844859710", "length_m": 547.1566760336309, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788932.2350955133, 5753436.849657111], [788600.3568690284, 5753735.0082977265]]}, "properties": {"id": "13376-13378-13380-13382-13384", "from": "321711594", "to": "509915214", "length_m": 448.82726007899504, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788600.3568690284, 5753735.0082977265], [788932.2350955133, 5753436.849657111]]}, "properties": {"id": "13385-13383-13381-13379-13377", "from": "509915214", "to": "321711594", "length_m": 448.82726007899504, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788600.3568690284, 5753735.0082977265], [787570.3097120367, 5753684.210160846]]}, "properties": {"id": "13386-13388-13390-13392-13394-13396-13398-13400-13402-13404-13406-13408-13410", "from": "509915214", "to": "515913792", "length_m": 1051.8853932231332, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787570.3097120367, 5753684.210160846], [788600.3568690284, 5753735.0082977265]]}, "properties": {"id": "13411-13409-13407-13405-13403-13401-13399-13397-13395-13393-13391-13389-13387", "from": "515913792", "to": "509915214", "length_m": 1051.8853932231332, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787570.3097120367, 5753684.210160846], [787175.4305807627, 5753760.47764585]]}, "properties": {"id": "13412", "from": "515913792", "to": "509915208", "length_m": 402.17689761379324, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787175.4305807627, 5753760.47764585], [787570.3097120367, 5753684.210160846]]}, "properties": {"id": "13413", "from": "509915208", "to": "515913792", "length_m": 402.17689761379324, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787175.4305807627, 5753760.47764585], [786960.6308137961, 5753801.460716687]]}, "properties": {"id": "13414", "from": "509915208", "to": "2833518552", "length_m": 218.67453392876956, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786960.6308137961, 5753801.460716687], [787175.4305807627, 5753760.47764585]]}, "properties": {"id": "13415", "from": "2833518552", "to": "509915208", "length_m": 218.67453392876956, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832801.5292461913, 5809730.5943284705], [832119.7585335013, 5809827.608687505]]}, "properties": {"id": "13426", "from": "661586957", "to": "290666918", "length_m": 688.6385749119369, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834146.0452259239, 5812887.224619177], [834275.9068943686, 5812943.4501140695]]}, "properties": {"id": "13427-13428-13429-13430-13431-13432", "from": "4989023969", "to": "268218863", "length_m": 147.01927710305702, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834177.5630598802, 5812233.157947851], [834184.0785844332, 5812721.860678319]]}, "properties": {"id": "13436-13437-13438-13439-13440-13441-13442-13443-13444", "from": "268220025", "to": "268220063", "length_m": 493.99824311279383, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826018.6957472928, 5822444.460669479], [826021.4571833925, 5822471.645819817]]}, "properties": {"id": "13451-13452-13453-13454-13455-13456", "from": "5642245568", "to": "5642245569", "length_m": 29.91788763214522, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826021.4571833925, 5822471.645819817], [826053.234954, 5822465.531963494]]}, "properties": {"id": "13457-13458-13459-13460-13461-13462-13463", "from": "5642245569", "to": "5642245570", "length_m": 37.19125487575019, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826053.234954, 5822465.531963494], [826049.3914966527, 5822442.047322022]]}, "properties": {"id": "13464-13465-13466-13467-13468", "from": "5642245570", "to": "5642245566", "length_m": 25.40781961365571, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826049.3914966527, 5822442.047322022], [826018.6957472928, 5822444.460669479]]}, "properties": {"id": "13469-13470-13446-13447-13448-13449-13450", "from": "5642245566", "to": "5642245568", "length_m": 34.90787060971185, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831234.8425004986, 5821536.964387072], [830968.3995221352, 5821589.351075603]]}, "properties": {"id": "13473-13474-13475-13476-13477", "from": "26118249", "to": "2029060795", "length_m": 271.5638265663071, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790350.6461092948, 5751742.02855161], [790353.3414438624, 5751722.547712455]]}, "properties": {"id": "13478", "from": "845901952", "to": "510558815", "length_m": 19.666416123315418, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789333.6088495302, 5752233.237068119], [789307.0820815729, 5752242.757753509]]}, "properties": {"id": "13479", "from": "845902172", "to": "516049047", "length_m": 28.18355668336619, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791379.6972742893, 5754339.092153915], [791461.7339414123, 5754357.237050245]]}, "properties": {"id": "13480", "from": "845902184", "to": "518259989", "length_m": 84.01935470037164, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791819.164300083, 5753516.110472971], [791838.7266692279, 5753521.449430184]]}, "properties": {"id": "13481", "from": "512200715", "to": "512200738", "length_m": 20.27783883008198, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789880.4955823782, 5752080.09442991], [789861.9770138385, 5752082.460470992]]}, "properties": {"id": "13482", "from": "516044030", "to": "516044053", "length_m": 18.669106283632054, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789861.9770138385, 5752082.460470992], [789880.4955823782, 5752080.09442991]]}, "properties": {"id": "13483", "from": "516044053", "to": "516044030", "length_m": 18.669106283632054, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789861.9770138385, 5752082.460470992], [789771.3173239386, 5752095.709917639]]}, "properties": {"id": "13484", "from": "516044053", "to": "516044061", "length_m": 91.62274378127161, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789771.3173239386, 5752095.709917639], [789861.9770138385, 5752082.460470992]]}, "properties": {"id": "13485", "from": "516044061", "to": "516044053", "length_m": 91.62274378127161, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789771.3173239386, 5752095.709917639], [789660.8944081408, 5752214.899859267]]}, "properties": {"id": "13486-13488-13490-13492", "from": "516044061", "to": "516044108", "length_m": 173.16521400537437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789660.8944081408, 5752214.899859267], [789771.3173239386, 5752095.709917639]]}, "properties": {"id": "13493-13491-13489-13487", "from": "516044108", "to": "516044061", "length_m": 173.16521400537437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789660.8944081408, 5752214.899859267], [789623.1980375998, 5752410.011843351]]}, "properties": {"id": "13494-13496", "from": "516044108", "to": "516044128", "length_m": 199.306722596796, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789623.1980375998, 5752410.011843351], [789660.8944081408, 5752214.899859267]]}, "properties": {"id": "13497-13495", "from": "516044128", "to": "516044108", "length_m": 199.306722596796, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789109.2535295802, 5752073.054011715], [789117.6831292659, 5752069.850999072]]}, "properties": {"id": "13498", "from": "845902516", "to": "845902275", "length_m": 9.017618368976525, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789117.6831292659, 5752069.850999072], [789109.2535295802, 5752073.054011715]]}, "properties": {"id": "13499", "from": "845902275", "to": "845902516", "length_m": 9.017618368976525, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790568.2139982809, 5751671.695489727], [790508.6696512774, 5751682.209888962]]}, "properties": {"id": "13500", "from": "845902161", "to": "845901911", "length_m": 60.46554255463686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790508.6696512774, 5751682.209888962], [790568.2139982809, 5751671.695489727]]}, "properties": {"id": "13501", "from": "845901911", "to": "845902161", "length_m": 60.46554255463686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792550.0232407365, 5753796.471819058], [792536.2915297013, 5753798.136632494]]}, "properties": {"id": "13502", "from": "845902426", "to": "845901841", "length_m": 13.832262663962219, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790557.1932180319, 5751445.510403483], [790597.8876200146, 5751664.068704812]]}, "properties": {"id": "13503-13505-13507", "from": "37693772", "to": "510171319", "length_m": 222.3453837988407, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790597.8876200146, 5751664.068704812], [790557.1932180319, 5751445.510403483]]}, "properties": {"id": "13508-13506-13504", "from": "510171319", "to": "37693772", "length_m": 222.3453837988407, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790597.8876200146, 5751664.068704812], [790599.271959591, 5751669.931789389]]}, "properties": {"id": "13509", "from": "510171319", "to": "510559380", "length_m": 6.024297196178809, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790599.271959591, 5751669.931789389], [790597.8876200146, 5751664.068704812]]}, "properties": {"id": "13510", "from": "510559380", "to": "510171319", "length_m": 6.024297196178809, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790599.271959591, 5751669.931789389], [790639.3453729559, 5751889.679405892]]}, "properties": {"id": "13511-13513-13515-13517", "from": "510559380", "to": "37693856", "length_m": 223.38133204837843, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790639.3453729559, 5751889.679405892], [790599.271959591, 5751669.931789389]]}, "properties": {"id": "13518-13516-13514-13512", "from": "37693856", "to": "510559380", "length_m": 223.38133204837843, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790485.909610752, 5751691.476796064], [790508.6696512774, 5751682.209888962]]}, "properties": {"id": "13519-13520", "from": "510559135", "to": "845901911", "length_m": 24.907213722406745, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792540.1180176117, 5753856.350638688], [792557.7209823094, 5753814.843416376]]}, "properties": {"id": "13526-13527-13528", "from": "518259649", "to": "38411214", "length_m": 45.793271428533856, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837510.9740373052, 5813621.463267319], [837519.5579098662, 5813613.794493121]]}, "properties": {"id": "1353-1354-1355", "from": "268386038", "to": "33531726", "length_m": 11.52696589223299, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790508.6696512774, 5751682.209888962], [790483.8620410701, 5751681.780827842]]}, "properties": {"id": "13535-13536", "from": "845901911", "to": "510559176", "length_m": 25.01812044139026, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792536.2915297013, 5753798.136632494], [792546.0552682568, 5753804.896184428]]}, "properties": {"id": "13555", "from": "845901841", "to": "845901929", "length_m": 11.875273946438385, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789307.0820815729, 5752242.757753509], [789335.2971921214, 5752246.135926209]]}, "properties": {"id": "13558", "from": "516049047", "to": "516048769", "length_m": 28.41662383371395, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791800.7757514799, 5753519.7430576645], [791811.1121169303, 5753540.187145146]]}, "properties": {"id": "13559", "from": "617928631", "to": "845902051", "length_m": 22.90853904606883, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778516.1721591211, 5765823.281483502], [778519.9418139562, 5765784.501642166]]}, "properties": {"id": "1356-1358-1360-1362", "from": "2379162969", "to": "2379162979", "length_m": 40.031938594747686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833915.935040985, 5811653.186512815], [834177.5630598802, 5812233.157947851]]}, "properties": {"id": "13580-13581-13582-13583-13584-13585-13586-13587-13588-13589-13590-13591-13592", "from": "268219475", "to": "268220025", "length_m": 646.5105863261535, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797051.0994629877, 5758663.609226915], [797217.2579825046, 5759556.495348353]]}, "properties": {"id": "13593-13595-12301", "from": "916567900", "to": "916567954", "length_m": 908.2496965334633, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797414.2276345631, 5759456.072906844], [797424.3490227036, 5759748.86693756]]}, "properties": {"id": "13605-13607-13609-13611-13613-13615-13617", "from": "916567948", "to": "916567915", "length_m": 296.68980445233933, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797424.3490227036, 5759748.86693756], [797414.2276345631, 5759456.072906844]]}, "properties": {"id": "13618-13616-13614-13612-13610-13608-13606", "from": "916567915", "to": "916567948", "length_m": 296.68980445233933, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817725.7195116556, 5821645.997101726], [817757.5173992804, 5821801.462061206]]}, "properties": {"id": "13620-13621", "from": "303686094", "to": "1412762778", "length_m": 158.75996795692367, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833045.6527647176, 5816140.860912975], [833073.868564622, 5816286.623742424]]}, "properties": {"id": "13622", "from": "1536232002", "to": "30918487", "length_m": 148.46862890904848, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833073.868564622, 5816286.623742424], [833113.7507135049, 5816512.771890383]]}, "properties": {"id": "13623", "from": "30918487", "to": "356253653", "length_m": 229.63791180555467, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833113.7507135049, 5816512.771890383], [833145.9873730416, 5816694.820010578]]}, "properties": {"id": "13624-13625", "from": "356253653", "to": "1536231975", "length_m": 184.88028634037315, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833145.9873730416, 5816694.820010578], [833147.2499337101, 5816703.9865755085]]}, "properties": {"id": "13626", "from": "1536231975", "to": "356257672", "length_m": 9.253106071650416, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833147.2499337101, 5816703.9865755085], [833274.8850644374, 5817330.548715977]]}, "properties": {"id": "13627-13628-13629-13630-13631-13632-13633-13634-13635-13636-14649-14650", "from": "356257672", "to": "2299094484", "length_m": 640.1704720384216, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778519.9418139562, 5765784.501642166], [778516.1721591211, 5765823.281483502]]}, "properties": {"id": "1363-1361-1359-1357", "from": "2379162979", "to": "2379162969", "length_m": 40.031938594747686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832732.5290537194, 5809762.497549461], [833373.0299285443, 5809670.919186942]]}, "properties": {"id": "13638-13639-13656-13699-13700-13701", "from": "290667056", "to": "661586801", "length_m": 647.0742404423308, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769375.2569090434, 5765724.308672354], [769381.2412552368, 5765679.396279756]]}, "properties": {"id": "1364-1365-1366", "from": "2379163012", "to": "3187977321", "length_m": 47.51515539707336, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834298.9333089609, 5812717.695046042], [834199.8015480221, 5812285.2375922]]}, "properties": {"id": "13646-13647-13648-13649-13650-13651-13652-13653-13654-13655", "from": "268219316", "to": "268169658", "length_m": 453.18471200705903, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836600.5509090135, 5806818.927509493], [836630.653760158, 5806840.633489327]]}, "properties": {"id": "13661-13662", "from": "36021205", "to": "1833721396", "length_m": 37.12872131639447, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834376.434208619, 5812855.10389199], [834351.1142704147, 5812788.716958418]]}, "properties": {"id": "13663-28564-28565-28566", "from": "268170275", "to": "268219317", "length_m": 73.00285224502358, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834338.1377268075, 5812768.907213649], [834298.9333089609, 5812717.695046042]]}, "properties": {"id": "13678", "from": "268219241", "to": "268219316", "length_m": 64.49552268292793, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833229.995824689, 5816985.096641668], [833210.7297011408, 5816899.348041574]]}, "properties": {"id": "13679-13680-13681-13682-13683", "from": "1536231997", "to": "1536231964", "length_m": 87.96484029246577, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838541.2531940751, 5807452.617487937], [838617.8657100154, 5807527.699546196]]}, "properties": {"id": "13688-13689-13690-13691-13692", "from": "253525719", "to": "2100804683", "length_m": 110.72169067929703, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769375.2569090434, 5765724.308672354], [769653.9766842297, 5767105.630789551]]}, "properties": {"id": "1369-1371-1373", "from": "2379163012", "to": "916620024", "length_m": 1416.2268871539973, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834443.7956112371, 5812953.640115054], [834426.1726293473, 5812873.597379884]]}, "properties": {"id": "13693-13694-13695-13696-13697-13698", "from": "268219074", "to": "268172125", "length_m": 86.02652481236606, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833373.0299285443, 5809670.919186942], [833885.990643557, 5809682.543426071]]}, "properties": {"id": "13702-13703-13704-13705-13706-13707-13708-13788-13789-13790-13791-13792-13793-13794", "from": "661586801", "to": "1839737571", "length_m": 515.6961137657034, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834428.2634227674, 5812842.300690196], [834351.1142704147, 5812788.716958418]]}, "properties": {"id": "13709-13710-13711-28547-28548-28549", "from": "268172123", "to": "268219317", "length_m": 95.56221425420802, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832359.7874747311, 5811987.58752711], [832396.2030549049, 5812235.102948552]]}, "properties": {"id": "13717-13715-13713-48303-48360-48362-8722-8724-15349-15347", "from": "366746068", "to": "1536031888", "length_m": 250.1987506238429, "freespeed_mps": 16.666666666666668, "capacity_vph": 2250.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836276.0458112652, 5806635.949497155], [836804.8518836317, 5806637.294221914]]}, "properties": {"id": "13721-13722-13723-33946-33944-33945-39861-39862-39863-39864", "from": "2100656002", "to": "254226145", "length_m": 531.0859853418314, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832967.6091168271, 5815614.153377341], [832890.9819913823, 5815075.190831019]]}, "properties": {"id": "13724-13725-13726-13727-13728-13729-13730-13731-13732-13733-13734-13735-13736-13737-13738-13739", "from": "1536201638", "to": "30918600", "length_m": 544.8712760736993, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769653.9766842297, 5767105.630789551], [769375.2569090434, 5765724.308672354]]}, "properties": {"id": "1374-1372-1370", "from": "916620024", "to": "2379163012", "length_m": 1416.2268871539973, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836647.6131611762, 5806831.542877274], [836531.9459929895, 5806742.733939532]]}, "properties": {"id": "13740-13741", "from": "36021206", "to": "36021210", "length_m": 145.85466338077612, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836531.9459929895, 5806742.733939532], [836070.9189364791, 5806377.198412481]]}, "properties": {"id": "13742-13811-285-286-287-288-289-290-291", "from": "36021210", "to": "36021221", "length_m": 598.3656704619201, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832827.2790289826, 5821225.254139021], [832821.204676121, 5821203.895329885]]}, "properties": {"id": "13743", "from": "26032508", "to": "26118266", "length_m": 22.205776027549526, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833359.9803146239, 5817688.539916161], [833831.4976164056, 5817647.70324198]]}, "properties": {"id": "13744-13745-13746-13747-13748-13749-13750-13751", "from": "5635814269", "to": "601349707", "length_m": 473.74363564414483, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769653.9766842297, 5767105.630789551], [769982.636367133, 5768841.45920906]]}, "properties": {"id": "1375", "from": "916620024", "to": "916620001", "length_m": 1766.6684710746442, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831998.1353376874, 5809547.365194403], [832110.9661600522, 5810325.193063933]]}, "properties": {"id": "13753-12686-12684-12698-49471-49469-49467-49465", "from": "666604911", "to": "298331512", "length_m": 785.9711885686331, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832086.6569310047, 5821392.315093925], [832082.7955327224, 5821372.768169595]]}, "properties": {"id": "13754", "from": "5931587937", "to": "5931587936", "length_m": 19.924674326722037, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832082.7955327224, 5821372.768169595], [832086.6569310047, 5821392.315093925]]}, "properties": {"id": "13755", "from": "5931587936", "to": "5931587937", "length_m": 19.924674326722037, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769982.636367133, 5768841.45920906], [769653.9766842297, 5767105.630789551]]}, "properties": {"id": "1376", "from": "916620001", "to": "916620024", "length_m": 1766.6684710746442, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835797.2678321695, 5806328.471244406], [835483.8705103041, 5806888.486334165]]}, "properties": {"id": "13764-13765-13766-13767-13768-13769-13770-13771-13772-13773-13774-13775-13776-13777-13778-13779-13780-13781-13782-13783-13784-13785-13786", "from": "2100692687", "to": "254224862", "length_m": 670.4533379413923, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769982.636367133, 5768841.45920906], [770253.2659019527, 5770270.64261213]]}, "properties": {"id": "1377", "from": "916620001", "to": "2830954405", "length_m": 1454.580882258622, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770253.2659019527, 5770270.64261213], [769982.636367133, 5768841.45920906]]}, "properties": {"id": "1378", "from": "2830954405", "to": "916620001", "length_m": 1454.580882258622, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832827.2790289826, 5821225.254139021], [833333.0811639366, 5821064.0904963575]]}, "properties": {"id": "13795-13796-13797-13798-13799-13800-13801-13802-1875-10607-10608-10609", "from": "26032508", "to": "603462869", "length_m": 530.8924434122446, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831691.2321595168, 5821451.428663112], [831626.0098074456, 5821484.14861173]]}, "properties": {"id": "13803-13804-13805-13806-13807-13808-13809", "from": "26118250", "to": "26032503", "length_m": 79.98754177583457, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830162.2921167769, 5821748.552282466], [830166.8064279361, 5821773.9329009205]]}, "properties": {"id": "13810", "from": "26118246", "to": "605208462", "length_m": 25.778960353463614, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835712.6183176426, 5804187.617588819], [835711.50752666, 5804204.431435845]]}, "properties": {"id": "13812", "from": "825539749", "to": "825540251", "length_m": 16.850498777148704, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830669.8166731339, 5821650.232840616], [830664.9905330553, 5821675.75418146]]}, "properties": {"id": "13813-13814-13815-13816", "from": "26118248", "to": "26030574", "length_m": 28.15648891184958, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833746.5540779198, 5809609.793736878], [832801.5292461913, 5809730.5943284705]]}, "properties": {"id": "13825-13826-13787-13433-13434-13435-13334-13424-13425", "from": "661586136", "to": "661586957", "length_m": 952.9735990638497, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753180.9832508912, 5748690.671107409], [753233.1486315941, 5748991.561270467]]}, "properties": {"id": "13827-13829", "from": "3710491144", "to": "3710491146", "length_m": 305.44892325182974, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753233.1486315941, 5748991.561270467], [753180.9832508912, 5748690.671107409]]}, "properties": {"id": "13830-13828", "from": "3710491146", "to": "3710491144", "length_m": 305.44892325182974, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834714.9977938833, 5820602.468181955], [834248.4598616995, 5820750.400656881]]}, "properties": {"id": "13831-13832-13833-13834-13835-13836-13837", "from": "26118272", "to": "26118271", "length_m": 489.42993355043234, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834248.4598616995, 5820750.400656881], [833961.1298427451, 5820841.494667498]]}, "properties": {"id": "13838", "from": "26118271", "to": "26118270", "length_m": 301.42438205576127, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833961.1298427451, 5820841.494667498], [833851.5487166732, 5820876.362895278]]}, "properties": {"id": "13839-13840-13841", "from": "26118270", "to": "26118269", "length_m": 114.99571832832811, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752205.0927773556, 5839240.197510859], [752202.803787681, 5839228.025863818]]}, "properties": {"id": "13842", "from": "363999807", "to": "363999779", "length_m": 12.385009704332479, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752202.803787681, 5839228.025863818], [752160.9059404671, 5839005.5026652515]]}, "properties": {"id": "13843-13844-13845-13846-13847-13848", "from": "363999779", "to": "363999778", "length_m": 226.43322427782616, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832808.7443853486, 5821207.766990917], [832814.8401072731, 5821228.780260545]]}, "properties": {"id": "13849", "from": "2101262410", "to": "603438238", "length_m": 21.879564092932927, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832112.9186234013, 5810428.565002827], [832107.7485652473, 5810461.341286335]]}, "properties": {"id": "13850-13851-13852-13853", "from": "298335479", "to": "666623092", "length_m": 33.26170360403205, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833856.8768510327, 5820897.773663776], [833967.1450719287, 5820863.066601317]]}, "properties": {"id": "13854-13855-13856", "from": "26032511", "to": "1959669511", "length_m": 115.60131315504943, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836191.3958440882, 5807406.581360677], [836183.4448730396, 5807418.137625741]]}, "properties": {"id": "13857", "from": "462039241", "to": "2325319136", "length_m": 14.02730207682838, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828827.8641849381, 5821995.373466439], [828267.8892998332, 5822070.72425456]]}, "properties": {"id": "13858-13860-13862-13864-34174", "from": "33086230", "to": "1412723324", "length_m": 565.034127295279, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837024.4692748873, 5806385.727774411], [836962.9087554938, 5806287.798497807]]}, "properties": {"id": "1386-1387-1388-1389", "from": "3323284486", "to": "254230084", "length_m": 116.05567663276672, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794945.7181430673, 5782247.657297171], [795655.2329393919, 5782183.788263856]]}, "properties": {"id": "13872-13873-13874-13875-13876", "from": "317889821", "to": "317889820", "length_m": 712.4169419447586, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795655.2329393919, 5782183.788263856], [796318.6728928436, 5782220.242487412]]}, "properties": {"id": "13877-13878-13879-13880-13881-13882-13883-13884-13885-13886-13887-13888", "from": "317889820", "to": "318024839", "length_m": 665.6248737144913, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796318.6728928436, 5782220.242487412], [797138.5935902605, 5782407.621511888]]}, "properties": {"id": "13889-13890-13891-13892-13893-13894-13895-13896", "from": "318024839", "to": "317889816", "length_m": 841.2442482477693, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788827.2549360564, 5769156.523998261], [789286.5231603405, 5768719.921898262]]}, "properties": {"id": "13904-13905-13906-13907-13908-13909", "from": "1833870406", "to": "1833870417", "length_m": 633.8230106716243, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789286.5231603405, 5768719.921898262], [789731.933130149, 5768120.261974738]]}, "properties": {"id": "13910-13911-13912-13913-13914-13915-13916-13917-13918-13919", "from": "1833870417", "to": "1833870433", "length_m": 748.9519740608112, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789731.933130149, 5768120.261974738], [790030.5256731359, 5767503.546470562]]}, "properties": {"id": "13920-13921-13922-13923-13924-13925-13926-54687-54688-54689-54690-54691-54692-54693-54694-54695-54696", "from": "1833870433", "to": "420461022", "length_m": 851.2099242714289, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793726.9924315824, 5782303.646089159], [793083.4327739431, 5781983.586905592]]}, "properties": {"id": "13935-13936-13937-13938-13939-13940-13941-13942-13943", "from": "318028107", "to": "318028111", "length_m": 728.987839954498, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793083.4327739431, 5781983.586905592], [792784.6017211156, 5781543.308892657]]}, "properties": {"id": "13944-13945-13946-13947-13948-13949-13950-13951-13952", "from": "318028111", "to": "318028115", "length_m": 536.2425443576558, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769341.1527695141, 5765664.128467548], [769375.2569090434, 5765724.308672354]]}, "properties": {"id": "1395-1396-1397-1398", "from": "2379163023", "to": "2379163012", "length_m": 71.86126718991534, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792784.6017211156, 5781543.308892657], [792567.4790282658, 5780692.806475052]]}, "properties": {"id": "13953-13954-13955-13956", "from": "318028115", "to": "318028118", "length_m": 878.2565636145608, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792567.4790282658, 5780692.806475052], [792426.5422770705, 5780209.689769232]]}, "properties": {"id": "13957-13958-13959-13960-13961", "from": "318028118", "to": "318028120", "length_m": 503.4312371409542, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792426.5422770705, 5780209.689769232], [792158.5606204044, 5779571.300374174]]}, "properties": {"id": "13962-13963-13964-13965", "from": "318028120", "to": "318028126", "length_m": 692.688550325822, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792158.5606204044, 5779571.300374174], [791763.7150019009, 5779043.60698673]]}, "properties": {"id": "13966-13967-13968-13969-13970-13971-13972-23994-24116-24117-30180", "from": "318028126", "to": "318028131", "length_m": 665.6168841783899, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791168.3093382941, 5777813.966922678], [791149.4185713574, 5776749.711024446]]}, "properties": {"id": "13973-13974-13975-13976-13977-27737-199-200-201-202", "from": "334409391", "to": "318028144", "length_m": 1067.185011558005, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791157.6317151487, 5777875.598994448], [791361.20161297, 5778593.761043895]]}, "properties": {"id": "13978-13979-13980-13981-13982-13983-13984", "from": "318036347", "to": "318036351", "length_m": 748.3665022090138, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791361.20161297, 5778593.761043895], [791828.0364982142, 5779127.523906785]]}, "properties": {"id": "13985-13986-13987-13988-13989-13990-13991-13992-1712", "from": "318036351", "to": "318039175", "length_m": 715.2432664439596, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778496.9183123087, 5765883.996826496], [778696.7235854369, 5766981.53674746]]}, "properties": {"id": "1399", "from": "2379162968", "to": "5891541447", "length_m": 1115.5787844040717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788371.9653189037, 5769833.152696605], [788201.1926814767, 5770329.244345059]]}, "properties": {"id": "13995-13996-13997-13998-13999-14000-14001", "from": "-125853", "to": "421192905", "length_m": 622.183403520846, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750861.7774776841, 5836723.582764633], [750844.072595589, 5836723.940876767]]}, "properties": {"id": "14-15-16-17-18", "from": "5642242409", "to": "5642242408", "length_m": 19.219119196339193, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778696.7235854369, 5766981.53674746], [778496.9183123087, 5765883.996826496]]}, "properties": {"id": "1400", "from": "5891541447", "to": "2379162968", "length_m": 1115.5787844040717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788201.1926814767, 5770329.244345059], [788632.1731043614, 5771336.756416974]]}, "properties": {"id": "14002-14003-14004-14005-14006-14007-14008", "from": "421192905", "to": "1833870335", "length_m": 930.8571495033362, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788632.1731043614, 5771336.756416974], [788763.4573609433, 5772054.547560396]]}, "properties": {"id": "14009-14010-14011-14012-14013-14014-14015-14016-14017", "from": "1833870335", "to": "421192871", "length_m": 731.9905434640658, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778696.7235854369, 5766981.53674746], [778903.6401119956, 5768091.7538195215]]}, "properties": {"id": "1401-1403", "from": "5891541447", "to": "614531651", "length_m": 1129.3350974355187, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788763.4573609433, 5772054.547560396], [788729.2352688714, 5772934.741629686]]}, "properties": {"id": "14018-54845-54885", "from": "421192871", "to": "421192856", "length_m": 881.1597137953571, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788764.8883107104, 5752042.533086256], [788762.9680324176, 5752006.5024070265]]}, "properties": {"id": "14019", "from": "512197219", "to": "845902034", "length_m": 36.081814174116744, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791945.0571802307, 5754293.944486715], [791952.3451394106, 5754311.186561789]]}, "properties": {"id": "14020", "from": "845902546", "to": "845902169", "length_m": 18.719067833289554, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778903.6401119956, 5768091.7538195215], [778696.7235854369, 5766981.53674746]]}, "properties": {"id": "1404-1402", "from": "614531651", "to": "5891541447", "length_m": 1129.3350974355187, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793269.3288964665, 5753940.211776113], [792696.9102712639, 5753837.739198686]]}, "properties": {"id": "14044-14042-14040-14038-14036-14034-14032-14030-14028-14026-14024-14022-14124-14122", "from": "845902217", "to": "822479561", "length_m": 606.1357098997541, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793269.3288964665, 5753940.211776113], [793741.4359111212, 5754162.792490177]]}, "properties": {"id": "14045-14047-14049-14051", "from": "845902217", "to": "845902277", "length_m": 522.1476281647235, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778903.6401119956, 5768091.7538195215], [779311.6127274344, 5770305.803330624]]}, "properties": {"id": "1405", "from": "614531651", "to": "614531656", "length_m": 2251.323363729878, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793741.4359111212, 5754162.792490177], [793269.3288964665, 5753940.211776113]]}, "properties": {"id": "14052-14050-14048-14046", "from": "845902277", "to": "845902217", "length_m": 522.1476281647235, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793741.4359111212, 5754162.792490177], [794262.1128360836, 5754273.1055004755]]}, "properties": {"id": "14053-14055-14057-14059-14061-14063-14065-14067-14069-14071-14073-14075-14077-14079-14081-14083-14085-14087-14089-14091-14093-14095-14097-14099-14101", "from": "845902277", "to": "38411224", "length_m": 651.1553342112911, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779311.6127274344, 5770305.803330624], [778903.6401119956, 5768091.7538195215]]}, "properties": {"id": "1406", "from": "614531656", "to": "614531651", "length_m": 2251.323363729878, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778479.6260310685, 5765821.959668274], [778496.9183123087, 5765883.996826496]]}, "properties": {"id": "1407-1408-1409", "from": "2379162971", "to": "2379162968", "length_m": 64.6114041097862, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794262.1128360836, 5754273.1055004755], [793741.4359111212, 5754162.792490177]]}, "properties": {"id": "14102-14100-14098-14096-14094-14092-14090-14088-14086-14084-14082-14080-14078-14076-14074-14072-14070-14068-14066-14064-14062-14060-14058-14056-14054", "from": "38411224", "to": "845902277", "length_m": 651.1553342112911, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758968.8268049752, 5766804.018582092], [758043.9954395593, 5766969.768496636]]}, "properties": {"id": "14103", "from": "916681455", "to": "916681432", "length_m": 939.5669674585278, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758043.9954395593, 5766969.768496636], [758968.8268049752, 5766804.018582092]]}, "properties": {"id": "14104", "from": "916681432", "to": "916681455", "length_m": 939.5669674585278, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792563.3038951673, 5753812.3180369185], [792579.5010026718, 5753813.198010663]]}, "properties": {"id": "14111-14112", "from": "845902294", "to": "845901912", "length_m": 16.25323129236181, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792579.5010026718, 5753813.198010663], [792696.9102712639, 5753837.739198686]]}, "properties": {"id": "14113-14115-14117-14119", "from": "845901912", "to": "822479561", "length_m": 121.25438343774184, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792696.9102712639, 5753837.739198686], [792579.5010026718, 5753813.198010663]]}, "properties": {"id": "14120-14118-14116-14114", "from": "822479561", "to": "845901912", "length_m": 121.25438343774184, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792696.9102712639, 5753837.739198686], [793269.3288964665, 5753940.211776113]]}, "properties": {"id": "14121-14123-14021-14023-14025-14027-14029-14031-14033-14035-14037-14039-14041-14043", "from": "822479561", "to": "845902217", "length_m": 606.1357098997541, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792547.9777932644, 5753810.583962405], [792540.1180176117, 5753856.350638688]]}, "properties": {"id": "14125-14126-14127", "from": "845902235", "to": "518259649", "length_m": 47.11542165761088, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788752.3071572338, 5752055.709437495], [788752.9302106608, 5752085.095711997]]}, "properties": {"id": "14128", "from": "512197263", "to": "845902474", "length_m": 29.392878814246963, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833330.830619233, 5817687.517501637], [833231.143693742, 5818218.3316713255]]}, "properties": {"id": "14129-14130-14131-14132-14133-14134-14135-14136-14137-14138-14139", "from": "5635814270", "to": "30918429", "length_m": 541.7613522713423, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833231.143693742, 5818218.3316713255], [833313.5676341115, 5818850.335542137]]}, "properties": {"id": "14140-14141-14142-14143-14144-14145-14146-14147-14148-14149-14150-14151-14152-14153-14154", "from": "30918429", "to": "3127361680", "length_m": 641.4756779248833, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833313.5676341115, 5818850.335542137], [833035.6907033962, 5819538.862265304]]}, "properties": {"id": "14155-14156-14157-14158-14159-3229-3230-3231-3232-3233-3234-3235-3236", "from": "3127361680", "to": "3215340818", "length_m": 744.1493697756749, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790568.2139982809, 5751671.695489727], [790599.271959591, 5751669.931789389]]}, "properties": {"id": "14168-14169", "from": "845902161", "to": "510559380", "length_m": 31.324603478067743, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804585.9475972201, 5767108.714845505], [805687.9651825998, 5766355.466629935]]}, "properties": {"id": "14170-14171-14172-14173-14174-14175-14176-14177", "from": "380240442", "to": "380240445", "length_m": 1339.0879903781688, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[805687.9651825998, 5766355.466629935], [806406.3586219333, 5765828.6438202355]]}, "properties": {"id": "14178", "from": "380240445", "to": "6049540079", "length_m": 890.859925418025, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[806406.3586219333, 5765828.6438202355], [806888.6615684618, 5765476.874823721]]}, "properties": {"id": "14179", "from": "6049540079", "to": "3285045416", "length_m": 596.9569156984417, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[806888.6615684618, 5765476.874823721], [807311.0375258485, 5765177.426427915]]}, "properties": {"id": "14180-14181", "from": "3285045416", "to": "380240436", "length_m": 517.8622797998079, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807311.0375258485, 5765177.426427915], [807338.3064840159, 5765159.139072399]]}, "properties": {"id": "14182", "from": "380240436", "to": "790928385", "length_m": 32.83326743506037, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807338.3064840159, 5765159.139072399], [808254.7849606737, 5764501.817325217]]}, "properties": {"id": "14183-14184-14185-14186-14187-14188", "from": "790928385", "to": "3285056290", "length_m": 1127.9658450162763, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[808254.7849606737, 5764501.817325217], [809164.7936390936, 5763842.967461633]]}, "properties": {"id": "14189-14190", "from": "3285056290", "to": "990976145", "length_m": 1123.478101639414, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[809164.7936390936, 5763842.967461633], [809565.3322112351, 5763533.245892497]]}, "properties": {"id": "14191-14192-14193", "from": "990976145", "to": "990976132", "length_m": 506.3507414606342, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[809565.3322112351, 5763533.245892497], [810045.9188947831, 5763184.433842109]]}, "properties": {"id": "14194-14195-14196-14197-14198-14199-14200-14201", "from": "990976132", "to": "380240429", "length_m": 597.8660250323994, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790800.216829194, 5754780.175744717], [790800.0250476811, 5754771.691131442]]}, "properties": {"id": "14202", "from": "3464604462", "to": "3464604468", "length_m": 8.486780458178604, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790800.0250476811, 5754771.691131442], [790800.216829194, 5754780.175744717]]}, "properties": {"id": "14203", "from": "3464604468", "to": "3464604462", "length_m": 8.486780458178604, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790800.0250476811, 5754771.691131442], [790796.8131110288, 5754742.575545721]]}, "properties": {"id": "14204-14206", "from": "3464604468", "to": "5678574452", "length_m": 29.302704252037987, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790796.8131110288, 5754742.575545721], [790800.0250476811, 5754771.691131442]]}, "properties": {"id": "14207-14205", "from": "5678574452", "to": "3464604468", "length_m": 29.302704252037987, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747683.0918849929, 5835924.992592691], [747777.6058321579, 5835936.484888055]]}, "properties": {"id": "14208-14209-14210-14211", "from": "363996626", "to": "363996583", "length_m": 95.35338611272148, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790725.5920486148, 5754752.92092534], [790723.3205956197, 5754741.88817875]]}, "properties": {"id": "14212", "from": "3464607396", "to": "3464604476", "length_m": 11.264146482318658, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790723.3205956197, 5754741.88817875], [790725.5920486148, 5754752.92092534]]}, "properties": {"id": "14213", "from": "3464604476", "to": "3464607396", "length_m": 11.264146482318658, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792579.5010026718, 5753813.198010663], [792566.1515594895, 5753801.011081071]]}, "properties": {"id": "14214-14215", "from": "845901912", "to": "845901810", "length_m": 18.077280261470474, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790349.5864114689, 5751701.165100979], [790340.08845961, 5751683.91268234]]}, "properties": {"id": "14216", "from": "510558846", "to": "845902354", "length_m": 19.694086330749844, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832127.4447968733, 5810411.377566129], [832110.9661600522, 5810325.193063933]]}, "properties": {"id": "14217-14218", "from": "1535010246", "to": "298331512", "length_m": 87.74578672335774, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791795.6477467674, 5753502.156060477], [791771.8232297582, 5753503.173121621]]}, "properties": {"id": "14219-14220-14221", "from": "617928632", "to": "845902151", "length_m": 26.97796319217409, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833885.990643557, 5809682.543426071], [834452.617077715, 5809520.6482612835]]}, "properties": {"id": "14222-14223-14224-14225-14226-14227-14228", "from": "1839737571", "to": "366741775", "length_m": 590.0023166988603, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789149.4995305511, 5752157.103327787], [789141.293968692, 5752159.720385783]]}, "properties": {"id": "14229", "from": "516049425", "to": "516049306", "length_m": 8.61279502405182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789141.293968692, 5752159.720385783], [789149.4995305511, 5752157.103327787]]}, "properties": {"id": "14230", "from": "516049306", "to": "516049425", "length_m": 8.61279502405182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789165.9355204338, 5752200.427125453], [789157.6250171093, 5752203.536991967]]}, "properties": {"id": "14231", "from": "516049411", "to": "516049327", "length_m": 8.873315872792444, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789157.6250171093, 5752203.536991967], [789165.9355204338, 5752200.427125453]]}, "properties": {"id": "14232", "from": "516049327", "to": "516049411", "length_m": 8.873315872792444, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791953.6422067196, 5754271.749093423], [791943.6136875014, 5754251.371763776]]}, "properties": {"id": "14233", "from": "518259840", "to": "845901959", "length_m": 22.711379502521766, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788767.8280037683, 5752057.887909135], [788786.9578328016, 5752055.23576251]]}, "properties": {"id": "14234", "from": "512197190", "to": "512197108", "length_m": 19.31279987146943, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837760.8551220401, 5819234.483550636], [837698.9342767609, 5819115.093814872]]}, "properties": {"id": "14235-14236-14237-14238-14239-14240-14241", "from": "169794583", "to": "30928580", "length_m": 135.22952638341894, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834028.4046544645, 5817641.403026483], [834537.2938620821, 5817597.453915134]]}, "properties": {"id": "14242-7763-7764-7765-7766-7767-7768-7769-2270-2271-50649-50650-59263", "from": "601357359", "to": "601349794", "length_m": 511.7878841249769, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794888.3700566895, 5771562.93158372], [794232.5176832967, 5771828.497638156]]}, "properties": {"id": "14244-14245-14246-14247-14248-14249-14250-14251-13579", "from": "705053897", "to": "1967618657", "length_m": 707.5787360137012, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830623.2556110325, 5813998.904566133], [830274.1833672941, 5814220.247954434]]}, "properties": {"id": "14262-14263-14264-14265-14266", "from": "981838880", "to": "981838877", "length_m": 413.3594418599074, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830274.1833672941, 5814220.247954434], [830236.0307725878, 5814244.638560183]]}, "properties": {"id": "14267-14268", "from": "981838877", "to": "369133283", "length_m": 45.28269146474129, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830236.0307725878, 5814244.638560183], [830213.3914907192, 5814258.566682481]]}, "properties": {"id": "14269", "from": "369133283", "to": "981835734", "length_m": 26.580625906524233, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833274.8850644374, 5817330.548715977], [833290.9590932573, 5817416.826669104]]}, "properties": {"id": "14271", "from": "2299094484", "to": "30918468", "length_m": 87.76251810759662, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830109.0741539192, 5814324.681369584], [829482.3883653067, 5814626.773193162]]}, "properties": {"id": "14287-14288-14289-14290-14291-14292-14293-14294-14295-14296-14297-14298-14299-14300", "from": "981838881", "to": "1764268034", "length_m": 695.7672241538961, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794247.8870233397, 5771835.565179475], [794892.7612894985, 5771573.886768908]]}, "properties": {"id": "14301-14302-14303-14304", "from": "52494741", "to": "317727076", "length_m": 695.9442569449742, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794892.7612894985, 5771573.886768908], [795005.2376465164, 5771528.697381242]]}, "properties": {"id": "14305-14306", "from": "317727076", "to": "5500087650", "length_m": 121.21473348487376, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795005.2376465164, 5771528.697381242], [795318.9762711797, 5771402.617370644]]}, "properties": {"id": "14307-14308-14309-14310-14311", "from": "5500087650", "to": "263727590", "length_m": 338.12713767333935, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795318.9762711797, 5771402.617370644], [795328.7418624038, 5771398.69420025]]}, "properties": {"id": "14312", "from": "263727590", "to": "263727831", "length_m": 10.524164440946338, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795328.7418624038, 5771398.69420025], [795714.9484073049, 5771216.342744189]]}, "properties": {"id": "14313-14314-9255-9253-9254-34216-52542-34262", "from": "263727831", "to": "705057599", "length_m": 434.25017904307236, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836192.515670862, 5817506.005888242], [836206.1239926631, 5817438.222821554]]}, "properties": {"id": "14320-14321-14322-14323-14324-14325", "from": "3475958006", "to": "3475958012", "length_m": 71.97384532164995, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790030.5256731359, 5767503.546470562], [789880.1256814565, 5766957.203634237]]}, "properties": {"id": "14326-14327-14328-14329-14330-14331-14332-14333-54597-54598-54599-54600-54601", "from": "420461022", "to": "827493678", "length_m": 679.8865319072493, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832671.0260184288, 5823315.502859787], [832427.4023569706, 5823536.571763508]]}, "properties": {"id": "14334-14335-14336-14337-14338-14339-14340-14341-14342-14343-14344-14272-14273-14274-14275-14276-14277-14278-14279-14280-14281-14282-14283-14284-14285-14286", "from": "303685060", "to": "303685039", "length_m": 427.02531626639063, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830610.4610357416, 5814030.005945943], [830732.2586383, 5813952.274256291]]}, "properties": {"id": "14345-14346-14347-14348", "from": "981838906", "to": "35084641", "length_m": 144.48922415242617, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836337.1772921549, 5817170.178433124], [836299.4986362283, 5817262.684329964]]}, "properties": {"id": "14349-14350-14351-14352", "from": "268387134", "to": "3164229067", "length_m": 102.14429951659794, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837468.8485480953, 5808646.346583122], [836728.7390446905, 5808759.607314132]]}, "properties": {"id": "14353-14354-14355-14356-14357-14358-14359", "from": "75143916", "to": "75146073", "length_m": 749.6613611693022, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836728.7390446905, 5808759.607314132], [836235.4951815994, 5808848.858074327]]}, "properties": {"id": "14360-14361-14362", "from": "75146073", "to": "75146091", "length_m": 501.2557476009879, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812683.88356919, 5761306.000479563], [813858.8741562297, 5760457.010230289]]}, "properties": {"id": "14363-14365-14367", "from": "1707204481", "to": "632107409", "length_m": 1449.6162685838526, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[813858.8741562297, 5760457.010230289], [812683.88356919, 5761306.000479563]]}, "properties": {"id": "14368-14366-14364", "from": "632107409", "to": "1707204481", "length_m": 1449.6162685838526, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[813858.8741562297, 5760457.010230289], [814721.7169597894, 5759825.243687114]]}, "properties": {"id": "14369-14371-14373-14375", "from": "632107409", "to": "52495527", "length_m": 1069.414671345376, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778519.9418139562, 5765784.501642166], [778499.3941488238, 5765714.4863377195]]}, "properties": {"id": "1437-1438-1439-1440", "from": "2379162979", "to": "2379162967", "length_m": 73.41752238819424, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814721.7169597894, 5759825.243687114], [813858.8741562297, 5760457.010230289]]}, "properties": {"id": "14376-14374-14372-14370", "from": "52495527", "to": "632107409", "length_m": 1069.414671345376, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814721.7169597894, 5759825.243687114], [815589.8007481659, 5759198.970086793]]}, "properties": {"id": "14377", "from": "52495527", "to": "632110348", "length_m": 1070.4149132695447, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[815589.8007481659, 5759198.970086793], [814721.7169597894, 5759825.243687114]]}, "properties": {"id": "14378", "from": "632110348", "to": "52495527", "length_m": 1070.4149132695447, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759220.9201439332, 5729468.146984148], [759300.47985612, 5729558.527397346]]}, "properties": {"id": "14379-14381", "from": "5109912586", "to": "5109912587", "length_m": 120.41012204664865, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759300.47985612, 5729558.527397346], [759220.9201439332, 5729468.146984148]]}, "properties": {"id": "14382-14380", "from": "5109912587", "to": "5109912586", "length_m": 120.41012204664865, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836496.818049027, 5816941.315821949], [836482.8545424694, 5816932.846009671]]}, "properties": {"id": "14386", "from": "2045249226", "to": "2045249255", "length_m": 16.33147977605207, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836482.8545424694, 5816932.846009671], [836496.818049027, 5816941.315821949]]}, "properties": {"id": "14387", "from": "2045249255", "to": "2045249226", "length_m": 16.33147977605207, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838793.5740077336, 5808399.022435313], [838656.1067934013, 5807663.354641225]]}, "properties": {"id": "14388-14390-14392-14394-14396", "from": "250291495", "to": "2100804675", "length_m": 748.4030117306468, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838656.1067934013, 5807663.354641225], [838793.5740077336, 5808399.022435313]]}, "properties": {"id": "14397-14395-14393-14391-14389", "from": "2100804675", "to": "250291495", "length_m": 748.4030117306468, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810107.6634890167, 5763137.462340241], [810635.012018563, 5762765.479962686]]}, "properties": {"id": "14398", "from": "177776104", "to": "5253392214", "length_m": 645.3428243047516, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810635.012018563, 5762765.479962686], [810107.6634890167, 5763137.462340241]]}, "properties": {"id": "14399", "from": "5253392214", "to": "177776104", "length_m": 645.3428243047516, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778301.1160892976, 5745676.787023855], [777765.2567559335, 5745136.808554268]]}, "properties": {"id": "144-146-148-150-152-154-156-158-160-162-164-166-8602-24333-24335-24337-24339", "from": "289545391", "to": "2558470482", "length_m": 968.1954592821305, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810635.012018563, 5762765.479962686], [811138.1538005623, 5762410.53092564]]}, "properties": {"id": "14400-14402", "from": "5253392214", "to": "990976124", "length_m": 615.7438363180065, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[811138.1538005623, 5762410.53092564], [810635.012018563, 5762765.479962686]]}, "properties": {"id": "14403-14401", "from": "990976124", "to": "5253392214", "length_m": 615.7438363180065, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[811138.1538005623, 5762410.53092564], [812025.1532876068, 5761782.068406984]]}, "properties": {"id": "14404", "from": "990976124", "to": "52495525", "length_m": 1087.075539031386, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812025.1532876068, 5761782.068406984], [811138.1538005623, 5762410.53092564]]}, "properties": {"id": "14405", "from": "52495525", "to": "990976124", "length_m": 1087.075539031386, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812025.1532876068, 5761782.068406984], [812683.88356919, 5761306.000479563]]}, "properties": {"id": "14406-14408", "from": "52495525", "to": "1707204481", "length_m": 812.7522720685946, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812683.88356919, 5761306.000479563], [812025.1532876068, 5761782.068406984]]}, "properties": {"id": "14409-14407", "from": "1707204481", "to": "52495525", "length_m": 812.7522720685946, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784029.4819727722, 5780377.715273343], [784056.0376154738, 5780363.641726919]]}, "properties": {"id": "14412-14413-14414-14415-14416", "from": "4451687161", "to": "4451687165", "length_m": 31.788897021898812, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784056.0376154738, 5780363.641726919], [784055.8856735297, 5780340.409428276]]}, "properties": {"id": "14417-14418-14419", "from": "4451687165", "to": "4451687171", "length_m": 23.60397634253513, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784055.8856735297, 5780340.409428276], [784010.9739709505, 5780359.6020880565]]}, "properties": {"id": "14420-14421-14422-14423-14424-14425-14426-14427-14428", "from": "4451687171", "to": "4451687166", "length_m": 67.55904696717026, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784010.9739709505, 5780359.6020880565], [784029.4819727722, 5780377.715273343]]}, "properties": {"id": "14429-14410-14411", "from": "4451687166", "to": "4451687161", "length_m": 27.162416294121805, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784209.2797705403, 5780321.141125222], [785203.8730217391, 5780196.022999446]]}, "properties": {"id": "14430-14432-14434-14436-14438", "from": "4451687172", "to": "701713017", "length_m": 1002.5224860013573, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785203.8730217391, 5780196.022999446], [784209.2797705403, 5780321.141125222]]}, "properties": {"id": "14439-14437-14435-14433-14431", "from": "701713017", "to": "4451687172", "length_m": 1002.5224860013573, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784209.2797705403, 5780321.141125222], [784055.8856735297, 5780340.409428276]]}, "properties": {"id": "14440-14441-14442-14443-14444-14445", "from": "4451687172", "to": "4451687171", "length_m": 156.0268502332776, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778499.3941488238, 5765714.4863377195], [778481.4027670252, 5765785.904320066]]}, "properties": {"id": "1445-1446-1447-1448", "from": "2379162967", "to": "2379162976", "length_m": 74.05336570149713, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834248.4598616995, 5820750.400656881], [834254.5508534326, 5820769.245227015]]}, "properties": {"id": "14471", "from": "26118271", "to": "26032513", "length_m": 19.80449450101549, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834254.5508534326, 5820769.245227015], [834248.4598616995, 5820750.400656881]]}, "properties": {"id": "14472", "from": "26032513", "to": "26118271", "length_m": 19.80449450101549, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783896.9249654983, 5780492.493044929], [784029.4819727722, 5780377.715273343]]}, "properties": {"id": "14473-14474-14475-14476-14477-14478", "from": "318039525", "to": "4451687161", "length_m": 176.52549466030632, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784056.0376154738, 5780363.641726919], [784209.2797705403, 5780321.141125222]]}, "properties": {"id": "14479-14480-14481-14482", "from": "4451687165", "to": "4451687172", "length_m": 159.213644519171, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795507.722100867, 5780463.812994269], [795530.4005544446, 5780453.942405894]]}, "properties": {"id": "14483-14484", "from": "3484099740", "to": "1941528972", "length_m": 24.752370626622824, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835334.675985196, 5804260.472230034], [835208.8751803963, 5804284.149000556]]}, "properties": {"id": "14485-14486-52960-52961-52962", "from": "825547532", "to": "244892179", "length_m": 128.01355854505832, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835889.6315970593, 5817382.44574091], [835879.3157123256, 5817384.378477151]]}, "properties": {"id": "14523", "from": "30928479", "to": "299196565", "length_m": 10.495377381826536, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835220.0976080075, 5820431.347044299], [835184.103386936, 5820294.776367164]]}, "properties": {"id": "14524-14525-14526-14527-14528-14529-14530-14531-14532-14533-14534-14535-14536-14537-14538", "from": "30929533", "to": "4893087844", "length_m": 144.54520413261844, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835433.11437055, 5820342.394978857], [835293.071246315, 5820284.209438629]]}, "properties": {"id": "14539-22338-22339-22340-22341-22342-22343-22344-22345", "from": "303683087", "to": "303683164", "length_m": 151.9126066463586, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838044.7574985719, 5809770.397862801], [837998.8822363256, 5809157.401649716]]}, "properties": {"id": "14540-14542-14544-14546-14548-14550-14552-14554-14556-14558-14560-14562", "from": "75141979", "to": "4901573009", "length_m": 632.904387880548, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837998.8822363256, 5809157.401649716], [838044.7574985719, 5809770.397862801]]}, "properties": {"id": "14563-14561-14559-14557-14555-14553-14551-14549-14547-14545-14543-14541", "from": "4901573009", "to": "75141979", "length_m": 632.904387880548, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837998.8822363256, 5809157.401649716], [837888.5624778878, 5808568.728148183]]}, "properties": {"id": "14564-14566", "from": "4901573009", "to": "75143139", "length_m": 598.9463288002701, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837888.5624778878, 5808568.728148183], [837998.8822363256, 5809157.401649716]]}, "properties": {"id": "14567-14565", "from": "75143139", "to": "4901573009", "length_m": 598.9463288002701, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835906.0151445933, 5804168.549133418], [835902.91405353, 5804152.029968366]]}, "properties": {"id": "14568", "from": "825545062", "to": "825545291", "length_m": 16.80772379081029, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835902.91405353, 5804152.029968366], [835906.0151445933, 5804168.549133418]]}, "properties": {"id": "14569", "from": "825545291", "to": "825545062", "length_m": 16.80772379081029, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835971.2022724114, 5804138.614662262], [835962.0685781857, 5804157.591869753]]}, "properties": {"id": "14570-14571-14572-14573-14574", "from": "825545303", "to": "825545647", "length_m": 21.980585169959696, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837489.0458081276, 5818822.226040943], [837481.9415189433, 5818781.81932016]]}, "properties": {"id": "14575-14576", "from": "1502841861", "to": "30928568", "length_m": 41.03222143703621, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837481.9415189433, 5818781.81932016], [837479.2182196034, 5818767.297477125]]}, "properties": {"id": "14577", "from": "30928568", "to": "1505977492", "length_m": 14.774988461435148, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837479.2182196034, 5818767.297477125], [837470.791563225, 5818720.695700446]]}, "properties": {"id": "14578", "from": "1505977492", "to": "303682984", "length_m": 47.35751389887135, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835312.9014463946, 5820950.476909198], [835146.7398185835, 5821219.329882022]]}, "properties": {"id": "14596-14597-14598-14599-14600-14601-14602", "from": "303683379", "to": "1534939319", "length_m": 346.90345229187517, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837363.413364894, 5818138.590557268], [837323.1493981839, 5817941.865869097]]}, "properties": {"id": "14603", "from": "1502841898", "to": "303683021", "length_m": 200.80286317941554, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835489.7614810935, 5820926.718636574], [835312.9014463946, 5820950.476909198]]}, "properties": {"id": "14604-14605-14606-14607-14608-14609-14610-14611-14612-14613-14614-14615-14616-14617-14618-14619", "from": "5549173095", "to": "303683379", "length_m": 265.2645839935179, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836519.9795090425, 5817420.418555528], [836317.7661698414, 5817342.40992586]]}, "properties": {"id": "14620-14621-14622-14623", "from": "1502841931", "to": "2045235491", "length_m": 217.52268509226852, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837323.1493981839, 5817941.865869097], [836735.5756970644, 5817513.298490877]]}, "properties": {"id": "14624-14625-14626-14627-14628-14629-14630-14631-14632-14633-14634-14635-14636-14637-14638-14639-14640-14641-14642-14643-14644-14645", "from": "303683021", "to": "1502841925", "length_m": 760.8448015110424, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766400.7768500876, 5764446.122915753], [766418.8585431844, 5764417.616281193]]}, "properties": {"id": "1463-1465-1467-1469-1471", "from": "2379163057", "to": "2379163040", "length_m": 34.935673975188735, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790471.1017499213, 5752164.401880683], [790508.783643635, 5752160.788553623]]}, "properties": {"id": "14646-14647-14648", "from": "846538717", "to": "1321582130", "length_m": 37.891770818451306, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837354.6006205631, 5818867.7035848275], [837480.2609021611, 5818842.611981897]]}, "properties": {"id": "14652-14653-14654-14655-14656-14657-14658-14659-14660-14661-14662-14663-14664", "from": "303682977", "to": "303682988", "length_m": 157.40789510724957, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833305.2758043294, 5817414.679795878], [833289.9508399584, 5817332.296552749]]}, "properties": {"id": "14665", "from": "30918462", "to": "2299094483", "length_m": 83.7964991423161, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833289.9508399584, 5817332.296552749], [833288.2776247002, 5817323.02429594]]}, "properties": {"id": "14677", "from": "2299094483", "to": "232342716", "length_m": 9.422016531308214, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833288.2776247002, 5817323.02429594], [833229.995824689, 5816985.096641668]]}, "properties": {"id": "14678-14679", "from": "232342716", "to": "1536231997", "length_m": 342.9309639118593, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837547.0194751972, 5818722.578589456], [837470.791563225, 5818720.695700446]]}, "properties": {"id": "14680-14681-14682-14683-14684-14685-14686-14687", "from": "303682972", "to": "303682984", "length_m": 85.82189541952675, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837888.5624778878, 5808568.728148183], [837468.8485480953, 5808646.346583122]]}, "properties": {"id": "14689-14691-15209-15211-15213", "from": "75143139", "to": "75143916", "length_m": 426.84139764794133, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790508.783643635, 5752160.788553623], [790509.6059361612, 5752155.179420304]]}, "properties": {"id": "14693-14694", "from": "1321582130", "to": "510171671", "length_m": 5.6709486956675415, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793812.7329042836, 5772512.966030635], [793800.3657867633, 5772515.147416129]]}, "properties": {"id": "14695", "from": "1838774363", "to": "3957457797", "length_m": 12.558026807847684, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783262.0194417646, 5835044.928934624], [783863.2380155995, 5835030.363495445]]}, "properties": {"id": "14699-14700-14701-27263-14712", "from": "3315375752", "to": "317108668", "length_m": 601.634233609436, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782940.219574706, 5834988.620262481], [782427.987116297, 5834939.771378979]]}, "properties": {"id": "14705-14706", "from": "317108785", "to": "413303104", "length_m": 514.5605579807243, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783508.2352019215, 5835013.794595139], [782940.219574706, 5834988.620262481]]}, "properties": {"id": "14708-14709-14710", "from": "317108722", "to": "317108785", "length_m": 568.8756731719667, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784530.1857155734, 5834936.446462551], [785946.1596922249, 5834695.087904027]]}, "properties": {"id": "14711", "from": "35098343", "to": "741906561", "length_m": 1436.3969674101115, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783863.2380155995, 5835030.363495445], [784530.1857155734, 5834936.446462551]]}, "properties": {"id": "14713-14714-14715", "from": "317108668", "to": "35098343", "length_m": 673.6725617476061, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793724.1303478049, 5772035.856346935], [793712.9605337498, 5772045.396643253]]}, "properties": {"id": "14716", "from": "705048771", "to": "143215342", "length_m": 14.689520061608494, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785909.1347475142, 5834666.607262967], [784289.9455117299, 5834944.00465306]]}, "properties": {"id": "14717", "from": "741906560", "to": "35095672", "length_m": 1642.7790729488488, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790591.2797576198, 5752101.966134212], [790757.035743342, 5752071.418324038]]}, "properties": {"id": "14718-14720", "from": "518641806", "to": "37693932", "length_m": 168.5474757270835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766418.8585431844, 5764417.616281193], [766400.7768500876, 5764446.122915753]]}, "properties": {"id": "1472-1470-1468-1466-1464", "from": "2379163040", "to": "2379163057", "length_m": 34.935673975188735, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790757.035743342, 5752071.418324038], [790591.2797576198, 5752101.966134212]]}, "properties": {"id": "14721-14719", "from": "37693932", "to": "518641806", "length_m": 168.5474757270835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784289.9455117299, 5834944.00465306], [783508.2352019215, 5835013.794595139]]}, "properties": {"id": "14722-14723-14724-14725-26962-14707", "from": "35095672", "to": "317108722", "length_m": 785.4663118370404, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835186.8091617171, 5820291.575272938], [835289.4749572028, 5820292.016763256]]}, "properties": {"id": "14726-14727-14728-14729-47768-47769-47770-47771-47772-47773-47774-47775-47776", "from": "303683140", "to": "303683157", "length_m": 104.54723394857733, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766441.140509706, 5764353.2150301235], [767052.6637487011, 5764276.0784707805]]}, "properties": {"id": "1473-1475-1477-1479-1481-1483-1485-1487-1489", "from": "2379163041", "to": "1856823182", "length_m": 622.6508736698793, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833831.4976164056, 5817647.70324198], [834028.4046544645, 5817641.403026483]]}, "properties": {"id": "14730-14731-14732-14733-14734", "from": "601349707", "to": "601357359", "length_m": 197.2866798075014, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835160.1145436995, 5820264.695368279], [835157.3821100134, 5820294.850420844]]}, "properties": {"id": "14740-14741-14742-14743-14744-14745-14746", "from": "2787795144", "to": "303683137", "length_m": 34.74270449393903, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835157.3821100134, 5820294.850420844], [835184.103386936, 5820294.776367164]]}, "properties": {"id": "14747-14748-14749-14750-14751-14752-14753", "from": "303683137", "to": "4893087844", "length_m": 29.409598661629122, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835184.103386936, 5820294.776367164], [835186.8091617171, 5820291.575272938]]}, "properties": {"id": "14754", "from": "4893087844", "to": "303683140", "length_m": 4.191446236197588, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835186.8091617171, 5820291.575272938], [835187.444520067, 5820271.123516801]]}, "properties": {"id": "14755-14756-14757-14758", "from": "303683140", "to": "5154564392", "length_m": 21.503351080169704, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835187.444520067, 5820271.123516801], [835184.1106063009, 5820266.911407814]]}, "properties": {"id": "14759", "from": "5154564392", "to": "303683143", "length_m": 5.37185655245789, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835184.1106063009, 5820266.911407814], [835160.1145436995, 5820264.695368279]]}, "properties": {"id": "14760-14735-14736-14737-14738-14739", "from": "303683143", "to": "2787795144", "length_m": 25.940320752512736, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746655.6488591506, 5836078.779625954], [746021.1044331355, 5835988.4329272825]]}, "properties": {"id": "14764-14762-11188-11186-11184", "from": "2875552966", "to": "1416210977", "length_m": 647.7414794768845, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746655.6488591506, 5836078.779625954], [747448.0606676108, 5835923.6837337725]]}, "properties": {"id": "14765-14767-14769-14771-14773-14775-14777-14779", "from": "2875552966", "to": "2315437916", "length_m": 816.7692426452593, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747448.0606676108, 5835923.6837337725], [746655.6488591506, 5836078.779625954]]}, "properties": {"id": "14780-14778-14776-14774-14772-14770-14768-14766", "from": "2315437916", "to": "2875552966", "length_m": 816.7692426452593, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835157.3821100134, 5820294.850420844], [835186.9857728708, 5820440.920905254]]}, "properties": {"id": "14784-14785-14786-14787-14788-14789-14790-14791-14792-14793-14794-14795-14796-14797-14798-14799-14800-14801-14802", "from": "303683137", "to": "3459190345", "length_m": 150.1290870333031, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770691.5531745497, 5738488.57085961], [770835.1318193411, 5738395.507892328]]}, "properties": {"id": "14803", "from": "3837086153", "to": "3837086154", "length_m": 171.10097344593365, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770835.1318193411, 5738395.507892328], [770691.5531745497, 5738488.57085961]]}, "properties": {"id": "14804", "from": "3837086154", "to": "3837086153", "length_m": 171.10097344593365, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801457.424319939, 5759140.806240022], [801122.8877275225, 5758751.9601923665]]}, "properties": {"id": "14805-14807-14809-14811-14813-14815", "from": "331151419(1)", "to": "52493994", "length_m": 510.8013160367433, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801122.8877275225, 5758751.9601923665], [801457.424319939, 5759140.806240022]]}, "properties": {"id": "14816-14814-14812-14810-14808-14806", "from": "52493994", "to": "331151419(1)", "length_m": 510.8013160367433, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801122.8877275225, 5758751.9601923665], [800716.8145647829, 5758437.171650403]]}, "properties": {"id": "14817-14819-14821-14823-14825-14827", "from": "52493994", "to": "177826999", "length_m": 532.4942179146373, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800716.8145647829, 5758437.171650403], [801122.8877275225, 5758751.9601923665]]}, "properties": {"id": "14828-14826-14824-14822-14820-14818", "from": "177826999", "to": "52493994", "length_m": 532.4942179146373, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800716.8145647829, 5758437.171650403], [800205.8370475557, 5757997.476384194]]}, "properties": {"id": "14829-14831-14833-14835-14837-14839-14841-14843-14845-14847-14849-14851-14853-14855", "from": "177826999", "to": "177827013", "length_m": 857.9465224979241, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800205.8370475557, 5757997.476384194], [800716.8145647829, 5758437.171650403]]}, "properties": {"id": "14856-14854-14852-14850-14848-14846-14844-14842-14840-14838-14836-14834-14832-14830", "from": "177827013", "to": "177826999", "length_m": 857.9465224979241, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800205.8370475557, 5757997.476384194], [799371.4977863076, 5758433.745253261]]}, "properties": {"id": "14857", "from": "177827013", "to": "297864145", "length_m": 941.5160794188434, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799371.4977863076, 5758433.745253261], [800205.8370475557, 5757997.476384194]]}, "properties": {"id": "14858", "from": "297864145", "to": "177827013", "length_m": 941.5160794188434, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799371.4977863076, 5758433.745253261], [797862.0696307991, 5759220.853536836]]}, "properties": {"id": "14859-14861", "from": "297864145", "to": "916567973", "length_m": 1917.093020408809, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797862.0696307991, 5759220.853536836], [799371.4977863076, 5758433.745253261]]}, "properties": {"id": "14862-14860", "from": "916567973", "to": "297864145", "length_m": 1917.093020408809, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797862.0696307991, 5759220.853536836], [797414.2276345631, 5759456.072906844]]}, "properties": {"id": "14863-14865", "from": "916567973", "to": "916567948", "length_m": 291.0875476599903, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797414.2276345631, 5759456.072906844], [797862.0696307991, 5759220.853536836]]}, "properties": {"id": "14866-14864", "from": "916567948", "to": "916567973", "length_m": 291.0875476599903, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797414.2276345631, 5759456.072906844], [797226.1006051643, 5759560.071764734]]}, "properties": {"id": "14867-14869-14871-14873-14875", "from": "916567948", "to": "52494595", "length_m": 215.573795992546, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797226.1006051643, 5759560.071764734], [797414.2276345631, 5759456.072906844]]}, "properties": {"id": "14876-14874-14872-14870-14868", "from": "52494595", "to": "916567948", "length_m": 215.573795992546, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797226.1006051643, 5759560.071764734], [796854.5231845309, 5760220.050772932]]}, "properties": {"id": "14877-14879-14881-14883-14885", "from": "52494595", "to": "270450002", "length_m": 757.4147863245108, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796854.5231845309, 5760220.050772932], [797226.1006051643, 5759560.071764734]]}, "properties": {"id": "14886-14884-14882-14880-14878", "from": "270450002", "to": "52494595", "length_m": 757.4147863245108, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774869.2798601588, 5759525.870737054], [776447.8327060825, 5759249.816206499]]}, "properties": {"id": "14887-14889", "from": "1835206957", "to": "1835233310", "length_m": 1643.4971545093522, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776447.8327060825, 5759249.816206499], [774869.2798601588, 5759525.870737054]]}, "properties": {"id": "14890-14888", "from": "1835233310", "to": "1835206957", "length_m": 1643.4971545093522, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776447.8327060825, 5759249.816206499], [777217.4199506168, 5759109.785793844]]}, "properties": {"id": "14891", "from": "1835233310", "to": "480679207", "length_m": 782.2231402971288, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777217.4199506168, 5759109.785793844], [776447.8327060825, 5759249.816206499]]}, "properties": {"id": "14892", "from": "480679207", "to": "1835233310", "length_m": 782.2231402971288, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777217.4199506168, 5759109.785793844], [777419.1040315313, 5759106.8715537945]]}, "properties": {"id": "14893-14895-14897-14899-14901-14903", "from": "480679207", "to": "186877171", "length_m": 178.61032098750945, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767052.6637487011, 5764276.0784707805], [766441.140509706, 5764353.2150301235]]}, "properties": {"id": "1490-1488-1486-1484-1482-1480-1478-1476-1474", "from": "1856823182", "to": "2379163041", "length_m": 622.6508736698793, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777419.1040315313, 5759106.8715537945], [777217.4199506168, 5759109.785793844]]}, "properties": {"id": "14904-14902-14900-14898-14896-14894", "from": "186877171", "to": "480679207", "length_m": 178.61032098750945, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767052.6637487011, 5764276.0784707805], [768316.5938566274, 5764023.605399749]]}, "properties": {"id": "1491-1493-1495-1497-1499-1501-1503-1505-1507", "from": "1856823182", "to": "888208900", "length_m": 1308.423113437358, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759301.0805032105, 5764453.842995132], [758968.8268049752, 5766804.018582092]]}, "properties": {"id": "14945-14943-14941-14939-14937-14935-14933-15063", "from": "916681362", "to": "916681455", "length_m": 2397.989777285628, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836333.9206796132, 5820097.5897940695], [835775.9275075654, 5820442.763085879]]}, "properties": {"id": "14946-14947-14948-14949-14950-14951-14952-14953-14954-14955-14956-14957-14958", "from": "36047423", "to": "36047952", "length_m": 675.3292946551335, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835775.9275075654, 5820442.763085879], [835225.9822395043, 5820434.843923533]]}, "properties": {"id": "14959-14960-14961-14962-14963-14964-14965-14966-14967-14968-14969-14970-14971-14972-14973-14974-14975-14976-14977-14978-14979-14980-14981-14982-14983-14984-14985-14986-14987-14988-14989-14990-14991-14992-14993-14994", "from": "36047952", "to": "2633474487", "length_m": 562.855528225889, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762875.3488005808, 5763813.50816024], [763306.3094426173, 5763843.046560869]]}, "properties": {"id": "14996", "from": "209025086", "to": "1852765526", "length_m": 431.9717483189208, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763306.3094426173, 5763843.046560869], [763760.9563035037, 5763877.979553994]]}, "properties": {"id": "14997-14998-14999", "from": "1852765526", "to": "1852719081", "length_m": 456.042570079035, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758991.614850824, 5766891.096111228], [760075.6809226325, 5766807.811399954]]}, "properties": {"id": "15000-15002-15004", "from": "916681367", "to": "724309214", "length_m": 1090.7611295586403, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760075.6809226325, 5766807.811399954], [758991.614850824, 5766891.096111228]]}, "properties": {"id": "15005-15003-15001", "from": "724309214", "to": "916681367", "length_m": 1090.7611295586403, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763760.8685363785, 5763860.760276893], [763310.9739695102, 5763825.061684631]]}, "properties": {"id": "15010-15011-15012", "from": "614531192", "to": "2716421239", "length_m": 451.3940039528887, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763310.9739695102, 5763825.061684631], [762872.4393322511, 5763797.0473142]]}, "properties": {"id": "15013-15014", "from": "2716421239", "to": "2378832534", "length_m": 439.48037852171086, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727059.6202034432, 5753641.485963989], [727909.4322011643, 5753671.369045679]]}, "properties": {"id": "15015-27939-27941-27943-27945-27947-27949-27951-27953-27955-27957-27959-27961-27963-27965-27967", "from": "5857624638", "to": "632016236", "length_m": 1132.8561076328365, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760459.7272321177, 5762545.416161255], [760454.855390273, 5762561.472383756]]}, "properties": {"id": "15018", "from": "3755251459", "to": "5857617039", "length_m": 16.779068037120673, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760454.855390273, 5762561.472383756], [760459.7272321177, 5762545.416161255]]}, "properties": {"id": "15019", "from": "5857617039", "to": "3755251459", "length_m": 16.779068037120673, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759546.2681442694, 5774174.792393533], [758683.6473448433, 5773735.513058982]]}, "properties": {"id": "15020", "from": "724309228", "to": "789296019", "length_m": 968.0294278786164, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758683.6473448433, 5773735.513058982], [759546.2681442694, 5774174.792393533]]}, "properties": {"id": "15021", "from": "789296019", "to": "724309228", "length_m": 968.0294278786164, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758683.6473448433, 5773735.513058982], [758988.9454723231, 5773264.371770063]]}, "properties": {"id": "15022-15024-15026", "from": "789296019", "to": "789296022", "length_m": 574.1117884284706, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758988.9454723231, 5773264.371770063], [758683.6473448433, 5773735.513058982]]}, "properties": {"id": "15027-15025-15023", "from": "789296022", "to": "789296019", "length_m": 574.1117884284706, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758988.9454723231, 5773264.371770063], [758744.4252459089, 5771945.430868763]]}, "properties": {"id": "15028", "from": "789296022", "to": "789296027", "length_m": 1341.4153872380443, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758744.4252459089, 5771945.430868763], [758988.9454723231, 5773264.371770063]]}, "properties": {"id": "15029", "from": "789296027", "to": "789296022", "length_m": 1341.4153872380443, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758744.4252459089, 5771945.430868763], [758242.2757841309, 5770852.718557268]]}, "properties": {"id": "15030-15032", "from": "789296027", "to": "1743089322", "length_m": 1205.6598612954665, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758242.2757841309, 5770852.718557268], [758744.4252459089, 5771945.430868763]]}, "properties": {"id": "15033-15031", "from": "1743089322", "to": "789296027", "length_m": 1205.6598612954665, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758242.2757841309, 5770852.718557268], [758478.5557442863, 5770427.047286884]]}, "properties": {"id": "15034-15036-15038-15040", "from": "1743089322", "to": "1743089325", "length_m": 514.3984648696278, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758478.5557442863, 5770427.047286884], [758242.2757841309, 5770852.718557268]]}, "properties": {"id": "15041-15039-15037-15035", "from": "1743089325", "to": "1743089322", "length_m": 514.3984648696278, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758478.5557442863, 5770427.047286884], [758293.5538706814, 5769455.355279451]]}, "properties": {"id": "15042", "from": "1743089325", "to": "916681369", "length_m": 989.1466271015948, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758293.5538706814, 5769455.355279451], [758478.5557442863, 5770427.047286884]]}, "properties": {"id": "15043", "from": "916681369", "to": "1743089325", "length_m": 989.1466271015948, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758293.5538706814, 5769455.355279451], [759152.5666029732, 5767593.453005351]]}, "properties": {"id": "15044-15046-15048-15050-15052-15054-15056", "from": "916681369", "to": "916681406", "length_m": 2248.482246498001, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759152.5666029732, 5767593.453005351], [758293.5538706814, 5769455.355279451]]}, "properties": {"id": "15057-15055-15053-15051-15049-15047-15045", "from": "916681406", "to": "916681369", "length_m": 2248.482246498001, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759152.5666029732, 5767593.453005351], [758991.614850824, 5766891.096111228]]}, "properties": {"id": "15058", "from": "916681406", "to": "916681367", "length_m": 720.5627473050188, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758991.614850824, 5766891.096111228], [759152.5666029732, 5767593.453005351]]}, "properties": {"id": "15059", "from": "916681367", "to": "916681406", "length_m": 720.5627473050188, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758991.614850824, 5766891.096111228], [758968.8268049752, 5766804.018582092]]}, "properties": {"id": "15060", "from": "916681367", "to": "916681455", "length_m": 90.00995002710862, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758968.8268049752, 5766804.018582092], [758991.614850824, 5766891.096111228]]}, "properties": {"id": "15061", "from": "916681455", "to": "916681367", "length_m": 90.00995002710862, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758968.8268049752, 5766804.018582092], [759301.0805032105, 5764453.842995132]]}, "properties": {"id": "15062-14932-14934-14936-14938-14940-14942-14944", "from": "916681455", "to": "916681362", "length_m": 2397.989777285628, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761765.7736143917, 5763184.089886236], [761610.9022440135, 5762950.236706625]]}, "properties": {"id": "15064-56694-56821-56822-56823-56824-56825-56826-56827-56828", "from": "1852765616", "to": "1852765666", "length_m": 284.4783852273847, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835220.0976080075, 5820431.347044299], [835186.9857728708, 5820440.920905254]]}, "properties": {"id": "15065-15066-15067-15068-15069", "from": "30929533", "to": "3459190345", "length_m": 37.25984579142214, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835186.9857728708, 5820440.920905254], [835184.7771779159, 5820444.835654695]]}, "properties": {"id": "15070", "from": "3459190345", "to": "36047968", "length_m": 4.494791984697766, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835184.7771779159, 5820444.835654695], [835192.8786402388, 5820477.230165234]]}, "properties": {"id": "15071-15072-15073-15074-15075-15076", "from": "36047968", "to": "36047972", "length_m": 35.982333960187766, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835192.8786402388, 5820477.230165234], [835197.2388548483, 5820479.955077933]]}, "properties": {"id": "15077", "from": "36047972", "to": "5642426594", "length_m": 5.1416553850582885, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835197.2388548483, 5820479.955077933], [835229.3626369677, 5820473.890534718]]}, "properties": {"id": "15078-15079-15080-15081-15082", "from": "5642426594", "to": "36047974", "length_m": 35.0063008723686, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768316.5938566274, 5764023.605399749], [767052.6637487011, 5764276.0784707805]]}, "properties": {"id": "1508-1506-1504-1502-1500-1498-1496-1494-1492", "from": "888208900", "to": "1856823182", "length_m": 1308.423113437358, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835229.3626369677, 5820473.890534718], [835225.9822395043, 5820434.843923533]]}, "properties": {"id": "15083-15084-15085-15086-15087-15088-15089", "from": "36047974", "to": "2633474487", "length_m": 43.86455465156109, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768316.5938566274, 5764023.605399749], [769077.0825743265, 5763904.861445474]]}, "properties": {"id": "1509-1511-1513", "from": "888208900", "to": "559367552", "length_m": 771.4481781934386, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835225.9822395043, 5820434.843923533], [835220.0976080075, 5820431.347044299]]}, "properties": {"id": "15090", "from": "2633474487", "to": "30929533", "length_m": 6.845221067354633, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835414.993617984, 5818309.03449692], [835447.7408729428, 5818259.255187286]]}, "properties": {"id": "15091-15092-15093", "from": "2790078690", "to": "268387503", "length_m": 59.63164697767369, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835447.7408729428, 5818259.255187286], [835643.1107194122, 5818055.546423493]]}, "properties": {"id": "15094-15095-9025-9026", "from": "268387503", "to": "30929283", "length_m": 282.653233690463, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835933.7991239177, 5817782.39849395], [836129.2090424476, 5817598.644327477]]}, "properties": {"id": "15096-1639-1640-1641", "from": "30929285", "to": "268387192", "length_m": 268.2588320844786, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769077.0825743265, 5763904.861445474], [768316.5938566274, 5764023.605399749]]}, "properties": {"id": "1514-1512-1510", "from": "559367552", "to": "888208900", "length_m": 771.4481781934386, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790015.4930316447, 5752897.3927132385], [790021.5777337879, 5752936.352590745]]}, "properties": {"id": "1515", "from": "516046729", "to": "516046669", "length_m": 39.432165224916595, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837310.2671980171, 5817944.772706199], [837351.4366055543, 5818162.331751705]]}, "properties": {"id": "15157", "from": "303683055", "to": "1502841906", "length_m": 221.4200946091997, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790021.5777337879, 5752936.352590745], [790015.4930316447, 5752897.3927132385]]}, "properties": {"id": "1516", "from": "516046669", "to": "516046729", "length_m": 39.432165224916595, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785630.3517385108, 5754861.715084221], [785540.5174323055, 5754876.777740254]]}, "properties": {"id": "15161-15162-15163-15164-15165-15166-15167-15168-15169", "from": "3413826115", "to": "3413848404", "length_m": 50.00000000000001, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766382.1252331135, 5764404.557850281], [766371.1918535376, 5764434.551501552]]}, "properties": {"id": "1517-1519-1521", "from": "2379163043", "to": "2379163053", "length_m": 33.681042752759026, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836731.1986858044, 5817524.407791577], [837310.2671980171, 5817944.772706199]]}, "properties": {"id": "15170-15171-15172-15173-15174-15175-15176-15177-15178-15179-15180-15181-15182-15183-15184-15185-15186", "from": "1502841904", "to": "303683055", "length_m": 749.4335106044214, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785494.5520149921, 5754803.673685188], [785490.8204725974, 5754868.832953181]]}, "properties": {"id": "15187-15188-15189-15190-15191-15192-15193-15194-15195", "from": "3413826138", "to": "3413848410", "length_m": 50.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785404.9325918308, 5754908.034617491], [785485.6444233479, 5754903.235628699]]}, "properties": {"id": "15196-15197-15198-15199-15200-15201-15202-15203-15204", "from": "3413826150", "to": "5633787500", "length_m": 50.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837468.8485480953, 5808646.346583122], [837888.5624778878, 5808568.728148183]]}, "properties": {"id": "15214-15212-15210-14692-14690", "from": "75143916", "to": "75143139", "length_m": 426.84139764794133, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766371.1918535376, 5764434.551501552], [766382.1252331135, 5764404.557850281]]}, "properties": {"id": "1522-1520-1518", "from": "2379163053", "to": "2379163043", "length_m": 33.681042752759026, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761353.2733196514, 5763329.860901261], [760682.9421134213, 5764298.331502301]]}, "properties": {"id": "15224-15222-15220-15218-15216-4863", "from": "559370716", "to": "1852782850", "length_m": 1177.9193792432634, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761353.2733196514, 5763329.860901261], [761603.4536610353, 5762960.255004389]]}, "properties": {"id": "15225-15227-15229-15231", "from": "559370716", "to": "52483838", "length_m": 446.32473825683286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766418.8585431844, 5764417.616281193], [766441.140509706, 5764353.2150301235]]}, "properties": {"id": "1523-1524-1525", "from": "2379163040", "to": "2379163041", "length_m": 69.41079679591039, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761603.4536610353, 5762960.255004389], [761353.2733196514, 5763329.860901261]]}, "properties": {"id": "15232-15230-15228-15226", "from": "52483838", "to": "559370716", "length_m": 446.32473825683286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761603.4536610353, 5762960.255004389], [761610.9022440135, 5762950.236706625]]}, "properties": {"id": "15233", "from": "52483838", "to": "1852765666", "length_m": 12.483896777316534, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761610.9022440135, 5762950.236706625], [761603.4536610353, 5762960.255004389]]}, "properties": {"id": "15234", "from": "1852765666", "to": "52483838", "length_m": 12.483896777316534, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761610.9022440135, 5762950.236706625], [761734.0599117628, 5762783.047543106]]}, "properties": {"id": "15235-15237-15239-15241", "from": "1852765666", "to": "1852765684", "length_m": 207.90303260264673, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761734.0599117628, 5762783.047543106], [761610.9022440135, 5762950.236706625]]}, "properties": {"id": "15242-15240-15238-15236", "from": "1852765684", "to": "1852765666", "length_m": 207.90303260264673, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829787.1777867177, 5821847.407878037], [829801.1659370842, 5821844.803032297]]}, "properties": {"id": "15252", "from": "605209721", "to": "605209735", "length_m": 14.228618024124387, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835184.7771779159, 5820444.835654695], [834714.9977938833, 5820602.468181955]]}, "properties": {"id": "15253-15254-15255-15256-15257-15258-15259-15260-15261-15262-15263-15264-15265-15266", "from": "36047968", "to": "26118272", "length_m": 495.94845438817936, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769381.2412552368, 5765679.396279756], [769395.7729847103, 5765646.8780458355]]}, "properties": {"id": "1526-1528-1530", "from": "3187977321", "to": "2379163027", "length_m": 35.92515633843534, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837557.7337979971, 5813735.301384375], [837519.5579098662, 5813613.794493121]]}, "properties": {"id": "15276-15277-15278-15279-15280-23192-23193", "from": "3480752970", "to": "33531726", "length_m": 129.01424990066724, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775527.174860089, 5753169.641980711], [776943.7714626468, 5752887.303813651]]}, "properties": {"id": "15281-15283", "from": "648849091", "to": "498837780", "length_m": 1444.4634588988206, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776943.7714626468, 5752887.303813651], [775527.174860089, 5753169.641980711]]}, "properties": {"id": "15284-15282", "from": "498837780", "to": "648849091", "length_m": 1444.4634588988206, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776943.7714626468, 5752887.303813651], [778389.6540490302, 5752619.545578334]]}, "properties": {"id": "15285", "from": "498837780", "to": "2558469834", "length_m": 1470.4662249499204, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778389.6540490302, 5752619.545578334], [776943.7714626468, 5752887.303813651]]}, "properties": {"id": "15286", "from": "2558469834", "to": "498837780", "length_m": 1470.4662249499204, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778389.6540490302, 5752619.545578334], [779812.5432368845, 5752356.985817903]]}, "properties": {"id": "15287", "from": "2558469834", "to": "519797048", "length_m": 1446.9109375569258, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779812.5432368845, 5752356.985817903], [778389.6540490302, 5752619.545578334]]}, "properties": {"id": "15288", "from": "519797048", "to": "2558469834", "length_m": 1446.9109375569258, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828822.5123128057, 5814796.428480172], [828260.1846719956, 5815207.542648011]]}, "properties": {"id": "15291-15292-15293-15294-15295-15296-15297-15298-15299-15300-15301-15302-15303", "from": "1536031865", "to": "36715507", "length_m": 707.4776788645129, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783421.8631166343, 5750700.304218881], [783303.0466822095, 5750027.300313101]]}, "properties": {"id": "15304-15306-15308-15310-15312", "from": "519796861", "to": "519796961", "length_m": 686.0239246567904, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769395.7729847103, 5765646.8780458355], [769381.2412552368, 5765679.396279756]]}, "properties": {"id": "1531-1529-1527", "from": "2379163027", "to": "3187977321", "length_m": 35.92515633843534, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783303.0466822095, 5750027.300313101], [783421.8631166343, 5750700.304218881]]}, "properties": {"id": "15313-15311-15309-15307-15305", "from": "519796961", "to": "519796861", "length_m": 686.0239246567904, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774881.2925211997, 5751110.222899667], [775849.9526072468, 5751098.132351233]]}, "properties": {"id": "15319-15317-15315-40547-40545-40543-40541-40539-40537-40535-40533", "from": "494901169", "to": "2558469913", "length_m": 982.4589145167068, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769377.9858597239, 5765585.7219683435], [769357.7345098874, 5765630.77544302]]}, "properties": {"id": "1532-1533-1534", "from": "2379163031", "to": "2373877419", "length_m": 49.89334870800803, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837700.4331874999, 5814786.040120541], [837644.4538351796, 5814818.681623589]]}, "properties": {"id": "15320-15321-15322-15323-15324-15325-15326-15327", "from": "33302806", "to": "33302853", "length_m": 71.26482810136667, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790122.8204510574, 5754380.008723521], [790208.6965395354, 5754644.880818688]]}, "properties": {"id": "15331-15329-40786-40784", "from": "4574367354", "to": "513382353", "length_m": 278.9401753105293, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790122.8204510574, 5754380.008723521], [790123.0825017961, 5754374.386492898]]}, "properties": {"id": "15332", "from": "4574367354", "to": "4574367353", "length_m": 5.628334368747304, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790123.0825017961, 5754374.386492898], [790122.8204510574, 5754380.008723521]]}, "properties": {"id": "15333", "from": "4574367353", "to": "4574367354", "length_m": 5.628334368747304, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830893.0273379248, 5813827.831874043], [830732.4603003438, 5813929.395026807]]}, "properties": {"id": "15336-15337-15338-15339", "from": "1363214351", "to": "35082905", "length_m": 189.995477431869, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830732.4603003438, 5813929.395026807], [830722.2027006436, 5813936.189330667]]}, "properties": {"id": "15340", "from": "35082905", "to": "256040868", "length_m": 12.303695265116604, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837322.7327910312, 5814669.989714962], [837553.3388296532, 5814901.1782476455]]}, "properties": {"id": "15341-15342-15343-15344-15345", "from": "26475397", "to": "33302761", "length_m": 327.1108023741844, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832396.2030549049, 5812235.102948552], [832359.7874747311, 5811987.58752711]]}, "properties": {"id": "15346-15348-8725-8723-48363-48361-48302-13712-13714-13716", "from": "1536031888", "to": "366746068", "length_m": 250.1987506238429, "freespeed_mps": 16.666666666666668, "capacity_vph": 2250.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829132.9006826726, 5814837.927601106], [829473.390112578, 5814676.988605773]]}, "properties": {"id": "15355-25386-25387-25388", "from": "1536031862", "to": "1764268339", "length_m": 376.61061883222595, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768580.0637014348, 5749245.889251414], [767996.2044435088, 5749562.871529546]]}, "properties": {"id": "15358", "from": "313077142", "to": "313077143", "length_m": 664.3563782375171, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767996.2044435088, 5749562.871529546], [768580.0637014348, 5749245.889251414]]}, "properties": {"id": "15359", "from": "313077143", "to": "313077142", "length_m": 664.3563782375171, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769357.7345098874, 5765630.77544302], [769341.1527695141, 5765664.128467548]]}, "properties": {"id": "1536-1538", "from": "2373877419", "to": "2379163023", "length_m": 38.29157100730298, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767996.2044435088, 5749562.871529546], [767433.6212862349, 5749853.377784972]]}, "properties": {"id": "15360-15362", "from": "313077143", "to": "313077145", "length_m": 633.208264200501, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767433.6212862349, 5749853.377784972], [767996.2044435088, 5749562.871529546]]}, "properties": {"id": "15363-15361", "from": "313077145", "to": "313077143", "length_m": 633.208264200501, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767433.6212862349, 5749853.377784972], [766989.9294944113, 5750197.940348019]]}, "properties": {"id": "15364-15366-15368", "from": "313077145", "to": "313077146", "length_m": 567.509084756005, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766989.9294944113, 5750197.940348019], [767433.6212862349, 5749853.377784972]]}, "properties": {"id": "15369-15367-15365", "from": "313077146", "to": "313077145", "length_m": 567.509084756005, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766989.9294944113, 5750197.940348019], [766224.4251597268, 5750314.887671949]]}, "properties": {"id": "15370-15372-15374-15376", "from": "313077146", "to": "601757141", "length_m": 779.6629279665366, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766224.4251597268, 5750314.887671949], [766989.9294944113, 5750197.940348019]]}, "properties": {"id": "15377-15375-15373-15371", "from": "601757141", "to": "313077146", "length_m": 779.6629279665366, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766224.4251597268, 5750314.887671949], [765480.1960257462, 5750282.043130319]]}, "properties": {"id": "15378-15380-15382", "from": "601757141", "to": "371398747", "length_m": 749.5326050758534, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765480.1960257462, 5750282.043130319], [766224.4251597268, 5750314.887671949]]}, "properties": {"id": "15383-15381-15379", "from": "371398747", "to": "601757141", "length_m": 749.5326050758534, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831738.8507389568, 5813292.334063589], [830987.9083765405, 5813767.922735041]]}, "properties": {"id": "15384-15385-15386-15387-54909-54910-54911-54912-54913-54914", "from": "1536031911", "to": "360504702", "length_m": 888.8874130464798, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836228.5925251078, 5808842.735630278], [836123.0696170216, 5808289.6389526725]]}, "properties": {"id": "15389-15390-15391-15392-15393-15394-15395-15396", "from": "75146077", "to": "4067819120", "length_m": 563.7704937709852, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769341.1527695141, 5765664.128467548], [769357.7345098874, 5765630.77544302]]}, "properties": {"id": "1539-1537", "from": "2379163023", "to": "2373877419", "length_m": 38.29157100730298, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832321.9992527366, 5811730.098213784], [832262.6272621638, 5811310.11001452]]}, "properties": {"id": "15397-15398-15399-15400-15401-32374-32375-32376-32377", "from": "298335238", "to": "366746064", "length_m": 424.1782861474558, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832671.6003989235, 5812932.8503591195], [832982.2630912707, 5812870.148078224]]}, "properties": {"id": "15402-15403-15404", "from": "1536031875", "to": "298347614", "length_m": 316.9451201658744, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832982.2630912707, 5812870.148078224], [833021.7702357941, 5812861.666427705]]}, "properties": {"id": "15405", "from": "298347614", "to": "298347595", "length_m": 40.40733659849431, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833021.7702357941, 5812861.666427705], [833508.4060526047, 5812767.157000097]]}, "properties": {"id": "15406-15407-15408-15409-15410", "from": "298347595", "to": "268170653", "length_m": 495.7486629129676, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837703.2335568394, 5814568.902506981], [837708.3124361427, 5814612.650263548]]}, "properties": {"id": "15411", "from": "356259711", "to": "1504829803", "length_m": 44.04158510447376, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832897.6263883365, 5812872.060741429], [832623.0775743292, 5812924.6493432075]]}, "properties": {"id": "15412-15413-15414", "from": "1536031891", "to": "298347787", "length_m": 279.541503663041, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832623.0775743292, 5812924.6493432075], [832514.6336607703, 5812946.367058255]]}, "properties": {"id": "15415-15416", "from": "298347787", "to": "243827556", "length_m": 110.61086068177119, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832312.3257192159, 5811761.733344014], [832359.7874747311, 5811987.58752711]]}, "properties": {"id": "15417-15418-15419", "from": "366746065", "to": "366746068", "length_m": 230.791333745949, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832065.9902858518, 5813085.492619151], [831994.5752244237, 5813131.615699295]]}, "properties": {"id": "15420", "from": "1536031942", "to": "4737299340", "length_m": 85.01440772102572, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831994.5752244237, 5813131.615699295], [831924.8295776173, 5813174.724231929]]}, "properties": {"id": "15421-15422-15423", "from": "4737299340", "to": "465189170", "length_m": 82.0001572012141, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831924.8295776173, 5813174.724231929], [831738.8507389568, 5813292.334063589]]}, "properties": {"id": "15424-15425", "from": "465189170", "to": "1536031911", "length_m": 220.08259090445173, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803860.4947824073, 5767376.292743529], [804211.8371613395, 5767251.576879236]]}, "properties": {"id": "15426-15427-15428-15429-15430", "from": "974358037", "to": "435990857", "length_m": 372.8217934388553, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769377.9858597239, 5765585.7219683435], [769077.0825743265, 5763904.861445474]]}, "properties": {"id": "1543-1541-56374-56372", "from": "2379163031", "to": "559367552", "length_m": 1707.7037839354718, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803814.2921034298, 5767392.819871391], [803860.4947824073, 5767376.292743529]]}, "properties": {"id": "15431", "from": "957930684", "to": "974358037", "length_m": 49.0696799654974, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803810.3645568336, 5767378.849766369], [803415.4940487805, 5767521.049987575]]}, "properties": {"id": "15432", "from": "537508940", "to": "366137196", "length_m": 419.69467532462625, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803856.1102343771, 5767363.473614904], [803810.3645568336, 5767378.849766369]]}, "properties": {"id": "15433", "from": "974357971", "to": "537508940", "length_m": 48.26067802077197, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830732.2586383, 5813952.274256291], [830742.6023681674, 5813945.865634203]]}, "properties": {"id": "15434", "from": "35084641", "to": "256040845", "length_m": 12.168121645274644, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830742.6023681674, 5813945.865634203], [830990.8581295849, 5813788.373739739]]}, "properties": {"id": "15435-39631-39632-55550-55551-55552-55553", "from": "256040845", "to": "360504707", "length_m": 294.00559541410445, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831706.5484488313, 5821469.792441484], [831844.3990732379, 5821423.543773826]]}, "properties": {"id": "15436-15437-15438-15439-15440-15441-15442-15443-15444", "from": "1312612514", "to": "1312612515", "length_m": 153.37227949344987, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838329.5797726075, 5809716.59057709], [838044.7574985719, 5809770.397862801]]}, "properties": {"id": "1544-1546-1548", "from": "321401326", "to": "75141979", "length_m": 289.8660637013007, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838044.7574985719, 5809770.397862801], [838329.5797726075, 5809716.59057709]]}, "properties": {"id": "1549-1547-1545", "from": "75141979", "to": "321401326", "length_m": 289.8660637013007, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769395.7729847103, 5765646.8780458355], [769377.9858597239, 5765585.7219683435]]}, "properties": {"id": "1550-1551-1552-1553", "from": "2379163027", "to": "2379163031", "length_m": 65.03593346079478, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753954.1663143297, 5733919.140337099], [753060.7490037613, 5733306.204889637]]}, "properties": {"id": "15518-15516-15514-15512-15510-15508-15506-15504-15502-15500-15498-15496-15494-15492-15490-15488-15486-15484-15482-15480-15478-15476-15474-15472-15470-15468-15466-15464-15462-15460-15458-15456-15454-15452-15450-15448-15446-26961", "from": "36705258", "to": "551613602", "length_m": 1425.867233110645, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835781.930380203, 5820249.510491621], [835762.5172204566, 5820259.618772296]]}, "properties": {"id": "15537-16765-16766", "from": "1505977560", "to": "1505977585", "length_m": 21.931044173193808, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755612.5722696183, 5737210.761875825], [754888.7622891997, 5736902.179116237]]}, "properties": {"id": "15538-15540-15542-15544-15546-15548-15550-15552-15554-15556", "from": "75293589", "to": "551613726", "length_m": 549.370707913883, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754888.7622891997, 5736902.179116237], [755612.5722696183, 5737210.761875825]]}, "properties": {"id": "15557-15555-15553-15551-15549-15547-15545-15543-15541-15539", "from": "551613726", "to": "75293589", "length_m": 549.370707913883, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754888.7622891997, 5736902.179116237], [754355.6105170622, 5736715.038840792]]}, "properties": {"id": "15558-15560-15562-15564-15566-15568-15570-15572-15574-15576-15578-15580-15582", "from": "551613726", "to": "5833441551", "length_m": 610.961424126879, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761777.765767035, 5839242.908653311], [762592.1382873221, 5839461.831665914]]}, "properties": {"id": "1556-1557-1558-50615-50616", "from": "2669542595", "to": "1555084631", "length_m": 843.3170993220151, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754355.6105170622, 5736715.038840792], [754888.7622891997, 5736902.179116237]]}, "properties": {"id": "15583-15581-15579-15577-15575-15573-15571-15569-15567-15565-15563-15561-15559", "from": "5833441551", "to": "551613726", "length_m": 610.961424126879, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754355.6105170622, 5736715.038840792], [754123.0305147471, 5736474.548889031]]}, "properties": {"id": "15584-15586-15588-15590-15592-15594-15596-15598-15600-15602-15604-15606-15608-15610-15612", "from": "5833441551", "to": "551613703", "length_m": 759.2436658896161, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754123.0305147471, 5736474.548889031], [754355.6105170622, 5736715.038840792]]}, "properties": {"id": "15613-15611-15609-15607-15605-15603-15601-15599-15597-15595-15593-15591-15589-15587-15585", "from": "551613703", "to": "5833441551", "length_m": 759.2436658896161, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754123.0305147471, 5736474.548889031], [753687.2342380374, 5736165.168335216]]}, "properties": {"id": "15614-15616-15618-15620-15622-15624-15626", "from": "551613703", "to": "5833441549", "length_m": 541.4340679790798, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760876.757163645, 5838971.6776117515], [759749.8202396099, 5838659.907920992]]}, "properties": {"id": "1562-1563-1564", "from": "1555084567", "to": "1555084483", "length_m": 1169.2698464299438, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753687.2342380374, 5736165.168335216], [754123.0305147471, 5736474.548889031]]}, "properties": {"id": "15627-15625-15623-15621-15619-15617-15615", "from": "5833441549", "to": "551613703", "length_m": 541.4340679790798, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753687.2342380374, 5736165.168335216], [752576.3631357483, 5735865.660854239]]}, "properties": {"id": "15628-15630-15632-15634-15636-15638-15640-15642-15644-15646-15648-15650-15652-15654-15656-15658-15660-15662-15664", "from": "5833441549", "to": "3902937586", "length_m": 1242.4312889159276, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837095.5431302601, 5806768.432775339], [837123.0659119601, 5806657.005845306]]}, "properties": {"id": "1565-1566-1567-1568-1569", "from": "254228083", "to": "254257339", "length_m": 129.2821354504335, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752576.3631357483, 5735865.660854239], [753687.2342380374, 5736165.168335216]]}, "properties": {"id": "15665-15663-15661-15659-15657-15655-15653-15651-15649-15647-15645-15643-15641-15639-15637-15635-15633-15631-15629", "from": "3902937586", "to": "5833441549", "length_m": 1242.4312889159276, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752576.3631357483, 5735865.660854239], [751979.436321307, 5735500.226895468]]}, "properties": {"id": "15666-15668-15670-15672-15674-15676-15678-15680-15682-15684-15686-15688", "from": "3902937586", "to": "313076441", "length_m": 720.2844173949636, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751979.436321307, 5735500.226895468], [752576.3631357483, 5735865.660854239]]}, "properties": {"id": "15689-15687-15685-15683-15681-15679-15677-15675-15673-15671-15669-15667", "from": "313076441", "to": "3902937586", "length_m": 720.2844173949636, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751979.436321307, 5735500.226895468], [751707.463197387, 5735021.457995344]]}, "properties": {"id": "15690-15692-15694-15696-15698-15700-15702-15704", "from": "313076441", "to": "551613597", "length_m": 558.0140405925682, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751707.463197387, 5735021.457995344], [751979.436321307, 5735500.226895468]]}, "properties": {"id": "15705-15703-15701-15699-15697-15695-15693-15691", "from": "551613597", "to": "313076441", "length_m": 558.0140405925682, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751707.463197387, 5735021.457995344], [751023.8875756763, 5734774.67068988]]}, "properties": {"id": "15706-15708-15710-15712-15714-15716-15718-15720-15722-15724-15726", "from": "551613597", "to": "551613583", "length_m": 806.2044912751103, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751023.8875756763, 5734774.67068988], [751707.463197387, 5735021.457995344]]}, "properties": {"id": "15727-15725-15723-15721-15719-15717-15715-15713-15711-15709-15707", "from": "551613583", "to": "551613597", "length_m": 806.2044912751103, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751023.8875756763, 5734774.67068988], [750434.6024555229, 5734846.789769515]]}, "properties": {"id": "15728-15730-15732-15734-15736-15738-15740-15742-15744-15746-15748", "from": "551613583", "to": "551613519", "length_m": 636.1636364123151, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750434.6024555229, 5734846.789769515], [751023.8875756763, 5734774.67068988]]}, "properties": {"id": "15749-15747-15745-15743-15741-15739-15737-15735-15733-15731-15729", "from": "551613519", "to": "551613583", "length_m": 636.1636364123151, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750434.6024555229, 5734846.789769515], [750141.935995308, 5734090.558710738]]}, "properties": {"id": "15750-15752-15754-15756-15758-15760-15762-15764-15766-15768-15770-15772-15774-15776-15778-15780-15782-15784", "from": "551613519", "to": "551613503", "length_m": 945.364756834296, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793524.3999111198, 5770545.928418105], [793652.867167108, 5771723.214595408]]}, "properties": {"id": "1576-1577-1578-1579-1580-1581-27732-27733-27734-27735-27736-22801-22802-22803-22804-22805-22806-22807-22808-22809-22810", "from": "880499716", "to": "317730866", "length_m": 1193.0581009206808, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750141.935995308, 5734090.558710738], [750434.6024555229, 5734846.789769515]]}, "properties": {"id": "15785-15783-15781-15779-15777-15775-15773-15771-15769-15767-15765-15763-15761-15759-15757-15755-15753-15751", "from": "551613503", "to": "551613519", "length_m": 945.364756834296, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750141.935995308, 5734090.558710738], [749580.1131799165, 5733638.566630071]]}, "properties": {"id": "15786-15788-15790-15792-15794-15796-15798-15800-15802-15804-15806", "from": "551613503", "to": "551613470", "length_m": 802.7486308115043, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749580.1131799165, 5733638.566630071], [750141.935995308, 5734090.558710738]]}, "properties": {"id": "15807-15805-15803-15801-15799-15797-15795-15793-15791-15789-15787", "from": "551613470", "to": "551613503", "length_m": 802.7486308115043, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749580.1131799165, 5733638.566630071], [749488.0292888, 5733157.656183757]]}, "properties": {"id": "15808-15810-15812-15814-15816-15818", "from": "551613470", "to": "312994063", "length_m": 506.95323855780555, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749488.0292888, 5733157.656183757], [749580.1131799165, 5733638.566630071]]}, "properties": {"id": "15819-15817-15815-15813-15811-15809", "from": "312994063", "to": "551613470", "length_m": 506.95323855780555, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837080.4773873256, 5806781.527598853], [837097.0715565702, 5806777.732879393]]}, "properties": {"id": "1582", "from": "254257360", "to": "254257364", "length_m": 17.022524714989874, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749488.0292888, 5733157.656183757], [749052.6469568373, 5732847.683303445]]}, "properties": {"id": "15820-15822-15824-15826-15828-15830-15832-15834-15836-15838-15840", "from": "312994063", "to": "551613442", "length_m": 564.3096942074621, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837097.0715565702, 5806777.732879393], [837080.4773873256, 5806781.527598853]]}, "properties": {"id": "1583", "from": "254257364", "to": "254257360", "length_m": 17.022524714989874, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749052.6469568373, 5732847.683303445], [749488.0292888, 5733157.656183757]]}, "properties": {"id": "15841-15839-15837-15835-15833-15831-15829-15827-15825-15823-15821", "from": "551613442", "to": "312994063", "length_m": 564.3096942074621, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749052.6469568373, 5732847.683303445], [749006.409770749, 5732359.956482339]]}, "properties": {"id": "15842-15844-15846-15848-15850-15852-15854", "from": "551613442", "to": "551613425", "length_m": 506.34509988561337, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749006.409770749, 5732359.956482339], [749052.6469568373, 5732847.683303445]]}, "properties": {"id": "15855-15853-15851-15849-15847-15845-15843", "from": "551613425", "to": "551613442", "length_m": 506.34509988561337, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749006.409770749, 5732359.956482339], [748768.4461578577, 5731885.283993115]]}, "properties": {"id": "15856-15858-15860-15862-15864-15866-15868-15870-15872-15874-15876-15878-15880-15882", "from": "551613425", "to": "551613374", "length_m": 607.7060551732494, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748768.4461578577, 5731885.283993115], [749006.409770749, 5732359.956482339]]}, "properties": {"id": "15883-15881-15879-15877-15875-15873-15871-15869-15867-15865-15863-15861-15859-15857", "from": "551613374", "to": "551613425", "length_m": 607.7060551732494, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748768.4461578577, 5731885.283993115], [748382.1052173073, 5731477.513027302]]}, "properties": {"id": "15884-15886-15888-15890-15892-15894-15896-15898-15900-15902-15904-15906-15908-15910-15912-15914", "from": "551613374", "to": "551613343", "length_m": 683.763917302671, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838039.1167908828, 5807292.27795906], [838541.2531940751, 5807452.617487937]]}, "properties": {"id": "1589-1590-1591", "from": "322527304", "to": "253525719", "length_m": 527.142647392033, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748382.1052173073, 5731477.513027302], [748768.4461578577, 5731885.283993115]]}, "properties": {"id": "15915-15913-15911-15909-15907-15905-15903-15901-15899-15897-15895-15893-15891-15889-15887-15885", "from": "551613343", "to": "551613374", "length_m": 683.763917302671, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748382.1052173073, 5731477.513027302], [748463.7392451724, 5730847.6776120905]]}, "properties": {"id": "15916-15918-15920-15922-15924-15926-15928-15930-15932-15934-15936-15938-15940-15942-15944-15946-15948-15950", "from": "551613343", "to": "551613310", "length_m": 987.6551164278843, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748463.7392451724, 5730847.6776120905], [748382.1052173073, 5731477.513027302]]}, "properties": {"id": "15951-15949-15947-15945-15943-15941-15939-15937-15935-15933-15931-15929-15927-15925-15923-15921-15919-15917", "from": "551613310", "to": "551613343", "length_m": 987.6551164278843, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748463.7392451724, 5730847.6776120905], [748527.016247655, 5730314.633287575]]}, "properties": {"id": "15952-15954-15956-15958-15960-15962-15964", "from": "551613310", "to": "551613233", "length_m": 557.3357987828946, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748527.016247655, 5730314.633287575], [748463.7392451724, 5730847.6776120905]]}, "properties": {"id": "15965-15963-15961-15959-15957-15955-15953", "from": "551613233", "to": "551613310", "length_m": 557.3357987828946, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748527.016247655, 5730314.633287575], [748346.4024295754, 5729818.053054626]]}, "properties": {"id": "15966-15968-15970-15972-15974-15976-15978-15980-15982-15984-15986-15988-15990-15992-15994-15996", "from": "551613233", "to": "551613208", "length_m": 658.3738254608211, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748346.4024295754, 5729818.053054626], [748527.016247655, 5730314.633287575]]}, "properties": {"id": "15997-15995-15993-15991-15989-15987-15985-15983-15981-15979-15977-15975-15973-15971-15969-15967", "from": "551613208", "to": "551613233", "length_m": 658.3738254608211, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748346.4024295754, 5729818.053054626], [748039.0790523641, 5730136.370210176]]}, "properties": {"id": "15998-16000-16002-16004-16006-16008-16010-16012-16014-16016-16018-16020", "from": "551613208", "to": "551613188", "length_m": 512.2303359726154, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748039.0790523641, 5730136.370210176], [748346.4024295754, 5729818.053054626]]}, "properties": {"id": "16021-16019-16017-16015-16013-16011-16009-16007-16005-16003-16001-15999", "from": "551613188", "to": "551613208", "length_m": 512.2303359726154, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748039.0790523641, 5730136.370210176], [747902.2979357612, 5729133.76499303]]}, "properties": {"id": "16022-16024-16026-16028-16030-16032-16034-16036-16038-16040-16042-16044-16046-16048-16050-16052-16054-16056-16058-16060-16062-16064-16066-16068-16070-16072-16074-16076-16078-16080-16082-16084-16086-16088-16090-16092-16094-16096-16098", "from": "551613188", "to": "551613087", "length_m": 1496.8517272264044, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812547.9834583747, 5791922.205641992], [813253.0546630705, 5792192.578634503]]}, "properties": {"id": "1604-1605-1606-1607-1608-1609-1610-1611-1612-1613-1614", "from": "351095902", "to": "351095911", "length_m": 767.6536552281967, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747902.2979357612, 5729133.76499303], [748039.0790523641, 5730136.370210176]]}, "properties": {"id": "16099-16097-16095-16093-16091-16089-16087-16085-16083-16081-16079-16077-16075-16073-16071-16069-16067-16065-16063-16061-16059-16057-16055-16053-16051-16049-16047-16045-16043-16041-16039-16037-16035-16033-16031-16029-16027-16025-16023", "from": "551613087", "to": "551613188", "length_m": 1496.8517272264044, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747902.2979357612, 5729133.76499303], [747577.7671683595, 5728796.578434621]]}, "properties": {"id": "16100-16102-16104-16106-16108-16110-16112-16114", "from": "551613087", "to": "551613069", "length_m": 528.518997922479, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747577.7671683595, 5728796.578434621], [747902.2979357612, 5729133.76499303]]}, "properties": {"id": "16115-16113-16111-16109-16107-16105-16103-16101", "from": "551613069", "to": "551613087", "length_m": 528.518997922479, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747577.7671683595, 5728796.578434621], [746630.1167076163, 5728786.861279857]]}, "properties": {"id": "16116-16118-16120-16122-16124-16126-16128-16130-16132-16134-16136-16138-16140-16142-16144-16146-16148-16150-16152-16154-16156-16158", "from": "551613069", "to": "551613013", "length_m": 990.9445064303161, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812229.5116943968, 5791485.771053156], [812486.4564277914, 5791816.3162984075]]}, "properties": {"id": "1615-1616-1617-1618-1619-1620-1621-1622-1623-1624-1625-1626", "from": "174839398", "to": "351095899", "length_m": 431.8230422587305, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746630.1167076163, 5728786.861279857], [747577.7671683595, 5728796.578434621]]}, "properties": {"id": "16159-16157-16155-16153-16151-16149-16147-16145-16143-16141-16139-16137-16135-16133-16131-16129-16127-16125-16123-16121-16119-16117", "from": "551613013", "to": "551613069", "length_m": 990.9445064303161, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746630.1167076163, 5728786.861279857], [746057.8156397681, 5728438.552283845]]}, "properties": {"id": "16160-16162-16164-16166-16168-16170-16172-16174-16176-16178-16180-16182-16184-16186-16188-16190", "from": "551613013", "to": "551612990", "length_m": 771.132972516641, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746057.8156397681, 5728438.552283845], [746630.1167076163, 5728786.861279857]]}, "properties": {"id": "16191-16189-16187-16185-16183-16181-16179-16177-16175-16173-16171-16169-16167-16165-16163-16161", "from": "551612990", "to": "551613013", "length_m": 771.132972516641, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746057.8156397681, 5728438.552283845], [745229.9966316344, 5728273.896296796]]}, "properties": {"id": "16192-16194-16196-16198-16200-16202-16204-16206-16208-16210-16212-16214-16216", "from": "551612990", "to": "551612959", "length_m": 868.4548841670667, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745229.9966316344, 5728273.896296796], [746057.8156397681, 5728438.552283845]]}, "properties": {"id": "16217-16215-16213-16211-16209-16207-16205-16203-16201-16199-16197-16195-16193", "from": "551612959", "to": "551612990", "length_m": 868.4548841670667, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745229.9966316344, 5728273.896296796], [744849.6661828998, 5727852.098338804]]}, "properties": {"id": "16218-16220-16222-16224-16226-16228-16230-16232-16234-16236-16238", "from": "551612959", "to": "551612948", "length_m": 611.8940234029023, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744849.6661828998, 5727852.098338804], [745229.9966316344, 5728273.896296796]]}, "properties": {"id": "16239-16237-16235-16233-16231-16229-16227-16225-16223-16221-16219", "from": "551612948", "to": "551612959", "length_m": 611.8940234029023, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744849.6661828998, 5727852.098338804], [744456.2575511415, 5727440.016896099]]}, "properties": {"id": "16240-16242-16244-16246-16248", "from": "551612948", "to": "551612938", "length_m": 574.6826234175684, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744456.2575511415, 5727440.016896099], [744849.6661828998, 5727852.098338804]]}, "properties": {"id": "16249-16247-16245-16243-16241", "from": "551612938", "to": "551612948", "length_m": 574.6826234175684, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744456.2575511415, 5727440.016896099], [744431.636154625, 5726976.763986841]]}, "properties": {"id": "16250-16252-16254-16256-16258-16260-16262-16264-16266-16268-16270", "from": "551612938", "to": "551612936", "length_m": 632.9206715967473, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812486.4564277914, 5791816.3162984075], [812547.9834583747, 5791922.205641992]]}, "properties": {"id": "1627-1628-1598-1599-1600-1601-1602-1603", "from": "351095899", "to": "351095902", "length_m": 130.96864860374862, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744431.636154625, 5726976.763986841], [744456.2575511415, 5727440.016896099]]}, "properties": {"id": "16271-16269-16267-16265-16263-16261-16259-16257-16255-16253-16251", "from": "551612936", "to": "551612938", "length_m": 632.9206715967473, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744431.636154625, 5726976.763986841], [744860.4691711918, 5726584.197070032]]}, "properties": {"id": "16272-16274-16276-16278-16280", "from": "551612936", "to": "312994077", "length_m": 597.146566257891, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744860.4691711918, 5726584.197070032], [744431.636154625, 5726976.763986841]]}, "properties": {"id": "16281-16279-16277-16275-16273", "from": "312994077", "to": "551612936", "length_m": 597.146566257891, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744860.4691711918, 5726584.197070032], [744489.4974330768, 5726209.940230305]]}, "properties": {"id": "16282-16284-16286-16288-16290-16292-16294-16296-16298", "from": "312994077", "to": "551612890", "length_m": 550.4494282512455, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777594.5150325545, 5761611.138080242], [777550.9905967615, 5761526.407563965]]}, "properties": {"id": "1629-1631-1633-1635-1637", "from": "4698497684", "to": "6032443276", "length_m": 98.62322696417566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744489.4974330768, 5726209.940230305], [744860.4691711918, 5726584.197070032]]}, "properties": {"id": "16299-16297-16295-16293-16291-16289-16287-16285-16283", "from": "551612890", "to": "312994077", "length_m": 550.4494282512455, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744489.4974330768, 5726209.940230305], [744273.2721415621, 5725829.565356562]]}, "properties": {"id": "16300-16302-16304-16306-16308-16310-16312-16314-16316-16318-16320-16322", "from": "551612890", "to": "551612860", "length_m": 522.7584562513583, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744273.2721415621, 5725829.565356562], [744489.4974330768, 5726209.940230305]]}, "properties": {"id": "16323-16321-16319-16317-16315-16313-16311-16309-16307-16305-16303-16301", "from": "551612860", "to": "551612890", "length_m": 522.7584562513583, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744273.2721415621, 5725829.565356562], [744365.5777915533, 5725351.1180571]]}, "properties": {"id": "16324-16326-16328-16330-16332-16334-16336-16338-16340-16342-16344-16346-16348-16350-16352-16354-16356-16358-16360", "from": "551612860", "to": "551612794", "length_m": 890.1699985846298, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744365.5777915533, 5725351.1180571], [744273.2721415621, 5725829.565356562]]}, "properties": {"id": "16361-16359-16357-16355-16353-16351-16349-16347-16345-16343-16341-16339-16337-16335-16333-16331-16329-16327-16325", "from": "551612794", "to": "551612860", "length_m": 890.1699985846298, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744365.5777915533, 5725351.1180571], [744598.0144180603, 5725200.673034215]]}, "properties": {"id": "16362-16364-16366-16368-16370-16372-16374-16376-16378-16380-16382-16384-16386-16388-16390", "from": "551612794", "to": "551612831", "length_m": 522.7704659573643, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777550.9905967615, 5761526.407563965], [777594.5150325545, 5761611.138080242]]}, "properties": {"id": "1638-1636-1634-1632-1630", "from": "6032443276", "to": "4698497684", "length_m": 98.62322696417566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744598.0144180603, 5725200.673034215], [744365.5777915533, 5725351.1180571]]}, "properties": {"id": "16391-16389-16387-16385-16383-16381-16379-16377-16375-16373-16371-16369-16367-16365-16363", "from": "551612831", "to": "551612794", "length_m": 522.7704659573643, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744598.0144180603, 5725200.673034215], [744581.8677902522, 5724700.019494465]]}, "properties": {"id": "16392-16394-16396-16398-16400-16402-16404-16406-16408-16410-16412-16414-16416-16418", "from": "551612831", "to": "551612767", "length_m": 569.4661427579041, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744581.8677902522, 5724700.019494465], [744598.0144180603, 5725200.673034215]]}, "properties": {"id": "16419-16417-16415-16413-16411-16409-16407-16405-16403-16401-16399-16397-16395-16393", "from": "551612767", "to": "551612831", "length_m": 569.4661427579041, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836129.2090424476, 5817598.644327477], [836192.515670862, 5817506.005888242]]}, "properties": {"id": "1642-1643-1644-1645-1646-1647", "from": "268387192", "to": "3475958006", "length_m": 113.38947297035034, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744581.8677902522, 5724700.019494465], [744097.4439880414, 5724407.956267014]]}, "properties": {"id": "16420-16422-16424-16426-16428-16430-16432-16434-16436-16438-16440-16442-16444", "from": "551612767", "to": "2956743797", "length_m": 617.9786100092595, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744097.4439880414, 5724407.956267014], [744581.8677902522, 5724700.019494465]]}, "properties": {"id": "16445-16443-16441-16439-16437-16435-16433-16431-16429-16427-16425-16423-16421", "from": "2956743797", "to": "551612767", "length_m": 617.9786100092595, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744097.4439880414, 5724407.956267014], [743602.9177261271, 5723973.449122391]]}, "properties": {"id": "16446-16448-16450-16452-16454-16456-16458-16460-16462-16464-16466-16468-16470-16472-16474-16476-16478-16480-16482-16484-16486", "from": "2956743797", "to": "551612696", "length_m": 841.4301407093423, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836192.515670862, 5817506.005888242], [836242.816628228, 5817391.191694821]]}, "properties": {"id": "1648-1649", "from": "3475958006", "to": "2045235497", "length_m": 125.36678820115661, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743602.9177261271, 5723973.449122391], [744097.4439880414, 5724407.956267014]]}, "properties": {"id": "16487-16485-16483-16481-16479-16477-16475-16473-16471-16469-16467-16465-16463-16461-16459-16457-16455-16453-16451-16449-16447", "from": "551612696", "to": "2956743797", "length_m": 841.4301407093423, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743602.9177261271, 5723973.449122391], [743133.5561179672, 5723530.172970529]]}, "properties": {"id": "16488-16490-16492-16494-16496-16498-16500-16502-16504-16506-16508-16510-16512-16514-16516-16518-16520-16522-16524-16526-16528-16530-16532-16534-16536", "from": "551612696", "to": "2956743798", "length_m": 999.3264245391966, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743133.5561179672, 5723530.172970529], [743602.9177261271, 5723973.449122391]]}, "properties": {"id": "16537-16535-16533-16531-16529-16527-16525-16523-16521-16519-16517-16515-16513-16511-16509-16507-16505-16503-16501-16499-16497-16495-16493-16491-16489", "from": "2956743798", "to": "551612696", "length_m": 999.3264245391966, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743133.5561179672, 5723530.172970529], [742325.0179288487, 5723537.792627506]]}, "properties": {"id": "16538-16540-16542-16544-16546-16548-16550-16552-16554-16556-16558-16560-16562-16564-16566-16568-16570-16572", "from": "2956743798", "to": "551612437", "length_m": 899.2940143734269, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751248.6336365705, 5837501.2096072305], [751221.2010755367, 5837458.652550371]]}, "properties": {"id": "1656-1657", "from": "1140763095", "to": "1140763112", "length_m": 50.63590935213377, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742325.0179288487, 5723537.792627506], [743133.5561179672, 5723530.172970529]]}, "properties": {"id": "16573-16571-16569-16567-16565-16563-16561-16559-16557-16555-16553-16551-16549-16547-16545-16543-16541-16539", "from": "551612437", "to": "2956743798", "length_m": 899.2940143734269, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742325.0179288487, 5723537.792627506], [741957.5579282846, 5723036.449248504]]}, "properties": {"id": "16574-16576-16578-16580-16582-16584-16586-16588-16590-16592-16594-16596-16598-16600-16602-16604-16606-16608-16610-16612-16614-16616", "from": "551612437", "to": "2956743801", "length_m": 832.6133457482404, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759486.796387623, 5729078.8837613445], [759425.2505900013, 5729073.1228556195]]}, "properties": {"id": "1658-1660-1662-1664-1666-1668", "from": "5328184538", "to": "5328184544", "length_m": 76.50866650171321, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741957.5579282846, 5723036.449248504], [742325.0179288487, 5723537.792627506]]}, "properties": {"id": "16617-16615-16613-16611-16609-16607-16605-16603-16601-16599-16597-16595-16593-16591-16589-16587-16585-16583-16581-16579-16577-16575", "from": "2956743801", "to": "551612437", "length_m": 832.6133457482404, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741957.5579282846, 5723036.449248504], [741406.4810109471, 5722539.788124948]]}, "properties": {"id": "16618-16620-16622-16624-16626-16628-16630-16632-16634-16636-16638-16640-16642-16644-16646-16648-16650-16652", "from": "2956743801", "to": "551612346", "length_m": 827.2908023416794, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741406.4810109471, 5722539.788124948], [741957.5579282846, 5723036.449248504]]}, "properties": {"id": "16653-16651-16649-16647-16645-16643-16641-16639-16637-16635-16633-16631-16629-16627-16625-16623-16621-16619", "from": "551612346", "to": "2956743801", "length_m": 827.2908023416794, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741406.4810109471, 5722539.788124948], [740909.371953692, 5722469.654258438]]}, "properties": {"id": "16654-16656-16658-16660-16662-16664-16666-16668-16670", "from": "551612346", "to": "551612345", "length_m": 535.1113042388533, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740909.371953692, 5722469.654258438], [741406.4810109471, 5722539.788124948]]}, "properties": {"id": "16671-16669-16667-16665-16663-16661-16659-16657-16655", "from": "551612345", "to": "551612346", "length_m": 535.1113042388533, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740909.371953692, 5722469.654258438], [740347.550427458, 5722179.151786876]]}, "properties": {"id": "16672-16674-16676-16678-16680-16682-16684-16686-16688-16690-16692-16694-16696-16698", "from": "551612345", "to": "551612319", "length_m": 710.3972221148274, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759425.2505900013, 5729073.1228556195], [759486.796387623, 5729078.8837613445]]}, "properties": {"id": "1669-1667-1665-1663-1661-1659", "from": "5328184544", "to": "5328184538", "length_m": 76.50866650171321, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740347.550427458, 5722179.151786876], [740909.371953692, 5722469.654258438]]}, "properties": {"id": "16699-16697-16695-16693-16691-16689-16687-16685-16683-16681-16679-16677-16675-16673", "from": "551612319", "to": "551612345", "length_m": 710.3972221148274, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740347.550427458, 5722179.151786876], [737274.0612873232, 5721699.789830206]]}, "properties": {"id": "16700-16702-16704-16706-16708-16710-16712-16714-16716-16718-16720-16722-16724-16726-16728-16730-16732-16734", "from": "551612319", "to": "60080-2", "length_m": 1173.0426718502385, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837047.5030830984, 5806584.170870569], [837059.5841208694, 5806655.2306811325]]}, "properties": {"id": "1671", "from": "254257087", "to": "254257041", "length_m": 72.07945714105207, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838349.8489067254, 5803854.950639611], [838431.2396279327, 5803816.176210807]]}, "properties": {"id": "1672-1673-1674-1675-1676-34748", "from": "1711589481", "to": "3189561084", "length_m": 90.41479487344768, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737274.0612873232, 5721699.789830206], [740347.550427458, 5722179.151786876]]}, "properties": {"id": "16735-16733-16731-16729-16727-16725-16723-16721-16719-16717-16715-16713-16711-16709-16707-16705-16703-16701", "from": "60080-2", "to": "551612319", "length_m": 1173.0426718502385, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835762.5172204566, 5820259.618772296], [835784.0964722001, 5820256.0605074875]]}, "properties": {"id": "16762-16763-16764", "from": "1505977585", "to": "1505977524", "length_m": 21.916903730655488, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779273.1331550764, 5745039.2882560035], [779148.130220507, 5745066.441067757]]}, "properties": {"id": "16767-16769", "from": "289545872", "to": "289545890", "length_m": 127.93253564352148, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779148.130220507, 5745066.441067757], [779273.1331550764, 5745039.2882560035]]}, "properties": {"id": "16770-16768", "from": "289545890", "to": "289545872", "length_m": 127.93253564352148, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779148.130220507, 5745066.441067757], [778841.651308271, 5745104.316328807]]}, "properties": {"id": "16771-16773", "from": "289545890", "to": "289545875", "length_m": 330.4099377974311, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778841.651308271, 5745104.316328807], [779148.130220507, 5745066.441067757]]}, "properties": {"id": "16774-16772", "from": "289545875", "to": "289545890", "length_m": 330.4099377974311, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778841.651308271, 5745104.316328807], [778708.989990205, 5745092.708888679]]}, "properties": {"id": "16775-16777-16779", "from": "289545875", "to": "297395419", "length_m": 138.2376793923484, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778708.989990205, 5745092.708888679], [778841.651308271, 5745104.316328807]]}, "properties": {"id": "16780-16778-16776", "from": "297395419", "to": "289545875", "length_m": 138.2376793923484, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778708.989990205, 5745092.708888679], [778587.6828710029, 5745124.859096119]]}, "properties": {"id": "16781", "from": "297395419", "to": "289545371", "length_m": 125.49523084777914, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778587.6828710029, 5745124.859096119], [778708.989990205, 5745092.708888679]]}, "properties": {"id": "16782", "from": "289545371", "to": "297395419", "length_m": 125.49523084777914, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836009.3050959969, 5807739.069525164], [836107.2844011576, 5808292.586500495]]}, "properties": {"id": "16783-16784-16785-16786-16787-16788", "from": "75148601", "to": "4067819091", "length_m": 562.1884325511209, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836107.2844011576, 5808292.586500495], [836207.5159005481, 5808846.622538846]]}, "properties": {"id": "16789-16790-16791-16792-16793-16794-16795-16796", "from": "4067819091", "to": "75146079", "length_m": 563.3687897201613, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832891.4226020027, 5804713.053066495], [832810.340925606, 5804727.071888331]]}, "properties": {"id": "168-169", "from": "1745493156", "to": "1745518706", "length_m": 82.28554956857738, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779150.8975944117, 5744571.202935654], [779406.8168444454, 5745003.485917656]]}, "properties": {"id": "16803-16805-16807-16809-16811-16813-16815-16817-16819-16821-16823", "from": "2394990000", "to": "294988739", "length_m": 688.1567507701274, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779406.8168444454, 5745003.485917656], [779150.8975944117, 5744571.202935654]]}, "properties": {"id": "16824-16822-16820-16818-16816-16814-16812-16810-16808-16806-16804", "from": "294988739", "to": "2394990000", "length_m": 688.1567507701274, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779225.3591847618, 5744435.0592903895], [779150.8975944117, 5744571.202935654]]}, "properties": {"id": "16853-16851-16849-16847-16845-16843-16841-9450-9448", "from": "294988769", "to": "2394990000", "length_m": 203.94109108852587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792527.8099181149, 5780615.265502807], [792676.7059826332, 5781232.510641189]]}, "properties": {"id": "16863-16864-16865", "from": "318036365", "to": "318036366", "length_m": 634.9880727148391, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792676.7059826332, 5781232.510641189], [792874.4581161083, 5781761.817816998]]}, "properties": {"id": "16866-16867-16868-16869-16870-16871-16872", "from": "318036366", "to": "318036371", "length_m": 568.4328933373782, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837493.3995301405, 5806595.089980076], [837162.9985461768, 5806576.96070029]]}, "properties": {"id": "1687-1688-1689-1690-1691", "from": "254257128", "to": "2100854657", "length_m": 330.9034082054381, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792874.4581161083, 5781761.817816998], [793392.3482202936, 5782218.957121571]]}, "properties": {"id": "16873-16874-16875-16876-16877-16878-16879-16880-16881-16882-16883-16884", "from": "318036371", "to": "318036376", "length_m": 699.744752435513, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793392.3482202936, 5782218.957121571], [794197.2015811636, 5782318.61871316]]}, "properties": {"id": "16885-16886-16887-16888-16889-16890-16891-16892-16893-16894-16895-16896-16897", "from": "318036376", "to": "317889823", "length_m": 823.3828258085275, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785483.8222714209, 5754884.467929829], [785404.9325918308, 5754908.034617491]]}, "properties": {"id": "16898-16899-16900-16901-16902-16903-16904", "from": "3413826180", "to": "3413826150", "length_m": 50.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785501.2856612247, 5754920.809943264], [785528.532491687, 5754981.283984251]]}, "properties": {"id": "16905-16906-16907-16908-16909-16910-16911", "from": "3413826145", "to": "3413826121", "length_m": 50.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785531.1807324075, 5754863.360099093], [785494.5520149921, 5754803.673685188]]}, "properties": {"id": "16918-16919-16920-16921-16922-16923-16924-16925-16926", "from": "3413844594", "to": "3413826138", "length_m": 50.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837059.5841208694, 5806655.2306811325], [837080.4773873256, 5806781.527598853]]}, "properties": {"id": "1692", "from": "254257041", "to": "254257360", "length_m": 128.01343672957762, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837080.4773873256, 5806781.527598853], [837100.7905291589, 5806904.857096549]]}, "properties": {"id": "1693-1694", "from": "254257360", "to": "32549532", "length_m": 124.99122247666612, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785540.9939641408, 5754898.850768571], [785630.3517385108, 5754861.715084221]]}, "properties": {"id": "16931-16932-16933-16934-16935-16936-16937-16938", "from": "3413848412", "to": "3413826115", "length_m": 49.99999999999999, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837698.9342767609, 5819115.093814872], [837493.6882033781, 5818845.865187058]]}, "properties": {"id": "16939-16940-16941-16942-16943-16944-16945-16946-16947-16948-16949", "from": "30928580", "to": "1511218599", "length_m": 343.3047208208137, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787990.4691280641, 5750010.4898113], [787930.6553928191, 5749968.547393576]]}, "properties": {"id": "1695-1697", "from": "509914507", "to": "509914490", "length_m": 73.36030652927748, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837493.6882033781, 5818845.865187058], [837489.0458081276, 5818822.226040943]]}, "properties": {"id": "16950", "from": "1511218599", "to": "1502841861", "length_m": 24.09068411676837, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761100.7799931498, 5762791.582340685], [761366.0508759853, 5762879.727788308]]}, "properties": {"id": "16951", "from": "5857617038", "to": "1852765678", "length_m": 279.5322179149095, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761366.0508759853, 5762879.727788308], [761603.4536610353, 5762960.255004389]]}, "properties": {"id": "16952-16953-16954", "from": "1852765678", "to": "52483838", "length_m": 250.71183145729375, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761603.4536610353, 5762960.255004389], [761755.0993567139, 5763189.746082453]]}, "properties": {"id": "16955-16956-16957-16958-16959-56687-15006", "from": "52483838", "to": "1852719103", "length_m": 278.57644523259273, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836924.0477261149, 5816210.994130557], [836949.81054335, 5816220.170248752]]}, "properties": {"id": "16963-16964-16965-16966", "from": "5642431858", "to": "33302638", "length_m": 29.440253584545495, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836949.81054335, 5816220.170248752], [836960.3549306788, 5816187.381056778]]}, "properties": {"id": "16967-16968-16969-16970-16971-16972", "from": "33302638", "to": "5642431857", "length_m": 39.727714571293575, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836960.3549306788, 5816187.381056778], [836930.7446654853, 5816181.720461521]]}, "properties": {"id": "16973-16974-16975-16976-16977", "from": "5642431857", "to": "33302646", "length_m": 33.17921867790636, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836930.7446654853, 5816181.720461521], [836924.0477261149, 5816210.994130557]]}, "properties": {"id": "16978-16979-16960-16961-16962", "from": "33302646", "to": "5642431858", "length_m": 33.097054348620226, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787930.6553928191, 5749968.547393576], [787990.4691280641, 5750010.4898113]]}, "properties": {"id": "1698-1696", "from": "509914490", "to": "509914507", "length_m": 73.36030652927748, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787930.6553928191, 5749968.547393576], [787852.335975819, 5749955.39575808]]}, "properties": {"id": "1699-1701", "from": "509914490", "to": "509914489", "length_m": 79.49172588583923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760433.2815085736, 5747860.532394591], [760230.9879077757, 5746811.493775698]]}, "properties": {"id": "16994-16996-16998-17000-17002-17004-17006-17008-17010-17012-17014-17016-17018-17020-17022-17024-17026-17028", "from": "4520232227", "to": "810092321", "length_m": 1084.942960662514, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787852.335975819, 5749955.39575808], [787930.6553928191, 5749968.547393576]]}, "properties": {"id": "1702-1700", "from": "509914489", "to": "509914490", "length_m": 79.49172588583923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760230.9879077757, 5746811.493775698], [760433.2815085736, 5747860.532394591]]}, "properties": {"id": "17029-17027-17025-17023-17021-17019-17017-17015-17013-17011-17009-17007-17005-17003-17001-16999-16997-16995", "from": "810092321", "to": "4520232227", "length_m": 1084.942960662514, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787852.335975819, 5749955.39575808], [787781.13873631, 5749968.407734389]]}, "properties": {"id": "1703", "from": "509914489", "to": "509914493", "length_m": 72.37650464071206, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777461.9205399698, 5773944.090159143], [777607.5069442866, 5774707.721839472]]}, "properties": {"id": "17030-17032-17034-17036-17038-17040-17042-17044-17046-17048-17050-17052-17054-17056-17058-17060-17062-17064-17066-17068-17070", "from": "916620002", "to": "5604438369", "length_m": 781.4067424271685, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787781.13873631, 5749968.407734389], [787852.335975819, 5749955.39575808]]}, "properties": {"id": "1704", "from": "509914493", "to": "509914489", "length_m": 72.37650464071206, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777607.5069442866, 5774707.721839472], [777461.9205399698, 5773944.090159143]]}, "properties": {"id": "17071-17069-17067-17065-17063-17061-17059-17057-17055-17053-17051-17049-17047-17045-17043-17041-17039-17037-17035-17033-17031", "from": "5604438369", "to": "916620002", "length_m": 781.4067424271685, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791892.0141255031, 5754695.247476424], [791934.3583138338, 5754687.269762422]]}, "properties": {"id": "17089", "from": "5421408742", "to": "5421408743", "length_m": 43.08914245716609, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791934.3583138338, 5754687.269762422], [791892.0141255031, 5754695.247476424]]}, "properties": {"id": "17090", "from": "5421408743", "to": "5421408742", "length_m": 43.08914245716609, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791934.3583138338, 5754687.269762422], [792016.1681169888, 5754672.362526701]]}, "properties": {"id": "17091", "from": "5421408743", "to": "5421408744", "length_m": 83.15689711306929, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792016.1681169888, 5754672.362526701], [791934.3583138338, 5754687.269762422]]}, "properties": {"id": "17092", "from": "5421408744", "to": "5421408743", "length_m": 83.15689711306929, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788040.04464878, 5750536.480983955], [788089.0261543172, 5750518.392738609]]}, "properties": {"id": "1713-1715", "from": "509914433", "to": "509914427", "length_m": 52.951957929345035, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788089.0261543172, 5750518.392738609], [788040.04464878, 5750536.480983955]]}, "properties": {"id": "1716-1714", "from": "509914427", "to": "509914433", "length_m": 52.951957929345035, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791906.9471047674, 5754541.00229191], [791934.3583138338, 5754687.269762422]]}, "properties": {"id": "17189", "from": "5421408737", "to": "5421408743", "length_m": 148.81380072803566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791934.3583138338, 5754687.269762422], [791906.9471047674, 5754541.00229191]]}, "properties": {"id": "17190", "from": "5421408743", "to": "5421408737", "length_m": 148.81380072803566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791828.1708314575, 5754556.210113058], [791835.0914054699, 5754598.418053705]]}, "properties": {"id": "17191", "from": "5421408736", "to": "5421408745", "length_m": 42.77153956575758, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791835.0914054699, 5754598.418053705], [791828.1708314575, 5754556.210113058]]}, "properties": {"id": "17192", "from": "5421408745", "to": "5421408736", "length_m": 42.77153956575758, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837347.0363320836, 5803903.408333317], [838193.3512414579, 5803903.381407796]]}, "properties": {"id": "1720-1721-1722-1723-1724-1725-1726-1727-1728-1729-1730-1731-1732-34734-34760-34761-34762-34763-34764-34765-34766-34767-34768-34769-34770-34771-34772-34773-34774-34775-34776", "from": "1712171695", "to": "1711589037", "length_m": 871.7007703731166, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791755.3453680078, 5754601.834135956], [791763.3220952414, 5754643.47042621]]}, "properties": {"id": "17207", "from": "5421408725", "to": "5421408746", "length_m": 42.39349999266294, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791763.3220952414, 5754643.47042621], [791755.3453680078, 5754601.834135956]]}, "properties": {"id": "17208", "from": "5421408746", "to": "5421408725", "length_m": 42.39349999266294, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791138.4257256007, 5754899.282519855], [791316.9223647106, 5754864.890282806]]}, "properties": {"id": "17307", "from": "5421407218", "to": "5421407219", "length_m": 181.77974583766738, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791316.9223647106, 5754864.890282806], [791138.4257256007, 5754899.282519855]]}, "properties": {"id": "17308", "from": "5421407219", "to": "5421407218", "length_m": 181.77974583766738, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791316.9223647106, 5754864.890282806], [791400.534902957, 5754847.7015580665]]}, "properties": {"id": "17309", "from": "5421407219", "to": "5421407220", "length_m": 85.36104957395627, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791400.534902957, 5754847.7015580665], [791316.9223647106, 5754864.890282806]]}, "properties": {"id": "17310", "from": "5421407220", "to": "5421407219", "length_m": 85.36104957395627, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773473.6110997581, 5774676.792649852], [773626.8793270034, 5775400.03645116]]}, "properties": {"id": "17311-17313-17315-17317-17319-17321-17323-17325-17327-17329", "from": "5604438397", "to": "5604437251", "length_m": 739.09668822304, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788263.7438150544, 5750983.416610347], [788206.7997607541, 5750886.079227485]]}, "properties": {"id": "1733-1735-1737-1739-1741-1743-1745-1747", "from": "509914044", "to": "509914068", "length_m": 164.66056114236923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773626.8793270034, 5775400.03645116], [773473.6110997581, 5774676.792649852]]}, "properties": {"id": "17330-17328-17326-17324-17322-17320-17318-17316-17314-17312", "from": "5604437251", "to": "5604438397", "length_m": 739.09668822304, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773626.8793270034, 5775400.03645116], [773854.4149361225, 5775872.421276042]]}, "properties": {"id": "17331-17333-17335-17337-17339-17341-17343-17345-17347-17349-17351-17353-17355-17357-17359-17361-17363-17365-17367-17369-17371-17373-17375-17377", "from": "5604437251", "to": "5604445690", "length_m": 591.3280044419196, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773854.4149361225, 5775872.421276042], [773626.8793270034, 5775400.03645116]]}, "properties": {"id": "17378-17376-17374-17372-17370-17368-17366-17364-17362-17360-17358-17356-17354-17352-17350-17348-17346-17344-17342-17340-17338-17336-17334-17332", "from": "5604445690", "to": "5604437251", "length_m": 591.3280044419196, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791285.7826849625, 5754689.736024756], [791127.3012321279, 5754720.972059381]]}, "properties": {"id": "17382-50539", "from": "5421408721", "to": "3577715442", "length_m": 161.54681533948113, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791285.7826849625, 5754689.736024756], [791598.8865230677, 5754632.750983509]]}, "properties": {"id": "17383-17385-17387-17389-17391", "from": "5421408721", "to": "5421408723", "length_m": 318.2610848638402, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791598.8865230677, 5754632.750983509], [791285.7826849625, 5754689.736024756]]}, "properties": {"id": "17392-17390-17388-17386-17384", "from": "5421408723", "to": "5421408721", "length_m": 318.2610848638402, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791598.8865230677, 5754632.750983509], [791677.102262729, 5754617.032250801]]}, "properties": {"id": "17393", "from": "5421408723", "to": "5421408724", "length_m": 79.77957422558119, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791677.102262729, 5754617.032250801], [791598.8865230677, 5754632.750983509]]}, "properties": {"id": "17394", "from": "5421408724", "to": "5421408723", "length_m": 79.77957422558119, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791677.102262729, 5754617.032250801], [791755.3453680078, 5754601.834135956]]}, "properties": {"id": "17395", "from": "5421408724", "to": "5421408725", "length_m": 79.70549663176601, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791755.3453680078, 5754601.834135956], [791677.102262729, 5754617.032250801]]}, "properties": {"id": "17396", "from": "5421408725", "to": "5421408724", "length_m": 79.70549663176601, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791755.3453680078, 5754601.834135956], [791776.7780761321, 5754567.748769725]]}, "properties": {"id": "17397-17399-17401-17403-17405-17407-17409-17411", "from": "5421408725", "to": "5421408733", "length_m": 50.813359527803186, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791776.7780761321, 5754567.748769725], [791755.3453680078, 5754601.834135956]]}, "properties": {"id": "17412-17410-17408-17406-17404-17402-17400-17398", "from": "5421408733", "to": "5421408725", "length_m": 50.813359527803186, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791776.7780761321, 5754567.748769725], [791828.1708314575, 5754556.210113058]]}, "properties": {"id": "17413-17415-17417", "from": "5421408733", "to": "5421408736", "length_m": 52.93310465799459, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791828.1708314575, 5754556.210113058], [791776.7780761321, 5754567.748769725]]}, "properties": {"id": "17418-17416-17414", "from": "5421408736", "to": "5421408733", "length_m": 52.93310465799459, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791828.1708314575, 5754556.210113058], [791906.9471047674, 5754541.00229191]]}, "properties": {"id": "17419", "from": "5421408736", "to": "5421408737", "length_m": 80.23078607905241, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791906.9471047674, 5754541.00229191], [791828.1708314575, 5754556.210113058]]}, "properties": {"id": "17420", "from": "5421408737", "to": "5421408736", "length_m": 80.23078607905241, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791906.9471047674, 5754541.00229191], [791988.8897717462, 5754527.146286353]]}, "properties": {"id": "17421-17423", "from": "5421408737", "to": "5421408739", "length_m": 83.11256285501953, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791988.8897717462, 5754527.146286353], [791906.9471047674, 5754541.00229191]]}, "properties": {"id": "17424-17422", "from": "5421408739", "to": "5421408737", "length_m": 83.11256285501953, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791285.7826849625, 5754689.736024756], [791293.9504406657, 5754736.734020465]]}, "properties": {"id": "17425", "from": "5421408721", "to": "5421408740", "length_m": 47.702451002543555, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791293.9504406657, 5754736.734020465], [791285.7826849625, 5754689.736024756]]}, "properties": {"id": "17426", "from": "5421408740", "to": "5421408721", "length_m": 47.702451002543555, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791293.9504406657, 5754736.734020465], [791316.9223647106, 5754864.890282806]]}, "properties": {"id": "17427", "from": "5421408740", "to": "5421407219", "length_m": 130.1988358445626, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791316.9223647106, 5754864.890282806], [791293.9504406657, 5754736.734020465]]}, "properties": {"id": "17428", "from": "5421407219", "to": "5421408740", "length_m": 130.1988358445626, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791293.9504406657, 5754736.734020465], [791332.4173934972, 5754729.055033034]]}, "properties": {"id": "17429", "from": "5421408740", "to": "5421408741", "length_m": 39.225926398817535, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791332.4173934972, 5754729.055033034], [791293.9504406657, 5754736.734020465]]}, "properties": {"id": "17430", "from": "5421408741", "to": "5421408740", "length_m": 39.225926398817535, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786985.6258445341, 5762209.724880399], [786942.5182324187, 5762225.509085664]]}, "properties": {"id": "17431-17432-17433-17434-17435-17436", "from": "669264537", "to": "669261482", "length_m": 57.818657725343364, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786755.7447048641, 5762256.283853861], [785307.0876813452, 5762529.217613246]]}, "properties": {"id": "17437", "from": "1708361647", "to": "469074028", "length_m": 1474.1438193933916, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785307.0876813452, 5762529.217613246], [786755.7447048641, 5762256.283853861]]}, "properties": {"id": "17438", "from": "469074028", "to": "1708361647", "length_m": 1474.1438193933916, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785307.0876813452, 5762529.217613246], [783692.2880987604, 5762833.403781643]]}, "properties": {"id": "17439", "from": "469074028", "to": "616999271", "length_m": 1643.2002028903016, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783692.2880987604, 5762833.403781643], [785307.0876813452, 5762529.217613246]]}, "properties": {"id": "17440", "from": "616999271", "to": "469074028", "length_m": 1643.2002028903016, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791677.102262729, 5754617.032250801], [791685.0869306466, 5754658.657178812]]}, "properties": {"id": "17441", "from": "5421408724", "to": "5421408747", "length_m": 42.3838359773, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791685.0869306466, 5754658.657178812], [791677.102262729, 5754617.032250801]]}, "properties": {"id": "17442", "from": "5421408747", "to": "5421408724", "length_m": 42.3838359773, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791598.8865230677, 5754632.750983509], [791605.72810989, 5754672.805616052]]}, "properties": {"id": "17443", "from": "5421408723", "to": "5421408748", "length_m": 40.6347252605172, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791605.72810989, 5754672.805616052], [791598.8865230677, 5754632.750983509]]}, "properties": {"id": "17444", "from": "5421408748", "to": "5421408723", "length_m": 40.6347252605172, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836236.7286190428, 5808866.065217642], [837468.8485480953, 5808646.346583122]]}, "properties": {"id": "17445-17446-17447-17448-17449-17450-17451-17452-17453", "from": "75146088", "to": "75143916", "length_m": 1252.184203354594, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832811.1891028311, 5804784.9462359985], [832856.7593978657, 5805010.19639413]]}, "properties": {"id": "17454-17455-17456-17457-17458-17459-17460-17461-17462-17463-17464", "from": "1744184795", "to": "288433642", "length_m": 231.352964717258, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790800.0250476811, 5754771.691131442], [790725.5920486148, 5754752.92092534]]}, "properties": {"id": "17465-17466-17467-17468", "from": "3464604468", "to": "3464607396", "length_m": 76.91776996169438, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790830.317681246, 5754777.0352083715], [790800.0250476811, 5754771.691131442]]}, "properties": {"id": "17469-17470-17471", "from": "2548347232", "to": "3464604468", "length_m": 30.793729470718898, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790800.216829194, 5754780.175744717], [790822.2782161571, 5754779.2254201835]]}, "properties": {"id": "17472-17473-17474", "from": "3464604462", "to": "4696656434", "length_m": 22.292334370875352, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790822.2782161571, 5754779.2254201835], [790830.317681246, 5754777.0352083715]]}, "properties": {"id": "17475", "from": "4696656434", "to": "2548347232", "length_m": 8.332468217697976, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788206.7997607541, 5750886.079227485], [788263.7438150544, 5750983.416610347]]}, "properties": {"id": "1748-1746-1744-1742-1740-1738-1736-1734", "from": "509914068", "to": "509914044", "length_m": 164.66056114236923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790727.0165205697, 5754763.050551913], [790800.216829194, 5754780.175744717]]}, "properties": {"id": "17486-17487-17488-17489-17490-17491", "from": "3464604491", "to": "3464604462", "length_m": 75.30354337956597, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832779.0321318433, 5804676.248209673], [832795.4159144392, 5804729.7564693075]]}, "properties": {"id": "17501-17502", "from": "1745600786", "to": "1745518698", "length_m": 55.992343407159154, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770655.5690440345, 5805260.777006001], [770690.8899999443, 5804334.842230185]]}, "properties": {"id": "17503-17505-17507-17509-17511-17513-17515-17517", "from": "2744554270", "to": "60303830", "length_m": 929.4743229980041, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770690.8899999443, 5804334.842230185], [770655.5690440345, 5805260.777006001]]}, "properties": {"id": "17518-17516-17514-17512-17510-17508-17506-17504", "from": "60303830", "to": "2744554270", "length_m": 929.4743229980041, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770690.8899999443, 5804334.842230185], [770677.1835645072, 5802955.259538905]]}, "properties": {"id": "17519-17521", "from": "60303830", "to": "1201434984", "length_m": 1379.6519918109398, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770677.1835645072, 5802955.259538905], [770690.8899999443, 5804334.842230185]]}, "properties": {"id": "17522-17520", "from": "1201434984", "to": "60303830", "length_m": 1379.6519918109398, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770677.1835645072, 5802955.259538905], [770687.301788769, 5802279.939839662]]}, "properties": {"id": "17523-17525", "from": "1201434984", "to": "274453801", "length_m": 675.3997852293911, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770687.301788769, 5802279.939839662], [770677.1835645072, 5802955.259538905]]}, "properties": {"id": "17526-17524", "from": "274453801", "to": "1201434984", "length_m": 675.3997852293911, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770687.301788769, 5802279.939839662], [770697.0305335124, 5801717.042774366]]}, "properties": {"id": "17527-17529-17531", "from": "274453801", "to": "988539602", "length_m": 563.06315634333, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770697.0305335124, 5801717.042774366], [770687.301788769, 5802279.939839662]]}, "properties": {"id": "17532-17530-17528", "from": "988539602", "to": "274453801", "length_m": 563.06315634333, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770697.0305335124, 5801717.042774366], [771301.3954689519, 5800690.731854379]]}, "properties": {"id": "17533-17535-17537-17539-17541-17543-17545-17547", "from": "988539602", "to": "988539825", "length_m": 1200.7288604152034, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771301.3954689519, 5800690.731854379], [770697.0305335124, 5801717.042774366]]}, "properties": {"id": "17548-17546-17544-17542-17540-17538-17536-17534", "from": "988539825", "to": "988539602", "length_m": 1200.7288604152034, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771301.3954689519, 5800690.731854379], [771588.993702815, 5800280.810771732]]}, "properties": {"id": "17549", "from": "988539825", "to": "60303837", "length_m": 500.74747968270367, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771588.993702815, 5800280.810771732], [771301.3954689519, 5800690.731854379]]}, "properties": {"id": "17550", "from": "60303837", "to": "988539825", "length_m": 500.74747968270367, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771588.993702815, 5800280.810771732], [772070.681908275, 5799653.095455103]]}, "properties": {"id": "17551", "from": "60303837", "to": "988430087", "length_m": 791.2332441863776, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772070.681908275, 5799653.095455103], [771588.993702815, 5800280.810771732]]}, "properties": {"id": "17552", "from": "988430087", "to": "60303837", "length_m": 791.2332441863776, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772070.681908275, 5799653.095455103], [772848.8037059207, 5798642.02980109]]}, "properties": {"id": "17553-17555-17557", "from": "988430087", "to": "274453804", "length_m": 1275.8244416908242, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772848.8037059207, 5798642.02980109], [772070.681908275, 5799653.095455103]]}, "properties": {"id": "17558-17556-17554", "from": "274453804", "to": "988430087", "length_m": 1275.8244416908242, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772848.8037059207, 5798642.02980109], [773234.7970111409, 5798307.092158579]]}, "properties": {"id": "17559-17561-17563-17565-17567", "from": "274453804", "to": "60303840", "length_m": 511.46351786939147, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773234.7970111409, 5798307.092158579], [772848.8037059207, 5798642.02980109]]}, "properties": {"id": "17568-17566-17564-17562-17560", "from": "60303840", "to": "274453804", "length_m": 511.46351786939147, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773234.7970111409, 5798307.092158579], [773642.0284280332, 5797964.112088731]]}, "properties": {"id": "17569", "from": "60303840", "to": "274453805", "length_m": 532.4215953958038, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773642.0284280332, 5797964.112088731], [773234.7970111409, 5798307.092158579]]}, "properties": {"id": "17570", "from": "274453805", "to": "60303840", "length_m": 532.4215953958038, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773642.0284280332, 5797964.112088731], [774012.0383330572, 5797282.20767234]]}, "properties": {"id": "17571-17573-17575", "from": "274453805", "to": "60303842", "length_m": 779.4405974513173, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774012.0383330572, 5797282.20767234], [773642.0284280332, 5797964.112088731]]}, "properties": {"id": "17576-17574-17572", "from": "60303842", "to": "274453805", "length_m": 779.4405974513173, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774012.0383330572, 5797282.20767234], [774685.2291886493, 5795887.23916157]]}, "properties": {"id": "17577", "from": "60303842", "to": "988447400", "length_m": 1548.9102872100993, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774685.2291886493, 5795887.23916157], [774012.0383330572, 5797282.20767234]]}, "properties": {"id": "17578", "from": "988447400", "to": "60303842", "length_m": 1548.9102872100993, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774685.2291886493, 5795887.23916157], [775018.151314747, 5795196.4824538855]]}, "properties": {"id": "17579-17581-17583", "from": "988447400", "to": "988447466", "length_m": 766.8027585556534, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775018.151314747, 5795196.4824538855], [774685.2291886493, 5795887.23916157]]}, "properties": {"id": "17584-17582-17580", "from": "988447466", "to": "988447400", "length_m": 766.8027585556534, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775018.151314747, 5795196.4824538855], [775346.7156064261, 5794518.442769019]]}, "properties": {"id": "17585-17587", "from": "988447466", "to": "274453807", "length_m": 753.4585914055531, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775346.7156064261, 5794518.442769019], [775018.151314747, 5795196.4824538855]]}, "properties": {"id": "17588-17586", "from": "274453807", "to": "988447466", "length_m": 753.4585914055531, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787696.8412702326, 5750227.911957729], [787722.4501882901, 5750347.565430752]]}, "properties": {"id": "1760-1762", "from": "509914451", "to": "509914450", "length_m": 122.39792402068932, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787722.4501882901, 5750347.565430752], [787696.8412702326, 5750227.911957729]]}, "properties": {"id": "1763-1761", "from": "509914450", "to": "509914451", "length_m": 122.39792402068932, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788194.8569134476, 5833661.588070324], [787337.4321220457, 5833986.349488227]]}, "properties": {"id": "17636-17637-17638-17639-17640-17641-17642-17643-17644-17645-17646-17647-17648-17649-17650-17651-17492-17493-17494-17495-17496-17497-17498-17499-17500", "from": "413300750", "to": "413300756", "length_m": 943.0806769116424, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785224.2611061425, 5752471.23507119], [785447.4286105469, 5752426.943037114]]}, "properties": {"id": "1764", "from": "509915179", "to": "509915189", "length_m": 227.52037077688672, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785447.4286105469, 5752426.943037114], [785224.2611061425, 5752471.23507119]]}, "properties": {"id": "1765", "from": "509915189", "to": "509915179", "length_m": 227.52037077688672, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785447.4286105469, 5752426.943037114], [785760.0809949236, 5752364.837964589]]}, "properties": {"id": "1766", "from": "509915189", "to": "509915115", "length_m": 318.7609654440382, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770658.0508804024, 5806093.519418413], [770591.2370046563, 5807409.704660263]]}, "properties": {"id": "17663-17661-17659-17657-17655-17653-58289-58287-58285-58283-58281-58279-58277-58275-58273-58271-17633-17631-17629-17627-17693", "from": "1709378175", "to": "476333939", "length_m": 1480.1687952519271, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785760.0809949236, 5752364.837964589], [785447.4286105469, 5752426.943037114]]}, "properties": {"id": "1767", "from": "509915115", "to": "509915189", "length_m": 318.7609654440382, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770070.9965719448, 5807545.030693991], [770591.2370046563, 5807409.704660263]]}, "properties": {"id": "17680-17682-17684-17686-17688-17690", "from": "2744554272", "to": "476333939", "length_m": 547.9789281374673, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770591.2370046563, 5807409.704660263], [770070.9965719448, 5807545.030693991]]}, "properties": {"id": "17691-17689-17687-17685-17683-17681", "from": "476333939", "to": "2744554272", "length_m": 547.9789281374673, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770591.2370046563, 5807409.704660263], [770658.0508804024, 5806093.519418413]]}, "properties": {"id": "17692-17626-17628-17630-17632-58270-58272-58274-58276-58278-58280-58282-58284-58286-58288-17652-17654-17656-17658-17660-17662", "from": "476333939", "to": "1709378175", "length_m": 1480.1687952519271, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770658.0508804024, 5806093.519418413], [770655.5690440345, 5805260.777006001]]}, "properties": {"id": "17694-17696-17698-17700-17702-17704-17706-17708-17710-17712", "from": "1709378175", "to": "2744554270", "length_m": 837.3827609375594, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832804.4911057143, 5804707.628166513], [832789.280290337, 5804656.518573191]]}, "properties": {"id": "177", "from": "1745493118", "to": "1745600783", "length_m": 53.32503560350906, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788323.7601514377, 5751518.692364767], [788318.3883731575, 5751507.025451311]]}, "properties": {"id": "1770", "from": "822914639", "to": "512197281", "length_m": 12.844176530451454, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788318.3883731575, 5751507.025451311], [788323.7601514377, 5751518.692364767]]}, "properties": {"id": "1771", "from": "512197281", "to": "822914639", "length_m": 12.844176530451454, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770655.5690440345, 5805260.777006001], [770658.0508804024, 5806093.519418413]]}, "properties": {"id": "17713-17711-17709-17707-17705-17703-17701-17699-17697-17695", "from": "2744554270", "to": "1709378175", "length_m": 837.3827609375594, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833632.5357206455, 5810958.431863496], [833596.3327334016, 5810763.847580891]]}, "properties": {"id": "17714-17715-17716-17717", "from": "1843397641", "to": "1843397643", "length_m": 197.95755201047328, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788318.3883731575, 5751507.025451311], [788301.0495553452, 5751472.079551443]]}, "properties": {"id": "1772", "from": "512197281", "to": "509914444", "length_m": 39.0109025299392, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831903.1263000704, 5808873.502034236], [831836.2134340403, 5808361.963651387]]}, "properties": {"id": "17723-17718-17720-17719-17724-17725-17748-17749-17750-17751", "from": "666608272", "to": "5642366126", "length_m": 517.0166293525929, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778751.292807213, 5744472.47983847], [778699.1834134569, 5744413.951196061]]}, "properties": {"id": "17726-17728-17730-17732-17734", "from": "37684654", "to": "289545863", "length_m": 81.22443318642235, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788301.0495553452, 5751472.079551443], [788318.3883731575, 5751507.025451311]]}, "properties": {"id": "1773", "from": "509914444", "to": "512197281", "length_m": 39.0109025299392, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778699.1834134569, 5744413.951196061], [778751.292807213, 5744472.47983847]]}, "properties": {"id": "17735-17733-17731-17729-17727", "from": "289545863", "to": "37684654", "length_m": 81.22443318642235, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778699.1834134569, 5744413.951196061], [778583.5109767521, 5744415.579068705]]}, "properties": {"id": "17736-17738-17740-17742-17744-17746", "from": "289545863", "to": "2562476511", "length_m": 116.9995977065882, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788301.0495553452, 5751472.079551443], [788271.4134061051, 5751412.688302575]]}, "properties": {"id": "1774", "from": "509914444", "to": "509914426", "length_m": 66.3748579352113, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778583.5109767521, 5744415.579068705], [778699.1834134569, 5744413.951196061]]}, "properties": {"id": "17747-17745-17743-17741-17739-17737", "from": "2562476511", "to": "289545863", "length_m": 116.9995977065882, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788271.4134061051, 5751412.688302575], [788301.0495553452, 5751472.079551443]]}, "properties": {"id": "1775", "from": "509914426", "to": "509914444", "length_m": 66.3748579352113, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788271.4134061051, 5751412.688302575], [788242.1521437928, 5751306.714642396]]}, "properties": {"id": "1776-1778-1780", "from": "509914426", "to": "509914428", "length_m": 110.62017403201449, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832835.8756561235, 5804736.399339156], [832920.3059213652, 5804724.935268931]]}, "properties": {"id": "178-179", "from": "1745493180", "to": "1745493191", "length_m": 85.20505836831157, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788242.1521437928, 5751306.714642396], [788271.4134061051, 5751412.688302575]]}, "properties": {"id": "1781-1779-1777", "from": "509914428", "to": "509914426", "length_m": 110.62017403201449, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828357.1650069811, 5815205.232292451], [829132.9006826726, 5814837.927601106]]}, "properties": {"id": "17815-17816-17817-17818-17819-17820-17821-17822-17823", "from": "373054700", "to": "1536031862", "length_m": 858.9873991447178, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788242.1521437928, 5751306.714642396], [788231.3704871673, 5751247.527358414]]}, "properties": {"id": "1782", "from": "509914428", "to": "509914037", "length_m": 60.16127242357184, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788231.3704871673, 5751247.527358414], [788242.1521437928, 5751306.714642396]]}, "properties": {"id": "1783", "from": "509914037", "to": "509914428", "length_m": 60.16127242357184, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788231.3704871673, 5751247.527358414], [788193.958000242, 5751043.272204859]]}, "properties": {"id": "1784-1786", "from": "509914037", "to": "509914074", "length_m": 207.65322514952337, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832428.0848359752, 5808261.626213737], [832706.406803817, 5808219.648627348]]}, "properties": {"id": "17840", "from": "1536458838", "to": "1791673336", "length_m": 281.4697762616338, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832706.406803817, 5808219.648627348], [832976.1645715124, 5808175.995920479]]}, "properties": {"id": "17841-17842-17843", "from": "1791673336", "to": "36045765", "length_m": 273.26921240126603, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788193.958000242, 5751043.272204859], [788231.3704871673, 5751247.527358414]]}, "properties": {"id": "1787-1785", "from": "509914074", "to": "509914037", "length_m": 207.65322514952337, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785251.4237587112, 5752593.472175976], [785253.3532738124, 5752588.124845676]]}, "properties": {"id": "1788", "from": "509914950", "to": "509915231", "length_m": 5.684801663675694, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837244.3398621154, 5807028.453156353], [837123.223841357, 5806939.085788556]]}, "properties": {"id": "17882-17883-17884-17885", "from": "1833721691", "to": "1833721693", "length_m": 157.94270616937598, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837100.7905291589, 5806904.857096549], [837065.8488579642, 5806971.820115928]]}, "properties": {"id": "17886-17887-17888-17889-17890-17891", "from": "32549532", "to": "253521108", "length_m": 94.41798960161742, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785253.3532738124, 5752588.124845676], [785251.4237587112, 5752593.472175976]]}, "properties": {"id": "1789", "from": "509915231", "to": "509914950", "length_m": 5.684801663675694, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833657.2207092715, 5804958.110704516], [833415.4272342643, 5804701.408532207]]}, "properties": {"id": "17893-17894-17895-17896-17897-17898-17899-17900-17901-17902-17903-17904-17905-17906-17907-17908", "from": "253337672", "to": "253337722", "length_m": 366.8885474588003, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785253.3532738124, 5752588.124845676], [785224.2611061425, 5752471.23507119]]}, "properties": {"id": "1790", "from": "509915231", "to": "509915179", "length_m": 120.45569134661062, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785224.2611061425, 5752471.23507119], [785253.3532738124, 5752588.124845676]]}, "properties": {"id": "1791", "from": "509915179", "to": "509915231", "length_m": 120.45569134661062, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785224.2611061425, 5752471.23507119], [785212.1567856611, 5752349.999217597]]}, "properties": {"id": "1792-1794-1796", "from": "509915179", "to": "509915883", "length_m": 123.66312375369631, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830004.9687834413, 5812427.143330248], [829951.8107943865, 5812975.454410006]]}, "properties": {"id": "17921-198-181-182-183-184-185", "from": "666801140", "to": "2308974808", "length_m": 551.2853817556388, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829974.8485054874, 5812970.227636875], [830050.0954940055, 5812128.299004585]]}, "properties": {"id": "17923-17924-17925-17926-180-194-195-196", "from": "4435281082", "to": "290669396", "length_m": 845.6281761989985, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785404.9325918308, 5754908.034617491], [783924.7014810045, 5755187.181273488]]}, "properties": {"id": "17927", "from": "3413826150", "to": "535081622", "length_m": 1462.5080311025565, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783924.7014810045, 5755187.181273488], [785404.9325918308, 5754908.034617491]]}, "properties": {"id": "17928", "from": "535081622", "to": "3413826150", "length_m": 1462.5080311025565, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783924.7014810045, 5755187.181273488], [783228.6505648901, 5755316.474545413]]}, "properties": {"id": "17929-17931", "from": "535081622", "to": "2693866510", "length_m": 707.9574038442963, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783228.6505648901, 5755316.474545413], [783924.7014810045, 5755187.181273488]]}, "properties": {"id": "17932-17930", "from": "2693866510", "to": "535081622", "length_m": 707.9574038442963, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783228.6505648901, 5755316.474545413], [782591.7839138226, 5755434.510674173]]}, "properties": {"id": "17933-17935-17937", "from": "2693866510", "to": "1708444859", "length_m": 648.6440377183355, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782591.7839138226, 5755434.510674173], [783228.6505648901, 5755316.474545413]]}, "properties": {"id": "17938-17936-17934", "from": "1708444859", "to": "2693866510", "length_m": 648.6440377183355, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791838.7266692279, 5753521.449430184], [791821.5632977043, 5753504.964576266]]}, "properties": {"id": "17939", "from": "512200738", "to": "2075578416", "length_m": 23.797725239050607, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803415.4940487805, 5767521.049987575], [803419.8951816013, 5767532.923814792]]}, "properties": {"id": "17964", "from": "366137196", "to": "380256730", "length_m": 12.663243751344172, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803419.8951816013, 5767532.923814792], [803415.4940487805, 5767521.049987575]]}, "properties": {"id": "17965", "from": "380256730", "to": "366137196", "length_m": 12.663243751344172, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833462.9761428392, 5804617.760813806], [833397.0054483223, 5804603.484519261]]}, "properties": {"id": "17966-17967-17968-17969-17970-17971-17972", "from": "75203367", "to": "253337738", "length_m": 69.7960442957647, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785212.1567856611, 5752349.999217597], [785224.2611061425, 5752471.23507119]]}, "properties": {"id": "1797-1795-1793", "from": "509915883", "to": "509915179", "length_m": 123.66312375369631, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831970.2366991262, 5809421.947205573], [831998.1353376874, 5809547.365194403]]}, "properties": {"id": "17978-17979-17980-17981", "from": "666605093", "to": "666604911", "length_m": 128.50555336854663, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779812.5432368845, 5752356.985817903], [780565.2283414996, 5752214.750548117]]}, "properties": {"id": "17982", "from": "519797048", "to": "519796992", "length_m": 766.0063554283996, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780565.2283414996, 5752214.750548117], [779812.5432368845, 5752356.985817903]]}, "properties": {"id": "17983", "from": "519796992", "to": "519797048", "length_m": 766.0063554283996, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780565.2283414996, 5752214.750548117], [781490.087089017, 5752046.498291568]]}, "properties": {"id": "17984", "from": "519796992", "to": "498837783", "length_m": 940.0385744625593, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781490.087089017, 5752046.498291568], [780565.2283414996, 5752214.750548117]]}, "properties": {"id": "17985", "from": "498837783", "to": "519796992", "length_m": 940.0385744625593, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791562.4796433507, 5754322.366432428], [791503.357433738, 5754565.7898313645]]}, "properties": {"id": "17988-17990-17992", "from": "518259862", "to": "518259865", "length_m": 253.89089779489746, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791503.357433738, 5754565.7898313645], [791562.4796433507, 5754322.366432428]]}, "properties": {"id": "17993-17991-17989", "from": "518259865", "to": "518259862", "length_m": 253.89089779489746, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836533.9934649337, 5806774.830407119], [836576.9454973427, 5806844.269422089]]}, "properties": {"id": "17994-17995-17996-17997-17998-17999", "from": "36021203", "to": "288441250", "length_m": 86.4718681725602, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791386.0973982333, 5754590.629921899], [791301.2123015474, 5754605.241622226]]}, "properties": {"id": "18000", "from": "2548347253", "to": "518259952", "length_m": 86.13350909673169, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791301.2123015474, 5754605.241622226], [791386.0973982333, 5754590.629921899]]}, "properties": {"id": "18001", "from": "518259952", "to": "2548347253", "length_m": 86.13350909673169, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791301.2123015474, 5754605.241622226], [791144.3035640614, 5754635.843443172]]}, "properties": {"id": "18002", "from": "518259952", "to": "3464608660", "length_m": 159.86501569144278, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791144.3035640614, 5754635.843443172], [791301.2123015474, 5754605.241622226]]}, "properties": {"id": "18003", "from": "3464608660", "to": "518259952", "length_m": 159.86501569144278, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791608.5522781918, 5754449.887895915], [791794.4586426738, 5754478.0810143845]]}, "properties": {"id": "18034-18036", "from": "518259858", "to": "518259843", "length_m": 188.34252718596687, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791794.4586426738, 5754478.0810143845], [791608.5522781918, 5754449.887895915]]}, "properties": {"id": "18037-18035", "from": "518259843", "to": "518259858", "length_m": 188.34252718596687, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791635.3317328165, 5754375.452442435], [791738.723212155, 5754390.288905876]]}, "properties": {"id": "18038-18040", "from": "518259855", "to": "518259857", "length_m": 104.57966283207493, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791738.723212155, 5754390.288905876], [791635.3317328165, 5754375.452442435]]}, "properties": {"id": "18041-18039", "from": "518259857", "to": "518259855", "length_m": 104.57966283207493, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791805.1978181573, 5754337.4031319935], [791794.4586426738, 5754478.0810143845]]}, "properties": {"id": "18042-18044", "from": "518259827", "to": "518259843", "length_m": 141.58263439369364, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791794.4586426738, 5754478.0810143845], [791805.1978181573, 5754337.4031319935]]}, "properties": {"id": "18045-18043", "from": "518259843", "to": "518259827", "length_m": 141.58263439369364, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791794.4586426738, 5754478.0810143845], [791772.7380514364, 5754549.499988832]]}, "properties": {"id": "18046-18048", "from": "518259843", "to": "845902046", "length_m": 74.96545369195012, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791772.7380514364, 5754549.499988832], [791794.4586426738, 5754478.0810143845]]}, "properties": {"id": "18049-18047", "from": "845902046", "to": "518259843", "length_m": 74.96545369195012, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791772.7380514364, 5754549.499988832], [791776.7780761321, 5754567.748769725]]}, "properties": {"id": "18050-18052", "from": "845902046", "to": "5421408733", "length_m": 21.858592694616412, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791776.7780761321, 5754567.748769725], [791772.7380514364, 5754549.499988832]]}, "properties": {"id": "18053-18051", "from": "5421408733", "to": "845902046", "length_m": 21.858592694616412, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791789.6766083592, 5754322.53703305], [791805.1978181573, 5754337.4031319935]]}, "properties": {"id": "18058-18059-18060-18061-18062-18063", "from": "518259825", "to": "518259827", "length_m": 25.08423462317727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791805.1978181573, 5754337.4031319935], [791815.6135328847, 5754326.834406529]]}, "properties": {"id": "18064-18065-18066-18067", "from": "518259827", "to": "518259829", "length_m": 15.712043798740545, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791815.6135328847, 5754326.834406529], [791805.1533769176, 5754311.707561049]]}, "properties": {"id": "18068-18069-18070-18071-18072", "from": "518259829", "to": "518259823", "length_m": 20.30813666542059, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791805.1533769176, 5754311.707561049], [791802.2289594288, 5754311.479841889]]}, "properties": {"id": "18073", "from": "518259823", "to": "518259824", "length_m": 2.9332701291992036, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791802.2289594288, 5754311.479841889], [791789.6766083592, 5754322.53703305]]}, "properties": {"id": "18074-18054-18055-18056-18057", "from": "518259824", "to": "518259825", "length_m": 18.07310533841677, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791935.021381712, 5754274.334325314], [791805.1533769176, 5754311.707561049]]}, "properties": {"id": "18076-18077-18078-18079-18080", "from": "518259820", "to": "518259823", "length_m": 136.55658421883234, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785196.4273193141, 5751903.921013533], [785209.242916577, 5751583.131561742]]}, "properties": {"id": "1808-1810-1812-1814-1816-1818", "from": "509915230", "to": "509915186", "length_m": 339.4366277788401, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791943.6136875014, 5754251.371763776], [791939.6624352583, 5754270.209627654]]}, "properties": {"id": "18082", "from": "845901959", "to": "518259818", "length_m": 19.24779235884581, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830117.9609338351, 5811273.3205396235], [830167.8305321445, 5810765.585914669]]}, "properties": {"id": "18085-18086-18087-18088", "from": "290669400", "to": "1928863175", "length_m": 510.4057086121576, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830167.8305321445, 5810765.585914669], [830811.5817891492, 5810051.847040325]]}, "properties": {"id": "18089-18090-18091-18092-18093-18094-18095-18096-18097-18098-19611-13145-13146-13147-13148-13149-13150", "from": "1928863175", "to": "4435281077", "length_m": 1002.506521250124, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791935.021381712, 5754274.334325314], [791937.0144975184, 5754290.700900079]]}, "properties": {"id": "18099-18100-18101-18102", "from": "518259820", "to": "518259832", "length_m": 17.879217166795954, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791937.0144975184, 5754290.700900079], [791945.0571802307, 5754293.944486715]]}, "properties": {"id": "18103-18104", "from": "518259832", "to": "845902546", "length_m": 8.805226455610923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791945.0571802307, 5754293.944486715], [791955.2680682156, 5754289.340454979]]}, "properties": {"id": "18105-18106", "from": "845902546", "to": "518259834", "length_m": 11.500606764786603, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791955.2680682156, 5754289.340454979], [791953.6422067196, 5754271.749093423]]}, "properties": {"id": "18107-18108-18109-18110", "from": "518259834", "to": "518259840", "length_m": 19.459650393661338, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791953.6422067196, 5754271.749093423], [791939.6624352583, 5754270.209627654]]}, "properties": {"id": "18111-18112-18113-18114", "from": "518259840", "to": "518259818", "length_m": 14.847734790077599, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791939.6624352583, 5754270.209627654], [791935.021381712, 5754274.334325314]]}, "properties": {"id": "18115", "from": "518259818", "to": "518259820", "length_m": 6.209066674606007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791815.6135328847, 5754326.834406529], [791937.0144975184, 5754290.700900079]]}, "properties": {"id": "18117-18118-18119-18120", "from": "518259829", "to": "518259832", "length_m": 128.3106221273566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794299.469622182, 5778287.190854435], [794289.5835381532, 5778295.073029304]]}, "properties": {"id": "18126-18127-18128-18129", "from": "2802468202", "to": "4706134851", "length_m": 13.175542063249443, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794289.5835381532, 5778295.073029304], [794276.6204831498, 5778309.435107843]]}, "properties": {"id": "18130-18131-18132-18133", "from": "4706134851", "to": "502710903", "length_m": 20.292316034550513, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765480.1960257462, 5750282.043130319], [765730.4151733072, 5750028.985118815]]}, "properties": {"id": "18135-43567-43565-43563-43561-43559-43557-43555", "from": "371398747", "to": "4434119092", "length_m": 377.7827333533667, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765480.1960257462, 5750282.043130319], [765543.7398998253, 5750504.247609872]]}, "properties": {"id": "18136-18138-18140-18142-18144-33729-33731-33733", "from": "371398747", "to": "2974219376", "length_m": 232.64264713342905, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785203.8730217391, 5780196.022999446], [786151.4367333027, 5779810.546850272]]}, "properties": {"id": "18151-18153-18155-18157-18159-18161", "from": "701713017", "to": "318039453", "length_m": 1024.4655266517098, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786151.4367333027, 5779810.546850272], [785203.8730217391, 5780196.022999446]]}, "properties": {"id": "18162-18160-18158-18156-18154-18152", "from": "318039453", "to": "701713017", "length_m": 1024.4655266517098, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786151.4367333027, 5779810.546850272], [786700.2127982368, 5779577.064450207]]}, "properties": {"id": "18163-18165-18167", "from": "318039453", "to": "494759326", "length_m": 596.3818309324643, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786700.2127982368, 5779577.064450207], [786151.4367333027, 5779810.546850272]]}, "properties": {"id": "18168-18166-18164", "from": "494759326", "to": "318039453", "length_m": 596.3818309324643, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786700.2127982368, 5779577.064450207], [787472.1138135018, 5779225.61564566]]}, "properties": {"id": "18169-18171-18173-18175-18177-38022-38024-38026-38028-38030-49399", "from": "494759326", "to": "4181465676", "length_m": 848.7446711290937, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790533.9654211935, 5777741.571143529], [790859.3594687667, 5777520.529304306]]}, "properties": {"id": "18179-18181", "from": "3607038426", "to": "318035128", "length_m": 393.3711188891027, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790859.3594687667, 5777520.529304306], [790533.9654211935, 5777741.571143529]]}, "properties": {"id": "18182-18180", "from": "318035128", "to": "3607038426", "length_m": 393.3711188891027, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792636.9945597069, 5754578.046234813], [792651.4629166124, 5754604.152784132]]}, "properties": {"id": "18184-18186-18188", "from": "518259777", "to": "518259778", "length_m": 30.9426893031943, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792651.4629166124, 5754604.152784132], [792636.9945597069, 5754578.046234813]]}, "properties": {"id": "18189-18187-18185", "from": "518259778", "to": "518259777", "length_m": 30.9426893031943, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785209.242916577, 5751583.131561742], [785196.4273193141, 5751903.921013533]]}, "properties": {"id": "1819-1817-1815-1813-1811-1809", "from": "509915186", "to": "509915230", "length_m": 339.4366277788401, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792631.3946925229, 5754550.162142116], [792630.4600909384, 5754506.503750356]]}, "properties": {"id": "18190-18192-18194-18196", "from": "518259779", "to": "518259782", "length_m": 44.32071268193448, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792630.4600909384, 5754506.503750356], [792631.3946925229, 5754550.162142116]]}, "properties": {"id": "18197-18195-18193-18191", "from": "518259782", "to": "518259779", "length_m": 44.32071268193448, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833796.7190836165, 5804563.328021311], [833577.3250126061, 5804600.270384775]]}, "properties": {"id": "18198-18199-18200", "from": "825686158", "to": "75203366", "length_m": 222.48288229197536, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785106.2933497687, 5751389.511202669], [785592.1043070448, 5750773.088034032]]}, "properties": {"id": "1820-1822-1824-1826-1828-1830-1832", "from": "509915055", "to": "509914993", "length_m": 982.661434075964, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792571.9500288637, 5754594.208493057], [792605.2539147981, 5754584.254044872]]}, "properties": {"id": "18201-18203", "from": "518259776", "to": "518259753", "length_m": 36.180632544312, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792605.2539147981, 5754584.254044872], [792571.9500288637, 5754594.208493057]]}, "properties": {"id": "18204-18202", "from": "518259753", "to": "518259776", "length_m": 36.180632544312, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792605.2539147981, 5754584.254044872], [792636.9945597069, 5754578.046234813]]}, "properties": {"id": "18205-18207-18209-18211-18213", "from": "518259753", "to": "518259777", "length_m": 33.13991937098619, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792636.9945597069, 5754578.046234813], [792605.2539147981, 5754584.254044872]]}, "properties": {"id": "18214-18212-18210-18208-18206", "from": "518259777", "to": "518259753", "length_m": 33.13991937098619, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792636.9945597069, 5754578.046234813], [792631.3946925229, 5754550.162142116]]}, "properties": {"id": "18215-18217-18219-18221-18223-18225", "from": "518259777", "to": "518259779", "length_m": 29.808460477824724, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792631.3946925229, 5754550.162142116], [792636.9945597069, 5754578.046234813]]}, "properties": {"id": "18226-18224-18222-18220-18218-18216", "from": "518259779", "to": "518259777", "length_m": 29.808460477824724, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792631.3946925229, 5754550.162142116], [792599.1444714703, 5754551.731312533]]}, "properties": {"id": "18227-18229-18231-18233-18235", "from": "518259779", "to": "518259751", "length_m": 33.04063458397454, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792599.1444714703, 5754551.731312533], [792631.3946925229, 5754550.162142116]]}, "properties": {"id": "18236-18234-18232-18230-18228", "from": "518259751", "to": "518259779", "length_m": 33.04063458397454, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792540.4560537185, 5754180.001295599], [792570.0147449091, 5754189.744612537]]}, "properties": {"id": "18237-18239", "from": "518259770", "to": "518259775", "length_m": 36.81308864933734, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792570.0147449091, 5754189.744612537], [792540.4560537185, 5754180.001295599]]}, "properties": {"id": "18240-18238", "from": "518259775", "to": "518259770", "length_m": 36.81308864933734, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836817.4235803667, 5805950.879593558], [836725.5678682034, 5805407.990097676]]}, "properties": {"id": "18241-18242-18243-18244-18245-18246-18247-32056-32057-32058", "from": "2100483163", "to": "2506831437", "length_m": 552.1772584968976, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792528.7487325447, 5754184.382474219], [792540.4560537185, 5754180.001295599]]}, "properties": {"id": "18248-18250", "from": "518259724", "to": "518259770", "length_m": 13.021107463851028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792540.4560537185, 5754180.001295599], [792528.7487325447, 5754184.382474219]]}, "properties": {"id": "18251-18249", "from": "518259770", "to": "518259724", "length_m": 13.021107463851028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792540.4560537185, 5754180.001295599], [792533.958260267, 5754159.70777569]]}, "properties": {"id": "18252-18254", "from": "518259770", "to": "518259773", "length_m": 21.316597582502528, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792533.958260267, 5754159.70777569], [792540.4560537185, 5754180.001295599]]}, "properties": {"id": "18255-18253", "from": "518259773", "to": "518259770", "length_m": 21.316597582502528, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792548.2232817811, 5754282.676113639], [792559.0640847462, 5754237.712866706]]}, "properties": {"id": "18256-18258-18260", "from": "518259730", "to": "518259769", "length_m": 59.2347520833819, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792559.0640847462, 5754237.712866706], [792548.2232817811, 5754282.676113639]]}, "properties": {"id": "18261-18259-18257", "from": "518259769", "to": "518259730", "length_m": 59.2347520833819, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792567.9065748255, 5754311.094569964], [792567.609649465, 5754302.902613623]]}, "properties": {"id": "18262", "from": "518259763", "to": "518259766", "length_m": 8.197335749950488, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792567.609649465, 5754302.902613623], [792567.9065748255, 5754311.094569964]]}, "properties": {"id": "18263", "from": "518259766", "to": "518259763", "length_m": 8.197335749950488, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787557.4442566669, 5750898.828537839], [787167.143006895, 5750980.291238882]]}, "properties": {"id": "18264", "from": "956658441", "to": "976342867", "length_m": 398.7119719912318, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787167.143006895, 5750980.291238882], [787557.4442566669, 5750898.828537839]]}, "properties": {"id": "18265", "from": "976342867", "to": "956658441", "length_m": 398.7119719912318, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833180.4460876081, 5820316.674289782], [833268.2760720742, 5820608.354747334]]}, "properties": {"id": "18266-18267-18268-18269-18270-18271", "from": "603462042", "to": "2949278444", "length_m": 304.6172115419406, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792552.9343296646, 5754310.692481615], [792567.9065748255, 5754311.094569964]]}, "properties": {"id": "18272-18274", "from": "518259761", "to": "518259763", "length_m": 15.044667989992345, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792567.9065748255, 5754311.094569964], [792552.9343296646, 5754310.692481615]]}, "properties": {"id": "18275-18273", "from": "518259763", "to": "518259761", "length_m": 15.044667989992345, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792567.9065748255, 5754311.094569964], [792586.3472660063, 5754339.535802137]]}, "properties": {"id": "18276-18278", "from": "518259763", "to": "518259765", "length_m": 34.11233029246536, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792586.3472660063, 5754339.535802137], [792567.9065748255, 5754311.094569964]]}, "properties": {"id": "18279-18277", "from": "518259765", "to": "518259763", "length_m": 34.11233029246536, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833285.5035286194, 5820606.3911232725], [833198.138884567, 5820307.2200894905]]}, "properties": {"id": "18280-5610-5611-5612-5613-5614-5615", "from": "599479818", "to": "603461897", "length_m": 311.72137914884934, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792598.1731648188, 5754429.259249955], [792592.9000093288, 5754375.11015276]]}, "properties": {"id": "18281-18283", "from": "518259754", "to": "518259760", "length_m": 54.532832089245225, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792592.9000093288, 5754375.11015276], [792598.1731648188, 5754429.259249955]]}, "properties": {"id": "18284-18282", "from": "518259760", "to": "518259754", "length_m": 54.532832089245225, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792575.4093439614, 5754433.285427901], [792598.1731648188, 5754429.259249955]]}, "properties": {"id": "18285", "from": "518259738", "to": "518259754", "length_m": 23.117128867896028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792598.1731648188, 5754429.259249955], [792575.4093439614, 5754433.285427901]]}, "properties": {"id": "18286", "from": "518259754", "to": "518259738", "length_m": 23.117128867896028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792598.1731648188, 5754429.259249955], [792620.3932498121, 5754472.079363878]]}, "properties": {"id": "18287-18289", "from": "518259754", "to": "518259758", "length_m": 48.3688730724026, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792620.3932498121, 5754472.079363878], [792598.1731648188, 5754429.259249955]]}, "properties": {"id": "18290-18288", "from": "518259758", "to": "518259754", "length_m": 48.3688730724026, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792523.6621494647, 5754163.882195231], [792528.7487325447, 5754184.382474219]]}, "properties": {"id": "18291-18293", "from": "518259722", "to": "518259724", "length_m": 21.38405083554501, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792528.7487325447, 5754184.382474219], [792523.6621494647, 5754163.882195231]]}, "properties": {"id": "18294-18292", "from": "518259724", "to": "518259722", "length_m": 21.38405083554501, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792528.7487325447, 5754184.382474219], [792548.2232817811, 5754282.676113639]]}, "properties": {"id": "18295-18297-18299-18301-18303-18305-18307", "from": "518259724", "to": "518259730", "length_m": 121.23261880340571, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792548.2232817811, 5754282.676113639], [792528.7487325447, 5754184.382474219]]}, "properties": {"id": "18308-18306-18304-18302-18300-18298-18296", "from": "518259730", "to": "518259724", "length_m": 121.23261880340571, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792548.2232817811, 5754282.676113639], [792552.9343296646, 5754310.692481615]]}, "properties": {"id": "18309-18311-18313-18315-18317", "from": "518259730", "to": "518259761", "length_m": 28.532870384539773, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792552.9343296646, 5754310.692481615], [792548.2232817811, 5754282.676113639]]}, "properties": {"id": "18318-18316-18314-18312-18310", "from": "518259761", "to": "518259730", "length_m": 28.532870384539773, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792552.9343296646, 5754310.692481615], [792575.4093439614, 5754433.285427901]]}, "properties": {"id": "18319-18321-18323-18325-18327-18329-18331-18333-18335-18337-18339-18341-18343-18345-18347", "from": "518259761", "to": "518259738", "length_m": 143.5675302606904, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785592.1043070448, 5750773.088034032], [785106.2933497687, 5751389.511202669]]}, "properties": {"id": "1833-1831-1829-1827-1825-1823-1821", "from": "509914993", "to": "509915055", "length_m": 982.661434075964, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787919.3708488601, 5750606.565969417], [787946.1136643414, 5750721.343857141]]}, "properties": {"id": "1834-1836-1838", "from": "509914435", "to": "509914430", "length_m": 118.91094434376298, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792575.4093439614, 5754433.285427901], [792552.9343296646, 5754310.692481615]]}, "properties": {"id": "18348-18346-18344-18342-18340-18338-18336-18334-18332-18330-18328-18326-18324-18322-18320", "from": "518259738", "to": "518259761", "length_m": 143.5675302606904, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792575.4093439614, 5754433.285427901], [792599.1444714703, 5754551.731312533]]}, "properties": {"id": "18349-18351-18353-18355-18357-18359-18361-18363-18365-18367-18369-18371-18373-18375-18377-18379", "from": "518259738", "to": "518259751", "length_m": 140.7111141218925, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792599.1444714703, 5754551.731312533], [792575.4093439614, 5754433.285427901]]}, "properties": {"id": "18380-18378-18376-18374-18372-18370-18368-18366-18364-18362-18360-18358-18356-18354-18352-18350", "from": "518259751", "to": "518259738", "length_m": 140.7111141218925, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792599.1444714703, 5754551.731312533], [792605.2539147981, 5754584.254044872]]}, "properties": {"id": "18381-18383-18385-18387-18389-18391", "from": "518259751", "to": "518259753", "length_m": 34.04048579438383, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787946.1136643414, 5750721.343857141], [787919.3708488601, 5750606.565969417]]}, "properties": {"id": "1839-1837-1835", "from": "509914430", "to": "509914435", "length_m": 118.91094434376298, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792605.2539147981, 5754584.254044872], [792599.1444714703, 5754551.731312533]]}, "properties": {"id": "18392-18390-18388-18386-18384-18382", "from": "518259753", "to": "518259751", "length_m": 34.04048579438383, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792457.1436784967, 5754180.119485702], [792509.6902727729, 5754458.352450822]]}, "properties": {"id": "18393", "from": "518259720", "to": "518259711", "length_m": 283.1514212563908, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792509.6902727729, 5754458.352450822], [792457.1436784967, 5754180.119485702]]}, "properties": {"id": "18394", "from": "518259711", "to": "518259720", "length_m": 283.1514212563908, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792509.6902727729, 5754458.352450822], [792502.3759748603, 5754564.163466329]]}, "properties": {"id": "18395-18397-18399", "from": "518259711", "to": "5253399257", "length_m": 109.93965738142684, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835957.5694657888, 5817738.075146657], [835933.7991239177, 5817782.39849395]]}, "properties": {"id": "1840-1841-1842-1843", "from": "30929290", "to": "30929285", "length_m": 52.33208684705695, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792502.3759748603, 5754564.163466329], [792509.6902727729, 5754458.352450822]]}, "properties": {"id": "18400-18398-18396", "from": "5253399257", "to": "518259711", "length_m": 109.93965738142684, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792502.3759748603, 5754564.163466329], [792508.4541840788, 5754636.922872467]]}, "properties": {"id": "18401-18403", "from": "5253399257", "to": "5253399255", "length_m": 73.01297640714398, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792508.4541840788, 5754636.922872467], [792502.3759748603, 5754564.163466329]]}, "properties": {"id": "18404-18402", "from": "5253399255", "to": "5253399257", "length_m": 73.01297640714398, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792508.4541840788, 5754636.922872467], [792521.7379809527, 5754718.324117581]]}, "properties": {"id": "18405", "from": "5253399255", "to": "5253399254", "length_m": 82.47800894547726, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792521.7379809527, 5754718.324117581], [792508.4541840788, 5754636.922872467]]}, "properties": {"id": "18406", "from": "5253399254", "to": "5253399255", "length_m": 82.47800894547726, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792521.7379809527, 5754718.324117581], [792543.9476017954, 5754773.660076842]]}, "properties": {"id": "18407-18409-18411", "from": "5253399254", "to": "5253399261", "length_m": 59.95523116012643, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792543.9476017954, 5754773.660076842], [792521.7379809527, 5754718.324117581]]}, "properties": {"id": "18412-18410-18408", "from": "5253399261", "to": "5253399254", "length_m": 59.95523116012643, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792543.9476017954, 5754773.660076842], [792602.320012904, 5754919.393497948]]}, "properties": {"id": "18413-18415", "from": "5253399261", "to": "5253399263", "length_m": 158.38297119771065, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792602.320012904, 5754919.393497948], [792543.9476017954, 5754773.660076842]]}, "properties": {"id": "18416-18414", "from": "5253399263", "to": "5253399261", "length_m": 158.38297119771065, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792423.4152004183, 5754371.448670276], [792441.1401871697, 5754470.795047603]]}, "properties": {"id": "18425", "from": "518259718", "to": "518259719", "length_m": 100.91520119287007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792441.1401871697, 5754470.795047603], [792423.4152004183, 5754371.448670276]]}, "properties": {"id": "18426", "from": "518259719", "to": "518259718", "length_m": 100.91520119287007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792045.7760343945, 5754458.077740069], [792258.7982849998, 5754419.0131436]]}, "properties": {"id": "18427", "from": "518259717", "to": "518259714", "length_m": 216.57451778851947, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792258.7982849998, 5754419.0131436], [792045.7760343945, 5754458.077740069]]}, "properties": {"id": "18428", "from": "518259714", "to": "518259717", "length_m": 216.57451778851947, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792217.5515901892, 5754307.525014966], [792258.7982849998, 5754419.0131436]]}, "properties": {"id": "18429-18431", "from": "518259712", "to": "518259714", "length_m": 120.59846593237401, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792258.7982849998, 5754419.0131436], [792217.5515901892, 5754307.525014966]]}, "properties": {"id": "18432-18430", "from": "518259714", "to": "518259712", "length_m": 120.59846593237401, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792258.7982849998, 5754419.0131436], [792275.523257616, 5754503.857802483]]}, "properties": {"id": "18433", "from": "518259714", "to": "518259715", "length_m": 86.47740075057116, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792275.523257616, 5754503.857802483], [792258.7982849998, 5754419.0131436]]}, "properties": {"id": "18434", "from": "518259715", "to": "518259714", "length_m": 86.47740075057116, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792275.523257616, 5754503.857802483], [792290.8989465332, 5754588.195563619]]}, "properties": {"id": "18435", "from": "518259715", "to": "518259716", "length_m": 85.72788202996296, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792290.8989465332, 5754588.195563619], [792275.523257616, 5754503.857802483]]}, "properties": {"id": "18436", "from": "518259716", "to": "518259715", "length_m": 85.72788202996296, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792038.9854873816, 5754548.030341378], [792063.2555718564, 5754542.539657564]]}, "properties": {"id": "18437", "from": "518259710", "to": "518259709", "length_m": 24.88342033264917, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792063.2555718564, 5754542.539657564], [792038.9854873816, 5754548.030341378]]}, "properties": {"id": "18438", "from": "518259709", "to": "518259710", "length_m": 24.88342033264917, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792063.2555718564, 5754542.539657564], [792275.523257616, 5754503.857802483]]}, "properties": {"id": "18439", "from": "518259709", "to": "518259715", "length_m": 215.76342626877226, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793056.4069230945, 5768666.783958063], [792967.16939461, 5768569.43294421]]}, "properties": {"id": "1844-1845-1846-1847-1848-1849-1850", "from": "3530740191", "to": "360499960", "length_m": 139.888274110045, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792275.523257616, 5754503.857802483], [792063.2555718564, 5754542.539657564]]}, "properties": {"id": "18440", "from": "518259715", "to": "518259709", "length_m": 215.76342626877226, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792275.523257616, 5754503.857802483], [792358.8450556332, 5754487.713960924]]}, "properties": {"id": "18441", "from": "518259715", "to": "518259707", "length_m": 84.8713474552249, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792358.8450556332, 5754487.713960924], [792275.523257616, 5754503.857802483]]}, "properties": {"id": "18442", "from": "518259707", "to": "518259715", "length_m": 84.8713474552249, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792358.8450556332, 5754487.713960924], [792441.1401871697, 5754470.795047603]]}, "properties": {"id": "18443", "from": "518259707", "to": "518259719", "length_m": 84.01629764306766, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792441.1401871697, 5754470.795047603], [792358.8450556332, 5754487.713960924]]}, "properties": {"id": "18444", "from": "518259719", "to": "518259707", "length_m": 84.01629764306766, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792441.1401871697, 5754470.795047603], [792509.6902727729, 5754458.352450822]]}, "properties": {"id": "18445", "from": "518259719", "to": "518259711", "length_m": 69.67016889209495, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792509.6902727729, 5754458.352450822], [792441.1401871697, 5754470.795047603]]}, "properties": {"id": "18446", "from": "518259711", "to": "518259719", "length_m": 69.67016889209495, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792031.4693448199, 5754377.313366304], [792045.7760343945, 5754458.077740069]]}, "properties": {"id": "18447", "from": "518259708", "to": "518259717", "length_m": 82.02173754075692, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792045.7760343945, 5754458.077740069], [792031.4693448199, 5754377.313366304]]}, "properties": {"id": "18448", "from": "518259717", "to": "518259708", "length_m": 82.02173754075692, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792045.7760343945, 5754458.077740069], [792063.2555718564, 5754542.539657564]]}, "properties": {"id": "18449", "from": "518259717", "to": "518259709", "length_m": 86.25166507509391, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792063.2555718564, 5754542.539657564], [792045.7760343945, 5754458.077740069]]}, "properties": {"id": "18450", "from": "518259709", "to": "518259717", "length_m": 86.25166507509391, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792287.2171124491, 5754264.011406717], [792358.8450556332, 5754487.713960924]]}, "properties": {"id": "18451-18453", "from": "518259705", "to": "518259707", "length_m": 238.39564696994765, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792358.8450556332, 5754487.713960924], [792287.2171124491, 5754264.011406717]]}, "properties": {"id": "18454-18452", "from": "518259707", "to": "518259705", "length_m": 238.39564696994765, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792360.0503260444, 5754216.58113737], [792267.7707589124, 5754135.450927869]]}, "properties": {"id": "18455-18457-18459-18461", "from": "518259681", "to": "518259663", "length_m": 127.32363960101442, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792267.7707589124, 5754135.450927869], [792360.0503260444, 5754216.58113737]]}, "properties": {"id": "18462-18460-18458-18456", "from": "518259663", "to": "518259681", "length_m": 127.32363960101442, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792267.7707589124, 5754135.450927869], [792176.5878059287, 5754149.87808691]]}, "properties": {"id": "18463-18465", "from": "518259663", "to": "518259697", "length_m": 92.45777300388067, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792176.5878059287, 5754149.87808691], [792267.7707589124, 5754135.450927869]]}, "properties": {"id": "18466-18464", "from": "518259697", "to": "518259663", "length_m": 92.45777300388067, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792176.5878059287, 5754149.87808691], [792142.7252788073, 5754156.694534894]]}, "properties": {"id": "18467", "from": "518259697", "to": "518259693", "length_m": 34.54178195570525, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792142.7252788073, 5754156.694534894], [792176.5878059287, 5754149.87808691]]}, "properties": {"id": "18468", "from": "518259693", "to": "518259697", "length_m": 34.54178195570525, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792142.7252788073, 5754156.694534894], [792055.6014556622, 5754172.707266865]]}, "properties": {"id": "18469", "from": "518259693", "to": "518259689", "length_m": 88.58311412296554, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792055.6014556622, 5754172.707266865], [792142.7252788073, 5754156.694534894]]}, "properties": {"id": "18470", "from": "518259689", "to": "518259693", "length_m": 88.58311412296554, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792055.6014556622, 5754172.707266865], [791996.3154482634, 5754183.121618081]]}, "properties": {"id": "18471", "from": "518259689", "to": "518259686", "length_m": 60.19376520588109, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791996.3154482634, 5754183.121618081], [792055.6014556622, 5754172.707266865]]}, "properties": {"id": "18472", "from": "518259686", "to": "518259689", "length_m": 60.19376520588109, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791996.3154482634, 5754183.121618081], [791934.3545351088, 5754195.366165909]]}, "properties": {"id": "18473", "from": "518259686", "to": "518259685", "length_m": 63.15919327968603, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791934.3545351088, 5754195.366165909], [791996.3154482634, 5754183.121618081]]}, "properties": {"id": "18474", "from": "518259685", "to": "518259686", "length_m": 63.15919327968603, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792272.4951853112, 5754272.936142127], [792220.1141864002, 5754231.963083332]]}, "properties": {"id": "18475-18477-18479", "from": "518259699", "to": "518259702", "length_m": 76.17244337058492, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792220.1141864002, 5754231.963083332], [792272.4951853112, 5754272.936142127]]}, "properties": {"id": "18480-18478-18476", "from": "518259702", "to": "518259699", "length_m": 76.17244337058492, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792176.5878059287, 5754149.87808691], [792172.1295770627, 5754119.373882181]]}, "properties": {"id": "18481", "from": "518259697", "to": "518259698", "length_m": 30.828271277658423, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792172.1295770627, 5754119.373882181], [792176.5878059287, 5754149.87808691]]}, "properties": {"id": "18482", "from": "518259698", "to": "518259697", "length_m": 30.828271277658423, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792160.787356114, 5754244.647500417], [792187.018052421, 5754238.429612329]]}, "properties": {"id": "18483", "from": "518259694", "to": "518259696", "length_m": 26.957588160772726, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792187.018052421, 5754238.429612329], [792160.787356114, 5754244.647500417]]}, "properties": {"id": "18484", "from": "518259696", "to": "518259694", "length_m": 26.957588160772726, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790964.5066330384, 5754927.792818386], [790837.2414312419, 5754863.234827945]]}, "properties": {"id": "18492-18490-18488-18486-9374-9372-9370", "from": "4696655308", "to": "4698468859", "length_m": 198.72319794396532, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790964.5066330384, 5754927.792818386], [790968.9933627206, 5754908.914168253]]}, "properties": {"id": "18493-18495-18497", "from": "4696655308", "to": "2548347200", "length_m": 20.396937705166064, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790968.9933627206, 5754908.914168253], [790964.5066330384, 5754927.792818386]]}, "properties": {"id": "18498-18496-18494", "from": "2548347200", "to": "4696655308", "length_m": 20.396937705166064, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790968.9933627206, 5754908.914168253], [790956.2306071704, 5754841.530777218]]}, "properties": {"id": "18499", "from": "2548347200", "to": "4696655311", "length_m": 68.58140645135342, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790956.2306071704, 5754841.530777218], [790968.9933627206, 5754908.914168253]]}, "properties": {"id": "18500", "from": "4696655311", "to": "2548347200", "length_m": 68.58140645135342, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790956.2306071704, 5754841.530777218], [790954.8941842476, 5754835.3103216505]]}, "properties": {"id": "18501", "from": "4696655311", "to": "2548347208", "length_m": 6.362396843763692, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790954.8941842476, 5754835.3103216505], [790956.2306071704, 5754841.530777218]]}, "properties": {"id": "18502", "from": "2548347208", "to": "4696655311", "length_m": 6.362396843763692, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792142.7252788073, 5754156.694534894], [792160.787356114, 5754244.647500417]]}, "properties": {"id": "18503", "from": "518259693", "to": "518259694", "length_m": 89.78843339167057, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792160.787356114, 5754244.647500417], [792142.7252788073, 5754156.694534894]]}, "properties": {"id": "18504", "from": "518259694", "to": "518259693", "length_m": 89.78843339167057, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792160.787356114, 5754244.647500417], [792131.9430119065, 5754251.482287983]]}, "properties": {"id": "18505", "from": "518259694", "to": "518259695", "length_m": 29.64305161597754, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792131.9430119065, 5754251.482287983], [792160.787356114, 5754244.647500417]]}, "properties": {"id": "18506", "from": "518259695", "to": "518259694", "length_m": 29.64305161597754, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792072.04251497, 5754262.597384741], [792103.3889743385, 5754257.628463467]]}, "properties": {"id": "18507", "from": "518259690", "to": "518259692", "length_m": 31.737843152555183, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792103.3889743385, 5754257.628463467], [792072.04251497, 5754262.597384741]]}, "properties": {"id": "18508", "from": "518259692", "to": "518259690", "length_m": 31.737843152555183, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788315.9173221127, 5751224.421241212], [788302.3627403193, 5751145.716383224]]}, "properties": {"id": "1851", "from": "509914036", "to": "509914032", "length_m": 79.86351702995465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792055.6014556622, 5754172.707266865], [792072.04251497, 5754262.597384741]]}, "properties": {"id": "18510", "from": "518259689", "to": "518259690", "length_m": 91.38129849689237, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792072.04251497, 5754262.597384741], [792055.6014556622, 5754172.707266865]]}, "properties": {"id": "18511", "from": "518259690", "to": "518259689", "length_m": 91.38129849689237, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792072.04251497, 5754262.597384741], [791991.676744143, 5754281.476885935]]}, "properties": {"id": "18512", "from": "518259690", "to": "518259691", "length_m": 82.55357449451526, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791991.676744143, 5754281.476885935], [792072.04251497, 5754262.597384741]]}, "properties": {"id": "18513", "from": "518259691", "to": "518259690", "length_m": 82.55357449451526, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793863.7918555218, 5772785.136664435], [793813.9630647713, 5772521.735361089]]}, "properties": {"id": "18514-18515-34053-34054-34055-34056", "from": "250444534", "to": "1967591735", "length_m": 268.0738431988844, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791966.8994405367, 5754008.806540529], [791996.3154482634, 5754183.121618081]]}, "properties": {"id": "18516-18518", "from": "518259671", "to": "518259686", "length_m": 177.3801077377841, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791996.3154482634, 5754183.121618081], [791966.8994405367, 5754008.806540529]]}, "properties": {"id": "18519-18517", "from": "518259686", "to": "518259671", "length_m": 177.3801077377841, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788302.3627403193, 5751145.716383224], [788315.9173221127, 5751224.421241212]]}, "properties": {"id": "1852", "from": "509914032", "to": "509914036", "length_m": 79.86351702995465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792416.2766371854, 5754339.2632520255], [792360.0503260444, 5754216.58113737]]}, "properties": {"id": "18520-18522", "from": "518259704", "to": "518259681", "length_m": 136.901145448691, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792360.0503260444, 5754216.58113737], [792416.2766371854, 5754339.2632520255]]}, "properties": {"id": "18523-18521", "from": "518259681", "to": "518259704", "length_m": 136.901145448691, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792165.7073082429, 5754085.172872877], [792161.354820583, 5754060.733490182]]}, "properties": {"id": "18528", "from": "518259679", "to": "518259680", "length_m": 24.82393149493836, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792161.354820583, 5754060.733490182], [792165.7073082429, 5754085.172872877]]}, "properties": {"id": "18529", "from": "518259680", "to": "518259679", "length_m": 24.82393149493836, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788302.3627403193, 5751145.716383224], [788283.1664376126, 5751041.4168997845]]}, "properties": {"id": "1853", "from": "509914032", "to": "509913954", "length_m": 106.05130962107076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792132.7177963384, 5754065.293432146], [792161.354820583, 5754060.733490182]]}, "properties": {"id": "18530", "from": "518259676", "to": "518259680", "length_m": 28.99779687179254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792161.354820583, 5754060.733490182], [792132.7177963384, 5754065.293432146]]}, "properties": {"id": "18531", "from": "518259680", "to": "518259676", "length_m": 28.99779687179254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792161.354820583, 5754060.733490182], [792288.1033837503, 5753993.946152799]]}, "properties": {"id": "18532-18534-18536", "from": "518259680", "to": "518259666", "length_m": 145.74554527551385, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792288.1033837503, 5753993.946152799], [792161.354820583, 5754060.733490182]]}, "properties": {"id": "18537-18535-18533", "from": "518259666", "to": "518259680", "length_m": 145.74554527551385, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788283.1664376126, 5751041.4168997845], [788302.3627403193, 5751145.716383224]]}, "properties": {"id": "1854", "from": "509913954", "to": "509914032", "length_m": 106.05130962107076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792074.5248576709, 5754075.157599158], [792100.642784782, 5754070.677923246]]}, "properties": {"id": "18541", "from": "518259673", "to": "518259675", "length_m": 26.49931335162209, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792100.642784782, 5754070.677923246], [792074.5248576709, 5754075.157599158]]}, "properties": {"id": "18542", "from": "518259675", "to": "518259673", "length_m": 26.49931335162209, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792059.1083506361, 5753989.620732126], [792074.5248576709, 5754075.157599158]]}, "properties": {"id": "18543", "from": "518259670", "to": "518259673", "length_m": 86.91504072133809, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792074.5248576709, 5754075.157599158], [792059.1083506361, 5753989.620732126]]}, "properties": {"id": "18544", "from": "518259673", "to": "518259670", "length_m": 86.91504072133809, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792074.5248576709, 5754075.157599158], [792051.795361957, 5754080.3481842475]]}, "properties": {"id": "18545", "from": "518259673", "to": "518259674", "length_m": 23.31463376033534, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792051.795361957, 5754080.3481842475], [792074.5248576709, 5754075.157599158]]}, "properties": {"id": "18546", "from": "518259674", "to": "518259673", "length_m": 23.31463376033534, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792323.7101624637, 5754042.561890016], [792288.1033837503, 5753993.946152799]]}, "properties": {"id": "18547", "from": "518259661", "to": "518259666", "length_m": 60.260539122383115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792288.1033837503, 5753993.946152799], [792323.7101624637, 5754042.561890016]]}, "properties": {"id": "18548", "from": "518259666", "to": "518259661", "length_m": 60.260539122383115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792288.1033837503, 5753993.946152799], [792059.1083506361, 5753989.620732126]]}, "properties": {"id": "18549-18551-18553-18555", "from": "518259666", "to": "518259670", "length_m": 247.49322775696623, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788283.1664376126, 5751041.4168997845], [788263.7438150544, 5750983.416610347]]}, "properties": {"id": "1855-1857-1859-1861", "from": "509913954", "to": "509914044", "length_m": 61.8477197101099, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792059.1083506361, 5753989.620732126], [792288.1033837503, 5753993.946152799]]}, "properties": {"id": "18556-18554-18552-18550", "from": "518259670", "to": "518259666", "length_m": 247.49322775696623, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792059.1083506361, 5753989.620732126], [791966.8994405367, 5754008.806540529]]}, "properties": {"id": "18557-18559", "from": "518259670", "to": "518259671", "length_m": 95.05422878598975, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791966.8994405367, 5754008.806540529], [792059.1083506361, 5753989.620732126]]}, "properties": {"id": "18560-18558", "from": "518259671", "to": "518259670", "length_m": 95.05422878598975, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791966.8994405367, 5754008.806540529], [791938.1455440444, 5754009.646599469]]}, "properties": {"id": "18561", "from": "518259671", "to": "518259672", "length_m": 28.766165134728446, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791938.1455440444, 5754009.646599469], [791966.8994405367, 5754008.806540529]]}, "properties": {"id": "18562", "from": "518259672", "to": "518259671", "length_m": 28.766165134728446, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785494.5520149921, 5754803.673685188], [785362.1771973944, 5754100.411506021]]}, "properties": {"id": "18563-18565-18567-18569", "from": "3413826138", "to": "509915205", "length_m": 480.3485258145926, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785362.1771973944, 5754100.411506021], [785494.5520149921, 5754803.673685188]]}, "properties": {"id": "18570-18568-18566-18564", "from": "509915205", "to": "3413826138", "length_m": 480.3485258145926, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785362.1771973944, 5754100.411506021], [785362.0386514103, 5754094.759439745]]}, "properties": {"id": "18571", "from": "509915205", "to": "1708406362", "length_m": 5.653764066485226, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785362.0386514103, 5754094.759439745], [785362.1771973944, 5754100.411506021]]}, "properties": {"id": "18572", "from": "1708406362", "to": "509915205", "length_m": 5.653764066485226, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785362.0386514103, 5754094.759439745], [785425.4989994026, 5753348.995793971]]}, "properties": {"id": "18573-18575-18577-18579-18581-18583-18585-18587-18589", "from": "1708406362", "to": "148800334", "length_m": 748.977565801987, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785425.4989994026, 5753348.995793971], [785362.0386514103, 5754094.759439745]]}, "properties": {"id": "18590-18588-18586-18584-18582-18580-18578-18576-18574", "from": "148800334", "to": "1708406362", "length_m": 748.977565801987, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792529.6164717686, 5753980.961392687], [792323.7101624637, 5754042.561890016]]}, "properties": {"id": "18591-18593-18595", "from": "518259658", "to": "518259661", "length_m": 218.66139239836093, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792323.7101624637, 5754042.561890016], [792529.6164717686, 5753980.961392687]]}, "properties": {"id": "18596-18594-18592", "from": "518259661", "to": "518259658", "length_m": 218.66139239836093, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792323.7101624637, 5754042.561890016], [792267.7707589124, 5754135.450927869]]}, "properties": {"id": "18597-18599", "from": "518259661", "to": "518259663", "length_m": 108.6356156388647, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829951.8107943865, 5812975.454410006], [829672.9265238459, 5813577.628379844]]}, "properties": {"id": "186-17918-17909-17910-17911-17912-17913-17914-17915-17916-17917-10640", "from": "2308974808", "to": "4435303979", "length_m": 668.0191307155133, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792267.7707589124, 5754135.450927869], [792323.7101624637, 5754042.561890016]]}, "properties": {"id": "18600-18598", "from": "518259663", "to": "518259661", "length_m": 108.6356156388647, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792542.8766246845, 5754056.394837408], [792387.1278152468, 5754100.78468497]]}, "properties": {"id": "18601-18603-18605", "from": "518259656", "to": "518259657", "length_m": 162.07231352832343, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792387.1278152468, 5754100.78468497], [792542.8766246845, 5754056.394837408]]}, "properties": {"id": "18606-18604-18602", "from": "518259657", "to": "518259656", "length_m": 162.07231352832343, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792529.755111709, 5753902.641500872], [792262.9908212805, 5753944.928050473]]}, "properties": {"id": "18607-18609-18611", "from": "518259652", "to": "518259654", "length_m": 270.54943304704346, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792262.9908212805, 5753944.928050473], [792529.755111709, 5753902.641500872]]}, "properties": {"id": "18612-18610-18608", "from": "518259654", "to": "518259652", "length_m": 270.54943304704346, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792540.1180176117, 5753856.350638688], [792488.6228534209, 5753839.55532077]]}, "properties": {"id": "18614", "from": "518259649", "to": "518259651", "length_m": 54.16488364206419, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792488.6228534209, 5753839.55532077], [792540.1180176117, 5753856.350638688]]}, "properties": {"id": "18615", "from": "518259651", "to": "518259649", "length_m": 54.16488364206419, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788263.7438150544, 5750983.416610347], [788283.1664376126, 5751041.4168997845]]}, "properties": {"id": "1862-1860-1858-1856", "from": "509914044", "to": "509913954", "length_m": 61.8477197101099, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788263.7438150544, 5750983.416610347], [788183.5525598442, 5750986.76110667]]}, "properties": {"id": "1863-1865-1867-1869", "from": "509914044", "to": "509914062", "length_m": 81.35678637281327, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817806.4956746385, 5822088.764938584], [817823.9217450217, 5822186.39853817]]}, "properties": {"id": "18643-18644", "from": "303686090", "to": "59961701", "length_m": 99.20475797083054, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759210.1925813998, 5729247.591564284], [759240.2684713962, 5729289.562688972]]}, "properties": {"id": "18652", "from": "5927118216", "to": "832508177", "length_m": 51.63462460505367, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759240.2684713962, 5729289.562688972], [759210.1925813998, 5729247.591564284]]}, "properties": {"id": "18653", "from": "832508177", "to": "5927118216", "length_m": 51.63462460505367, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789620.2487113966, 5752899.987198454], [789618.8649069184, 5752910.706741942]]}, "properties": {"id": "18659", "from": "2548347278", "to": "2548347276", "length_m": 10.808493319516279, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789618.8649069184, 5752910.706741942], [789620.2487113966, 5752899.987198454]]}, "properties": {"id": "18660", "from": "2548347276", "to": "2548347278", "length_m": 10.808493319516279, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789480.7789333673, 5752894.511713648], [789618.8649069184, 5752910.706741942]]}, "properties": {"id": "18665-18667-18669-18671-18673-18675", "from": "2548347280", "to": "2548347276", "length_m": 142.65623412907766, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789618.8649069184, 5752910.706741942], [789480.7789333673, 5752894.511713648]]}, "properties": {"id": "18676-18674-18672-18670-18668-18666", "from": "2548347276", "to": "2548347280", "length_m": 142.65623412907766, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789618.8649069184, 5752910.706741942], [789617.9876193892, 5752923.097497939]]}, "properties": {"id": "18677", "from": "2548347276", "to": "2548347274", "length_m": 12.421773934447389, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789617.9876193892, 5752923.097497939], [789618.8649069184, 5752910.706741942]]}, "properties": {"id": "18678", "from": "2548347274", "to": "2548347276", "length_m": 12.421773934447389, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789212.1876812823, 5753141.681172265], [789196.2986032892, 5753061.871435855]]}, "properties": {"id": "18679", "from": "2548347266", "to": "5421457456", "length_m": 81.37602115628425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789196.2986032892, 5753061.871435855], [789212.1876812823, 5753141.681172265]]}, "properties": {"id": "18680", "from": "5421457456", "to": "2548347266", "length_m": 81.37602115628425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791399.7055384892, 5754595.451501675], [791405.4596949739, 5754606.380653517]]}, "properties": {"id": "18681", "from": "518259872", "to": "2548347251", "length_m": 12.351383556722118, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791397.5412250035, 5754567.276218947], [791396.2029847789, 5754579.695119023]]}, "properties": {"id": "18682", "from": "518259902", "to": "2244716755", "length_m": 12.490795262949861, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793865.3252693308, 5772793.794985903], [793863.7918555218, 5772785.136664435]]}, "properties": {"id": "18683", "from": "3066144030", "to": "250444534", "length_m": 8.79305911625743, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791410.1956155822, 5754628.161103562], [791405.4596949739, 5754606.380653517]]}, "properties": {"id": "18684", "from": "2548347249", "to": "2548347251", "length_m": 22.289390924075253, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791405.4596949739, 5754606.380653517], [791410.1956155822, 5754628.161103562]]}, "properties": {"id": "18685", "from": "2548347251", "to": "2548347249", "length_m": 22.289390924075253, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758293.5538706814, 5769455.355279451], [757114.9971505163, 5769655.124444833]]}, "properties": {"id": "18688-18690", "from": "916681369", "to": "916686705", "length_m": 1195.7788547383411, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757114.9971505163, 5769655.124444833], [758293.5538706814, 5769455.355279451]]}, "properties": {"id": "18691-18689", "from": "916686705", "to": "916681369", "length_m": 1195.7788547383411, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757114.9971505163, 5769655.124444833], [756469.6513528598, 5769759.593821456]]}, "properties": {"id": "18692-18694-18696-18698-18700-18702-18704", "from": "916686705", "to": "916686712", "length_m": 654.6514783117783, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791109.7544398215, 5777338.434422232], [791157.6317151487, 5777875.598994448]]}, "properties": {"id": "187-188-189-190-191-192-193", "from": "318036345", "to": "318036347", "length_m": 539.7227305551239, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788183.5525598442, 5750986.76110667], [788263.7438150544, 5750983.416610347]]}, "properties": {"id": "1870-1868-1866-1864", "from": "509914062", "to": "509914044", "length_m": 81.35678637281327, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756469.6513528598, 5769759.593821456], [757114.9971505163, 5769655.124444833]]}, "properties": {"id": "18705-18703-18701-18699-18697-18695-18693", "from": "916686712", "to": "916686705", "length_m": 654.6514783117783, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756469.6513528598, 5769759.593821456], [755775.6861366188, 5769856.822605612]]}, "properties": {"id": "18706-18708-18710-18712-18714-18716-18718-18720-18722-18724-18726", "from": "916686712", "to": "916686748", "length_m": 702.670981364428, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787864.9562814555, 5749899.273580211], [787840.4074000765, 5749883.11210504]]}, "properties": {"id": "1871-1873", "from": "509914517", "to": "509914520", "length_m": 29.405662535477408, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755775.6861366188, 5769856.822605612], [756469.6513528598, 5769759.593821456]]}, "properties": {"id": "18727-18725-18723-18721-18719-18717-18715-18713-18711-18709-18707", "from": "916686748", "to": "916686712", "length_m": 702.670981364428, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835146.1961350485, 5804294.826723014], [834952.8231755941, 5804332.890256452]]}, "properties": {"id": "18728-18729", "from": "825559691", "to": "825561549", "length_m": 197.08504484078713, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787840.4074000765, 5749883.11210504], [787864.9562814555, 5749899.273580211]]}, "properties": {"id": "1874-1872", "from": "509914520", "to": "509914517", "length_m": 29.405662535477408, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834952.8231755941, 5804332.890256452], [834769.0983546503, 5804368.865269564]]}, "properties": {"id": "18744-18745", "from": "825561549", "to": "354777626", "length_m": 187.21408923488517, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833065.2871005839, 5816141.879362093], [833054.7157002913, 5816084.832900133]]}, "properties": {"id": "18746-18747", "from": "1536232001", "to": "30918488", "length_m": 58.01795780820388, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790502.6086182188, 5754799.004224805], [790500.7846609185, 5754789.933725262]]}, "properties": {"id": "18748-18749-18750", "from": "2548347220", "to": "2548347233", "length_m": 9.400468947382844, "freespeed_mps": 4.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790500.7846609185, 5754789.933725262], [790489.82841209, 5754783.837096444]]}, "properties": {"id": "18751-18752-18753-18754", "from": "2548347233", "to": "3464604482", "length_m": 13.016912379367218, "freespeed_mps": 4.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790489.82841209, 5754783.837096444], [790482.1792685841, 5754785.924000698]]}, "properties": {"id": "18755-18756", "from": "3464604482", "to": "3464604489", "length_m": 8.057946770616029, "freespeed_mps": 4.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790482.1792685841, 5754785.924000698], [790476.7393160686, 5754792.455014968]]}, "properties": {"id": "18757-18758-18759", "from": "3464604489", "to": "3464604466", "length_m": 8.617748322646932, "freespeed_mps": 4.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790476.7393160686, 5754792.455014968], [790476.6997569152, 5754800.847897258]]}, "properties": {"id": "18760-18761-18762", "from": "3464604466", "to": "1580591524", "length_m": 8.528555998389981, "freespeed_mps": 4.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790476.6997569152, 5754800.847897258], [790482.005523027, 5754807.381267914]]}, "properties": {"id": "18763-18764", "from": "1580591524", "to": "2548347217", "length_m": 8.471173798256997, "freespeed_mps": 4.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790482.005523027, 5754807.381267914], [790491.8447218122, 5754809.205672115]]}, "properties": {"id": "18765-18766-18767", "from": "2548347217", "to": "2548347219", "length_m": 10.19711071794019, "freespeed_mps": 4.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790491.8447218122, 5754809.205672115], [790502.6086182188, 5754799.004224805]]}, "properties": {"id": "18768-18769-18770-18771", "from": "2548347219", "to": "2548347220", "length_m": 15.488822075964348, "freespeed_mps": 4.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834771.1053040426, 5804383.2609564345], [834956.9046144639, 5804347.768342847]]}, "properties": {"id": "18772", "from": "354777622", "to": "825561111", "length_m": 189.1589519832684, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833210.7297011408, 5816899.348041574], [833161.7924520957, 5816698.283735268]]}, "properties": {"id": "18773-18774-18775-18776-18777-18778-18779-18780-18781-18782-18783-18784", "from": "1536231964", "to": "30918471", "length_m": 208.19203171865888, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833161.7924520957, 5816698.283735268], [833128.4809128074, 5816510.408292405]]}, "properties": {"id": "18785", "from": "30918471", "to": "356253646", "length_m": 190.80576673586563, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833128.4809128074, 5816510.408292405], [833088.6590035129, 5816284.013118761]]}, "properties": {"id": "18786-18787", "from": "356253646", "to": "30918474", "length_m": 229.87074424555183, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833088.6590035129, 5816284.013118761], [833065.2871005839, 5816141.879362093]]}, "properties": {"id": "18788", "from": "30918474", "to": "1536232001", "length_m": 144.0425305287406, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790725.5920486148, 5754752.92092534], [790500.7846609185, 5754789.933725262]]}, "properties": {"id": "18803-18804-18805-18806-18807-18808", "from": "3464607396", "to": "2548347233", "length_m": 228.29147437904496, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833693.4045802956, 5804595.6397118345], [833799.3190721316, 5804577.82194893]]}, "properties": {"id": "18809", "from": "1537828670", "to": "825685969", "length_m": 107.402756804268, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833946.6936023396, 5804537.911557989], [833796.7190836165, 5804563.328021311]]}, "properties": {"id": "18818-18819", "from": "599450927", "to": "825686158", "length_m": 152.11374090373386, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836482.8545424694, 5816932.846009671], [836337.1772921549, 5817170.178433124]]}, "properties": {"id": "1882-1883-1884-1885-1886-21130", "from": "2045249255", "to": "268387134", "length_m": 278.4881577157554, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791198.8950819613, 5755020.829408294], [790980.875581722, 5754984.9097389635]]}, "properties": {"id": "18834-18836-18838-18840-18842-18844", "from": "2548347192", "to": "2548347194", "length_m": 278.22398157236967, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790980.875581722, 5754984.9097389635], [791198.8950819613, 5755020.829408294]]}, "properties": {"id": "18845-18843-18841-18839-18837-18835", "from": "2548347194", "to": "2548347192", "length_m": 278.22398157236967, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790980.875581722, 5754984.9097389635], [790964.5066330384, 5754927.792818386]]}, "properties": {"id": "18846-18848-18850", "from": "2548347194", "to": "4696655308", "length_m": 60.62216311564528, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790964.5066330384, 5754927.792818386], [790980.875581722, 5754984.9097389635]]}, "properties": {"id": "18851-18849-18847", "from": "4696655308", "to": "2548347194", "length_m": 60.62216311564528, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833799.3190721316, 5804577.82194893], [833949.4037787123, 5804552.289788788]]}, "properties": {"id": "18852", "from": "825685969", "to": "825685785", "length_m": 152.24096088509393, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790960.6390806362, 5755090.949641913], [790888.290692213, 5755144.961453477]]}, "properties": {"id": "18853-24785", "from": "2548347184", "to": "2548347176", "length_m": 120.94389459892798, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834956.9046144639, 5804347.768342847], [835032.639335938, 5804332.255794129]]}, "properties": {"id": "18855", "from": "825561111", "to": "825561116", "length_m": 77.30709647296858, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791386.0973982333, 5754590.629921899], [791396.4081518055, 5754593.869990795]]}, "properties": {"id": "18856", "from": "2548347253", "to": "2244716781", "length_m": 10.807852953354567, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785531.1807324075, 5754863.360099093], [785490.8204725974, 5754868.832953181]]}, "properties": {"id": "18857-18858-18859-18860", "from": "3413844594", "to": "3413848410", "length_m": 20.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785490.8204725974, 5754868.832953181], [785483.8222714209, 5754884.467929829]]}, "properties": {"id": "18861", "from": "3413848410", "to": "3413826180", "length_m": 20.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785483.8222714209, 5754884.467929829], [785485.6444233479, 5754903.235628699]]}, "properties": {"id": "18862-18863-18864", "from": "3413826180", "to": "5633787500", "length_m": 20.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785485.6444233479, 5754903.235628699], [785501.2856612247, 5754920.809943264]]}, "properties": {"id": "18865", "from": "5633787500", "to": "3413826145", "length_m": 20.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785501.2856612247, 5754920.809943264], [785527.5866815352, 5754916.648779498]]}, "properties": {"id": "18866-18867-18868-18869", "from": "3413826145", "to": "3413826141", "length_m": 20.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836201.7463166444, 5807413.563356491], [836191.3958440882, 5807406.581360677]]}, "properties": {"id": "1887", "from": "347851660", "to": "462039241", "length_m": 12.485213073911757, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785527.5866815352, 5754916.648779498], [785540.9939641408, 5754898.850768571]]}, "properties": {"id": "18870", "from": "3413826141", "to": "3413848412", "length_m": 20.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785540.9939641408, 5754898.850768571], [785540.5174323055, 5754876.777740254]]}, "properties": {"id": "18871-18872-18873", "from": "3413848412", "to": "3413848404", "length_m": 20.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785540.5174323055, 5754876.777740254], [785531.1807324075, 5754863.360099093]]}, "properties": {"id": "18874", "from": "3413848404", "to": "3413844594", "length_m": 20.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791429.4870665962, 5754582.028022979], [791409.4755929041, 5754581.772362708]]}, "properties": {"id": "18875", "from": "2548347255", "to": "2244716806", "length_m": 20.0131066868764, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790881.1998633773, 5755105.426797454], [790888.290692213, 5755144.961453477]]}, "properties": {"id": "18876", "from": "2548347182", "to": "2548347176", "length_m": 40.16551852956982, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790888.290692213, 5755144.961453477], [790881.1998633773, 5755105.426797454]]}, "properties": {"id": "18877", "from": "2548347176", "to": "2548347182", "length_m": 40.16551852956982, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788532.7745086672, 5751092.750651822], [788302.3627403193, 5751145.716383224]]}, "properties": {"id": "1888-1890-1892", "from": "509914019", "to": "509914032", "length_m": 237.669581907963, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791158.1858656845, 5754949.374736773], [790980.875581722, 5754984.9097389635]]}, "properties": {"id": "18880-18882-18884", "from": "2548347197", "to": "2548347194", "length_m": 181.2939401597458, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790980.875581722, 5754984.9097389635], [791158.1858656845, 5754949.374736773]]}, "properties": {"id": "18885-18883-18881", "from": "2548347194", "to": "2548347197", "length_m": 181.2939401597458, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833073.868564622, 5816286.623742424], [833088.6590035129, 5816284.013118761]]}, "properties": {"id": "18886", "from": "30918487", "to": "30918474", "length_m": 15.019069120896198, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833088.6590035129, 5816284.013118761], [833073.868564622, 5816286.623742424]]}, "properties": {"id": "18887", "from": "30918474", "to": "30918487", "length_m": 15.019069120896198, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791117.1459039369, 5754672.500733646], [791119.4677417963, 5754648.731788765]]}, "properties": {"id": "18899", "from": "2548347248", "to": "2244716825", "length_m": 23.88207847912754, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790440.1880077844, 5755174.299343916], [790809.5210236667, 5755158.591244506]]}, "properties": {"id": "18919-18917-18915-18913-18911-18909-18907-18905-18903-18901-18743-18741-18739-18737-18735-18733-18731-18995-18993-18991-18989", "from": "2548347174", "to": "5678574453", "length_m": 648.8431787869137, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789926.4779207555, 5754653.610151052], [789912.6326814159, 5754592.655618218]]}, "properties": {"id": "18927", "from": "2548347252", "to": "2548347259", "length_m": 62.5071653439062, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789912.6326814159, 5754592.655618218], [789926.4779207555, 5754653.610151052]]}, "properties": {"id": "18928", "from": "2548347259", "to": "2548347252", "length_m": 62.5071653439062, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788302.3627403193, 5751145.716383224], [788532.7745086672, 5751092.750651822]]}, "properties": {"id": "1893-1891-1889", "from": "509914032", "to": "509914019", "length_m": 237.669581907963, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770609.5997848304, 5738100.309934536], [770606.668767553, 5738020.8661150085]]}, "properties": {"id": "18939-18941-18943-18945-18947", "from": "4005357849", "to": "5927118217", "length_m": 81.8685657507594, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833851.5487166732, 5820876.362895278], [833566.8970061062, 5820966.566695383]]}, "properties": {"id": "1894-1895", "from": "26118269", "to": "603462846", "length_m": 298.6027756380596, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770606.668767553, 5738020.8661150085], [770609.5997848304, 5738100.309934536]]}, "properties": {"id": "18948-18946-18944-18942-18940", "from": "5927118217", "to": "4005357849", "length_m": 81.8685657507594, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759226.0210698659, 5730221.957302473], [759275.4402312743, 5730228.924191864]]}, "properties": {"id": "18949", "from": "5927118214", "to": "5927118219", "length_m": 49.90782553801585, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759275.4402312743, 5730228.924191864], [759226.0210698659, 5730221.957302473]]}, "properties": {"id": "18950", "from": "5927118219", "to": "5927118214", "length_m": 49.90782553801585, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833566.8970061062, 5820966.566695383], [833410.4314504482, 5821016.2111620745]]}, "properties": {"id": "1896-1897-1898", "from": "603462846", "to": "255031354", "length_m": 164.1525064239187, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790482.005523027, 5754807.381267914], [790499.6434168855, 5754833.4214421455]]}, "properties": {"id": "18978-18979", "from": "2548347217", "to": "2548347211", "length_m": 32.164621727430614, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790809.5210236667, 5755158.591244506], [790881.1998633773, 5755105.426797454]]}, "properties": {"id": "18987-18985-18983-18981-19017-19015-19013-19011", "from": "5678574453", "to": "2548347182", "length_m": 114.87320461474313, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790809.5210236667, 5755158.591244506], [790440.1880077844, 5755174.299343916]]}, "properties": {"id": "18988-18990-18992-18994-18730-18732-18734-18736-18738-18740-18742-18900-18902-18904-18906-18908-18910-18912-18914-18916-18918", "from": "5678574453", "to": "2548347174", "length_m": 648.8431787869137, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833410.4314504482, 5821016.2111620745], [833393.3930333938, 5821021.780958851]]}, "properties": {"id": "1899", "from": "255031354", "to": "26118268", "length_m": 17.925687975842045, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791208.3060412647, 5755036.26158863], [790960.6390806362, 5755090.949641913]]}, "properties": {"id": "18996-18998-19000-19002-19004", "from": "2548347189", "to": "2548347184", "length_m": 255.0444923966362, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750844.072595589, 5836723.940876767], [750843.322599295, 5836746.4797047125]]}, "properties": {"id": "19-20-21-22-23-24-25-26", "from": "5642242408", "to": "363993828", "length_m": 25.912452895232992, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836267.3905718743, 5817335.036639225], [836278.3427549632, 5817308.014289737]]}, "properties": {"id": "1900", "from": "30928522", "to": "2045235488", "length_m": 29.157463714302917, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790960.6390806362, 5755090.949641913], [791208.3060412647, 5755036.26158863]]}, "properties": {"id": "19005-19003-19001-18999-18997", "from": "2548347184", "to": "2548347189", "length_m": 255.0444923966362, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790960.6390806362, 5755090.949641913], [790881.1998633773, 5755105.426797454]]}, "properties": {"id": "19006-19008", "from": "2548347184", "to": "2548347182", "length_m": 80.74762688915357, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790881.1998633773, 5755105.426797454], [790960.6390806362, 5755090.949641913]]}, "properties": {"id": "19009-19007", "from": "2548347182", "to": "2548347184", "length_m": 80.74762688915357, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833233.3274810144, 5821073.112865429], [832821.204676121, 5821203.895329885]]}, "properties": {"id": "1901-1902-1903-10620-10621-10622-10623-10624-10625", "from": "602912177", "to": "26118266", "length_m": 432.4258089176089, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790881.1998633773, 5755105.426797454], [790809.5210236667, 5755158.591244506]]}, "properties": {"id": "19010-19012-19014-19016-18980-18982-18984-18986", "from": "2548347182", "to": "5678574453", "length_m": 114.87320461474313, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791137.1199180677, 5754879.1010419065], [790968.9933627206, 5754908.914168253]]}, "properties": {"id": "19018-19020", "from": "2548347202", "to": "2548347200", "length_m": 170.7519915000085, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790968.9933627206, 5754908.914168253], [791137.1199180677, 5754879.1010419065]]}, "properties": {"id": "19021-19019", "from": "2548347200", "to": "2548347202", "length_m": 170.7519915000085, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749816.589378332, 5717697.217616223], [750175.6777260393, 5718034.674882088]]}, "properties": {"id": "19027-19025-19023-19429-19427-19425-19423-19421-19419-19417-19415-19413-19411-19409-19407-19405-19403-19401-19399-19397", "from": "1835377403", "to": "234824596", "length_m": 507.5065726332913, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749816.589378332, 5717697.217616223], [749428.045766605, 5717112.550497479]]}, "properties": {"id": "19028-19030-19032-19034-19036-19038-19040-19042-19044-19046-19048-19050-19052-19054-19056-19058-19060-19062-19064-19066-19068-19070-19072-19074", "from": "1835377403", "to": "1835377465", "length_m": 734.6065342353388, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787996.0229658275, 5750982.814089282], [788110.3623311108, 5751022.64180995]]}, "properties": {"id": "1904-1906-1908-1910-1912-1914-1916-1918-1920-1922", "from": "509914293", "to": "509914303", "length_m": 403.53883135181763, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749428.045766605, 5717112.550497479], [749816.589378332, 5717697.217616223]]}, "properties": {"id": "19075-19073-19071-19069-19067-19065-19063-19061-19059-19057-19055-19053-19051-19049-19047-19045-19043-19041-19039-19037-19035-19033-19031-19029", "from": "1835377465", "to": "1835377403", "length_m": 734.6065342353388, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749428.045766605, 5717112.550497479], [749181.2878697568, 5716521.704953693]]}, "properties": {"id": "19076-19078-19080-19082-19084-19086-19088-19090-19092-19094-19096-19098-19100-19102-19104-19106", "from": "1835377465", "to": "234824704", "length_m": 679.7235128857109, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749181.2878697568, 5716521.704953693], [749428.045766605, 5717112.550497479]]}, "properties": {"id": "19107-19105-19103-19101-19099-19097-19095-19093-19091-19089-19087-19085-19083-19081-19079-19077", "from": "234824704", "to": "1835377465", "length_m": 679.7235128857109, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749181.2878697568, 5716521.704953693], [749051.003245512, 5716008.488159791]]}, "properties": {"id": "19108-19110-19112-19114-19116-19118-19120-19122-19124-19126-19128-46694-46696-46698-45193-45195-45197-45199-45201-45203-45205-25878-25880-25882", "from": "234824704", "to": "234824744", "length_m": 623.1917473963388, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751685.8280701502, 5719417.558507812], [751675.6764292442, 5719898.123003637]]}, "properties": {"id": "19169-19167-19165-19163-19161-19159-19157-19155-19153-19151-19149-19147-19145-19143-19141-19139-19137-19135-19133-43277-43275-45950-45948-45946", "from": "234757429", "to": "2147393176", "length_m": 511.8161094318495, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751685.8280701502, 5719417.558507812], [751763.528324594, 5718998.437281063]]}, "properties": {"id": "19170-19172-19174-19176-19178-19180-19182-19184-19186-19188-19190-19192-19194-19196-19198-19200-19202-19204-19206-19208-19210-19212-19214-19216-19218-19220-19222", "from": "234757429", "to": "234757500", "length_m": 512.4306510594696, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751763.528324594, 5718998.437281063], [751685.8280701502, 5719417.558507812]]}, "properties": {"id": "19223-19221-19219-19217-19215-19213-19211-19209-19207-19205-19203-19201-19199-19197-19195-19193-19191-19189-19187-19185-19183-19181-19179-19177-19175-19173-19171", "from": "234757500", "to": "234757429", "length_m": 512.4306510594696, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751763.528324594, 5718998.437281063], [751286.1573598229, 5718909.7463285485]]}, "properties": {"id": "19224-19226-19228-19230-19232-19234-19236-19238-19240-19242-19244-19246-19248-19250-19252-19254-19256-19258-19260-19262-19264-19266-19268-19270-19272-19274", "from": "234757500", "to": "234757549", "length_m": 516.360339282862, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788110.3623311108, 5751022.64180995], [787996.0229658275, 5750982.814089282]]}, "properties": {"id": "1923-1921-1919-1917-1915-1913-1911-1909-1907-1905", "from": "509914303", "to": "509914293", "length_m": 403.53883135181763, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787913.3786752924, 5751046.149432437], [787828.2035338506, 5751100.9050271455]]}, "properties": {"id": "1924-1926-1928-1930", "from": "509914278", "to": "509914294", "length_m": 126.17300608168182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751286.1573598229, 5718909.7463285485], [751763.528324594, 5718998.437281063]]}, "properties": {"id": "19275-19273-19271-19269-19267-19265-19263-19261-19259-19257-19255-19253-19251-19249-19247-19245-19243-19241-19239-19237-19235-19233-19231-19229-19227-19225", "from": "234757549", "to": "234757500", "length_m": 516.360339282862, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751286.1573598229, 5718909.7463285485], [750942.245374555, 5718531.51278844]]}, "properties": {"id": "19276-19278-19280-19282-19284-19286-19288-19290-19292-19294-19296-19298-19300-19302-19304-19306-19308-19310", "from": "234757549", "to": "234824530", "length_m": 519.0103431847485, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787828.2035338506, 5751100.9050271455], [787913.3786752924, 5751046.149432437]]}, "properties": {"id": "1931-1929-1927-1925", "from": "509914294", "to": "509914278", "length_m": 126.17300608168182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750942.245374555, 5718531.51278844], [751286.1573598229, 5718909.7463285485]]}, "properties": {"id": "19311-19309-19307-19305-19303-19301-19299-19297-19295-19293-19291-19289-19287-19285-19283-19281-19279-19277", "from": "234824530", "to": "234757549", "length_m": 519.0103431847485, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750942.245374555, 5718531.51278844], [750175.6777260393, 5718034.674882088]]}, "properties": {"id": "19312-19314-19316-19318-19320-19322-19324-19326-19328-19330-19332-19334-19336-19338-19340-19342-19344-19346-19348-19350-19352-19354-19356-19358-19360-19362-19364-19366-19368-19370-19372-19374-19376-19378-19380-19382-19384-19386-19388-19390-19392-19394", "from": "234824530", "to": "234824596", "length_m": 982.7779002119383, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832969.4418486184, 5805438.807318656], [832956.272900773, 5805441.5542461965]]}, "properties": {"id": "1932", "from": "1763048114", "to": "1763048103", "length_m": 13.452389993718297, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832956.272900773, 5805441.5542461965], [832969.4418486184, 5805438.807318656]]}, "properties": {"id": "1933", "from": "1763048103", "to": "1763048114", "length_m": 13.452389993718297, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787897.7915848675, 5750968.261494616], [787913.3786752924, 5751046.149432437]]}, "properties": {"id": "1934", "from": "509914078", "to": "509914278", "length_m": 79.43228712112067, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787913.3786752924, 5751046.149432437], [787897.7915848675, 5750968.261494616]]}, "properties": {"id": "1935", "from": "509914278", "to": "509914078", "length_m": 79.43228712112067, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787913.3786752924, 5751046.149432437], [787939.1237687764, 5751170.721325343]]}, "properties": {"id": "1936-1938-1940", "from": "509914278", "to": "509914075", "length_m": 127.3408757834354, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750175.6777260393, 5718034.674882088], [750942.245374555, 5718531.51278844]]}, "properties": {"id": "19395-19393-19391-19389-19387-19385-19383-19381-19379-19377-19375-19373-19371-19369-19367-19365-19363-19361-19359-19357-19355-19353-19351-19349-19347-19345-19343-19341-19339-19337-19335-19333-19331-19329-19327-19325-19323-19321-19319-19317-19315-19313", "from": "234824596", "to": "234824530", "length_m": 982.7779002119383, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750175.6777260393, 5718034.674882088], [749816.589378332, 5717697.217616223]]}, "properties": {"id": "19396-19398-19400-19402-19404-19406-19408-19410-19412-19414-19416-19418-19420-19422-19424-19426-19428-19022-19024-19026", "from": "234824596", "to": "1835377403", "length_m": 507.5065726332913, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787939.1237687764, 5751170.721325343], [787913.3786752924, 5751046.149432437]]}, "properties": {"id": "1941-1939-1937", "from": "509914075", "to": "509914278", "length_m": 127.3408757834354, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787939.1237687764, 5751170.721325343], [787978.6356203329, 5751297.657908596]]}, "properties": {"id": "1942-1944-1946-1948", "from": "509914075", "to": "509914290", "length_m": 136.18648861664192, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791139.5984392927, 5754800.420328737], [790954.8941842476, 5754835.3103216505]]}, "properties": {"id": "19430-19432", "from": "2548347210", "to": "2548347208", "length_m": 187.97242704940658, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790954.8941842476, 5754835.3103216505], [791139.5984392927, 5754800.420328737]]}, "properties": {"id": "19433-19431", "from": "2548347208", "to": "2548347210", "length_m": 187.97242704940658, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743773.9658444731, 5713243.697771546], [744365.8898060924, 5713602.005449542]]}, "properties": {"id": "19464-19462-19460-19458-19456-19454-19452-19450-19448-19446-19444-19442-46273-46271-46269-46267-46265-46263-46261-46259-46257-46255-46253-46251-46249-45209-55164", "from": "2880948332", "to": "2880948337", "length_m": 731.27615020187, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743773.9658444731, 5713243.697771546], [743268.332741592, 5713163.00367752]]}, "properties": {"id": "19465-19467-19469-19471-19473-19475-19477-19479-19481-19483-19485-19487-19489", "from": "2880948332", "to": "1835377946", "length_m": 525.0871012874844, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787978.6356203329, 5751297.657908596], [787939.1237687764, 5751170.721325343]]}, "properties": {"id": "1949-1947-1945-1943", "from": "509914290", "to": "509914075", "length_m": 136.18648861664192, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743268.332741592, 5713163.00367752], [743773.9658444731, 5713243.697771546]]}, "properties": {"id": "19490-19488-19486-19484-19482-19480-19478-19476-19474-19472-19470-19468-19466", "from": "1835377946", "to": "2880948332", "length_m": 525.0871012874844, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743268.332741592, 5713163.00367752], [742753.5971982137, 5713081.433765965]]}, "properties": {"id": "19491-43035-45223-45225-45227-45229-45231-45233-45235", "from": "1835377946", "to": "234959041", "length_m": 523.6423523257929, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830307.6509959352, 5810405.2502785325], [830127.8922814648, 5810895.832541559]]}, "properties": {"id": "19496-19497-19498-19499-19500-19501-19502-19503", "from": "369735914", "to": "666800965", "length_m": 528.7234943395894, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785447.4286105469, 5752426.943037114], [785212.1567856611, 5752349.999217597]]}, "properties": {"id": "1950-1952-1954-1956-1958-1960", "from": "509915189", "to": "509915883", "length_m": 325.78464509224074, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830127.8922814648, 5810895.832541559], [830069.6803828187, 5811621.259581347]]}, "properties": {"id": "19504-19505-19506", "from": "666800965", "to": "290667897", "length_m": 727.759334794006, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830069.6803828187, 5811621.259581347], [830004.9687834413, 5812427.143330248]]}, "properties": {"id": "19507-18075-17919-17920", "from": "290667897", "to": "666801140", "length_m": 808.4783258540623, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834956.9046144639, 5804347.768342847], [834952.8231755941, 5804332.890256452]]}, "properties": {"id": "19508", "from": "825561111", "to": "825561549", "length_m": 15.427754118004, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834952.8231755941, 5804332.890256452], [834956.9046144639, 5804347.768342847]]}, "properties": {"id": "19509", "from": "825561549", "to": "825561111", "length_m": 15.427754118004, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838402.7715694334, 5804262.640864216], [838476.3091131498, 5804681.334656247]]}, "properties": {"id": "19510-21823-21824-21825-21975-3014-3015-1206", "from": "1711589579", "to": "3189541012", "length_m": 425.17807087287, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747435.497749371, 5757935.0659528235], [747863.732174803, 5758077.926866322]]}, "properties": {"id": "19511-19513-19515-19517", "from": "917801348", "to": "2106853884", "length_m": 452.8416029583976, "freespeed_mps": 27.0, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747863.732174803, 5758077.926866322], [747435.497749371, 5757935.0659528235]]}, "properties": {"id": "19518-19516-19514-19512", "from": "2106853884", "to": "917801348", "length_m": 452.8416029583976, "freespeed_mps": 27.0, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747863.732174803, 5758077.926866322], [747927.3176912256, 5758105.671443811]]}, "properties": {"id": "19519", "from": "2106853884", "to": "917801363", "length_m": 69.3749195247476, "freespeed_mps": 27.0, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747927.3176912256, 5758105.671443811], [747863.732174803, 5758077.926866322]]}, "properties": {"id": "19520", "from": "917801363", "to": "2106853884", "length_m": 69.3749195247476, "freespeed_mps": 27.0, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747927.3176912256, 5758105.671443811], [748032.7482310506, 5758151.417079317]]}, "properties": {"id": "19521-19523", "from": "917801363", "to": "2406598004", "length_m": 114.94132614694705, "freespeed_mps": 27.0, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748032.7482310506, 5758151.417079317], [747927.3176912256, 5758105.671443811]]}, "properties": {"id": "19524-19522", "from": "2406598004", "to": "917801363", "length_m": 114.94132614694705, "freespeed_mps": 27.0, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777178.9037398077, 5772266.248299171], [777399.6063148475, 5772294.314240585]]}, "properties": {"id": "19525-19527-19529", "from": "364643554", "to": "364643552", "length_m": 222.95212382729954, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777399.6063148475, 5772294.314240585], [777178.9037398077, 5772266.248299171]]}, "properties": {"id": "19530-19528-19526", "from": "364643552", "to": "364643554", "length_m": 222.95212382729954, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777399.6063148475, 5772294.314240585], [778346.7699815098, 5772676.405824321]]}, "properties": {"id": "19531-19533-19535-19537-19539-19541-19543-19545", "from": "364643552", "to": "364643499", "length_m": 1032.1837289705734, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778346.7699815098, 5772676.405824321], [777399.6063148475, 5772294.314240585]]}, "properties": {"id": "19546-19544-19542-19540-19538-19536-19534-19532", "from": "364643499", "to": "364643552", "length_m": 1032.1837289705734, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778346.7699815098, 5772676.405824321], [778737.4600573708, 5773028.35335625]]}, "properties": {"id": "19547-19549-19551-19553", "from": "364643499", "to": "364643523", "length_m": 525.8561565576583, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778737.4600573708, 5773028.35335625], [778346.7699815098, 5772676.405824321]]}, "properties": {"id": "19554-19552-19550-19548", "from": "364643523", "to": "364643499", "length_m": 525.8561565576583, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778737.4600573708, 5773028.35335625], [779324.0941252867, 5773276.478281552]]}, "properties": {"id": "19555-19557-19559-19561-19563-19565-19567-19569-19571-19573-19575-19577-19579-19581-19583-19585-19609", "from": "364643523", "to": "364643375", "length_m": 669.5675499723203, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777399.6063148475, 5772294.314240585], [777137.8558404499, 5772050.0896898825]]}, "properties": {"id": "19587-19589-19591-19593-19595-19597-19599-19601-19603", "from": "364643552", "to": "364643376", "length_m": 380.4221009813345, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777137.8558404499, 5772050.0896898825], [777399.6063148475, 5772294.314240585]]}, "properties": {"id": "19604-19602-19600-19598-19596-19594-19592-19590-19588", "from": "364643376", "to": "364643552", "length_m": 380.4221009813345, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785212.1567856611, 5752349.999217597], [785447.4286105469, 5752426.943037114]]}, "properties": {"id": "1961-1959-1957-1955-1953-1951", "from": "509915883", "to": "509915189", "length_m": 325.78464509224074, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779324.0941252867, 5773276.478281552], [778737.4600573708, 5773028.35335625]]}, "properties": {"id": "19610-19586-19584-19582-19580-19578-19576-19574-19572-19570-19568-19566-19564-19562-19560-19558-19556", "from": "364643375", "to": "364643523", "length_m": 669.5675499723203, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785212.1567856611, 5752349.999217597], [784956.3187594934, 5752396.239240069]]}, "properties": {"id": "1962", "from": "509915883", "to": "509915116", "length_m": 259.98314378893656, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781028.0945478814, 5770431.5919003775], [780183.2811937318, 5770190.61123233]]}, "properties": {"id": "19628", "from": "948960423", "to": "364643354", "length_m": 878.5108314072161, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780183.2811937318, 5770190.61123233], [781028.0945478814, 5770431.5919003775]]}, "properties": {"id": "19629", "from": "364643354", "to": "948960423", "length_m": 878.5108314072161, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784956.3187594934, 5752396.239240069], [785212.1567856611, 5752349.999217597]]}, "properties": {"id": "1963", "from": "509915116", "to": "509915883", "length_m": 259.98314378893656, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780183.2811937318, 5770190.61123233], [779311.6127274344, 5770305.803330624]]}, "properties": {"id": "19630-19632-19634-19636-19638", "from": "364643354", "to": "614531656", "length_m": 885.9176540967056, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779311.6127274344, 5770305.803330624], [780183.2811937318, 5770190.61123233]]}, "properties": {"id": "19639-19637-19635-19633-19631", "from": "614531656", "to": "364643354", "length_m": 885.9176540967056, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836246.9506851488, 5817332.779568829], [836217.846701961, 5817332.243668985]]}, "properties": {"id": "1964-1965", "from": "30928521", "to": "2045235442", "length_m": 29.13158117028491, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779311.6127274344, 5770305.803330624], [777697.5765679122, 5770601.619195262]]}, "properties": {"id": "19640", "from": "614531656", "to": "614531655", "length_m": 1640.920394273986, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777697.5765679122, 5770601.619195262], [779311.6127274344, 5770305.803330624]]}, "properties": {"id": "19641", "from": "614531655", "to": "614531656", "length_m": 1640.920394273986, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777697.5765679122, 5770601.619195262], [776892.7295923433, 5770755.140976769]]}, "properties": {"id": "19642", "from": "614531655", "to": "364643363", "length_m": 819.3580348103571, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776892.7295923433, 5770755.140976769], [777697.5765679122, 5770601.619195262]]}, "properties": {"id": "19643", "from": "364643363", "to": "614531655", "length_m": 819.3580348103571, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776892.7295923433, 5770755.140976769], [775640.29624267, 5770987.370393131]]}, "properties": {"id": "19644-19646", "from": "364643363", "to": "475586081", "length_m": 1273.7816948328514, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775640.29624267, 5770987.370393131], [776892.7295923433, 5770755.140976769]]}, "properties": {"id": "19647-19645", "from": "475586081", "to": "364643363", "length_m": 1273.7816948328514, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775640.29624267, 5770987.370393131], [775170.9199746036, 5770368.889267408]]}, "properties": {"id": "19648-19650-19652-19654-19656-19658-19660-19662-19664-19666-19668", "from": "475586081", "to": "475577051", "length_m": 498.4171995701558, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775170.9199746036, 5770368.889267408], [775640.29624267, 5770987.370393131]]}, "properties": {"id": "19669-19667-19665-19663-19661-19659-19657-19655-19653-19651-19649", "from": "475577051", "to": "475586081", "length_m": 498.4171995701558, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775170.9199746036, 5770368.889267408], [774478.6692349699, 5766462.288284048]]}, "properties": {"id": "19674-19676", "from": "475577051", "to": "2693866515", "length_m": 1411.8872129656768, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774478.6692349699, 5766462.288284048], [775170.9199746036, 5770368.889267408]]}, "properties": {"id": "19677-19675", "from": "2693866515", "to": "475577051", "length_m": 1411.8872129656768, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774478.6692349699, 5766462.288284048], [774372.4785961679, 5765880.757305695]]}, "properties": {"id": "19678-19680-19682", "from": "2693866515", "to": "2379273320", "length_m": 591.1840718894066, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774372.4785961679, 5765880.757305695], [774478.6692349699, 5766462.288284048]]}, "properties": {"id": "19683-19681-19679", "from": "2379273320", "to": "2693866515", "length_m": 591.1840718894066, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830677.4684569819, 5821672.952594104], [830675.4097929297, 5821649.141448221]]}, "properties": {"id": "19684", "from": "605203942", "to": "605203941", "length_m": 23.89997417365081, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763760.9563035037, 5763877.979553994], [765027.2371865666, 5764091.79297329]]}, "properties": {"id": "19686-19687", "from": "1852719081", "to": "2716422143", "length_m": 1284.251898366129, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765027.2371865666, 5764091.79297329], [765840.397476858, 5764273.292603728]]}, "properties": {"id": "19688-19689-19690-19691-19692", "from": "2716422143", "to": "1852770876", "length_m": 834.6436493792909, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830050.0954940055, 5812128.299004585], [830117.9609338351, 5811273.3205396235]]}, "properties": {"id": "197-18081-18083-18084", "from": "290669396", "to": "290669400", "length_m": 857.6722887426332, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789469.9527757233, 5753336.365019109], [789480.2194647661, 5753342.598670933]]}, "properties": {"id": "1970-1971-1972-1973-1974", "from": "844859710", "to": "844859922", "length_m": 13.383596962903502, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768181.2527652085, 5758910.875465117], [768815.1514621626, 5758508.785098783]]}, "properties": {"id": "19707-19705-19703-19701-19699-19697-19695-33920", "from": "849463752", "to": "849464226", "length_m": 750.9081743538034, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768181.2527652085, 5758910.875465117], [768178.5776719301, 5758916.575619103]]}, "properties": {"id": "19708", "from": "849463752", "to": "849464310", "length_m": 6.29665622887255, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768178.5776719301, 5758916.575619103], [768181.2527652085, 5758910.875465117]]}, "properties": {"id": "19709", "from": "849464310", "to": "849463752", "length_m": 6.29665622887255, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837189.2934350355, 5811809.547985033], [837221.4107922392, 5811985.2230758555]]}, "properties": {"id": "19710-19711-19712", "from": "268175484", "to": "268175485", "length_m": 178.62773540358685, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837221.4107922392, 5811985.2230758555], [837222.482938929, 5811991.784204916]]}, "properties": {"id": "19713", "from": "268175485", "to": "268175487", "length_m": 6.648151094521373, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837222.482938929, 5811991.784204916], [837224.6062253031, 5812005.685700946]]}, "properties": {"id": "19714", "from": "268175487", "to": "1387206041", "length_m": 14.06271441397764, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837206.2964183448, 5811788.346257988], [837204.9677135244, 5811778.971250027]]}, "properties": {"id": "19715", "from": "268175497", "to": "268175498", "length_m": 9.468697405508093, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765528.5683751379, 5764153.156497525], [765028.6279906306, 5764061.991654284]]}, "properties": {"id": "19718-19719-19720", "from": "2373877441", "to": "2716422147", "length_m": 508.2525861016304, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765028.6279906306, 5764061.991654284], [764439.2380363811, 5763963.019189242]]}, "properties": {"id": "19721-19722", "from": "2716422147", "to": "2716422146", "length_m": 597.662981865861, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764439.2380363811, 5763963.019189242], [763760.8685363785, 5763860.760276893]]}, "properties": {"id": "19723-19724-19725", "from": "2716422146", "to": "614531192", "length_m": 686.0528627732825, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835429.7400494481, 5804257.531599678], [835711.50752666, 5804204.431435845]]}, "properties": {"id": "19726-19727-19728-19729", "from": "825562052", "to": "825540251", "length_m": 286.7586586683671, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835711.50752666, 5804204.431435845], [835719.736358199, 5804202.760382874]]}, "properties": {"id": "19730", "from": "825540251", "to": "353637502", "length_m": 8.39679020928754, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835719.736358199, 5804202.760382874], [835906.0151445933, 5804168.549133418]]}, "properties": {"id": "19731", "from": "353637502", "to": "825545062", "length_m": 189.39428604932618, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762872.4393322511, 5763797.0473142], [762538.8558892875, 5763768.539832347]]}, "properties": {"id": "19732-19733-19734-19735-19736", "from": "2378832534", "to": "3188103028", "length_m": 335.29878739607295, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762538.8558892875, 5763768.539832347], [762310.43718046, 5763648.846948086]]}, "properties": {"id": "19737-19738-19739-19740-19741", "from": "3188103028", "to": "3188103032", "length_m": 258.73701571007655, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762310.43718046, 5763648.846948086], [762287.6981967865, 5763632.684086059]]}, "properties": {"id": "19742", "from": "3188103032", "to": "3188104956", "length_m": 27.898019345440062, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762287.6981967865, 5763632.684086059], [762181.9410078228, 5763558.5339144105]]}, "properties": {"id": "19743", "from": "3188104956", "to": "3188104959", "length_m": 129.1620335159904, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762181.9410078228, 5763558.5339144105], [762073.2452056296, 5763482.8776964545]]}, "properties": {"id": "19744", "from": "3188104959", "to": "3188104958", "length_m": 132.4335329377952, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762073.2452056296, 5763482.8776964545], [761966.4000842249, 5763407.749164905]]}, "properties": {"id": "19745", "from": "3188104958", "to": "3188104957", "length_m": 130.6146092226987, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761966.4000842249, 5763407.749164905], [761859.3917034415, 5763329.135860463]]}, "properties": {"id": "19746-19747", "from": "3188104957", "to": "1852765565", "length_m": 132.83487668092675, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761859.3917034415, 5763329.135860463], [761786.5508161625, 5763220.950312527]]}, "properties": {"id": "19748-19749-19750-19751", "from": "1852765565", "to": "1852765606", "length_m": 130.9302612940193, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789480.2194647661, 5753342.598670933], [789486.0296477755, 5753332.4872796405]]}, "properties": {"id": "1975-1976-1977-1978-1979", "from": "844859922", "to": "509915252", "length_m": 12.905864497991951, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761786.5508161625, 5763220.950312527], [761765.7736143917, 5763184.089886236]]}, "properties": {"id": "19752", "from": "1852765606", "to": "1852765616", "length_m": 42.31291923533873, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763760.8685363785, 5763860.760276893], [763760.9563035037, 5763877.979553994]]}, "properties": {"id": "19753", "from": "614531192", "to": "1852719081", "length_m": 17.2195007795485, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763760.9563035037, 5763877.979553994], [763760.8685363785, 5763860.760276893]]}, "properties": {"id": "19754", "from": "1852719081", "to": "614531192", "length_m": 17.2195007795485, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793863.6398949777, 5772847.394812441], [793874.3615073626, 5772845.328502895]]}, "properties": {"id": "19755", "from": "1863863726", "to": "262734731", "length_m": 10.9189105341905, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793874.3615073626, 5772845.328502895], [793863.6398949777, 5772847.394812441]]}, "properties": {"id": "19756", "from": "262734731", "to": "1863863726", "length_m": 10.9189105341905, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828260.1846719956, 5815207.542648011], [827460.6062905826, 5815467.503595196]]}, "properties": {"id": "19757-19758-19759-19760-19761-19762-19763-19764-19765-19766-19767-19768", "from": "36715507", "to": "582319452", "length_m": 842.8583747301986, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828357.1650069811, 5815205.232292451], [829065.1006501734, 5814703.347547127]]}, "properties": {"id": "19769-19770-19771-19772-19773-19774-19775-19776-19777-19778", "from": "373054700", "to": "2449311783", "length_m": 876.7597956248418, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829065.1006501734, 5814703.347547127], [829323.1362064845, 5814258.864460418]]}, "properties": {"id": "19779-19780-19781-19782", "from": "2449311783", "to": "369742962", "length_m": 514.2389416949992, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829323.1362064845, 5814258.864460418], [829655.0247219515, 5813653.384482619]]}, "properties": {"id": "19783-19784-19785-19786-19787", "from": "369742962", "to": "4435303980", "length_m": 690.4886260068401, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829655.0247219515, 5813653.384482619], [829974.8485054874, 5812970.227636875]]}, "properties": {"id": "19788-19789-19790-19791-19792-19793-19794-19795-19796-19797-19798-19799-17892-17922", "from": "4435303980", "to": "4435281082", "length_m": 759.2187846344048, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789486.0296477755, 5753332.4872796405], [789474.4357829248, 5753326.601337162]]}, "properties": {"id": "1980-1981-1982-1983-1984", "from": "509915252", "to": "844859801", "length_m": 14.353651706722268, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798065.2464314422, 5769457.357061098], [798965.9791184206, 5769106.122142508]]}, "properties": {"id": "19800-19801-19802-19803-19804-19805-19806-3066", "from": "380256745", "to": "3598503098", "length_m": 966.8312867998637, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836647.6131611762, 5806831.542877274], [836600.5509090135, 5806818.927509493]]}, "properties": {"id": "19807-19808-19809-19810-19811", "from": "36021206", "to": "36021205", "length_m": 50.48904834486494, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798017.2688826979, 5782832.809692617], [797412.1447375321, 5782442.94207557]]}, "properties": {"id": "19826-19827-19828-19829-19830-19831-19832-19833-19834-19835-19836-19837-19838-19839-19840-19841", "from": "253493700", "to": "318573686", "length_m": 732.5375304809405, "freespeed_mps": 27.77777777777778, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817823.8075391345, 5757825.376125136], [818526.7895208674, 5757858.606111765]]}, "properties": {"id": "19842-19844-19846-27999-28001-28003-28005-28007-28009", "from": "52495533", "to": "52495536", "length_m": 704.3880490863673, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[815769.4465196204, 5759068.848715881], [816003.6242598298, 5758902.5264169425]]}, "properties": {"id": "19848", "from": "143236890", "to": "5468655928", "length_m": 287.23217292531666, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816003.6242598298, 5758902.5264169425], [815769.4465196204, 5759068.848715881]]}, "properties": {"id": "19849", "from": "5468655928", "to": "143236890", "length_m": 287.23217292531666, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789474.4357829248, 5753326.601337162], [789469.9527757233, 5753336.365019109]]}, "properties": {"id": "1985-1966-1967-1968-1969", "from": "844859801", "to": "844859710", "length_m": 11.347757531074578, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826797.1077799702, 5815652.8507165], [826322.5817798572, 5815831.244985139]]}, "properties": {"id": "19851-19852-19853-19854-19855-19856-19857-19858-19859", "from": "582320697", "to": "582325585", "length_m": 509.1487361507293, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787815.5354518333, 5750623.1995135145], [787748.0364690449, 5750511.198799329]]}, "properties": {"id": "1986-1988-1990-1992-1994-1996", "from": "509914422", "to": "509914434", "length_m": 145.8449360012573, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826322.5817798572, 5815831.244985139], [825839.1103863037, 5816093.0258445125]]}, "properties": {"id": "19860-19861-1106-1107-1108", "from": "582325585", "to": "582326921", "length_m": 549.7974367820262, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826261.9344591104, 5815911.106964639], [826817.9914548856, 5815688.789432477]]}, "properties": {"id": "19863-19864-19865-19866-19867-19868-19869-19870-19871", "from": "36715125", "to": "38693759", "length_m": 601.8993196316934, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826817.9914548856, 5815688.789432477], [827473.6992233654, 5815505.040443585]]}, "properties": {"id": "19872", "from": "38693759", "to": "38693762", "length_m": 680.9672283468192, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[827473.6992233654, 5815505.040443585], [828357.1650069811, 5815205.232292451]]}, "properties": {"id": "19873-19874-19875-19876-19877-19878-19879-19880-19881", "from": "38693762", "to": "373054700", "length_m": 935.5503297537776, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751561.9492100806, 5844763.611631742], [751408.5080291275, 5843905.49573784]]}, "properties": {"id": "19882-19884-19886-19888-19890-19892-19894-19896-19898-19900-19902-19904-19906", "from": "4748684944", "to": "364002296", "length_m": 894.3895022085034, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751408.5080291275, 5843905.49573784], [751561.9492100806, 5844763.611631742]]}, "properties": {"id": "19907-19905-19903-19901-19899-19897-19895-19893-19891-19889-19887-19885-19883", "from": "364002296", "to": "4748684944", "length_m": 894.3895022085034, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[819085.5229258062, 5757929.670727131], [818526.7895208674, 5757858.606111765]]}, "properties": {"id": "19929-19927-19925-19923-19921-28022-28020-28018-28016-28014-28012", "from": "2812792755", "to": "52495536", "length_m": 571.7962564234356, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776489.9445263541, 5743953.341071661], [776504.0788920606, 5743851.960337264]]}, "properties": {"id": "19969-19971-19973-19975", "from": "295251042", "to": "295251046", "length_m": 104.08606017616248, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787748.0364690449, 5750511.198799329], [787815.5354518333, 5750623.1995135145]]}, "properties": {"id": "1997-1995-1993-1991-1989-1987", "from": "509914434", "to": "509914422", "length_m": 145.8449360012573, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776504.0788920606, 5743851.960337264], [776489.9445263541, 5743953.341071661]]}, "properties": {"id": "19976-19974-19972-19970", "from": "295251046", "to": "295251042", "length_m": 104.08606017616248, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776489.9445263541, 5743953.341071661], [776726.3706569698, 5743904.170928741]]}, "properties": {"id": "19979", "from": "295251042", "to": "295251005", "length_m": 241.4850264614547, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776726.3706569698, 5743904.170928741], [776489.9445263541, 5743953.341071661]]}, "properties": {"id": "19980", "from": "295251005", "to": "295251042", "length_m": 241.4850264614547, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776726.3706569698, 5743904.170928741], [776765.7912525884, 5743906.026383534]]}, "properties": {"id": "19981-19983", "from": "295251005", "to": "295251010", "length_m": 39.53568194732338, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776765.7912525884, 5743906.026383534], [776726.3706569698, 5743904.170928741]]}, "properties": {"id": "19984-19982", "from": "295251010", "to": "295251005", "length_m": 39.53568194732338, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832567.4083845527, 5813265.271983169], [832531.1548389154, 5813045.480939448]]}, "properties": {"id": "19989-19990-19991-52781-52782", "from": "369130854", "to": "1536176345", "length_m": 222.76091342321172, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791587.945001589, 5754549.986305044], [791608.5522781918, 5754449.887895915]]}, "properties": {"id": "19998-20000", "from": "518259852", "to": "518259858", "length_m": 104.24737421952256, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791608.5522781918, 5754449.887895915], [791587.945001589, 5754549.986305044]]}, "properties": {"id": "20001-19999", "from": "518259858", "to": "518259852", "length_m": 104.24737421952256, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791608.5522781918, 5754449.887895915], [791635.3317328165, 5754375.452442435]]}, "properties": {"id": "20002", "from": "518259858", "to": "518259855", "length_m": 79.10610556761695, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791635.3317328165, 5754375.452442435], [791608.5522781918, 5754449.887895915]]}, "properties": {"id": "20003", "from": "518259855", "to": "518259858", "length_m": 79.10610556761695, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791635.3317328165, 5754375.452442435], [791653.0185326056, 5754317.6839672495]]}, "properties": {"id": "20004", "from": "518259855", "to": "518259977", "length_m": 60.41539223743165, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791653.0185326056, 5754317.6839672495], [791635.3317328165, 5754375.452442435]]}, "properties": {"id": "20005", "from": "518259977", "to": "518259855", "length_m": 60.41539223743165, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791653.0185326056, 5754317.6839672495], [791661.965799252, 5754299.432697948]]}, "properties": {"id": "20006", "from": "518259977", "to": "518259854", "length_m": 20.326396953279566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791661.965799252, 5754299.432697948], [791653.0185326056, 5754317.6839672495]]}, "properties": {"id": "20007", "from": "518259854", "to": "518259977", "length_m": 20.326396953279566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791661.965799252, 5754299.432697948], [791697.8821545937, 5754278.18396054]]}, "properties": {"id": "20008", "from": "518259854", "to": "518259993", "length_m": 41.73120440092361, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791697.8821545937, 5754278.18396054], [791661.965799252, 5754299.432697948]]}, "properties": {"id": "20009", "from": "518259993", "to": "518259854", "length_m": 41.73120440092361, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776504.0788920606, 5743851.960337264], [776508.4523538228, 5743841.574929651]]}, "properties": {"id": "20016-20017-20018-20019", "from": "295251046", "to": "295250997", "length_m": 13.348010532651958, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776508.4523538228, 5743841.574929651], [776500.9368553092, 5743839.155037163]]}, "properties": {"id": "20020-20021-20022", "from": "295250997", "to": "295251055", "length_m": 8.390872312843786, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776500.9368553092, 5743839.155037163], [776497.3523360523, 5743848.835428596]]}, "properties": {"id": "20023-20024-20025", "from": "295251055", "to": "295251050", "length_m": 11.674161875394281, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776497.3523360523, 5743848.835428596], [776504.0788920606, 5743851.960337264]]}, "properties": {"id": "20026-20014-20015", "from": "295251050", "to": "295251046", "length_m": 7.820282627756615, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791781.6336819127, 5754298.208730964], [791697.8821545937, 5754278.18396054]]}, "properties": {"id": "20027-20029-20031-20033-20035", "from": "518259990", "to": "518259993", "length_m": 110.37306559476474, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791697.8821545937, 5754278.18396054], [791781.6336819127, 5754298.208730964]]}, "properties": {"id": "20036-20034-20032-20030-20028", "from": "518259993", "to": "518259990", "length_m": 110.37306559476474, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772374.3811213452, 5763943.001029186], [772536.7452559271, 5764799.823534181]]}, "properties": {"id": "20037-20039-20041", "from": "888208930", "to": "888208926", "length_m": 872.2877063191806, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772536.7452559271, 5764799.823534181], [772374.3811213452, 5763943.001029186]]}, "properties": {"id": "20042-20040-20038", "from": "888208926", "to": "888208930", "length_m": 872.2877063191806, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772536.7452559271, 5764799.823534181], [772741.5954677714, 5765857.798334507]]}, "properties": {"id": "20043-20045", "from": "888208926", "to": "3187946129", "length_m": 1077.6286234140323, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772741.5954677714, 5765857.798334507], [772536.7452559271, 5764799.823534181]]}, "properties": {"id": "20046-20044", "from": "3187946129", "to": "888208926", "length_m": 1077.6286234140323, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772741.5954677714, 5765857.798334507], [772745.6031197396, 5765877.620695917]]}, "properties": {"id": "20047", "from": "3187946129", "to": "888208920", "length_m": 20.223434076826184, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772745.6031197396, 5765877.620695917], [772741.5954677714, 5765857.798334507]]}, "properties": {"id": "20048", "from": "888208920", "to": "3187946129", "length_m": 20.223434076826184, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791781.6336819127, 5754298.208730964], [791789.6766083592, 5754322.53703305]]}, "properties": {"id": "20049", "from": "518259990", "to": "518259825", "length_m": 25.623328178275447, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768025.7290015351, 5762861.025243592], [768865.432238825, 5762717.455629952]]}, "properties": {"id": "20050-20052", "from": "888208932", "to": "888208922", "length_m": 851.9619611782934, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768865.432238825, 5762717.455629952], [768025.7290015351, 5762861.025243592]]}, "properties": {"id": "20053-20051", "from": "888208922", "to": "888208932", "length_m": 851.9619611782934, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776674.3058858671, 5744011.368817715], [776681.4845566973, 5744099.581523537]]}, "properties": {"id": "20054-20056", "from": "295251102", "to": "295251110", "length_m": 88.90416458411461, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776681.4845566973, 5744099.581523537], [776674.3058858671, 5744011.368817715]]}, "properties": {"id": "20057-20055", "from": "295251110", "to": "295251102", "length_m": 88.90416458411461, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791802.2289594288, 5754311.479841889], [791781.6336819127, 5754298.208730964]]}, "properties": {"id": "20058", "from": "518259824", "to": "518259990", "length_m": 24.500772168047018, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776769.398901473, 5743893.722376687], [776765.7912525884, 5743906.026383534]]}, "properties": {"id": "20059", "from": "295251011", "to": "295251010", "length_m": 12.822001199941864, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776765.7912525884, 5743906.026383534], [776769.398901473, 5743893.722376687]]}, "properties": {"id": "20060", "from": "295251010", "to": "295251011", "length_m": 12.822001199941864, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776765.7912525884, 5743906.026383534], [776770.5066127996, 5743992.756921679]]}, "properties": {"id": "20061-20063", "from": "295251010", "to": "295251015", "length_m": 86.92704142676565, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776770.5066127996, 5743992.756921679], [776765.7912525884, 5743906.026383534]]}, "properties": {"id": "20064-20062", "from": "295251015", "to": "295251010", "length_m": 86.92704142676565, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776770.5066127996, 5743992.756921679], [776764.085103947, 5744214.038153744]]}, "properties": {"id": "20065-20067", "from": "295251015", "to": "295251136", "length_m": 222.66190047917124, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776764.085103947, 5744214.038153744], [776770.5066127996, 5743992.756921679]]}, "properties": {"id": "20068-20066", "from": "295251136", "to": "295251015", "length_m": 222.66190047917124, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791177.4140917346, 5754401.509126595], [791287.9399258543, 5754341.31470974]]}, "properties": {"id": "20069-20070", "from": "824325860", "to": "518259909", "length_m": 126.05150709304328, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791287.9399258543, 5754341.31470974], [791381.7709917026, 5754333.9490188705]]}, "properties": {"id": "20071-20072", "from": "518259909", "to": "518259988", "length_m": 94.16000991216316, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776489.9445263541, 5743953.341071661], [776764.085103947, 5744214.038153744]]}, "properties": {"id": "20073-20075-20077-20079-20081-20083-20085-20087-20089-20091", "from": "295251042", "to": "295251136", "length_m": 554.2670039748149, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812770.3671407714, 5791685.338137121], [812283.3858857555, 5791493.350102044]]}, "properties": {"id": "2008-2009-2010-2011-2012-2013-2014-2015-2016-2017-2018-2019-2020-2021-2022", "from": "351094967", "to": "351094976", "length_m": 546.1439704270913, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776764.085103947, 5744214.038153744], [776489.9445263541, 5743953.341071661]]}, "properties": {"id": "20092-20090-20088-20086-20084-20082-20080-20078-20076-20074", "from": "295251136", "to": "295251042", "length_m": 554.2670039748149, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776764.085103947, 5744214.038153744], [776775.4496729594, 5744231.99478005]]}, "properties": {"id": "20093-20095", "from": "295251136", "to": "295251017", "length_m": 21.459650921100998, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776775.4496729594, 5744231.99478005], [776764.085103947, 5744214.038153744]]}, "properties": {"id": "20096-20094", "from": "295251017", "to": "295251136", "length_m": 21.459650921100998, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791479.278225681, 5754311.011221957], [791385.9450352235, 5754316.637331833]]}, "properties": {"id": "20097", "from": "518259975", "to": "518259979", "length_m": 93.50260694622803, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791385.9450352235, 5754316.637331833], [791296.6750404297, 5754324.927723239]]}, "properties": {"id": "20098", "from": "518259979", "to": "518259907", "length_m": 89.65412716064169, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791296.6750404297, 5754324.927723239], [791174.1959731949, 5754380.029518637]]}, "properties": {"id": "20099-20100-20101", "from": "518259907", "to": "824325905", "length_m": 135.04173386102104, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791661.965799252, 5754299.432697948], [791573.4614153021, 5754305.642302683]]}, "properties": {"id": "20102-20103", "from": "518259854", "to": "518259866", "length_m": 88.77091388552351, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791573.4614153021, 5754305.642302683], [791479.278225681, 5754311.011221957]]}, "properties": {"id": "20104", "from": "518259866", "to": "518259975", "length_m": 94.3360930563978, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798824.8216068086, 5783683.356557852], [799494.281985384, 5784272.297081155]]}, "properties": {"id": "20105-20106-20107-20108-20109-20110-20111-20112-20113-20114-20115", "from": "617475563", "to": "619532812", "length_m": 894.8767136495937, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791418.1716174149, 5754230.769171259], [791581.8773823947, 5754136.928814006]]}, "properties": {"id": "20116-20118-20120-20122", "from": "518259953", "to": "518259974", "length_m": 201.63111124668526, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791581.8773823947, 5754136.928814006], [791418.1716174149, 5754230.769171259]]}, "properties": {"id": "20123-20121-20119-20117", "from": "518259974", "to": "518259953", "length_m": 201.63111124668526, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776701.572747363, 5743802.495217702], [776726.3706569698, 5743904.170928741]]}, "properties": {"id": "20124-20126", "from": "295250993", "to": "295251005", "length_m": 104.92265580635996, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776726.3706569698, 5743904.170928741], [776701.572747363, 5743802.495217702]]}, "properties": {"id": "20127-20125", "from": "295251005", "to": "295250993", "length_m": 104.92265580635996, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791430.0633735559, 5754120.160278697], [791418.1716174149, 5754230.769171259]]}, "properties": {"id": "20128-20130", "from": "518259935", "to": "518259953", "length_m": 114.21157246602762, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791418.1716174149, 5754230.769171259], [791430.0633735559, 5754120.160278697]]}, "properties": {"id": "20131-20129", "from": "518259953", "to": "518259935", "length_m": 114.21157246602762, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791418.1716174149, 5754230.769171259], [791385.9450352235, 5754316.637331833]]}, "properties": {"id": "20132", "from": "518259953", "to": "518259979", "length_m": 91.71637595138178, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791385.9450352235, 5754316.637331833], [791418.1716174149, 5754230.769171259]]}, "properties": {"id": "20133", "from": "518259979", "to": "518259953", "length_m": 91.71637595138178, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791385.9450352235, 5754316.637331833], [791381.7709917026, 5754333.9490188705]]}, "properties": {"id": "20134", "from": "518259979", "to": "518259988", "length_m": 17.807783363575492, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791381.7709917026, 5754333.9490188705], [791385.9450352235, 5754316.637331833]]}, "properties": {"id": "20135", "from": "518259988", "to": "518259979", "length_m": 17.807783363575492, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791381.7709917026, 5754333.9490188705], [791379.6972742893, 5754339.092153915]]}, "properties": {"id": "20136", "from": "518259988", "to": "845902184", "length_m": 5.545461382595153, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791379.6972742893, 5754339.092153915], [791381.7709917026, 5754333.9490188705]]}, "properties": {"id": "20137", "from": "845902184", "to": "518259988", "length_m": 5.545461382595153, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791379.6972742893, 5754339.092153915], [791301.2123015474, 5754605.241622226]]}, "properties": {"id": "20138-20140-20142", "from": "845902184", "to": "518259952", "length_m": 279.40761542439895, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791301.2123015474, 5754605.241622226], [791379.6972742893, 5754339.092153915]]}, "properties": {"id": "20143-20141-20139", "from": "518259952", "to": "845902184", "length_m": 279.40761542439895, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798238.3918192913, 5783077.559607344], [798063.3317527543, 5782911.373995843]]}, "properties": {"id": "20144-20145", "from": "617475616", "to": "617475650", "length_m": 241.38131276442112, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791287.9399258543, 5754341.31470974], [791132.9875064094, 5754538.920973915]]}, "properties": {"id": "20146-20148-20150-20152-20154-20156", "from": "518259909", "to": "2244716762", "length_m": 294.921217716833, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791132.9875064094, 5754538.920973915], [791287.9399258543, 5754341.31470974]]}, "properties": {"id": "20157-20155-20153-20151-20149-20147", "from": "2244716762", "to": "518259909", "length_m": 294.921217716833, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791344.5801235416, 5754136.984098099], [791296.6750404297, 5754324.927723239]]}, "properties": {"id": "20158-20160", "from": "518259905", "to": "518259907", "length_m": 197.11805563408723, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791296.6750404297, 5754324.927723239], [791344.5801235416, 5754136.984098099]]}, "properties": {"id": "20161-20159", "from": "518259907", "to": "518259905", "length_m": 197.11805563408723, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776770.5066127996, 5743992.756921679], [776674.3058858671, 5744011.368817715]]}, "properties": {"id": "20162-20164", "from": "295251015", "to": "295251102", "length_m": 98.00171127935492, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776674.3058858671, 5744011.368817715], [776770.5066127996, 5743992.756921679]]}, "properties": {"id": "20165-20163", "from": "295251102", "to": "295251015", "length_m": 98.00171127935492, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776674.3058858671, 5744011.368817715], [776542.6108039732, 5744022.809478745]]}, "properties": {"id": "20166-20168-20170", "from": "295251102", "to": "295251107", "length_m": 134.34765140658504, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776542.6108039732, 5744022.809478745], [776674.3058858671, 5744011.368817715]]}, "properties": {"id": "20171-20169-20167", "from": "295251107", "to": "295251102", "length_m": 134.34765140658504, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791397.5412250035, 5754567.276218947], [791461.7339414123, 5754357.237050245]]}, "properties": {"id": "20172-20174-20176", "from": "518259902", "to": "518259989", "length_m": 220.71263306513075, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791461.7339414123, 5754357.237050245], [791397.5412250035, 5754567.276218947]]}, "properties": {"id": "20177-20175-20173", "from": "518259989", "to": "518259902", "length_m": 220.71263306513075, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791461.7339414123, 5754357.237050245], [791472.8496200966, 5754328.693370314]]}, "properties": {"id": "20178", "from": "518259989", "to": "518259904", "length_m": 30.631682603438414, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791472.8496200966, 5754328.693370314], [791461.7339414123, 5754357.237050245]]}, "properties": {"id": "20179", "from": "518259904", "to": "518259989", "length_m": 30.631682603438414, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770888.865375286, 5761932.414240668], [770096.6976743138, 5762074.96113075]]}, "properties": {"id": "20180", "from": "888208931", "to": "888208909", "length_m": 804.8908499476796, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770096.6976743138, 5762074.96113075], [770888.865375286, 5761932.414240668]]}, "properties": {"id": "20181", "from": "888208909", "to": "888208931", "length_m": 804.8908499476796, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776765.7125605377, 5743772.606039735], [776908.3237455063, 5743756.818202786]]}, "properties": {"id": "20182-20184-20186-20188-20190-20192", "from": "295250991", "to": "295251100", "length_m": 148.93410565461505, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776908.3237455063, 5743756.818202786], [776765.7125605377, 5743772.606039735]]}, "properties": {"id": "20193-20191-20189-20187-20185-20183", "from": "295251100", "to": "295250991", "length_m": 148.93410565461505, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791429.4870665962, 5754582.028022979], [791503.357433738, 5754565.7898313645]]}, "properties": {"id": "20194", "from": "2548347255", "to": "518259865", "length_m": 75.63405308344052, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791503.357433738, 5754565.7898313645], [791429.4870665962, 5754582.028022979]]}, "properties": {"id": "20195", "from": "518259865", "to": "2548347255", "length_m": 75.63405308344052, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791503.357433738, 5754565.7898313645], [791587.945001589, 5754549.986305044]]}, "properties": {"id": "20196", "from": "518259865", "to": "518259852", "length_m": 86.05119436514187, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791587.945001589, 5754549.986305044], [791503.357433738, 5754565.7898313645]]}, "properties": {"id": "20197", "from": "518259852", "to": "518259865", "length_m": 86.05119436514187, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791587.945001589, 5754549.986305044], [791772.7380514364, 5754549.499988832]]}, "properties": {"id": "20198-20200-20202", "from": "518259852", "to": "845902046", "length_m": 189.56192693694982, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791772.7380514364, 5754549.499988832], [791587.945001589, 5754549.986305044]]}, "properties": {"id": "20203-20201-20199", "from": "845902046", "to": "518259852", "length_m": 189.56192693694982, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776562.4100025438, 5743690.738983341], [776366.7656786878, 5743744.849237509]]}, "properties": {"id": "20204-20206-20208-20210-20212-20214-20216-20218-20220-20222", "from": "295251059", "to": "295251093", "length_m": 221.67061156350942, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776366.7656786878, 5743744.849237509], [776562.4100025438, 5743690.738983341]]}, "properties": {"id": "20223-20221-20219-20217-20215-20213-20211-20209-20207-20205", "from": "295251093", "to": "295251059", "length_m": 221.67061156350942, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791392.8514662655, 5754586.318163821], [791396.4081518055, 5754593.869990795]]}, "properties": {"id": "20226-20227-20228", "from": "518259871", "to": "2244716781", "length_m": 8.646836672736118, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791396.4081518055, 5754593.869990795], [791399.7055384892, 5754595.451501675]]}, "properties": {"id": "20229-20230", "from": "2244716781", "to": "518259872", "length_m": 3.675364460552387, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791399.7055384892, 5754595.451501675], [791407.6621289263, 5754593.641574452]]}, "properties": {"id": "20231-20232-20233", "from": "518259872", "to": "518259886", "length_m": 8.42907146303044, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791407.6621289263, 5754593.641574452], [791410.7084113853, 5754588.75231082]]}, "properties": {"id": "20234-20235", "from": "518259886", "to": "518259897", "length_m": 5.838613658216064, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791410.7084113853, 5754588.75231082], [791409.4755929041, 5754581.772362708]]}, "properties": {"id": "20236-20237-20238", "from": "518259897", "to": "2244716806", "length_m": 7.263048536835394, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791409.4755929041, 5754581.772362708], [791402.2874144915, 5754577.697139746]]}, "properties": {"id": "20239-20240-20241", "from": "2244716806", "to": "518259899", "length_m": 8.547065741450508, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791402.2874144915, 5754577.697139746], [791396.2029847789, 5754579.695119023]]}, "properties": {"id": "20242-20243-20244", "from": "518259899", "to": "2244716755", "length_m": 6.530825948589316, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791396.2029847789, 5754579.695119023], [791392.8514662655, 5754586.318163821]]}, "properties": {"id": "20245-20224-20225", "from": "2244716755", "to": "518259871", "length_m": 7.62786635480949, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798063.3317527543, 5782911.373995843], [797418.1344841227, 5782479.179956847]]}, "properties": {"id": "20246-20247-20248-20249-20250-20251-20252-20253-20254-20255-20256-20257-20258-20259", "from": "617475650", "to": "317889697", "length_m": 789.1032509988858, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787634.7926060659, 5750065.935395006], [787711.3055004717, 5750039.497984126]]}, "properties": {"id": "2025-2027-2029", "from": "509914466", "to": "509914456", "length_m": 83.37893493300132, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776497.3523360523, 5743848.835428596], [776386.0288989741, 5743861.673844697]]}, "properties": {"id": "20260-20262-20264-20266-20268", "from": "295251050", "to": "295251054", "length_m": 115.0349555926901, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776386.0288989741, 5743861.673844697], [776497.3523360523, 5743848.835428596]]}, "properties": {"id": "20269-20267-20265-20263-20261", "from": "295251054", "to": "295251050", "length_m": 115.0349555926901, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791573.4614153021, 5754305.642302683], [791649.509754909, 5754204.096482492]]}, "properties": {"id": "20270-20272-20274", "from": "518259866", "to": "518259870", "length_m": 133.20126500147492, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791649.509754909, 5754204.096482492], [791573.4614153021, 5754305.642302683]]}, "properties": {"id": "20275-20273-20271", "from": "518259870", "to": "518259866", "length_m": 133.20126500147492, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[827415.3389997522, 5801297.322199045], [827973.1456834073, 5801454.631215372]]}, "properties": {"id": "20277-20278", "from": "350784931", "to": "4435252263", "length_m": 579.5663055407861, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[827973.1456834073, 5801454.631215372], [828751.6612713651, 5801667.767218778]]}, "properties": {"id": "20279-28142-5888-5889-5890-59238-59239", "from": "4435252263", "to": "1824095100", "length_m": 807.1732199687686, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749991.8755220333, 5749256.635854158], [747332.1912980346, 5749743.161179188]]}, "properties": {"id": "20280", "from": "984102795", "to": "1078364897", "length_m": 2703.8171253481514, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747332.1912980346, 5749743.161179188], [749991.8755220333, 5749256.635854158]]}, "properties": {"id": "20281", "from": "1078364897", "to": "984102795", "length_m": 2703.8171253481514, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747332.1912980346, 5749743.161179188], [746794.9923759752, 5749822.155405442]]}, "properties": {"id": "20282-20284-20286-20288-20290-20292-20294-20296-20298-20300-20302", "from": "1078364897", "to": "1078364902", "length_m": 545.4570513962542, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791149.4185713574, 5776749.711024446], [790949.8345903095, 5775779.858682459]]}, "properties": {"id": "203-204-205-206-207", "from": "318028144", "to": "318028147", "length_m": 990.8736811302698, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787711.3055004717, 5750039.497984126], [787634.7926060659, 5750065.935395006]]}, "properties": {"id": "2030-2028-2026", "from": "509914456", "to": "509914466", "length_m": 83.37893493300132, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746794.9923759752, 5749822.155405442], [747332.1912980346, 5749743.161179188]]}, "properties": {"id": "20303-20301-20299-20297-20295-20293-20291-20289-20287-20285-20283", "from": "1078364902", "to": "1078364897", "length_m": 545.4570513962542, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755729.0982484919, 5758473.307643506], [756776.018870421, 5756977.0395828225]]}, "properties": {"id": "20308", "from": "1012123549", "to": "1012123632", "length_m": 1826.1601521581997, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756776.018870421, 5756977.0395828225], [755729.0982484919, 5758473.307643506]]}, "properties": {"id": "20309", "from": "1012123632", "to": "1012123549", "length_m": 1826.1601521581997, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788640.788328313, 5753928.52936997], [789535.3925925824, 5753629.883110485]]}, "properties": {"id": "2031-2033-2035-2037-2039", "from": "509915218", "to": "509915255", "length_m": 959.1104814618615, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756859.3015121373, 5756556.640186069], [756551.2541751927, 5754880.450814186]]}, "properties": {"id": "20350-20352-20354", "from": "1012123567", "to": "1012123616", "length_m": 1705.4153027094655, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756551.2541751927, 5754880.450814186], [756859.3015121373, 5756556.640186069]]}, "properties": {"id": "20355-20353-20351", "from": "1012123616", "to": "1012123567", "length_m": 1705.4153027094655, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790857.7921194003, 5757180.175598641], [790839.1903956288, 5757183.723916007]]}, "properties": {"id": "20363", "from": "270450949", "to": "270450946", "length_m": 18.937124434087362, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790839.1903956288, 5757183.723916007], [790857.7921194003, 5757180.175598641]]}, "properties": {"id": "20364", "from": "270450946", "to": "270450949", "length_m": 18.937124434087362, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769548.7357791185, 5839561.138216506], [768978.9868999543, 5839697.173502397]]}, "properties": {"id": "20368-20369-20370-20371-20372-20373-20374-20375-20376-20377", "from": "3953417024", "to": "3953417009", "length_m": 614.2891284065869, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789915.5593211458, 5752269.39229059], [789938.0215704001, 5752389.399543786]]}, "properties": {"id": "20380-20381", "from": "270452248", "to": "510171828", "length_m": 122.09133240025402, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789938.0215704001, 5752389.399543786], [789976.88249866, 5752591.242444356]]}, "properties": {"id": "20382-20383", "from": "510171828", "to": "270452229", "length_m": 205.54981938821962, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789976.88249866, 5752591.242444356], [790016.3173687742, 5752803.656745918]]}, "properties": {"id": "20384-20385", "from": "270452229", "to": "270452200", "length_m": 216.04467377725786, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790016.3173687742, 5752803.656745918], [790019.8690990193, 5752826.224876525]]}, "properties": {"id": "20386", "from": "270452200", "to": "516046592", "length_m": 22.845903490698518, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790019.8690990193, 5752826.224876525], [790039.4260770478, 5752930.631653037]]}, "properties": {"id": "20387", "from": "516046592", "to": "516046805", "length_m": 106.22264522829836, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790039.4260770478, 5752930.631653037], [790091.7442497627, 5753223.207220705]]}, "properties": {"id": "20388", "from": "516046805", "to": "270452105", "length_m": 297.21651014019795, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790091.7442497627, 5753223.207220705], [790109.3066833543, 5753300.110554461]]}, "properties": {"id": "20389", "from": "270452105", "to": "270452106", "length_m": 78.88321626908103, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782735.7613704057, 5835101.462540819], [783262.0194417646, 5835044.928934624]]}, "properties": {"id": "20391-20305-20306-20307-20396-20397-20398-20399-20400-20401", "from": "5515265900", "to": "3315375752", "length_m": 537.0007230422353, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789535.3925925824, 5753629.883110485], [788640.788328313, 5753928.52936997]]}, "properties": {"id": "2040-2038-2036-2034-2032", "from": "509915255", "to": "509915218", "length_m": 959.1104814618615, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770098.8706083004, 5839718.8773093615], [769548.7357791185, 5839561.138216506]]}, "properties": {"id": "20416-20417-20418-20419-20420-20421-20422-14781-14782-14783-14516-14517-20366-20367", "from": "291557421", "to": "3953417024", "length_m": 680.9325572176037, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832517.6670087862, 5812963.767954101], [832539.1087599618, 5812959.032004086]]}, "properties": {"id": "20432", "from": "243827557", "to": "298347857", "length_m": 21.958549874881957, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833447.4418807696, 5808126.0361879375], [833446.6177636764, 5808088.99820365]]}, "properties": {"id": "20438-20439-20440-20441-20442", "from": "5642369715", "to": "36045778", "length_m": 40.122082531150866, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833446.6177636764, 5808088.99820365], [833443.6316759831, 5808086.061625561]]}, "properties": {"id": "20443", "from": "36045778", "to": "5642369714", "length_m": 4.188103421807158, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833443.6316759831, 5808086.061625561], [833404.3770636778, 5808087.5770154195]]}, "properties": {"id": "20444-20445-20446-20447-20448", "from": "5642369714", "to": "1863014224", "length_m": 42.97704472559355, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833404.3770636778, 5808087.5770154195], [833398.0064124733, 5808097.097856313]]}, "properties": {"id": "20449", "from": "1863014224", "to": "75155383", "length_m": 11.455636531494882, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833398.0064124733, 5808097.097856313], [833407.3496404917, 5808131.043641276]]}, "properties": {"id": "20450-20451-20452-20453", "from": "75155383", "to": "5642369716", "length_m": 37.713092578492805, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833407.3496404917, 5808131.043641276], [833447.4418807696, 5808126.0361879375]]}, "properties": {"id": "20454-20433-20434-20435-20436-20437", "from": "5642369716", "to": "5642369715", "length_m": 44.538167945587986, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832517.6670087862, 5812963.767954101], [832514.6336607703, 5812946.367058255]]}, "properties": {"id": "20455", "from": "243827557", "to": "243827556", "length_m": 17.66330590706999, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832500.0660126747, 5812949.53536205], [832475.1534213007, 5812957.057772342]]}, "properties": {"id": "20474", "from": "35082902", "to": "298347745", "length_m": 26.02352517464608, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832475.1534213007, 5812957.057772342], [832202.1827242847, 5813030.89412297]]}, "properties": {"id": "20475-20476-20477-20478", "from": "298347745", "to": "298348141", "length_m": 282.78049502117375, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832202.1827242847, 5813030.89412297], [832065.9902858518, 5813085.492619151]]}, "properties": {"id": "20479-20480-20481", "from": "298348141", "to": "1536031942", "length_m": 147.32830493897933, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835312.6546850035, 5807884.802945809], [835342.2184219875, 5807837.783835185]]}, "properties": {"id": "20488-20489-11651", "from": "75157208", "to": "2100470530", "length_m": 55.85492173742837, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[811277.0962626269, 5790834.904161949], [810792.5044416722, 5790548.28877829]]}, "properties": {"id": "20497-20498", "from": "628549557", "to": "351093694", "length_m": 563.0083407192647, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810792.5044416722, 5790548.28877829], [810213.9639818718, 5790203.810515659]]}, "properties": {"id": "20499-1768-1769", "from": "351093694", "to": "1173113227", "length_m": 673.3474586996751, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[811718.579486728, 5791110.455292225], [811277.0962626269, 5790834.904161949]]}, "properties": {"id": "20500-20495-20496", "from": "628549553", "to": "628549557", "length_m": 520.5270437904803, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[811672.8522683994, 5791112.200038212], [812229.5116943968, 5791485.771053156]]}, "properties": {"id": "20511-55790-55791-55792-55793", "from": "628549525", "to": "174839398", "length_m": 670.436706305319, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833290.9590932573, 5817416.826669104], [833326.330962118, 5817659.02368545]]}, "properties": {"id": "20521-20522-20523-20524-20525-20526-20527-20528-20529", "from": "30918468", "to": "5492934273", "length_m": 246.29786748519948, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747806.2953546045, 5835937.015433069], [747805.3967015118, 5835917.014955288]]}, "properties": {"id": "20530-20531-20532", "from": "363996588", "to": "363996591", "length_m": 21.259983566635896, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747778.1898523712, 5835917.884090126], [747777.6058321579, 5835936.484888055]]}, "properties": {"id": "20533-20534-20535", "from": "363996598", "to": "363996583", "length_m": 19.58374360917898, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747777.6058321579, 5835936.484888055], [747801.8519458524, 5835941.535893239]]}, "properties": {"id": "20536-20537-20538-20539", "from": "363996583", "to": "363996586", "length_m": 27.520757601424137, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762147.8575559995, 5823966.62577799], [762415.638141318, 5823510.431396782]]}, "properties": {"id": "20547-20549-20551-20553-20555", "from": "494778739", "to": "60303694", "length_m": 529.5657873882271, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762415.638141318, 5823510.431396782], [762147.8575559995, 5823966.62577799]]}, "properties": {"id": "20556-20554-20552-20550-20548", "from": "60303694", "to": "494778739", "length_m": 529.5657873882271, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762415.638141318, 5823510.431396782], [762729.4474124302, 5822910.355888726]]}, "properties": {"id": "20557-20559-20561-20563-20565", "from": "60303694", "to": "1709431632", "length_m": 677.3256678655308, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762729.4474124302, 5822910.355888726], [762415.638141318, 5823510.431396782]]}, "properties": {"id": "20566-20564-20562-20560-20558", "from": "1709431632", "to": "60303694", "length_m": 677.3256678655308, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762729.4474124302, 5822910.355888726], [762911.132321617, 5822444.126149132]]}, "properties": {"id": "20567-20569-20571", "from": "1709431632", "to": "987235875", "length_m": 501.01661275543324, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787848.1885979029, 5750643.939941279], [787815.5354518333, 5750623.1995135145]]}, "properties": {"id": "2057-2059", "from": "509914415", "to": "509914422", "length_m": 39.00885083470081, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762911.132321617, 5822444.126149132], [762729.4474124302, 5822910.355888726]]}, "properties": {"id": "20572-20570-20568", "from": "987235875", "to": "1709431632", "length_m": 501.01661275543324, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762911.132321617, 5822444.126149132], [763075.559757919, 5821921.247544188]]}, "properties": {"id": "20573-20575-20577-20579-20581-20583-20585", "from": "987235875", "to": "476356709", "length_m": 549.1460477395328, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763075.559757919, 5821921.247544188], [762911.132321617, 5822444.126149132]]}, "properties": {"id": "20586-20584-20582-20580-20578-20576-20574", "from": "476356709", "to": "987235875", "length_m": 549.1460477395328, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763075.559757919, 5821921.247544188], [762913.8295411583, 5821359.872659428]]}, "properties": {"id": "20587-20589-20591-20593-20595-20597-20599-20601-20603-20605-20607-20609", "from": "476356709", "to": "476356635", "length_m": 592.4068151289226, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787815.5354518333, 5750623.1995135145], [787848.1885979029, 5750643.939941279]]}, "properties": {"id": "2060-2058", "from": "509914422", "to": "509914415", "length_m": 39.00885083470081, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787815.5354518333, 5750623.1995135145], [787768.7416097848, 5750635.417369633]]}, "properties": {"id": "2061-2063-2065", "from": "509914422", "to": "509914423", "length_m": 50.389059651007855, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762913.8295411583, 5821359.872659428], [763075.559757919, 5821921.247544188]]}, "properties": {"id": "20610-20608-20606-20604-20602-20600-20598-20596-20594-20592-20590-20588", "from": "476356635", "to": "476356709", "length_m": 592.4068151289226, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762913.8295411583, 5821359.872659428], [763151.0644303387, 5819945.249797575]]}, "properties": {"id": "20611-20613-20615-20617-20619-20621-20623-20625-20627-20629-20631-20633-20635-20637-20639", "from": "476356635", "to": "476356542", "length_m": 1456.446563869511, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763151.0644303387, 5819945.249797575], [762913.8295411583, 5821359.872659428]]}, "properties": {"id": "20640-20638-20636-20634-20632-20630-20628-20626-20624-20622-20620-20618-20616-20614-20612", "from": "476356542", "to": "476356635", "length_m": 1456.446563869511, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763151.0644303387, 5819945.249797575], [763437.4258780122, 5819472.589521678]]}, "properties": {"id": "20641-20643-20645", "from": "476356542", "to": "476356476", "length_m": 552.6768733518143, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763437.4258780122, 5819472.589521678], [763151.0644303387, 5819945.249797575]]}, "properties": {"id": "20646-20644-20642", "from": "476356476", "to": "476356542", "length_m": 552.6768733518143, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763437.4258780122, 5819472.589521678], [763719.143590363, 5818996.787304947]]}, "properties": {"id": "20647-20649-20651", "from": "476356476", "to": "476356508", "length_m": 552.9871351597187, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763719.143590363, 5818996.787304947], [763437.4258780122, 5819472.589521678]]}, "properties": {"id": "20652-20650-20648", "from": "476356508", "to": "476356476", "length_m": 552.9871351597187, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763719.143590363, 5818996.787304947], [763968.6765065384, 5818439.423173521]]}, "properties": {"id": "20653-20655-20657-20659", "from": "476356508", "to": "476356424", "length_m": 611.1334449170595, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787768.7416097848, 5750635.417369633], [787815.5354518333, 5750623.1995135145]]}, "properties": {"id": "2066-2064-2062", "from": "509914423", "to": "509914422", "length_m": 50.389059651007855, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763968.6765065384, 5818439.423173521], [763719.143590363, 5818996.787304947]]}, "properties": {"id": "20660-20658-20656-20654", "from": "476356424", "to": "476356508", "length_m": 611.1334449170595, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763968.6765065384, 5818439.423173521], [764254.7925879498, 5817871.642302317]]}, "properties": {"id": "20661-20663", "from": "476356424", "to": "1709380884", "length_m": 635.7968480721344, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764254.7925879498, 5817871.642302317], [763968.6765065384, 5818439.423173521]]}, "properties": {"id": "20664-20662", "from": "1709380884", "to": "476356424", "length_m": 635.7968480721344, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764254.7925879498, 5817871.642302317], [764483.0286328425, 5817422.094927242]]}, "properties": {"id": "20665-20667", "from": "1709380884", "to": "1709380735", "length_m": 504.16744584972355, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764483.0286328425, 5817422.094927242], [764254.7925879498, 5817871.642302317]]}, "properties": {"id": "20668-20666", "from": "1709380735", "to": "1709380884", "length_m": 504.16744584972355, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764483.0286328425, 5817422.094927242], [764774.6975384955, 5816905.950221563]]}, "properties": {"id": "20669-20671-20673-20675-20677-20679-20681", "from": "1709380735", "to": "476356352", "length_m": 593.7523801528354, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777113.0601577116, 5742510.669172902], [777285.1182658134, 5742468.719772455]]}, "properties": {"id": "2067", "from": "4763088582", "to": "4763088618", "length_m": 177.09812156230134, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777285.1182658134, 5742468.719772455], [777113.0601577116, 5742510.669172902]]}, "properties": {"id": "2068", "from": "4763088618", "to": "4763088582", "length_m": 177.09812156230134, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764774.6975384955, 5816905.950221563], [764483.0286328425, 5817422.094927242]]}, "properties": {"id": "20682-20680-20678-20676-20674-20672-20670", "from": "476356352", "to": "1709380735", "length_m": 593.7523801528354, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764774.6975384955, 5816905.950221563], [765163.5811409638, 5816353.409094639]]}, "properties": {"id": "20683-20685", "from": "476356352", "to": "476356118", "length_m": 675.6721413471329, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765163.5811409638, 5816353.409094639], [764774.6975384955, 5816905.950221563]]}, "properties": {"id": "20686-20684", "from": "476356118", "to": "476356352", "length_m": 675.6721413471329, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765163.5811409638, 5816353.409094639], [765491.1081977978, 5815895.882295314]]}, "properties": {"id": "20687-20689-20691-20693", "from": "476356118", "to": "1013261100", "length_m": 562.7617664143501, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777328.7008586978, 5742691.812941311], [777346.341868582, 5742715.331091522]]}, "properties": {"id": "2069-2071", "from": "4763088581", "to": "289884783", "length_m": 29.796574170067046, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765491.1081977978, 5815895.882295314], [765163.5811409638, 5816353.409094639]]}, "properties": {"id": "20694-20692-20690-20688", "from": "1013261100", "to": "476356118", "length_m": 562.7617664143501, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765491.1081977978, 5815895.882295314], [766103.1054478188, 5815474.466956152]]}, "properties": {"id": "20695-20697-20699-20701-20703-20705-20707-20709-20711-20713-20715-20717-20719", "from": "1013261100", "to": "476355963", "length_m": 747.6553146260151, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777346.341868582, 5742715.331091522], [777328.7008586978, 5742691.812941311]]}, "properties": {"id": "2072-2070", "from": "289884783", "to": "4763088581", "length_m": 29.796574170067046, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766103.1054478188, 5815474.466956152], [765491.1081977978, 5815895.882295314]]}, "properties": {"id": "20720-20718-20716-20714-20712-20710-20708-20706-20704-20702-20700-20698-20696", "from": "476355963", "to": "1013261100", "length_m": 747.6553146260151, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766103.1054478188, 5815474.466956152], [766466.0104929679, 5815035.614673423]]}, "properties": {"id": "20721-20723-20725-20727-20729-20731-20733-20735", "from": "476355963", "to": "2744567837", "length_m": 572.3666775855145, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777346.341868582, 5742715.331091522], [777454.1252356187, 5742958.902298657]]}, "properties": {"id": "2073-2228-2230-55922-55920-55918", "from": "289884783", "to": "289885501", "length_m": 398.9271206358648, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766466.0104929679, 5815035.614673423], [766103.1054478188, 5815474.466956152]]}, "properties": {"id": "20736-20734-20732-20730-20728-20726-20724-20722", "from": "2744567837", "to": "476355963", "length_m": 572.3666775855145, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789352.8806934556, 5773265.011595374], [788986.2289420727, 5773327.2904559905]]}, "properties": {"id": "20739-20740-20741-20742-20743", "from": "3431090321", "to": "3431090316", "length_m": 372.0289634316844, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788986.2289420727, 5773327.2904559905], [788886.3069836989, 5773346.282645225]]}, "properties": {"id": "20744-20745", "from": "3431090316", "to": "3431090312", "length_m": 101.71087035006244, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776174.5303815247, 5792218.650338878], [776372.8876661966, 5791588.673268644]]}, "properties": {"id": "20746-20748-20750", "from": "274453812", "to": "3520911735", "length_m": 660.4711841876479, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776372.8876661966, 5791588.673268644], [776174.5303815247, 5792218.650338878]]}, "properties": {"id": "20751-20749-20747", "from": "3520911735", "to": "274453812", "length_m": 660.4711841876479, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776372.8876661966, 5791588.673268644], [776688.7433696938, 5790552.286205993]]}, "properties": {"id": "20752-20754", "from": "3520911735", "to": "60303848", "length_m": 1083.450206749914, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776688.7433696938, 5790552.286205993], [776372.8876661966, 5791588.673268644]]}, "properties": {"id": "20755-20753", "from": "60303848", "to": "3520911735", "length_m": 1083.450206749914, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776688.7433696938, 5790552.286205993], [777197.812864807, 5788905.353429206]]}, "properties": {"id": "20756", "from": "60303848", "to": "3520911733", "length_m": 1723.8153400950741, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777197.812864807, 5788905.353429206], [776688.7433696938, 5790552.286205993]]}, "properties": {"id": "20757", "from": "3520911733", "to": "60303848", "length_m": 1723.8153400950741, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777197.812864807, 5788905.353429206], [777437.0631683585, 5788119.839654449]]}, "properties": {"id": "20758-20760-20762", "from": "3520911733", "to": "3520911523", "length_m": 821.1430217405849, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777104.1451953088, 5742505.919958045], [777100.6517833213, 5742515.664297864]]}, "properties": {"id": "2076-2077-2078-2079-2080", "from": "4763088580", "to": "4763088610", "length_m": 11.74835007460166, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777437.0631683585, 5788119.839654449], [777197.812864807, 5788905.353429206]]}, "properties": {"id": "20763-20761-20759", "from": "3520911523", "to": "3520911733", "length_m": 821.1430217405849, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777437.0631683585, 5788119.839654449], [777644.3246453293, 5787459.6813726]]}, "properties": {"id": "20764-20766-20768-20770", "from": "3520911523", "to": "3520911522", "length_m": 692.1490639260439, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777644.3246453293, 5787459.6813726], [777437.0631683585, 5788119.839654449]]}, "properties": {"id": "20771-20769-20767-20765", "from": "3520911522", "to": "3520911523", "length_m": 692.1490639260439, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777644.3246453293, 5787459.6813726], [778037.2928692137, 5786955.9804683495]]}, "properties": {"id": "20772-20774-20776-20778-20780-20782-20784", "from": "3520911522", "to": "2405820993", "length_m": 642.1226517414574, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778037.2928692137, 5786955.9804683495], [777644.3246453293, 5787459.6813726]]}, "properties": {"id": "20785-20783-20781-20779-20777-20775-20773", "from": "2405820993", "to": "3520911522", "length_m": 642.1226517414574, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778037.2928692137, 5786955.9804683495], [778634.1460288137, 5786300.398651317]]}, "properties": {"id": "20786-20788-20790-20792", "from": "2405820993", "to": "3520911304", "length_m": 886.5898385982258, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778634.1460288137, 5786300.398651317], [778037.2928692137, 5786955.9804683495]]}, "properties": {"id": "20793-20791-20789-20787", "from": "3520911304", "to": "2405820993", "length_m": 886.5898385982258, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775346.7156064261, 5794518.442769019], [775717.1971423065, 5793736.952748407]]}, "properties": {"id": "20794-20796-20798-20800-20802-20804-20806-20808-20810", "from": "274453807", "to": "988447443", "length_m": 865.1219886153791, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790949.8345903095, 5775779.858682459], [790796.4822544439, 5775112.554180237]]}, "properties": {"id": "208-209-210", "from": "318028147", "to": "318028149", "length_m": 684.7142030043028, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777100.6517833213, 5742515.664297864], [777109.0370017008, 5742518.486981659]]}, "properties": {"id": "2081-2082-2083-2084", "from": "4763088610", "to": "4763088566", "length_m": 9.588834298302126, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775717.1971423065, 5793736.952748407], [775346.7156064261, 5794518.442769019]]}, "properties": {"id": "20811-20809-20807-20805-20803-20801-20799-20797-20795", "from": "988447443", "to": "274453807", "length_m": 865.1219886153791, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775717.1971423065, 5793736.952748407], [775940.5336875337, 5793002.2221563]]}, "properties": {"id": "20812-20814-20816-20818", "from": "988447443", "to": "988518843", "length_m": 767.935393351393, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775940.5336875337, 5793002.2221563], [775717.1971423065, 5793736.952748407]]}, "properties": {"id": "20819-20817-20815-20813", "from": "988518843", "to": "988447443", "length_m": 767.935393351393, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775940.5336875337, 5793002.2221563], [776174.5303815247, 5792218.650338878]]}, "properties": {"id": "20820-20822-20824", "from": "988518843", "to": "274453812", "length_m": 817.8211322715692, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776174.5303815247, 5792218.650338878], [775940.5336875337, 5793002.2221563]]}, "properties": {"id": "20825-20823-20821", "from": "274453812", "to": "988518843", "length_m": 817.8211322715692, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791538.1389195442, 5761360.75652207], [791605.9412443741, 5761360.497098653]]}, "properties": {"id": "20826-20827-20828-20829-20830", "from": "270450451", "to": "270450517", "length_m": 66.08450491350145, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791600.6244464116, 5761339.620960304], [791538.1389195442, 5761360.75652207]]}, "properties": {"id": "20826-20827-20828-20829-20831", "from": "5550633339", "to": "270450451", "length_m": 66.08450491350145, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794894.667357305, 5756422.839469023], [795791.8683088745, 5756495.1165142]]}, "properties": {"id": "20840-20842-20844-20846", "from": "510175115", "to": "52493670", "length_m": 910.5241116568299, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795791.8683088745, 5756495.1165142], [794894.667357305, 5756422.839469023]]}, "properties": {"id": "20847-20845-20843-20841", "from": "52493670", "to": "510175115", "length_m": 910.5241116568299, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795791.8683088745, 5756495.1165142], [796645.8665374, 5756664.751829812]]}, "properties": {"id": "20848", "from": "52493670", "to": "616942050", "length_m": 870.6831277322073, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796645.8665374, 5756664.751829812], [795791.8683088745, 5756495.1165142]]}, "properties": {"id": "20849", "from": "616942050", "to": "52493670", "length_m": 870.6831277322073, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777109.0370017008, 5742518.486981659], [777113.0601577116, 5742510.669172902]]}, "properties": {"id": "2085-2086-2087-2088", "from": "4763088566", "to": "4763088582", "length_m": 9.529202813147801, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796645.8665374, 5756664.751829812], [797421.4517125557, 5757015.6106647495]]}, "properties": {"id": "20850-20852-20854-44402", "from": "616942050", "to": "2574033455", "length_m": 529.3948875446677, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777487.5123748425, 5761424.780979193], [777398.2028470332, 5761445.057532356]]}, "properties": {"id": "20856-20858-20860-20862-20864", "from": "3756753419", "to": "3756753424", "length_m": 126.53946485429756, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777398.2028470332, 5761445.057532356], [777487.5123748425, 5761424.780979193]]}, "properties": {"id": "20865-20863-20861-20859-20857", "from": "3756753424", "to": "3756753419", "length_m": 126.53946485429756, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793876.8288475091, 5772919.084344889], [793779.6835774945, 5773783.631500782]]}, "properties": {"id": "20870-20871-20872-39345-39346-39347-39348-39349-39350-39351-39352-2104-2105-2106-2107-2108-2109-2110-2111-2112-2113", "from": "263575954", "to": "26756000", "length_m": 916.7685866447146, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833447.4418807696, 5808126.0361879375], [834129.4047701412, 5808010.785132628]]}, "properties": {"id": "20873-20874-20875", "from": "5642369715", "to": "2960068522", "length_m": 692.8778164572384, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834129.4047701412, 5808010.785132628], [834853.5406923413, 5807900.962110945]]}, "properties": {"id": "20876-20877-20878-20879-20880-20881-20882", "from": "2960068522", "to": "5642272360", "length_m": 732.6555669109872, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777113.0601577116, 5742510.669172902], [777104.1451953088, 5742505.919958045]]}, "properties": {"id": "2089-2090-2091-2092-2093", "from": "4763088582", "to": "4763088580", "length_m": 11.346971166295615, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838568.4734273204, 5805135.444441798], [838566.3795566997, 5805122.097826294]]}, "properties": {"id": "20894", "from": "250287616", "to": "250287615", "length_m": 13.509864523616946, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791627.9581947501, 5761331.73356825], [791330.7860614425, 5759750.232831925]]}, "properties": {"id": "20910-20911-20912-20913-20914-20915-4364", "from": "5550633336", "to": "469074552", "length_m": 1609.4939511785237, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782596.3032496165, 5770317.2744491305], [781988.177432845, 5767073.527759831]]}, "properties": {"id": "20995", "from": "942276035", "to": "2400330342", "length_m": 5000.0, "freespeed_mps": 20.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781988.177432845, 5767073.527759831], [782596.3032496165, 5770317.2744491305]]}, "properties": {"id": "20996", "from": "2400330342", "to": "942276035", "length_m": 5000.0, "freespeed_mps": 20.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781988.177432845, 5767073.527759831], [781940.8445564387, 5766480.150215832]]}, "properties": {"id": "20997-20999-21001-21003-21005-21007", "from": "2400330342", "to": "370245206", "length_m": 1263.5634154430543, "freespeed_mps": 20.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781940.8445564387, 5766480.150215832], [781988.177432845, 5767073.527759831]]}, "properties": {"id": "21008-21006-21004-21002-21000-20998", "from": "370245206", "to": "2400330342", "length_m": 1263.5634154430543, "freespeed_mps": 20.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787175.4305807627, 5753760.47764585], [786683.676168802, 5753123.47695081]]}, "properties": {"id": "2102-10198-10200-10202-10204-10206", "from": "509915208", "to": "509915216", "length_m": 991.4536609306153, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783976.890456976, 5764453.317987577], [784197.9169948344, 5765636.164176198]]}, "properties": {"id": "21035-21037-21039-21041-21043-21045", "from": "370245225", "to": "2373877380", "length_m": 1203.3682088305823, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784197.9169948344, 5765636.164176198], [783976.890456976, 5764453.317987577]]}, "properties": {"id": "21046-21044-21042-21040-21038-21036", "from": "2373877380", "to": "370245225", "length_m": 1203.3682088305823, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790938.7503239557, 5752858.9391157525], [790827.120755098, 5752882.625576702]]}, "properties": {"id": "21047", "from": "510172366", "to": "512196732", "length_m": 114.11489395598994, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790827.120755098, 5752882.625576702], [790938.7503239557, 5752858.9391157525]]}, "properties": {"id": "21048", "from": "512196732", "to": "510172366", "length_m": 114.11489395598994, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790827.120755098, 5752882.625576702], [790683.2909606788, 5752905.436678666]]}, "properties": {"id": "21049", "from": "512196732", "to": "510172448", "length_m": 145.62745631882078, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790683.2909606788, 5752905.436678666], [790827.120755098, 5752882.625576702]]}, "properties": {"id": "21050", "from": "510172448", "to": "512196732", "length_m": 145.62745631882078, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790683.2909606788, 5752905.436678666], [790587.0383761064, 5752922.8861274645]]}, "properties": {"id": "21051", "from": "510172448", "to": "512196733", "length_m": 97.82148670154852, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790587.0383761064, 5752922.8861274645], [790683.2909606788, 5752905.436678666]]}, "properties": {"id": "21052", "from": "512196733", "to": "510172448", "length_m": 97.82148670154852, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790587.0383761064, 5752922.8861274645], [790470.3001995045, 5752946.495851752]]}, "properties": {"id": "21053", "from": "512196733", "to": "513527127", "length_m": 119.10172501259619, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790470.3001995045, 5752946.495851752], [790587.0383761064, 5752922.8861274645]]}, "properties": {"id": "21054", "from": "513527127", "to": "512196733", "length_m": 119.10172501259619, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790470.3001995045, 5752946.495851752], [790382.7949071795, 5752962.027366301]]}, "properties": {"id": "21055", "from": "513527127", "to": "510173099", "length_m": 88.87296608378168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790382.7949071795, 5752962.027366301], [790470.3001995045, 5752946.495851752]]}, "properties": {"id": "21056", "from": "510173099", "to": "513527127", "length_m": 88.87296608378168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790382.7949071795, 5752962.027366301], [790265.6256255661, 5752982.437450363]]}, "properties": {"id": "21057", "from": "510173099", "to": "510172866", "length_m": 118.9336454682786, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790265.6256255661, 5752982.437450363], [790382.7949071795, 5752962.027366301]]}, "properties": {"id": "21058", "from": "510172866", "to": "510173099", "length_m": 118.9336454682786, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790265.6256255661, 5752982.437450363], [790169.343709733, 5753001.538885217]]}, "properties": {"id": "21059", "from": "510172866", "to": "510172965", "length_m": 98.15840306304281, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790169.343709733, 5753001.538885217], [790265.6256255661, 5752982.437450363]]}, "properties": {"id": "21060", "from": "510172965", "to": "510172866", "length_m": 98.15840306304281, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790169.343709733, 5753001.538885217], [790072.2925582496, 5753019.466422894]]}, "properties": {"id": "21061", "from": "510172965", "to": "510172408", "length_m": 98.69307255719126, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790072.2925582496, 5753019.466422894], [790169.343709733, 5753001.538885217]]}, "properties": {"id": "21062", "from": "510172408", "to": "510172965", "length_m": 98.69307255719126, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777673.1616906265, 5743757.290179492], [777641.8260894862, 5743875.170926221]]}, "properties": {"id": "21064-21066-21068", "from": "297625516", "to": "297625561", "length_m": 122.67342321900465, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777641.8260894862, 5743875.170926221], [777673.1616906265, 5743757.290179492]]}, "properties": {"id": "21069-21067-21065", "from": "297625561", "to": "297625516", "length_m": 122.67342321900465, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787939.4891336896, 5750071.039050874], [787874.2685071888, 5750045.327265284]]}, "properties": {"id": "21070-21072-21074-21076", "from": "509914446", "to": "844937585", "length_m": 72.95729175077857, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787874.2685071888, 5750045.327265284], [787939.4891336896, 5750071.039050874]]}, "properties": {"id": "21077-21075-21073-21071", "from": "844937585", "to": "509914446", "length_m": 72.95729175077857, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789989.0541485044, 5778113.397618884], [788746.3668160933, 5778594.989416734]]}, "properties": {"id": "21083-21081-21079-1352-1350-1348-1346-1344-1342-1340-1338-46677-46675-46673", "from": "318039431", "to": "318039462", "length_m": 1338.1747137168556, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789989.0541485044, 5778113.397618884], [790533.9654211935, 5777741.571143529]]}, "properties": {"id": "21084-21086-21088", "from": "318039431", "to": "3607038426", "length_m": 659.685759159348, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790533.9654211935, 5777741.571143529], [789989.0541485044, 5778113.397618884]]}, "properties": {"id": "21089-21087-21085", "from": "3607038426", "to": "318039431", "length_m": 659.685759159348, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790796.4822544439, 5775112.554180237], [790260.6886221857, 5774345.412954718]]}, "properties": {"id": "211-212-213-214-215-216-217-218", "from": "318028149", "to": "318028155", "length_m": 952.3731646107145, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803814.2921034298, 5767392.819871391], [803810.3645568336, 5767378.849766369]]}, "properties": {"id": "21102", "from": "957930684", "to": "537508940", "length_m": 14.511700668318037, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803810.3645568336, 5767378.849766369], [803814.2921034298, 5767392.819871391]]}, "properties": {"id": "21103", "from": "537508940", "to": "957930684", "length_m": 14.511700668318037, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790016.3173687742, 5752803.656745918], [789838.5206001672, 5752837.521158892]]}, "properties": {"id": "21104-21106-21108-21110", "from": "270452200", "to": "516045793", "length_m": 180.99425901330773, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789838.5206001672, 5752837.521158892], [790016.3173687742, 5752803.656745918]]}, "properties": {"id": "21111-21109-21107-21105", "from": "516045793", "to": "270452200", "length_m": 180.99425901330773, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789838.5206001672, 5752837.521158892], [789775.2768928094, 5752847.184082781]]}, "properties": {"id": "21112-21114", "from": "516045793", "to": "148808268", "length_m": 63.99278726431789, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789775.2768928094, 5752847.184082781], [789838.5206001672, 5752837.521158892]]}, "properties": {"id": "21115-21113", "from": "148808268", "to": "516045793", "length_m": 63.99278726431789, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789775.2768928094, 5752847.184082781], [789711.211595207, 5752845.917145008]]}, "properties": {"id": "21116-21118", "from": "148808268", "to": "516045758", "length_m": 64.1455785375774, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789711.211595207, 5752845.917145008], [789775.2768928094, 5752847.184082781]]}, "properties": {"id": "21119-21117", "from": "516045758", "to": "148808268", "length_m": 64.1455785375774, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789711.211595207, 5752845.917145008], [789604.8476581076, 5752814.614266621]]}, "properties": {"id": "21120-21122", "from": "516045758", "to": "148808274", "length_m": 111.23093647106286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789604.8476581076, 5752814.614266621], [789711.211595207, 5752845.917145008]]}, "properties": {"id": "21123-21121", "from": "148808274", "to": "516045758", "length_m": 111.23093647106286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789888.1336890581, 5752030.515999783], [789870.4747431411, 5752036.582087515]]}, "properties": {"id": "21124", "from": "270452290", "to": "270452291", "length_m": 16.403616899539884, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789870.4747431411, 5752036.582087515], [789888.1336890581, 5752030.515999783]]}, "properties": {"id": "21125", "from": "270452291", "to": "270452290", "length_m": 16.403616899539884, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793800.3657867633, 5772515.147416129], [793770.7557393255, 5772520.84245755]]}, "properties": {"id": "21126", "from": "3957457797", "to": "3957457795", "length_m": 30.152751184448473, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793770.7557393255, 5772520.84245755], [793633.4342806912, 5772550.3840073915]]}, "properties": {"id": "21127-21128-21129", "from": "3957457795", "to": "3957457789", "length_m": 140.5579804262792, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836337.1772921549, 5817170.178433124], [836269.0483596874, 5817281.306727197]]}, "properties": {"id": "21131", "from": "268387134", "to": "1208302360", "length_m": 130.3497190375641, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789604.8476581076, 5752814.614266621], [789976.88249866, 5752591.242444356]]}, "properties": {"id": "21133-21135-21137-21139-21141-21143-21145-21147", "from": "148808274", "to": "270452229", "length_m": 502.6776940370832, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788113.2586365191, 5750709.815309546], [788245.5845595341, 5750711.509458094]]}, "properties": {"id": "2114-2116-2118-2120-2122", "from": "509913962", "to": "509913978", "length_m": 135.97346820974985, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789976.88249866, 5752591.242444356], [789604.8476581076, 5752814.614266621]]}, "properties": {"id": "21148-21146-21144-21142-21140-21138-21136-21134", "from": "270452229", "to": "148808274", "length_m": 502.6776940370832, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789976.88249866, 5752591.242444356], [789991.5042837171, 5752587.849305163]]}, "properties": {"id": "21149", "from": "270452229", "to": "148808280", "length_m": 15.010329464051917, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789991.5042837171, 5752587.849305163], [789976.88249866, 5752591.242444356]]}, "properties": {"id": "21150", "from": "148808280", "to": "270452229", "length_m": 15.010329464051917, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761683.7931060626, 5763577.808579267], [761721.1916169021, 5763526.756329525]]}, "properties": {"id": "21152", "from": "559370764", "to": "559370741", "length_m": 63.28491781084265, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761721.1916169021, 5763526.756329525], [761683.7931060626, 5763577.808579267]]}, "properties": {"id": "21153", "from": "559370741", "to": "559370764", "length_m": 63.28491781084265, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761721.1916169021, 5763526.756329525], [761854.9465747848, 5763338.546112329]]}, "properties": {"id": "21154", "from": "559370741", "to": "559370742", "length_m": 230.89710839916089, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761854.9465747848, 5763338.546112329], [761721.1916169021, 5763526.756329525]]}, "properties": {"id": "21155", "from": "559370742", "to": "559370741", "length_m": 230.89710839916089, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837368.9550202194, 5815524.273016153], [837394.491020328, 5815487.644071506]]}, "properties": {"id": "21160", "from": "1504829875", "to": "33302736", "length_m": 44.651616961092444, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837394.491020328, 5815487.644071506], [837494.3363143315, 5815334.649741687]]}, "properties": {"id": "21161-21162", "from": "33302736", "to": "33302738", "length_m": 182.7877992163364, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838795.443737746, 5806587.563347765], [838762.1326635845, 5806587.870160166]]}, "properties": {"id": "21163", "from": "250290113", "to": "2099022778", "length_m": 33.31248691469661, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838762.1326635845, 5806587.870160166], [838186.5402364456, 5806602.689253868]]}, "properties": {"id": "21164-21165-21166-21167-21168-21169-21170-21171-21172-21173", "from": "2099022778", "to": "250290115", "length_m": 576.1085358342824, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837367.3230535418, 5815501.033172658], [836930.7446654853, 5816181.720461521]]}, "properties": {"id": "21174-21175-21214-21215-21216-21217-21156-58790-58791-58792-58793-58794-58795-58796-58797", "from": "1504829816", "to": "33302646", "length_m": 813.3919523806395, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761755.0993567139, 5763189.746082453], [761773.722409228, 5763224.487367583]]}, "properties": {"id": "21176", "from": "1852719103", "to": "559370730", "length_m": 39.41795243843257, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761773.722409228, 5763224.487367583], [761854.9465747848, 5763338.546112329]]}, "properties": {"id": "21177-21178-15017-15008-15009", "from": "559370730", "to": "559370742", "length_m": 140.52056381968418, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836960.3549306788, 5816187.381056778], [837368.9550202194, 5815524.273016153]]}, "properties": {"id": "21183-21184-21185-21186-21132-16980-16981-16982-16983-21179-21180", "from": "5642431857", "to": "1504829875", "length_m": 779.8247299110519, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790091.7442497627, 5753223.207220705], [790108.5728142075, 5753219.790210123]]}, "properties": {"id": "21187", "from": "270452105", "to": "270452119", "length_m": 17.171969635924754, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790108.5728142075, 5753219.790210123], [790091.7442497627, 5753223.207220705]]}, "properties": {"id": "21188", "from": "270452119", "to": "270452105", "length_m": 17.171969635924754, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836278.3427549632, 5817308.014289737], [836299.4986362283, 5817262.684329964]]}, "properties": {"id": "21192-21193", "from": "2045235488", "to": "3164229067", "length_m": 50.167754903744466, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836299.4986362283, 5817262.684329964], [836496.818049027, 5816941.315821949]]}, "properties": {"id": "21194-821-822-823-824-825", "from": "3164229067", "to": "2045249226", "length_m": 377.1116797938419, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790108.5728142075, 5753219.790210123], [790206.8645727546, 5753199.528251291]]}, "properties": {"id": "21198", "from": "270452119", "to": "2315693194", "length_m": 100.35844127368514, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790206.8645727546, 5753199.528251291], [790108.5728142075, 5753219.790210123]]}, "properties": {"id": "21199", "from": "2315693194", "to": "270452119", "length_m": 100.35844127368514, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790206.8645727546, 5753199.528251291], [790261.9105939658, 5753188.512131313]]}, "properties": {"id": "21200", "from": "2315693194", "to": "512197812", "length_m": 56.13750383664943, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790261.9105939658, 5753188.512131313], [790206.8645727546, 5753199.528251291]]}, "properties": {"id": "21201", "from": "512197812", "to": "2315693194", "length_m": 56.13750383664943, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790261.9105939658, 5753188.512131313], [790505.6253277919, 5753140.929106952]]}, "properties": {"id": "21202", "from": "512197812", "to": "513527159", "length_m": 248.31636158748722, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790505.6253277919, 5753140.929106952], [790261.9105939658, 5753188.512131313]]}, "properties": {"id": "21203", "from": "513527159", "to": "512197812", "length_m": 248.31636158748722, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790505.6253277919, 5753140.929106952], [790614.7297506537, 5753124.08500124]]}, "properties": {"id": "21204", "from": "513527159", "to": "510558255", "length_m": 110.39700598753542, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790614.7297506537, 5753124.08500124], [790505.6253277919, 5753140.929106952]]}, "properties": {"id": "21205", "from": "510558255", "to": "513527159", "length_m": 110.39700598753542, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830166.8064279361, 5821773.9329009205], [830179.765437704, 5821771.446398949]]}, "properties": {"id": "21218", "from": "605208462", "to": "605208464", "length_m": 13.195401668222663, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830179.765437704, 5821771.446398949], [830546.0636367323, 5821699.2316797115]]}, "properties": {"id": "21219-21220-9188", "from": "605208464", "to": "2868271426", "length_m": 373.34902193564886, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836924.0477261149, 5816210.994130557], [836482.8545424694, 5816932.846009671]]}, "properties": {"id": "21221-21222-21223-21224-21189-21190-21191-21151-1876-1877-1878-1879-1880-1881", "from": "5642431858", "to": "2045249255", "length_m": 846.1756227017347, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834129.4047701412, 5808010.785132628], [834127.2466022039, 5807996.328858124]]}, "properties": {"id": "21225", "from": "2960068522", "to": "347849258", "length_m": 14.616482512163644, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834127.2466022039, 5807996.328858124], [834129.4047701412, 5808010.785132628]]}, "properties": {"id": "21226", "from": "347849258", "to": "2960068522", "length_m": 14.616482512163644, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796656.8488942779, 5781575.293469162], [796894.2786527616, 5781848.277437776]]}, "properties": {"id": "21227-52698-52699-52700-52701-52702-52703-52704-52705-52706", "from": "286389331", "to": "1586628677", "length_m": 363.63369436660895, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773897.2454991138, 5775919.637446176], [773883.3900033716, 5775934.638857041]]}, "properties": {"id": "21228-21230", "from": "5604445684", "to": "5604450356", "length_m": 20.57343190605718, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788245.5845595341, 5750711.509458094], [788113.2586365191, 5750709.815309546]]}, "properties": {"id": "2123-2121-2119-2117-2115", "from": "509913978", "to": "509913962", "length_m": 135.97346820974985, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773883.3900033716, 5775934.638857041], [773897.2454991138, 5775919.637446176]]}, "properties": {"id": "21231-21229", "from": "5604450356", "to": "5604445684", "length_m": 20.57343190605718, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773883.3900033716, 5775934.638857041], [773819.5142653503, 5776065.52349589]]}, "properties": {"id": "21232-21234-21236", "from": "5604450356", "to": "5604450353", "length_m": 145.64351688556013, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773819.5142653503, 5776065.52349589], [773883.3900033716, 5775934.638857041]]}, "properties": {"id": "21237-21235-21233", "from": "5604450353", "to": "5604450356", "length_m": 145.64351688556013, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773819.5142653503, 5776065.52349589], [773877.3955004404, 5776245.987854285]]}, "properties": {"id": "21238-21240-21242-21244-21246-21248-21250-21252-21254-21256", "from": "5604450353", "to": "5604450343", "length_m": 255.5617610935194, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777291.450266195, 5742460.677761552], [777264.0388678359, 5742331.5328435935]]}, "properties": {"id": "2124", "from": "4763088591", "to": "289884758", "length_m": 132.02194732590732, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777264.0388678359, 5742331.5328435935], [777291.450266195, 5742460.677761552]]}, "properties": {"id": "2125", "from": "289884758", "to": "4763088591", "length_m": 132.02194732590732, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773877.3955004404, 5776245.987854285], [773819.5142653503, 5776065.52349589]]}, "properties": {"id": "21257-21255-21253-21251-21249-21247-21245-21243-21241-21239", "from": "5604450343", "to": "5604450353", "length_m": 255.5617610935194, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773877.3955004404, 5776245.987854285], [774329.5429643721, 5776430.468617087]]}, "properties": {"id": "21258-21260-21262-21264-21266-21268-21270-21272-21274-21276-21278-21280-21282-21284-21286-21288-21290-21292-21294-21296-21298-21300-21302-21304-21306-21308-21310-21312-21314-21316-21318-21320", "from": "5604450343", "to": "5604450011", "length_m": 650.4917626936584, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777264.0388678359, 5742331.5328435935], [777289.6264239158, 5742188.024507132]]}, "properties": {"id": "2126", "from": "289884758", "to": "289884750", "length_m": 145.77162168416203, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777289.6264239158, 5742188.024507132], [777264.0388678359, 5742331.5328435935]]}, "properties": {"id": "2127", "from": "289884750", "to": "289884758", "length_m": 145.77162168416203, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777289.6264239158, 5742188.024507132], [777313.9865997536, 5742051.29286794]]}, "properties": {"id": "2128-2130-2132-2134", "from": "289884750", "to": "289884735", "length_m": 138.89937547650788, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774329.5429643721, 5776430.468617087], [773877.3955004404, 5776245.987854285]]}, "properties": {"id": "21321-21319-21317-21315-21313-21311-21309-21307-21305-21303-21301-21299-21297-21295-21293-21291-21289-21287-21285-21283-21281-21279-21277-21275-21273-21271-21269-21267-21265-21263-21261-21259", "from": "5604450011", "to": "5604450343", "length_m": 650.4917626936584, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789914.8359388472, 5751560.52042772], [789870.4747431411, 5752036.582087515]]}, "properties": {"id": "21336-21337-21338-21339-5847-5848-5849-5850-5851-5852-5853-5854-5855-5856-5857-5858-5859", "from": "270452461", "to": "270452291", "length_m": 505.4131517149917, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778062.4327195139, 5743551.317992263], [777876.4415432878, 5743591.752043481]]}, "properties": {"id": "21343-21341-57858-57856", "from": "289884889", "to": "289884816", "length_m": 258.83667634263526, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801728.4006744015, 5785587.904408142], [802842.6853687651, 5786182.744226347]]}, "properties": {"id": "21345", "from": "385128529", "to": "267115801", "length_m": 1263.1170869372713, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[802842.6853687651, 5786182.744226347], [803824.4709068425, 5786708.609813968]]}, "properties": {"id": "21346-21347", "from": "267115801", "to": "616948949", "length_m": 1113.7504104532934, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777313.9865997536, 5742051.29286794], [777289.6264239158, 5742188.024507132]]}, "properties": {"id": "2135-2133-2131-2129", "from": "289884735", "to": "289884750", "length_m": 138.89937547650788, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784981.6229587398, 5752517.286654734], [785224.2611061425, 5752471.23507119]]}, "properties": {"id": "2136", "from": "148800372", "to": "509915179", "length_m": 246.96967157796965, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785224.2611061425, 5752471.23507119], [784981.6229587398, 5752517.286654734]]}, "properties": {"id": "2137", "from": "509915179", "to": "148800372", "length_m": 246.96967157796965, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777285.1182658134, 5742468.719772455], [777294.6497786939, 5742473.091910347]]}, "properties": {"id": "2138-2139-2140-2141-2142", "from": "4763088618", "to": "4763088569", "length_m": 12.03572553530486, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749536.0800349453, 5836217.710487518], [749538.6351753252, 5836201.582524457]]}, "properties": {"id": "21397-21398-21399", "from": "363996470", "to": "363996473", "length_m": 17.092570461352494, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749538.6351753252, 5836201.582524457], [749511.5096118377, 5836198.444844263]]}, "properties": {"id": "21400-21401-21402-21403-21404", "from": "363996473", "to": "363996478", "length_m": 32.88196557354249, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749511.5096118377, 5836198.444844263], [749509.6621827424, 5836213.4184738565]]}, "properties": {"id": "21405-21406-21407", "from": "363996478", "to": "672690933", "length_m": 15.67952595783974, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749509.6621827424, 5836213.4184738565], [749536.0800349453, 5836217.710487518]]}, "properties": {"id": "21408-21409-21410-21411-21412-21396", "from": "672690933", "to": "363996470", "length_m": 31.90910892222685, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793715.6631217515, 5774166.796700915], [793763.7627360031, 5774092.5019260775]]}, "properties": {"id": "21413-21414-21415-21416-21417-21418-21419-21420-21421-21422-21423-21424", "from": "4708035144", "to": "318040020", "length_m": 96.17822945499647, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788709.0735785139, 5754294.815039228], [788200.6160130616, 5754394.84219371]]}, "properties": {"id": "21425-21427-21429", "from": "510174776", "to": "1658427356", "length_m": 518.4757154458525, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777294.6497786939, 5742473.091910347], [777298.1046711588, 5742466.29377007]]}, "properties": {"id": "2143-2144-2145-2146", "from": "4763088569", "to": "4763088614", "length_m": 8.093857646830374, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788200.6160130616, 5754394.84219371], [788709.0735785139, 5754294.815039228]]}, "properties": {"id": "21430-21428-21426", "from": "1658427356", "to": "510174776", "length_m": 518.4757154458525, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788200.6160130616, 5754394.84219371], [787498.9343798915, 5754524.048895891]]}, "properties": {"id": "21431-21433", "from": "1658427356", "to": "515915032", "length_m": 713.4971063698019, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787498.9343798915, 5754524.048895891], [788200.6160130616, 5754394.84219371]]}, "properties": {"id": "21434-21432", "from": "515915032", "to": "1658427356", "length_m": 713.4971063698019, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787498.9343798915, 5754524.048895891], [787091.5556547717, 5754602.14275065]]}, "properties": {"id": "21435", "from": "515915032", "to": "321710619", "length_m": 414.7964261713197, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787091.5556547717, 5754602.14275065], [787498.9343798915, 5754524.048895891]]}, "properties": {"id": "21436", "from": "321710619", "to": "515915032", "length_m": 414.7964261713197, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777298.1046711588, 5742466.29377007], [777291.450266195, 5742460.677761552]]}, "properties": {"id": "2147-2148-2149-2150", "from": "4763088614", "to": "4763088591", "length_m": 9.456059871228222, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790360.8121063283, 5754937.5128159], [790322.8617577101, 5754823.520503879]]}, "properties": {"id": "21471-21472", "from": "1580591389", "to": "513382359", "length_m": 120.14437562229114, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790322.8617577101, 5754823.520503879], [790318.097645988, 5754810.798818617]]}, "properties": {"id": "21473", "from": "513382359", "to": "1580591387", "length_m": 13.575406192337468, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790318.097645988, 5754810.798818617], [790313.5596894361, 5754795.901870971]]}, "properties": {"id": "21474", "from": "1580591387", "to": "3464604485", "length_m": 15.572799950090667, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790313.5596894361, 5754795.901870971], [790130.948267163, 5754053.106376537]]}, "properties": {"id": "21475-21476-21477-21478-21479-21480-21481-21482-21483", "from": "3464604485", "to": "6076622252", "length_m": 772.5645382434195, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790130.948267163, 5754053.106376537], [790132.6362569638, 5754042.086813057]]}, "properties": {"id": "21484", "from": "6076622252", "to": "6076622243", "length_m": 11.1480980015895, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790132.6362569638, 5754042.086813057], [790133.6085390514, 5754035.761061681]]}, "properties": {"id": "21485", "from": "6076622243", "to": "52493086", "length_m": 6.40003617110643, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790133.6085390514, 5754035.761061681], [790128.3869051913, 5753308.416164181]]}, "properties": {"id": "21486-21487-21488-21489-21490-21491-21492-21493", "from": "52493086", "to": "270452051", "length_m": 740.5343335315519, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838778.2521512299, 5806386.811154056], [838788.2839502892, 5806383.895227282]]}, "properties": {"id": "21495", "from": "320777910", "to": "250287977", "length_m": 10.446990986714614, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838788.2839502892, 5806383.895227282], [838778.2521512299, 5806386.811154056]]}, "properties": {"id": "21496", "from": "250287977", "to": "320777910", "length_m": 10.446990986714614, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762875.3488005808, 5763813.50816024], [762894.4121219954, 5763925.576423416]]}, "properties": {"id": "21497-21499", "from": "209025086", "to": "1852769522", "length_m": 113.7054899065642, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762894.4121219954, 5763925.576423416], [762875.3488005808, 5763813.50816024]]}, "properties": {"id": "21500-21498", "from": "1852769522", "to": "209025086", "length_m": 113.7054899065642, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762894.4121219954, 5763925.576423416], [762962.1701195902, 5764303.226149406]]}, "properties": {"id": "21501-7119-7121", "from": "1852769522", "to": "1852769489", "length_m": 383.6831925999286, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777291.450266195, 5742460.677761552], [777285.1182658134, 5742468.719772455]]}, "properties": {"id": "2151-2152-2153-2154-2155", "from": "4763088591", "to": "4763088618", "length_m": 11.661986876755751, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778392.2388314256, 5744568.305248721], [778533.9928525933, 5744541.228326616]]}, "properties": {"id": "21511-21513-21515", "from": "4763140984", "to": "289545976", "length_m": 145.29691080436663, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778533.9928525933, 5744541.228326616], [778392.2388314256, 5744568.305248721]]}, "properties": {"id": "21516-21514-21512", "from": "289545976", "to": "4763140984", "length_m": 145.29691080436663, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778533.9928525933, 5744541.228326616], [778708.4035837571, 5744504.41599503]]}, "properties": {"id": "21517-21519-21521", "from": "289545976", "to": "289545864", "length_m": 178.254240221823, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778708.4035837571, 5744504.41599503], [778533.9928525933, 5744541.228326616]]}, "properties": {"id": "21522-21520-21518", "from": "289545864", "to": "289545976", "length_m": 178.254240221823, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778606.2180631792, 5744840.029817846], [778618.5596598804, 5744894.390749958]]}, "properties": {"id": "21523", "from": "289545925", "to": "289545922", "length_m": 55.7442906868165, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778618.5596598804, 5744894.390749958], [778606.2180631792, 5744840.029817846]]}, "properties": {"id": "21524", "from": "289545922", "to": "289545925", "length_m": 55.7442906868165, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778618.5596598804, 5744894.390749958], [778642.1119046968, 5745006.052301213]]}, "properties": {"id": "21525", "from": "289545922", "to": "297395422", "length_m": 114.11840453210749, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778642.1119046968, 5745006.052301213], [778618.5596598804, 5744894.390749958]]}, "properties": {"id": "21526", "from": "297395422", "to": "289545922", "length_m": 114.11840453210749, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778642.1119046968, 5745006.052301213], [778708.989990205, 5745092.708888679]]}, "properties": {"id": "21527-21529", "from": "297395422", "to": "297395419", "length_m": 116.3318145471779, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778708.989990205, 5745092.708888679], [778642.1119046968, 5745006.052301213]]}, "properties": {"id": "21530-21528", "from": "297395419", "to": "297395422", "length_m": 116.3318145471779, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789909.1876454187, 5753255.231728278], [789888.417866103, 5753147.734078691]]}, "properties": {"id": "21531", "from": "5673066981", "to": "5673066980", "length_m": 109.48574512956579, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789888.417866103, 5753147.734078691], [789909.1876454187, 5753255.231728278]]}, "properties": {"id": "21532", "from": "5673066980", "to": "5673066981", "length_m": 109.48574512956579, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788586.4673790288, 5765671.564897807], [788216.9884942293, 5765253.739676239]]}, "properties": {"id": "21533-21534-21535", "from": "436942197", "to": "1270758517", "length_m": 557.8161206000942, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832842.3937314143, 5814920.455614146], [832861.5925249858, 5814916.888589293]]}, "properties": {"id": "21536", "from": "30918603", "to": "30918602", "length_m": 19.527348491219428, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835365.7110523591, 5807259.266851621], [835191.4372512235, 5807791.743052645]]}, "properties": {"id": "21537-21538-21539", "from": "75158541", "to": "75158825", "length_m": 560.3491480504949, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817725.7195116556, 5821645.997101726], [817673.1659560916, 5821691.753707917]]}, "properties": {"id": "21540-21541-21542-21543-21544-21545", "from": "303686094", "to": "1346779137", "length_m": 71.43967036903472, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750832.7573601408, 5836407.90218697], [750831.1505974124, 5836424.035361221]]}, "properties": {"id": "21546-21547-21548", "from": "363993774", "to": "672665697", "length_m": 16.90537631459071, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750831.1505974124, 5836424.035361221], [750834.602478113, 5836428.85178064]]}, "properties": {"id": "21549", "from": "672665697", "to": "363993762", "length_m": 5.925654060263465, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750834.602478113, 5836428.85178064], [750856.5929673741, 5836429.04151433]]}, "properties": {"id": "21550-21551-21552-21553", "from": "363993762", "to": "363993766", "length_m": 24.066437160274113, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750856.5929673741, 5836429.04151433], [750853.7968742773, 5836403.544162882]]}, "properties": {"id": "21554-21555-21556-21557-21558", "from": "363993766", "to": "363993770", "length_m": 29.620141517743395, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750853.7968742773, 5836403.544162882], [750836.15497348, 5836404.50024542]]}, "properties": {"id": "21559-21560-21561", "from": "363993770", "to": "363993773", "length_m": 18.58190304709467, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750836.15497348, 5836404.50024542], [750832.7573601408, 5836407.90218697]]}, "properties": {"id": "21562", "from": "363993773", "to": "363993774", "length_m": 4.808012326529193, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793779.6835774945, 5773783.631500782], [793723.7363470839, 5774004.999804096]]}, "properties": {"id": "21571-21572-21573", "from": "26756000", "to": "3996617765", "length_m": 228.39929060051563, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793723.7363470839, 5774004.999804096], [793705.7936013009, 5774082.72770648]]}, "properties": {"id": "21574-21575", "from": "3996617765", "to": "3996617764", "length_m": 79.77222889280762, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793814.2408981437, 5773749.549239832], [793903.4414557556, 5773006.604223182]]}, "properties": {"id": "21576-21577-21578-21579-21580-21581-2094-2095-2096-2097-2098-2099-2100-2101-12364-12365", "from": "26755994", "to": "263576234", "length_m": 785.9766115219254, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833467.3757881445, 5821257.1579564065], [833521.3153615682, 5821362.297354398]]}, "properties": {"id": "21582-21583-21584-21585-21586-21587-21588-21589-21590", "from": "2932437177", "to": "1534937817", "length_m": 129.6200479009981, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833648.1545986957, 5821632.985143606], [833521.3153615682, 5821362.297354398]]}, "properties": {"id": "21611-21612-21613-21614-21615-21616-21617-21618-21619-21620-21621-21622-21623", "from": "2894998239", "to": "1534937817", "length_m": 299.2929107057602, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833521.3153615682, 5821362.297354398], [833502.6933461423, 5821305.976741356]]}, "properties": {"id": "21624-21625-21626", "from": "1534937817", "to": "1534937622", "length_m": 59.322352602770614, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833502.6933461423, 5821305.976741356], [833467.2827370819, 5821196.27457022]]}, "properties": {"id": "21627", "from": "1534937622", "to": "584248057", "length_m": 115.27565888388861, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751221.2010755367, 5837458.652550371], [750865.3616278877, 5836743.280041555]]}, "properties": {"id": "21636-21637-21638-21639-21640-11480-28570-28571-28572-28573-28574-28575-28576", "from": "1140763112", "to": "5642242410", "length_m": 805.6173550851815, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789986.5149662865, 5766726.033635433], [789936.9518434461, 5766787.034494207]]}, "properties": {"id": "21650-21651-21652-21653-21654", "from": "331122806", "to": "421193010", "length_m": 78.83301941712477, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789936.9518434461, 5766787.034494207], [789911.5975650961, 5767147.636200527]]}, "properties": {"id": "21655-21656-21657-21658-21659-21660-21661-21662-21663-21664-21665-21666-21667-21668", "from": "421193010", "to": "421192978", "length_m": 384.1413627362585, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788982.8484926044, 5751324.539420633], [789200.9942236787, 5751280.6969353845]]}, "properties": {"id": "2166-2168", "from": "508067786", "to": "508067788", "length_m": 223.294791403884, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777108.4886610645, 5762057.561197714], [777117.4512386613, 5762146.277969117]]}, "properties": {"id": "21670-21672", "from": "1851048882", "to": "1851048876", "length_m": 89.4313382494926, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777117.4512386613, 5762146.277969117], [777108.4886610645, 5762057.561197714]]}, "properties": {"id": "21673-21671", "from": "1851048876", "to": "1851048882", "length_m": 89.4313382494926, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777117.4512386613, 5762146.277969117], [777144.5577633188, 5762461.283205491]]}, "properties": {"id": "21674-21676-21678-21680-21682-21684", "from": "1851048876", "to": "1851048862", "length_m": 320.5850364815982, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777144.5577633188, 5762461.283205491], [777117.4512386613, 5762146.277969117]]}, "properties": {"id": "21685-21683-21681-21679-21677-21675", "from": "1851048862", "to": "1851048876", "length_m": 320.5850364815982, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789200.9942236787, 5751280.6969353845], [788982.8484926044, 5751324.539420633]]}, "properties": {"id": "2169-2167", "from": "508067788", "to": "508067786", "length_m": 223.294791403884, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777264.2519150758, 5762191.522939254], [777117.4512386613, 5762146.277969117]]}, "properties": {"id": "21690-21692-21694", "from": "1851048875", "to": "1851048876", "length_m": 154.53330525380625, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777117.4512386613, 5762146.277969117], [777264.2519150758, 5762191.522939254]]}, "properties": {"id": "21695-21693-21691", "from": "1851048876", "to": "1851048875", "length_m": 154.53330525380625, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777429.9516383185, 5742427.805995234], [777289.6264239158, 5742188.024507132]]}, "properties": {"id": "2170-2172-2174-57357-57355", "from": "4763088594", "to": "289884750", "length_m": 356.5819921180452, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777048.7491491691, 5762044.060262882], [777108.4886610645, 5762057.561197714]]}, "properties": {"id": "21700", "from": "1851048883", "to": "1851048882", "length_m": 61.24609787071222, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777108.4886610645, 5762057.561197714], [777048.7491491691, 5762044.060262882]]}, "properties": {"id": "21701", "from": "1851048882", "to": "1851048883", "length_m": 61.24609787071222, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777108.4886610645, 5762057.561197714], [777219.9225405441, 5762082.748252223]]}, "properties": {"id": "21702", "from": "1851048882", "to": "1851048880", "length_m": 114.24489980946517, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777219.9225405441, 5762082.748252223], [777108.4886610645, 5762057.561197714]]}, "properties": {"id": "21703", "from": "1851048880", "to": "1851048882", "length_m": 114.24489980946517, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777406.4097715829, 5762382.490035468], [777319.1223263047, 5762520.145554707]]}, "properties": {"id": "21706-21708-21710-21712-21714-21716", "from": "1851048871", "to": "1851048861", "length_m": 181.157162855258, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777319.1223263047, 5762520.145554707], [777406.4097715829, 5762382.490035468]]}, "properties": {"id": "21717-21715-21713-21711-21709-21707", "from": "1851048861", "to": "1851048871", "length_m": 181.157162855258, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789523.6842053789, 5766570.168198056], [789528.8667102167, 5766553.211802248]]}, "properties": {"id": "21726", "from": "3332965297", "to": "3332965299", "length_m": 17.73069981160195, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833043.8963856108, 5819768.713972667], [833052.4302347557, 5819543.901255373]]}, "properties": {"id": "21727-21728-21729-21730-21731-21732", "from": "255031295", "to": "255031251", "length_m": 225.25227157121472, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789519.4158031279, 5766550.359705338], [789514.2420407564, 5766567.315781208]]}, "properties": {"id": "21733", "from": "266584658", "to": "266584657", "length_m": 17.727840448581244, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788085.3820849643, 5750819.598203493], [788261.1185818987, 5750786.598119211]]}, "properties": {"id": "2176-2178-2180", "from": "509913981", "to": "509913980", "length_m": 178.80805885000254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760809.8214768792, 5744227.066826438], [760293.818453913, 5744506.689705764]]}, "properties": {"id": "21770-21772-21774-21776-21778-21780-21782-21784", "from": "534675465", "to": "534674871", "length_m": 598.0697056395198, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760293.818453913, 5744506.689705764], [760809.8214768792, 5744227.066826438]]}, "properties": {"id": "21785-21783-21781-21779-21777-21775-21773-21771", "from": "534674871", "to": "534675465", "length_m": 598.0697056395198, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760293.818453913, 5744506.689705764], [760031.0968250227, 5744509.907867545]]}, "properties": {"id": "21786-21788-21790", "from": "534674871", "to": "534674972", "length_m": 262.80562449501406, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760031.0968250227, 5744509.907867545], [760293.818453913, 5744506.689705764]]}, "properties": {"id": "21791-21789-21787", "from": "534674972", "to": "534674871", "length_m": 262.80562449501406, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777951.1420564168, 5744250.793857409], [777995.1204020022, 5744181.261687966]]}, "properties": {"id": "21792-21794-21796-21798", "from": "294988801", "to": "289545793", "length_m": 90.55207057581188, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777995.1204020022, 5744181.261687966], [777951.1420564168, 5744250.793857409]]}, "properties": {"id": "21799-21797-21795-21793", "from": "289545793", "to": "294988801", "length_m": 90.55207057581188, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777995.1204020022, 5744181.261687966], [778031.9484822308, 5744066.034433652]]}, "properties": {"id": "21800", "from": "289545793", "to": "289884979", "length_m": 120.96953192458388, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778031.9484822308, 5744066.034433652], [777995.1204020022, 5744181.261687966]]}, "properties": {"id": "21801", "from": "289884979", "to": "289545793", "length_m": 120.96953192458388, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778031.9484822308, 5744066.034433652], [778059.5947528831, 5743984.73055549]]}, "properties": {"id": "21802", "from": "289884979", "to": "289884963", "length_m": 85.8757061029203, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778059.5947528831, 5743984.73055549], [778031.9484822308, 5744066.034433652]]}, "properties": {"id": "21803", "from": "289884963", "to": "289884979", "length_m": 85.8757061029203, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831832.2139336081, 5808323.875945105], [831808.3753978787, 5808364.411150107]]}, "properties": {"id": "21806-21807-21808-21809-21810-21811-21812-21813-21814", "from": "75155397", "to": "5642366127", "length_m": 72.72784904043908, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788261.1185818987, 5750786.598119211], [788085.3820849643, 5750819.598203493]]}, "properties": {"id": "2181-2179-2177", "from": "509913980", "to": "509913981", "length_m": 178.80805885000254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831808.3753978787, 5808364.411150107], [831836.2134340403, 5808361.963651387]]}, "properties": {"id": "21815-21816-21817-21818", "from": "5642366127", "to": "5642366126", "length_m": 29.768274231582623, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831836.2134340403, 5808361.963651387], [831839.3428482771, 5808358.634989802]]}, "properties": {"id": "21819", "from": "5642366126", "to": "36045760", "length_m": 4.568722095664709, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777328.7008586978, 5742691.812941311], [777326.6936958662, 5742683.047232963]]}, "properties": {"id": "2182-2183-2184-2185-2186-2187", "from": "4763088581", "to": "4763100425", "length_m": 10.502655660924606, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831839.3428482771, 5808358.634989802], [831832.2139336081, 5808323.875945105]]}, "properties": {"id": "21820-21821-21822-21804-21805", "from": "36045760", "to": "75155397", "length_m": 40.0545753879054, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796445.2228348127, 5829380.872044306], [796997.6696074025, 5828854.3983194]]}, "properties": {"id": "21828-21829-21830-21831-21832-21833-21834-21835-21836-21837-21838-21839-21840", "from": "317107819", "to": "175092822", "length_m": 775.8008231542907, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796997.6696074025, 5828854.3983194], [797128.4543142552, 5828356.459626958]]}, "properties": {"id": "21841-21842-21843-21844-21845", "from": "175092822", "to": "317107748", "length_m": 519.1480512894184, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797128.4543142552, 5828356.459626958], [797107.2810181924, 5827788.483955244]]}, "properties": {"id": "21846-21847-21848-21849-21850-5231-5232-5233-22316", "from": "317107748", "to": "317107653", "length_m": 570.1724901594619, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778234.6921294122, 5743946.359055776], [778187.9660701097, 5743933.050046112]]}, "properties": {"id": "21851-21853", "from": "1851185093", "to": "289884852", "length_m": 48.618620322933346, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778187.9660701097, 5743933.050046112], [778234.6921294122, 5743946.359055776]]}, "properties": {"id": "21854-21852", "from": "289884852", "to": "1851185093", "length_m": 48.618620322933346, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778187.9660701097, 5743933.050046112], [777907.4780612418, 5743838.13679686]]}, "properties": {"id": "21855", "from": "289884852", "to": "4763289557", "length_m": 296.111545648827, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777907.4780612418, 5743838.13679686], [778187.9660701097, 5743933.050046112]]}, "properties": {"id": "21856", "from": "4763289557", "to": "289884852", "length_m": 296.111545648827, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797083.3804257602, 5828410.958707405], [796842.1762693947, 5829028.932560701]]}, "properties": {"id": "21859-21860-21861-21862-21863-21864-21865-21866", "from": "175092565", "to": "175092986", "length_m": 672.0128036220508, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796842.1762693947, 5829028.932560701], [796368.3652173297, 5829381.125997312]]}, "properties": {"id": "21867-21868-21869-21870-21871-21872-21873-21874-21875", "from": "175092986", "to": "35095642", "length_m": 596.180362752838, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777326.6936958662, 5742683.047232963], [777320.6447480108, 5742684.344940602]]}, "properties": {"id": "2188-2189-2190", "from": "4763100425", "to": "4763088568", "length_m": 6.523331273289268, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790260.6886221857, 5774345.412954718], [789671.299007202, 5774086.610383697]]}, "properties": {"id": "219-220-54623-54624-54625-54626", "from": "318028155", "to": "318028159", "length_m": 646.8127469584549, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777320.6447480108, 5742684.344940602], [777320.1786013027, 5742691.362285223]]}, "properties": {"id": "2191-2192-2193-2194", "from": "4763088568", "to": "4763088570", "length_m": 7.604073004307365, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777320.1786013027, 5742691.362285223], [777328.7008586978, 5742691.812941311]]}, "properties": {"id": "2195-2196-2197-2198-2199", "from": "4763088570", "to": "4763088581", "length_m": 9.70462315663121, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829471.0349137184, 5814632.697878911], [829473.390112578, 5814676.988605773]]}, "properties": {"id": "21977", "from": "1764268289", "to": "1764268339", "length_m": 44.35330256528676, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770606.9886794351, 5739073.677119257], [770707.373388202, 5738556.123265072]]}, "properties": {"id": "21990-21988-43754", "from": "312996418", "to": "831201852", "length_m": 539.7714049234069, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770606.9886794351, 5739073.677119257], [770515.063239076, 5739373.785364569]]}, "properties": {"id": "21991-21993-21995", "from": "312996418", "to": "831201677", "length_m": 315.76239417344163, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770515.063239076, 5739373.785364569], [770606.9886794351, 5739073.677119257]]}, "properties": {"id": "21996-21994-21992", "from": "831201677", "to": "312996418", "length_m": 315.76239417344163, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770515.063239076, 5739373.785364569], [770368.3251073878, 5739661.024100416]]}, "properties": {"id": "21997-21999", "from": "831201677", "to": "831201976", "length_m": 322.65540011635073, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770368.3251073878, 5739661.024100416], [770515.063239076, 5739373.785364569]]}, "properties": {"id": "22000-21998", "from": "831201976", "to": "831201677", "length_m": 322.65540011635073, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770368.3251073878, 5739661.024100416], [770271.7081846476, 5739833.9051556755]]}, "properties": {"id": "22001-22003", "from": "831201976", "to": "831201962", "length_m": 198.08066464824404, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770271.7081846476, 5739833.9051556755], [770368.3251073878, 5739661.024100416]]}, "properties": {"id": "22004-22002", "from": "831201962", "to": "831201976", "length_m": 198.08066464824404, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770271.7081846476, 5739833.9051556755], [770236.753400143, 5739916.001036378]]}, "properties": {"id": "22005-22007", "from": "831201962", "to": "371469327", "length_m": 89.59847261125287, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770236.753400143, 5739916.001036378], [770271.7081846476, 5739833.9051556755]]}, "properties": {"id": "22008-22006", "from": "371469327", "to": "831201962", "length_m": 89.59847261125287, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770236.753400143, 5739916.001036378], [770457.4236053466, 5740342.43425895]]}, "properties": {"id": "22009-22011-22013-22015", "from": "371469327", "to": "371469354", "length_m": 481.8050730098086, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770457.4236053466, 5740342.43425895], [770236.753400143, 5739916.001036378]]}, "properties": {"id": "22016-22014-22012-22010", "from": "371469354", "to": "371469327", "length_m": 481.8050730098086, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783896.9249654983, 5780492.493044929], [783128.2125461942, 5781344.609063601]]}, "properties": {"id": "22026-22024-22022-22020-22018-22052-42683-42681", "from": "318039525", "to": "60303861", "length_m": 1147.6637183168166, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765653.7230782392, 5737609.12763098], [765571.665064083, 5737847.479938763]]}, "properties": {"id": "22049", "from": "831201612", "to": "524145121", "length_m": 252.08201126924942, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765571.665064083, 5737847.479938763], [765653.7230782392, 5737609.12763098]]}, "properties": {"id": "22050", "from": "524145121", "to": "831201612", "length_m": 252.08201126924942, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767715.8620476086, 5738284.883062502], [767652.1211903878, 5738193.222395853]]}, "properties": {"id": "22053-22055", "from": "524151537", "to": "524151559", "length_m": 117.76654549333439, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767652.1211903878, 5738193.222395853], [767715.8620476086, 5738284.883062502]]}, "properties": {"id": "22056-22054", "from": "524151559", "to": "524151537", "length_m": 117.76654549333439, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767652.1211903878, 5738193.222395853], [767655.7109572659, 5737964.149962402]]}, "properties": {"id": "22057-22059-22061", "from": "524151559", "to": "524151100", "length_m": 240.97302915655445, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767655.7109572659, 5737964.149962402], [767652.1211903878, 5738193.222395853]]}, "properties": {"id": "22062-22060-22058", "from": "524151100", "to": "524151559", "length_m": 240.97302915655445, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767655.7109572659, 5737964.149962402], [767557.5235520978, 5737824.188519207]]}, "properties": {"id": "22063-22065-22067-22069-22071", "from": "524151100", "to": "524150941", "length_m": 190.50353000037006, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767557.5235520978, 5737824.188519207], [767655.7109572659, 5737964.149962402]]}, "properties": {"id": "22072-22070-22068-22066-22064", "from": "524150941", "to": "524151100", "length_m": 190.50353000037006, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767557.5235520978, 5737824.188519207], [767513.420775737, 5737779.431412622]]}, "properties": {"id": "22073-22075-22077", "from": "524150941", "to": "524150774", "length_m": 68.34277197055087, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767513.420775737, 5737779.431412622], [767557.5235520978, 5737824.188519207]]}, "properties": {"id": "22078-22076-22074", "from": "524150774", "to": "524150941", "length_m": 68.34277197055087, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810312.9293883025, 5822801.49002729], [810795.5951292561, 5822933.390369162]]}, "properties": {"id": "22080-22081-22082-22083-22084-22085-22086-22087-22088-22089-22090-22091", "from": "716680041", "to": "716680047", "length_m": 503.6061676755569, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784534.0876722797, 5749638.55158832], [785083.964851251, 5749037.404170029]]}, "properties": {"id": "2209-2207-2205-2203-2201-10297-10295-10293-10291-10289-10287-10285-10283", "from": "509914701", "to": "976340776", "length_m": 924.9206816194653, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810795.5951292561, 5822933.390369162], [811439.5372305899, 5823072.241565942]]}, "properties": {"id": "22092-22093-22094-22095-22096-22097-22098-22099-22100-22101-22102-22103-22104-22105-22106", "from": "716680047", "to": "473516810", "length_m": 664.8902851973136, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787788.2044686934, 5751433.092778095], [787783.4296242673, 5751407.222505755]]}, "properties": {"id": "221-222", "from": "848692999", "to": "848692895", "length_m": 26.439655849061236, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777298.1046711588, 5742466.29377007], [777423.2387233003, 5742434.938882189]]}, "properties": {"id": "2210", "from": "4763088614", "to": "4763088592", "length_m": 129.00255794060675, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[811439.5372305899, 5823072.241565942], [812281.6021056321, 5822960.325087001]]}, "properties": {"id": "22107-22108-22109-22110-22111-22112-22113-22114-22115", "from": "473516810", "to": "59961459", "length_m": 850.3001634232897, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777423.2387233003, 5742434.938882189], [777298.1046711588, 5742466.29377007]]}, "properties": {"id": "2211", "from": "4763088592", "to": "4763088614", "length_m": 129.00255794060675, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812281.6021056321, 5822960.325087001], [813043.2350049758, 5822836.10958661]]}, "properties": {"id": "22116", "from": "59961459", "to": "1024308084", "length_m": 771.6956397099574, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[813043.2350049758, 5822836.10958661], [814017.234043263, 5822674.698053174]]}, "properties": {"id": "22117-22118", "from": "1024308084", "to": "35090937", "length_m": 987.2830642380363, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[813142.2354326653, 5792089.338475131], [812770.3671407714, 5791685.338137121]]}, "properties": {"id": "2212-2213-2214-2215-2216-2217-2218-2219-2220-2221-2222-2223-1998-1999-2000-2001-2002-2003-2004-2005-2006-2007", "from": "351095362", "to": "351094967", "length_m": 595.6201087968266, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771290.6590676457, 5739709.870396704], [771236.330915794, 5739419.780898952]]}, "properties": {"id": "22137", "from": "527904275", "to": "831201768", "length_m": 295.132961080452, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771236.330915794, 5739419.780898952], [771290.6590676457, 5739709.870396704]]}, "properties": {"id": "22138", "from": "831201768", "to": "527904275", "length_m": 295.132961080452, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771236.330915794, 5739419.780898952], [771177.1397268486, 5739119.898655685]]}, "properties": {"id": "22139-22141-22143", "from": "831201768", "to": "524155270", "length_m": 305.85004913328964, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771177.1397268486, 5739119.898655685], [771236.330915794, 5739419.780898952]]}, "properties": {"id": "22144-22142-22140", "from": "524155270", "to": "831201768", "length_m": 305.85004913328964, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789595.932101012, 5752138.030794783], [789522.1228303919, 5752429.5449459525]]}, "properties": {"id": "22145-22146-22147-22148", "from": "516044638", "to": "516044749", "length_m": 303.95172903624217, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789522.1228303919, 5752429.5449459525], [789537.5887423252, 5752523.829405893]]}, "properties": {"id": "22149", "from": "516044749", "to": "516044791", "length_m": 95.5445121932498, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789537.5887423252, 5752523.829405893], [789530.1842204346, 5752616.834068659]]}, "properties": {"id": "22150-22151-22152-22153-22154-22155", "from": "516044791", "to": "516044865", "length_m": 93.99896537616041, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789530.1842204346, 5752616.834068659], [789473.7517067334, 5752616.680789181]]}, "properties": {"id": "22156", "from": "516044865", "to": "516045347", "length_m": 56.43272169948421, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789473.7517067334, 5752616.680789181], [789530.1842204346, 5752616.834068659]]}, "properties": {"id": "22157", "from": "516045347", "to": "516044865", "length_m": 56.43272169948421, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792447.3505685271, 5765766.858678045], [792355.0069310784, 5765267.303765255]]}, "properties": {"id": "22159-22160-22161-22162-22163", "from": "291485820", "to": "3546176175", "length_m": 508.06814212600443, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789522.1228303919, 5752429.5449459525], [789536.3236640837, 5752427.601489256]]}, "properties": {"id": "22164", "from": "516044749", "to": "516044207", "length_m": 14.333202755733113, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789536.3236640837, 5752427.601489256], [789522.1228303919, 5752429.5449459525]]}, "properties": {"id": "22165", "from": "516044207", "to": "516044749", "length_m": 14.333202755733113, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832247.8926528275, 5802560.817248304], [831816.7023443559, 5802152.1699978225]]}, "properties": {"id": "22168-22169-22170-22171-22172-22173-22174-22175-22176-22177-22178-22179", "from": "29320573", "to": "293317665", "length_m": 613.0220463409584, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831816.7023443559, 5802152.1699978225], [831277.0226498961, 5802084.15093804]]}, "properties": {"id": "22180-22181-22182-22183-22184-22185", "from": "293317665", "to": "293346166", "length_m": 545.7374260612753, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831277.0226498961, 5802084.15093804], [830428.1771800412, 5802017.633454764]]}, "properties": {"id": "22186-22187-21494-59270", "from": "293346166", "to": "293346218", "length_m": 851.4641940313693, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792339.8485761558, 5765268.617744205], [792435.7202453383, 5765768.756724772]]}, "properties": {"id": "22188-22189-22190-22191", "from": "2948697188", "to": "317913096", "length_m": 509.3026992190272, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789530.1842204346, 5752616.834068659], [789512.9851538225, 5752708.21182018]]}, "properties": {"id": "22193", "from": "516044865", "to": "516045368", "length_m": 92.98226379068576, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789512.9851538225, 5752708.21182018], [789530.1842204346, 5752616.834068659]]}, "properties": {"id": "22194", "from": "516045368", "to": "516044865", "length_m": 92.98226379068576, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789512.9851538225, 5752708.21182018], [789496.0748766725, 5752783.496535482]]}, "properties": {"id": "22195", "from": "516045368", "to": "516045489", "length_m": 77.16051997003557, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789496.0748766725, 5752783.496535482], [789512.9851538225, 5752708.21182018]]}, "properties": {"id": "22196", "from": "516045489", "to": "516045368", "length_m": 77.16051997003557, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789771.3173239386, 5752095.709917639], [789752.7671478903, 5752000.936266285]]}, "properties": {"id": "22197", "from": "516044061", "to": "516044512", "length_m": 96.57201462792065, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789752.7671478903, 5752000.936266285], [789771.3173239386, 5752095.709917639]]}, "properties": {"id": "22198", "from": "516044512", "to": "516044061", "length_m": 96.57201462792065, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789752.7671478903, 5752000.936266285], [789602.7081683781, 5751950.042001799]]}, "properties": {"id": "22199-22201-22203", "from": "516044512", "to": "516044477", "length_m": 243.04983659512658, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789602.7081683781, 5751950.042001799], [789752.7671478903, 5752000.936266285]]}, "properties": {"id": "22204-22202-22200", "from": "516044477", "to": "516044512", "length_m": 243.04983659512658, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789530.1842204346, 5752616.834068659], [789536.3236640837, 5752427.601489256]]}, "properties": {"id": "22206-22207-22208-22209-22210-22211-22212-22213-22214-22215-22216-22217", "from": "516044865", "to": "516044207", "length_m": 194.83915999720458, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789536.3236640837, 5752427.601489256], [789595.932101012, 5752138.030794783]]}, "properties": {"id": "22218-22219-22220-22221-22222-22223-22224", "from": "516044207", "to": "516044638", "length_m": 298.25263007885707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789752.7671478903, 5752000.936266285], [789595.932101012, 5752138.030794783]]}, "properties": {"id": "22229-22231-22233", "from": "516044512", "to": "516044638", "length_m": 222.57055050641623, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789595.932101012, 5752138.030794783], [789752.7671478903, 5752000.936266285]]}, "properties": {"id": "22234-22232-22230", "from": "516044638", "to": "516044512", "length_m": 222.57055050641623, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820469.7039475632, 5819877.122693767], [821005.8030322031, 5819358.3654812705]]}, "properties": {"id": "22235-22236-22237", "from": "1412789226", "to": "1593124107", "length_m": 746.0032801318199, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[821005.8030322031, 5819358.3654812705], [821414.5305703573, 5818960.997729426]]}, "properties": {"id": "22238-22239-22240-22241-22242-22243", "from": "1593124107", "to": "786578419", "length_m": 570.1373713255152, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787930.6553928191, 5749968.547393576], [787960.8440369236, 5749916.443185583]]}, "properties": {"id": "2224-2226", "from": "509914490", "to": "509914491", "length_m": 60.6789338048139, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[823933.7060203659, 5817034.608184316], [822630.8794209249, 5817932.580765789]]}, "properties": {"id": "22246-22247-22248-22249-22250-22251-22252-22253-22254-22255-22256-22257", "from": "1412789220", "to": "36715542", "length_m": 1591.2511411675366, "freespeed_mps": 25.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787960.8440369236, 5749916.443185583], [787930.6553928191, 5749968.547393576]]}, "properties": {"id": "2227-2225", "from": "509914491", "to": "509914490", "length_m": 60.6789338048139, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835252.6913528542, 5808307.499622606], [835312.6546850035, 5807884.802945809]]}, "properties": {"id": "22270-22271-22272-22273", "from": "75156957", "to": "75157208", "length_m": 427.1424276951548, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835312.6546850035, 5807884.802945809], [835307.821926892, 5807842.045648806]]}, "properties": {"id": "22274-22275", "from": "75157208", "to": "75157210", "length_m": 44.02551235962291, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[822630.8794209249, 5817932.580765789], [822655.6018970057, 5817963.664423859]]}, "properties": {"id": "22276", "from": "36715542", "to": "1412789222", "length_m": 39.71642744287054, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[822655.6018970057, 5817963.664423859], [822630.8794209249, 5817932.580765789]]}, "properties": {"id": "22277", "from": "1412789222", "to": "36715542", "length_m": 39.71642744287054, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791605.9412443741, 5761360.497098653], [791837.838559542, 5762586.942940703]]}, "properties": {"id": "22286-22287-22288-22289-22290-51093-51094-51095-51096-51097", "from": "270450517", "to": "1017986072", "length_m": 1247.9926813949965, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789660.8944081408, 5752214.899859267], [789805.8516980682, 5752283.504347661]]}, "properties": {"id": "22291-22293", "from": "516044108", "to": "516044252", "length_m": 223.7258958865994, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789805.8516980682, 5752283.504347661], [789660.8944081408, 5752214.899859267]]}, "properties": {"id": "22294-22292", "from": "516044252", "to": "516044108", "length_m": 223.7258958865994, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789805.8516980682, 5752283.504347661], [789623.1980375998, 5752410.011843351]]}, "properties": {"id": "22295-22297", "from": "516044252", "to": "516044128", "length_m": 295.6985121118838, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789623.1980375998, 5752410.011843351], [789805.8516980682, 5752283.504347661]]}, "properties": {"id": "22298-22296", "from": "516044128", "to": "516044252", "length_m": 295.6985121118838, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789623.1980375998, 5752410.011843351], [789536.3236640837, 5752427.601489256]]}, "properties": {"id": "22299", "from": "516044128", "to": "516044207", "length_m": 88.63719525988745, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789536.3236640837, 5752427.601489256], [789623.1980375998, 5752410.011843351]]}, "properties": {"id": "22300", "from": "516044207", "to": "516044128", "length_m": 88.63719525988745, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789805.8516980682, 5752283.504347661], [789736.2689105915, 5752296.685007404]]}, "properties": {"id": "22301", "from": "516044252", "to": "516044281", "length_m": 70.82015311921288, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789736.2689105915, 5752296.685007404], [789805.8516980682, 5752283.504347661]]}, "properties": {"id": "22302", "from": "516044281", "to": "516044252", "length_m": 70.82015311921288, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789896.495129361, 5752076.818577846], [789880.4955823782, 5752080.09442991]]}, "properties": {"id": "22303", "from": "845902267", "to": "516044030", "length_m": 16.331463773259728, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789880.4955823782, 5752080.09442991], [789896.495129361, 5752076.818577846]]}, "properties": {"id": "22304", "from": "516044030", "to": "845902267", "length_m": 16.331463773259728, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835192.5650532093, 5807857.212934155], [835193.1039661735, 5807884.255725236]]}, "properties": {"id": "22305", "from": "75156602", "to": "298326673", "length_m": 27.04816033712427, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835193.1039661735, 5807884.255725236], [835194.4008013313, 5807902.85015304]]}, "properties": {"id": "22306", "from": "298326673", "to": "75156941", "length_m": 18.63959566983661, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796368.3652173297, 5829381.125997312], [795512.5371962704, 5829791.410797286]]}, "properties": {"id": "22307-53333-53334-53335-53336-53337-53338", "from": "35095642", "to": "317107859", "length_m": 951.5239057698238, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797929.8730653678, 5826191.059874679], [797561.2429809852, 5826683.119214311]]}, "properties": {"id": "22314-22315-22327", "from": "317107519", "to": "35094589", "length_m": 619.3898830131678, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797107.2810181924, 5827788.483955244], [797298.9785937322, 5827255.941447407]]}, "properties": {"id": "22317-22318-22319-22320-22321", "from": "317107653", "to": "317107566", "length_m": 571.123436274379, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785253.3532738124, 5752588.124845676], [785391.5348547915, 5752635.383966904]]}, "properties": {"id": "2232-2234-2236-2238-2240-2242-2244", "from": "509915231", "to": "509915200", "length_m": 153.98104988065052, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797298.9785937322, 5827255.941447407], [797658.5397268233, 5826581.057050461]]}, "properties": {"id": "22322", "from": "317107566", "to": "35098389", "length_m": 764.691544990629, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788888.0539637578, 5773356.900971197], [788920.194973916, 5773350.434048378]]}, "properties": {"id": "22323", "from": "318835563", "to": "428721717", "length_m": 32.78514332122004, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788920.194973916, 5773350.434048378], [789352.8806934556, 5773265.011595374]]}, "properties": {"id": "22324-22325-22326", "from": "428721717", "to": "3431090321", "length_m": 441.0393426131855, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788886.3069836989, 5773346.282645225], [788734.5724009373, 5773375.662367054]]}, "properties": {"id": "22328-20737-20738", "from": "3431090312", "to": "3431090329", "length_m": 154.5605931360967, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797658.5397268233, 5826581.057050461], [798061.6017546318, 5826131.950308155]]}, "properties": {"id": "22329-5390-5391-5392", "from": "35098389", "to": "317107499", "length_m": 610.7827488701084, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832500.0660126747, 5812949.53536205], [832503.6691207977, 5812967.057781776]]}, "properties": {"id": "22330", "from": "35082902", "to": "35084638", "length_m": 17.889035202742743, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832503.6691207977, 5812967.057781776], [832517.6670087862, 5812963.767954101]]}, "properties": {"id": "22331", "from": "35084638", "to": "243827557", "length_m": 14.379284818770266, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832514.6336607703, 5812946.367058255], [832500.0660126747, 5812949.53536205]]}, "properties": {"id": "22332", "from": "243827556", "to": "35082902", "length_m": 14.908203075408144, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835293.071246315, 5820284.209438629], [835187.444520067, 5820271.123516801]]}, "properties": {"id": "22346-22347-22348-22349-22350-22351-22352-22353-22354-22355-22356-22357-22358", "from": "303683164", "to": "5154564392", "length_m": 108.32918478296511, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832589.9063415993, 5804077.620864481], [832693.0824749942, 5804540.832543845]]}, "properties": {"id": "22363-22364-22365-22366-22367-22368-22369-22370-22371-22372-22373-22374", "from": "593267455", "to": "254255694", "length_m": 479.7905222592338, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826228.5769566986, 5800198.084696901], [826291.2937965405, 5800785.3158637155]]}, "properties": {"id": "22378-22379-22380-22381-22382-22383-22384-22385-22386", "from": "125289616", "to": "125290846", "length_m": 606.3120504901326, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826291.2937965405, 5800785.3158637155], [826838.1451004129, 5801145.120304722]]}, "properties": {"id": "22387-22388-59053-58866-58867-58868-58869-58870-58871-58872-58873-58874", "from": "125290846", "to": "125287423", "length_m": 674.3977029018638, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769961.1763791263, 5777260.526839486], [770310.6387957841, 5776588.368153292]]}, "properties": {"id": "22389-22391-22393-22395-22397", "from": "5604390114", "to": "5604390102", "length_m": 757.6768304049028, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770310.6387957841, 5776588.368153292], [769961.1763791263, 5777260.526839486]]}, "properties": {"id": "22398-22396-22394-22392-22390", "from": "5604390102", "to": "5604390114", "length_m": 757.6768304049028, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770310.6387957841, 5776588.368153292], [770545.0236909066, 5776145.86336301]]}, "properties": {"id": "22399-22401", "from": "5604390102", "to": "5604390100", "length_m": 500.74847130502303, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770545.0236909066, 5776145.86336301], [770310.6387957841, 5776588.368153292]]}, "properties": {"id": "22402-22400", "from": "5604390100", "to": "5604390102", "length_m": 500.74847130502303, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770545.0236909066, 5776145.86336301], [770874.754919041, 5775527.641318258]]}, "properties": {"id": "22403-22405-22407-22409", "from": "5604390100", "to": "5604390096", "length_m": 700.7001800947132, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770874.754919041, 5775527.641318258], [770545.0236909066, 5776145.86336301]]}, "properties": {"id": "22410-22408-22406-22404", "from": "5604390096", "to": "5604390100", "length_m": 700.7001800947132, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770874.754919041, 5775527.641318258], [771403.313912554, 5774999.855845807]]}, "properties": {"id": "22411-22413-22415-22417-22419-22421-22423-22425-22427", "from": "5604390096", "to": "5604390087", "length_m": 834.6690817398659, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771403.313912554, 5774999.855845807], [770874.754919041, 5775527.641318258]]}, "properties": {"id": "22428-22426-22424-22422-22420-22418-22416-22414-22412", "from": "5604390087", "to": "5604390096", "length_m": 834.6690817398659, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788752.9302106608, 5752085.095711997], [788761.8134376889, 5752060.815141858]]}, "properties": {"id": "22429", "from": "845902474", "to": "512197156", "length_m": 25.854551061989184, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785391.5348547915, 5752635.383966904], [785253.3532738124, 5752588.124845676]]}, "properties": {"id": "2245-2243-2241-2239-2237-2235-2233", "from": "509915200", "to": "509915231", "length_m": 153.98104988065052, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788271.4134061051, 5751412.688302575], [788122.8842585437, 5751363.7810232015]]}, "properties": {"id": "2247-2249-2251", "from": "509914426", "to": "509914442", "length_m": 156.60563177849733, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798965.9791184206, 5769106.122142508], [799610.0375305526, 5768859.602905247]]}, "properties": {"id": "22494-22495", "from": "3598503098", "to": "277046788(2)", "length_m": 683.1943052468824, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799610.0375305526, 5768859.602905247], [800175.3445525952, 5768648.035756687]]}, "properties": {"id": "22496", "from": "277046788(2)", "to": "5008486477", "length_m": 610.0298387195204, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800175.3445525952, 5768648.035756687], [801107.2504512535, 5768321.969535283]]}, "properties": {"id": "22497-22498-22499-22500", "from": "5008486477", "to": "560659214", "length_m": 987.3598917150931, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801107.2504512535, 5768321.969535283], [802658.0023872496, 5767801.394946288]]}, "properties": {"id": "22501-22502-22503-22504-22505-22506-22507-22508-22509-22510", "from": "560659214", "to": "380256731", "length_m": 1635.8222334514826, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787330.6599929046, 5749149.200284193], [786825.942054317, 5749335.82774009]]}, "properties": {"id": "22514-22512-9006-9004-9002-9000-8998-8996-8994-8992-8990-8988-8986-8984", "from": "310176879", "to": "976342882", "length_m": 579.7133471381755, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787330.6599929046, 5749149.200284193], [787120.3951671311, 5748670.514829763]]}, "properties": {"id": "22515-22517-22519-22521-22523-22525-22527-22529", "from": "310176879", "to": "310176881", "length_m": 523.9953204770575, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788122.8842585437, 5751363.7810232015], [788271.4134061051, 5751412.688302575]]}, "properties": {"id": "2252-2250-2248", "from": "509914442", "to": "509914426", "length_m": 156.60563177849733, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833198.138884567, 5820307.2200894905], [833043.8963856108, 5819768.713972667]]}, "properties": {"id": "2253-2254-2255-2256-2246-18417-18418-18419-18420-18421-18422-18423-18424", "from": "603461897", "to": "255031295", "length_m": 560.9311083087972, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787120.3951671311, 5748670.514829763], [787330.6599929046, 5749149.200284193]]}, "properties": {"id": "22530-22528-22526-22524-22522-22520-22518-22516", "from": "310176881", "to": "310176879", "length_m": 523.9953204770575, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787120.3951671311, 5748670.514829763], [786678.1645993174, 5748274.726941659]]}, "properties": {"id": "22531-22533-22535-22537-22539-22541-22543-22545-22547-22549-22551-22553-22555-22557-22559-22561-22563-22565-22567-22569-22571-22573-22575-22577-22579-22581-22583-22585-22587-22589-22591", "from": "310176881", "to": "310176919", "length_m": 627.926739649632, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836269.0483596874, 5817281.306727197], [836246.9506851488, 5817332.779568829]]}, "properties": {"id": "2257-2258-2259", "from": "1208302360", "to": "30928521", "length_m": 56.06725724151997, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786678.1645993174, 5748274.726941659], [787120.3951671311, 5748670.514829763]]}, "properties": {"id": "22592-22590-22588-22586-22584-22582-22580-22578-22576-22574-22572-22570-22568-22566-22564-22562-22560-22558-22556-22554-22552-22550-22548-22546-22544-22542-22540-22538-22536-22534-22532", "from": "310176919", "to": "310176881", "length_m": 627.926739649632, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786678.1645993174, 5748274.726941659], [785791.4381804036, 5747877.686345113]]}, "properties": {"id": "22593-22595-22597-22599-22601-22603-22605-22607-22609-22611-22613-22615-22617-22619-22621-22623-22625-22627-22629-22631-22633-22635-22637-22639-22641-22643-22645-22647", "from": "310176919", "to": "310177054", "length_m": 1042.9201120020502, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836246.9506851488, 5817332.779568829], [836241.1107096265, 5817349.819297614]]}, "properties": {"id": "2260", "from": "30928521", "to": "30928482", "length_m": 18.012708652982585, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788225.0285544572, 5750594.854947544], [788231.7255456687, 5750636.749899643]]}, "properties": {"id": "2261", "from": "509913976", "to": "509913977", "length_m": 42.42683939849001, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788231.7255456687, 5750636.749899643], [788225.0285544572, 5750594.854947544]]}, "properties": {"id": "2262", "from": "509913977", "to": "509913976", "length_m": 42.42683939849001, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785791.4381804036, 5747877.686345113], [786678.1645993174, 5748274.726941659]]}, "properties": {"id": "22648-22646-22644-22642-22640-22638-22636-22634-22632-22630-22628-22626-22624-22622-22620-22618-22616-22614-22612-22610-22608-22606-22604-22602-22600-22598-22596-22594", "from": "310177054", "to": "310176919", "length_m": 1042.9201120020502, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835302.7427748259, 5807820.481024984], [835305.3141757246, 5807751.868917359]]}, "properties": {"id": "22649-22650", "from": "75157621", "to": "298326708", "length_m": 68.71439089162438, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785791.4381804036, 5747877.686345113], [784961.9973538943, 5748038.206661909]]}, "properties": {"id": "22651-22653", "from": "310177054", "to": "528555639", "length_m": 844.8311935527987, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784961.9973538943, 5748038.206661909], [785791.4381804036, 5747877.686345113]]}, "properties": {"id": "22654-22652", "from": "528555639", "to": "310177054", "length_m": 844.8311935527987, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784961.9973538943, 5748038.206661909], [784261.049129138, 5748173.934030381]]}, "properties": {"id": "22655", "from": "528555639", "to": "508068037", "length_m": 713.9680178105282, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784261.049129138, 5748173.934030381], [784961.9973538943, 5748038.206661909]]}, "properties": {"id": "22656", "from": "508068037", "to": "528555639", "length_m": 713.9680178105282, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784261.049129138, 5748173.934030381], [784242.877442449, 5748177.442629559]]}, "properties": {"id": "22657", "from": "508068037", "to": "310177062", "length_m": 18.507308388175446, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784242.877442449, 5748177.442629559], [784261.049129138, 5748173.934030381]]}, "properties": {"id": "22658", "from": "310177062", "to": "508068037", "length_m": 18.507308388175446, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784242.877442449, 5748177.442629559], [783437.629273269, 5748322.732833721]]}, "properties": {"id": "22659", "from": "310177062", "to": "310177055", "length_m": 818.250484163305, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783437.629273269, 5748322.732833721], [784242.877442449, 5748177.442629559]]}, "properties": {"id": "22660", "from": "310177055", "to": "310177062", "length_m": 818.250484163305, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789406.1663884453, 5753103.249785689], [789212.1876812823, 5753141.681172265]]}, "properties": {"id": "22666-22668-22670-22672", "from": "971202670", "to": "2548347266", "length_m": 197.7846713559385, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789212.1876812823, 5753141.681172265], [789406.1663884453, 5753103.249785689]]}, "properties": {"id": "22673-22671-22669-22667", "from": "2548347266", "to": "971202670", "length_m": 197.7846713559385, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789212.1876812823, 5753141.681172265], [789120.143526182, 5753158.4171853755]]}, "properties": {"id": "22674", "from": "2548347266", "to": "2548347265", "length_m": 93.55330348666222, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789120.143526182, 5753158.4171853755], [789212.1876812823, 5753141.681172265]]}, "properties": {"id": "22675", "from": "2548347265", "to": "2548347266", "length_m": 93.55330348666222, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789418.1757140217, 5753097.295152421], [789420.7236458227, 5753105.595141499]]}, "properties": {"id": "22676-22677-22678", "from": "971202692", "to": "971202631", "length_m": 9.132211487606272, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789420.7236458227, 5753105.595141499], [789422.1498447459, 5753106.544280384]]}, "properties": {"id": "22679", "from": "971202631", "to": "2332735787", "length_m": 1.7131573130215332, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789422.1498447459, 5753106.544280384], [789431.1796055003, 5753105.397904726]]}, "properties": {"id": "22680-22681-22682-22683", "from": "2332735787", "to": "1058352938", "length_m": 9.630244468318566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789431.1796055003, 5753105.397904726], [789430.4641570692, 5753093.0198787395]]}, "properties": {"id": "22684-22685-22686-22687-22688", "from": "1058352938", "to": "971202675", "length_m": 14.157909320413038, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789430.4641570692, 5753093.0198787395], [789421.1668404224, 5753093.053296222]]}, "properties": {"id": "22689-22690-22691", "from": "971202675", "to": "971202624", "length_m": 9.832532184273505, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785866.9347157924, 5752933.254858104], [785389.4632569688, 5753025.022046961]]}, "properties": {"id": "2269-2267-2265-9980-9978", "from": "1708444886", "to": "148800346", "length_m": 486.43196180942374, "freespeed_mps": 13.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789421.1668404224, 5753093.053296222], [789418.1757140217, 5753097.295152421]]}, "properties": {"id": "22692-22693", "from": "971202624", "to": "971202692", "length_m": 5.260616780531494, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769114.2596375011, 5839732.816780118], [769626.1050374177, 5839946.790995307]]}, "properties": {"id": "22696-22697-22698-22699-22700-22701-22702-22703", "from": "186317540", "to": "186317531", "length_m": 581.6040912621365, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769626.1050374177, 5839946.790995307], [769710.7516812605, 5839953.594835524]]}, "properties": {"id": "22704-22705-24064-24065", "from": "186317531", "to": "715308254", "length_m": 307.69455357336545, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757758.7742315399, 5726191.608951215], [757259.3862462043, 5726137.910599171]]}, "properties": {"id": "22714-22716-22718-22720-22722-22724-22726-22728-22730-22732-22734-22736-22738-22740-22742-22744-22746-22748-22750-22752-22754-22756-22758-22760", "from": "234756825", "to": "234756841", "length_m": 579.5180242377509, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820443.6191299157, 5819848.820643711], [820053.8491517077, 5820230.84255244]]}, "properties": {"id": "2272", "from": "1412789208", "to": "34610818", "length_m": 545.7667772408985, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820053.8491517077, 5820230.84255244], [819406.8482512473, 5820856.096311732]]}, "properties": {"id": "2273", "from": "34610818", "to": "5973412090", "length_m": 899.7513156604662, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[819406.8482512473, 5820856.096311732], [818990.862057684, 5821262.951642096]]}, "properties": {"id": "2274-2275-2276", "from": "5973412090", "to": "5973412089", "length_m": 581.8739365457747, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757259.3862462043, 5726137.910599171], [757758.7742315399, 5726191.608951215]]}, "properties": {"id": "22761-22759-22757-22755-22753-22751-22749-22747-22745-22743-22741-22739-22737-22735-22733-22731-22729-22727-22725-22723-22721-22719-22717-22715", "from": "234756841", "to": "234756825", "length_m": 579.5180242377509, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757259.3862462043, 5726137.910599171], [756817.7588007492, 5726184.204222365]]}, "properties": {"id": "22762-22764-22766-22768-22770-22772-22774-22776-22778-22780-22782-22784-22786-22788-22790-22792-43095-43097-43781-43783-43785-43787-43789-43791-43793-43795-43797-43799", "from": "234756841", "to": "234756853", "length_m": 548.342045492885, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818990.862057684, 5821262.951642096], [818383.5041046061, 5821722.658374531]]}, "properties": {"id": "2277-2278-2279-2280-2281-2282-2283-2284-2285-2286-2287-2288", "from": "5973412089", "to": "34610823", "length_m": 767.894411830558, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793652.867167108, 5771723.214595408], [793712.9605337498, 5772045.396643253]]}, "properties": {"id": "22811-22812-22813-22814-22815", "from": "317730866", "to": "143215342", "length_m": 327.7426831898075, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793712.9605337498, 5772045.396643253], [793791.817187117, 5772464.218633173]]}, "properties": {"id": "22816-22817-22818-22819-22820-22821-22822", "from": "143215342", "to": "880404478", "length_m": 426.19947277680956, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793791.817187117, 5772464.218633173], [793800.3657867633, 5772515.147416129]]}, "properties": {"id": "22823-22824", "from": "880404478", "to": "3957457797", "length_m": 51.641258396637376, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788821.527874755, 5752150.303879677], [788772.1772163007, 5752153.204510795]]}, "properties": {"id": "22830", "from": "971202678", "to": "971202681", "length_m": 49.435828509996, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788772.1772163007, 5752153.204510795], [788821.527874755, 5752150.303879677]]}, "properties": {"id": "22831", "from": "971202681", "to": "971202678", "length_m": 49.435828509996, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789430.4641570692, 5753093.0198787395], [789412.5965810497, 5753011.3252037475]]}, "properties": {"id": "22833", "from": "971202675", "to": "971202636", "length_m": 83.62577464087487, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789412.5965810497, 5753011.3252037475], [789378.7922382103, 5752815.090126646]]}, "properties": {"id": "22834", "from": "971202636", "to": "971202671", "length_m": 199.12543544930685, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789366.4452632193, 5752817.233492598], [789385.1274983779, 5752920.1942179045]]}, "properties": {"id": "22835", "from": "2332735826", "to": "2332735818", "length_m": 104.64194596111517, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789385.1274983779, 5752920.1942179045], [789401.316111839, 5753013.430338722]]}, "properties": {"id": "22836", "from": "2332735818", "to": "971202642", "length_m": 94.6311017683594, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789401.316111839, 5753013.430338722], [789421.1668404224, 5753093.053296222]]}, "properties": {"id": "22837-22838", "from": "971202642", "to": "971202624", "length_m": 82.25674068283, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751408.5080291275, 5843905.49573784], [751376.6196682125, 5843813.364356523]]}, "properties": {"id": "22839-22841", "from": "364002296", "to": "364001724", "length_m": 97.49776142583111, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751376.6196682125, 5843813.364356523], [751408.5080291275, 5843905.49573784]]}, "properties": {"id": "22842-22840", "from": "364001724", "to": "364002296", "length_m": 97.49776142583111, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751656.3812928275, 5842902.664523122], [751439.5819415047, 5843214.213361472]]}, "properties": {"id": "22843-22845-22847-22849", "from": "364001512", "to": "364002222", "length_m": 380.4159319368668, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751439.5819415047, 5843214.213361472], [751656.3812928275, 5842902.664523122]]}, "properties": {"id": "22850-22848-22846-22844", "from": "364002222", "to": "364001512", "length_m": 380.4159319368668, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789412.5965810497, 5753011.3252037475], [789401.316111839, 5753013.430338722]]}, "properties": {"id": "22851", "from": "971202636", "to": "971202642", "length_m": 11.475215808008535, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789401.316111839, 5753013.430338722], [789412.5965810497, 5753011.3252037475]]}, "properties": {"id": "22852", "from": "971202642", "to": "971202636", "length_m": 11.475215808008535, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789401.316111839, 5753013.430338722], [789215.3154215685, 5753056.243884803]]}, "properties": {"id": "22853-22855-22857-22859", "from": "971202642", "to": "5421457455", "length_m": 190.92459148229582, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789215.3154215685, 5753056.243884803], [789401.316111839, 5753013.430338722]]}, "properties": {"id": "22860-22858-22856-22854", "from": "5421457455", "to": "971202642", "length_m": 190.92459148229582, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789215.3154215685, 5753056.243884803], [789196.2986032892, 5753061.871435855]]}, "properties": {"id": "22861", "from": "5421457455", "to": "5421457456", "length_m": 19.832012178363396, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789196.2986032892, 5753061.871435855], [789215.3154215685, 5753056.243884803]]}, "properties": {"id": "22862", "from": "5421457456", "to": "5421457455", "length_m": 19.832012178363396, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789196.2986032892, 5753061.871435855], [789072.5551097719, 5753084.82239827]]}, "properties": {"id": "22863", "from": "5421457456", "to": "5421457457", "length_m": 125.85387872472151, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789072.5551097719, 5753084.82239827], [789196.2986032892, 5753061.871435855]]}, "properties": {"id": "22864", "from": "5421457457", "to": "5421457456", "length_m": 125.85387872472151, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789406.1663884453, 5753103.249785689], [789420.7236458227, 5753105.595141499]]}, "properties": {"id": "22865", "from": "971202670", "to": "971202631", "length_m": 14.744979974206723, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789418.1757140217, 5753097.295152421], [789406.1663884453, 5753103.249785689]]}, "properties": {"id": "22866", "from": "971202692", "to": "971202670", "length_m": 13.404534956078493, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789426.0697273797, 5753131.611168148], [789506.7843826052, 5753054.871199646]]}, "properties": {"id": "22867-22869-22871-22873-22875-22877", "from": "971202646", "to": "2332735794", "length_m": 125.1827683558115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789506.7843826052, 5753054.871199646], [789426.0697273797, 5753131.611168148]]}, "properties": {"id": "22878-22876-22874-22872-22870-22868", "from": "2332735794", "to": "971202646", "length_m": 125.1827683558115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789506.7843826052, 5753054.871199646], [789499.3078303686, 5753010.237178226]]}, "properties": {"id": "22879-22881", "from": "2332735794", "to": "971202662", "length_m": 45.26878715867587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789499.3078303686, 5753010.237178226], [789506.7843826052, 5753054.871199646]]}, "properties": {"id": "22882-22880", "from": "971202662", "to": "2332735794", "length_m": 45.26878715867587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787925.2844436648, 5750131.80814501], [787811.4745040955, 5750135.361337991]]}, "properties": {"id": "2289", "from": "509914448", "to": "509914501", "length_m": 113.86539181259326, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787811.4745040955, 5750135.361337991], [787925.2844436648, 5750131.80814501]]}, "properties": {"id": "2290", "from": "509914501", "to": "509914448", "length_m": 113.86539181259326, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793722.2158518918, 5770077.147671824], [793524.3999111198, 5770545.928418105]]}, "properties": {"id": "22902-22903-22904-22905-22906-1570-1571-1572-1573-1574-1575", "from": "880499710", "to": "880499716", "length_m": 510.0004940853746, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832697.4459118845, 5804572.990201252], [832779.0321318433, 5804676.248209673]]}, "properties": {"id": "22907-22908-22909-22910-22911-22912", "from": "254255698", "to": "1745600786", "length_m": 134.998551442424, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787811.4745040955, 5750135.361337991], [787634.7926060659, 5750065.935395006]]}, "properties": {"id": "2291-2293-2295-2297-2299-2301", "from": "509914501", "to": "509914466", "length_m": 218.43592958095908, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824082.167231159, 5822810.298423283], [823572.3355577646, 5822904.620800364]]}, "properties": {"id": "22915-22917-36329", "from": "26118323", "to": "1412733111", "length_m": 518.4834483857629, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792305.3006916117, 5768782.708474016], [792979.8529818259, 5768666.74927451]]}, "properties": {"id": "22920-22921-22922-22923-22924-22925-22926-22888-22889-22890-22891-22892", "from": "264173093", "to": "36692770", "length_m": 685.1886581388618, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792966.4372078024, 5768619.5859526945], [792949.5699807358, 5768654.639249395]]}, "properties": {"id": "22938-22939-22940", "from": "3914372761", "to": "3914372764", "length_m": 40.410347608938736, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784542.0971598532, 5749765.522633855], [785767.1691897231, 5749535.385097327]]}, "properties": {"id": "22947", "from": "498837819", "to": "509914556", "length_m": 1246.5010060638183, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785767.1691897231, 5749535.385097327], [784542.0971598532, 5749765.522633855]]}, "properties": {"id": "22948", "from": "509914556", "to": "498837819", "length_m": 1246.5010060638183, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785767.1691897231, 5749535.385097327], [786825.942054317, 5749335.82774009]]}, "properties": {"id": "22949-22951", "from": "509914556", "to": "976342882", "length_m": 1077.4150209339703, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786825.942054317, 5749335.82774009], [785767.1691897231, 5749535.385097327]]}, "properties": {"id": "22952-22950", "from": "976342882", "to": "509914556", "length_m": 1077.4150209339703, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832694.4143763791, 5814096.340189949], [832728.3769082546, 5814097.947255109]]}, "properties": {"id": "23013", "from": "36714309", "to": "36714111", "length_m": 34.00053260672247, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838541.2531940751, 5807452.617487937], [838617.7567029183, 5807475.840463055]]}, "properties": {"id": "23014-23015", "from": "253525719", "to": "320853352", "length_m": 79.95056817565182, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787634.7926060659, 5750065.935395006], [787811.4745040955, 5750135.361337991]]}, "properties": {"id": "2302-2300-2298-2296-2294-2292", "from": "509914466", "to": "509914501", "length_m": 218.43592958095908, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789732.4135867716, 5833107.177290663], [788929.0423245588, 5833384.383117471]]}, "properties": {"id": "23028-23029-23030-23031-23032-23033-23034-23035", "from": "35095663", "to": "718487062", "length_m": 851.2569178539007, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787634.7926060659, 5750065.935395006], [787621.0482296979, 5749990.293206085]]}, "properties": {"id": "2303", "from": "509914466", "to": "509914474", "length_m": 76.88074285135251, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788929.0423245588, 5833384.383117471], [788194.8569134476, 5833661.588070324]]}, "properties": {"id": "23036-23037-23038-23039-23040", "from": "718487062", "to": "413300750", "length_m": 784.7873198887298, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787621.0482296979, 5749990.293206085], [787634.7926060659, 5750065.935395006]]}, "properties": {"id": "2304", "from": "509914474", "to": "509914466", "length_m": 76.88074285135251, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788194.8569134476, 5833661.588070324], [787337.4321220457, 5833986.349488227]]}, "properties": {"id": "23041-23042-48847-48848-48849", "from": "413300750", "to": "413300756", "length_m": 916.9617514422349, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831585.7131935272, 5802129.224933902], [831845.9838414626, 5802200.720721112]]}, "properties": {"id": "23043-23044-23045-23046-23047-23048", "from": "293324461", "to": "1537828680", "length_m": 270.9776964298388, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788942.131412382, 5751151.4802485425], [789109.206171945, 5751122.084611978]]}, "properties": {"id": "2305", "from": "508067798", "to": "508068149", "length_m": 169.6410286582499, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789181.2949635691, 5766412.837050422], [789139.5284470604, 5766414.69423883]]}, "properties": {"id": "23058-23059-23060-23061-23062-23063-23064-23065-23066", "from": "318558980", "to": "4460066650", "length_m": 51.835246027902784, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789109.206171945, 5751122.084611978], [788942.131412382, 5751151.4802485425]]}, "properties": {"id": "2306", "from": "508068149", "to": "508067798", "length_m": 169.6410286582499, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789139.5284470604, 5766414.69423883], [789147.3264427567, 5766443.245944245]]}, "properties": {"id": "23067-23068-23069-23070-23071", "from": "4460066650", "to": "332192105", "length_m": 32.12013416436297, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788053.277644359, 5750645.950789324], [788005.3056331128, 5750676.150589965]]}, "properties": {"id": "2307-2309-2311-2313", "from": "509914368", "to": "509914399", "length_m": 59.79952327662275, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789147.3264427567, 5766443.245944245], [789181.2949635691, 5766412.837050422]]}, "properties": {"id": "23072-23049-23050-23051-23052-23053-23054-23055-23056-23057", "from": "332192105", "to": "318558980", "length_m": 62.55891124500386, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835595.6695794595, 5812338.170335744], [835667.2000171118, 5812323.987986416]]}, "properties": {"id": "23075", "from": "2045001473", "to": "268175695", "length_m": 72.92285308302303, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835667.2000171118, 5812323.987986416], [836067.5740804246, 5812244.582945305]]}, "properties": {"id": "23076", "from": "268175695", "to": "268175696", "length_m": 408.1722062146682, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836067.5740804246, 5812244.582945305], [836338.7448144245, 5812190.790183604]]}, "properties": {"id": "23077-23078", "from": "268175696", "to": "268175699", "length_m": 276.45474793333096, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836338.7448144245, 5812190.790183604], [836502.4633353895, 5812158.308389106]]}, "properties": {"id": "23079", "from": "268175699", "to": "268175701", "length_m": 166.90961890640676, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792983.3840669787, 5768654.729145135], [792972.9105766522, 5768653.796026314]]}, "properties": {"id": "23080", "from": "36692776", "to": "270450174", "length_m": 10.51497552286592, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792972.9105766522, 5768653.796026314], [792949.5699807358, 5768654.639249395]]}, "properties": {"id": "23081", "from": "270450174", "to": "3914372764", "length_m": 23.355822407892266, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792949.5699807358, 5768654.639249395], [792370.2983767213, 5768759.070100616]]}, "properties": {"id": "23082-23083-23084-23085-23086-23087-23088-23089", "from": "3914372764", "to": "318567921", "length_m": 588.9315335990289, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792370.2983767213, 5768759.070100616], [791879.3951730416, 5768410.623270009]]}, "properties": {"id": "23090-23091-22932-22933-22934-22935-22936-22937-30206-30207-30208-30209-30210-30211-30212-30213-30214", "from": "318567921", "to": "3530741631", "length_m": 637.7323126589405, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837636.3370698491, 5811932.719000312], [837639.5100051787, 5811952.393000003]]}, "properties": {"id": "23092", "from": "268181355", "to": "268181332", "length_m": 19.928215726509425, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837639.5100051787, 5811952.393000003], [837636.3370698491, 5811932.719000312]]}, "properties": {"id": "23093", "from": "268181332", "to": "268181355", "length_m": 19.928215726509425, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832549.363196021, 5813267.80252995], [832567.4083845527, 5813265.271983169]]}, "properties": {"id": "23094", "from": "243827562", "to": "369130854", "length_m": 18.221758771978813, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832567.4083845527, 5813265.271983169], [832549.363196021, 5813267.80252995]]}, "properties": {"id": "23095", "from": "369130854", "to": "243827562", "length_m": 18.221758771978813, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838445.8272574221, 5811804.25442709], [838442.2045730181, 5811785.0660664495]]}, "properties": {"id": "23096", "from": "289845474", "to": "289845521", "length_m": 19.527340466034072, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838442.2045730181, 5811785.0660664495], [838445.8272574221, 5811804.25442709]]}, "properties": {"id": "23097", "from": "289845521", "to": "289845474", "length_m": 19.527340466034072, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838258.8194801569, 5811817.262471665], [838262.156217112, 5811837.663566866]]}, "properties": {"id": "23098", "from": "289870593", "to": "289870592", "length_m": 20.672167246572023, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838262.156217112, 5811837.663566866], [838258.8194801569, 5811817.262471665]]}, "properties": {"id": "23099", "from": "289870592", "to": "289870593", "length_m": 20.672167246572023, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794197.2015811636, 5782318.61871316], [794945.7181430673, 5782247.657297171]]}, "properties": {"id": "23102-23104-13871", "from": "317889823", "to": "317889821", "length_m": 751.8731833797715, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794364.784985706, 5782282.643993813], [793726.9924315824, 5782303.646089159]]}, "properties": {"id": "23105-13927-13928-13929-13930-13931-13932-13933-13934", "from": "318024856", "to": "318028107", "length_m": 640.1368825605063, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838095.6222225041, 5818374.49146715], [838132.886646843, 5818337.202075012]]}, "properties": {"id": "23107-23108-23109-23110-23111", "from": "385180901", "to": "170074240", "length_m": 53.199654184726384, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774798.896923234, 5759126.40340134], [773197.4193059874, 5759424.589043875]]}, "properties": {"id": "23112", "from": "1835206965", "to": "474125993", "length_m": 1629.001297477335, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773197.4193059874, 5759424.589043875], [774798.896923234, 5759126.40340134]]}, "properties": {"id": "23113", "from": "474125993", "to": "1835206965", "length_m": 1629.001297477335, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773197.4193059874, 5759424.589043875], [772275.271665052, 5759643.005251568]]}, "properties": {"id": "23114-23116-23118-23120-23122", "from": "474125993", "to": "177786909", "length_m": 963.2741330561435, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772275.271665052, 5759643.005251568], [773197.4193059874, 5759424.589043875]]}, "properties": {"id": "23123-23121-23119-23117-23115", "from": "177786909", "to": "474125993", "length_m": 963.2741330561435, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774869.2798601588, 5759525.870737054], [774798.896923234, 5759126.40340134]]}, "properties": {"id": "23124", "from": "1835206957", "to": "1835206965", "length_m": 405.620401344565, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774798.896923234, 5759126.40340134], [774869.2798601588, 5759525.870737054]]}, "properties": {"id": "23125", "from": "1835206965", "to": "1835206957", "length_m": 405.620401344565, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831986.3256465002, 5802345.792702314], [832232.4242180574, 5802572.618713571]]}, "properties": {"id": "23132-23133-23134-23135-23136-23137-23138-23139-23140-23141-23142-23143-23144-23145-23146-23147-23148-23149", "from": "293323979", "to": "2300311981", "length_m": 406.7558085369467, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788005.3056331128, 5750676.150589965], [788053.277644359, 5750645.950789324]]}, "properties": {"id": "2314-2312-2310-2308", "from": "509914399", "to": "509914368", "length_m": 59.79952327662275, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810207.949088463, 5790227.060939358], [811203.6739974513, 5790821.960875621]]}, "properties": {"id": "2315-2316-30711-30712-30713", "from": "1173113225", "to": "628549556", "length_m": 1159.9063821409518, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833575.1068861452, 5804615.549525798], [833577.3250126061, 5804600.270384775]]}, "properties": {"id": "23152", "from": "253337734", "to": "75203366", "length_m": 15.439308151168161, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785946.1596922249, 5834695.087904027], [786609.7575757524, 5834495.492577474]]}, "properties": {"id": "23154-23155-23156-23157-23158-23159-23160-23161-23162", "from": "741906561", "to": "741906565", "length_m": 696.4940257235389, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786609.7575757524, 5834495.492577474], [787131.730330322, 5834138.52209276]]}, "properties": {"id": "23163-23164-23165-23166-23167", "from": "741906565", "to": "741906566", "length_m": 633.2415333460407, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787131.730330322, 5834138.52209276], [788042.9750086493, 5833753.127367817]]}, "properties": {"id": "23168-23169-23170-23171-23172-23173-23174-23153", "from": "741906566", "to": "791043211", "length_m": 991.635569880355, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[806319.3487188411, 5788043.670660938], [806986.6371664772, 5788399.884496193]]}, "properties": {"id": "2317-2318-2319-2320", "from": "319641334", "to": "319641353", "length_m": 756.4141198022962, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835303.6144435175, 5820877.845831374], [835312.9014463946, 5820950.476909198]]}, "properties": {"id": "23183-23185-23187-23189", "from": "303683375", "to": "303683379", "length_m": 73.2490071413974, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835312.9014463946, 5820950.476909198], [835303.6144435175, 5820877.845831374]]}, "properties": {"id": "23190-23188-23186-23184", "from": "303683379", "to": "303683375", "length_m": 73.2490071413974, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837510.9740373052, 5813621.463267319], [837557.7337979971, 5813735.301384375]]}, "properties": {"id": "23191-12547-12548-12549-12550-12551", "from": "268386038", "to": "3480752970", "length_m": 123.20841335719055, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837519.5579098662, 5813613.794493121], [837454.3580650999, 5813190.395732724]]}, "properties": {"id": "23194-12034-12035-12036-12037-12038-12039-12040-12041-21699-21696-21697-21698-8047-8048-6045-6034-6352-6353-6354-6355-6356", "from": "33531726", "to": "3088561078", "length_m": 432.77837350815656, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837507.7457653354, 5813613.13358625], [837510.9740373052, 5813621.463267319]]}, "properties": {"id": "23195", "from": "33531737", "to": "268386038", "length_m": 8.933382685218918, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792591.7020099267, 5757693.309706474], [791793.1563000405, 5757843.57884407]]}, "properties": {"id": "232-234-236-238-240-242-244-246-248-250-252-254-256-258-260", "from": "5604428846", "to": "5604428831", "length_m": 813.3666699371431, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832810.340925606, 5804727.071888331], [832804.4911057143, 5804707.628166513]]}, "properties": {"id": "23200", "from": "1745518706", "to": "1745493118", "length_m": 20.30464749180926, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832789.280290337, 5804656.518573191], [832723.6730674452, 5804554.614217233]]}, "properties": {"id": "23201-23202-23203-23204-23205-23206-23207-23208-23209-23210-23211-23212-23213-23214", "from": "1745600783", "to": "254255690", "length_m": 125.83256237266397, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[806986.6371664772, 5788399.884496193], [807868.0095821167, 5788871.521734129]]}, "properties": {"id": "2321", "from": "319641353", "to": "253491504", "length_m": 999.6294361983065, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807868.0095821167, 5788871.521734129], [808846.0746674207, 5789416.296227133]]}, "properties": {"id": "2322-2323", "from": "253491504", "to": "27266301", "length_m": 1119.7616265397123, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760431.3149594433, 5826087.0101688355], [759670.6681980734, 5826420.850789661]]}, "properties": {"id": "23226-23224-23222-23220-23218-23216-23383-23381-23379", "from": "476357189", "to": "476357265", "length_m": 872.6319165656203, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760431.3149594433, 5826087.0101688355], [760735.8030348595, 5825378.85488423]]}, "properties": {"id": "23227-23229-23231", "from": "476357189", "to": "476357096", "length_m": 770.9413691501376, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760735.8030348595, 5825378.85488423], [760431.3149594433, 5826087.0101688355]]}, "properties": {"id": "23232-23230-23228", "from": "476357096", "to": "476357189", "length_m": 770.9413691501376, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760735.8030348595, 5825378.85488423], [761081.9992592067, 5824913.261973649]]}, "properties": {"id": "23233-23235-23237-23239-23241", "from": "476357096", "to": "476357035", "length_m": 589.8404723236827, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[808846.0746674207, 5789416.296227133], [810207.949088463, 5790227.060939358]]}, "properties": {"id": "2324", "from": "27266301", "to": "1173113225", "length_m": 1584.9420597767803, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761081.9992592067, 5824913.261973649], [760735.8030348595, 5825378.85488423]]}, "properties": {"id": "23242-23240-23238-23236-23234", "from": "476357035", "to": "476357096", "length_m": 589.8404723236827, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761081.9992592067, 5824913.261973649], [761598.3075820466, 5824616.304647661]]}, "properties": {"id": "23243-23245-23247-23249-23251", "from": "476357035", "to": "476356954", "length_m": 596.3892016895387, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787771.3277508038, 5764780.531364758], [787247.7409632091, 5764762.715810174]]}, "properties": {"id": "2325-2326-2327-2328-2329-2330-2331-2332-2333-2334-2335-2336-2337-2338-2339-2340-2341-2342-2343", "from": "1412037743", "to": "1270758480", "length_m": 544.1997776284591, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761598.3075820466, 5824616.304647661], [761081.9992592067, 5824913.261973649]]}, "properties": {"id": "23252-23250-23248-23246-23244", "from": "476356954", "to": "476357035", "length_m": 596.3892016895387, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761598.3075820466, 5824616.304647661], [762147.8575559995, 5823966.62577799]]}, "properties": {"id": "23253-23255-23257-23259", "from": "476356954", "to": "494778739", "length_m": 851.1758913348665, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762147.8575559995, 5823966.62577799], [761598.3075820466, 5824616.304647661]]}, "properties": {"id": "23260-23258-23256-23254", "from": "494778739", "to": "476356954", "length_m": 851.1758913348665, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832798.9026734572, 5804743.113760565], [832811.1891028311, 5804784.9462359985]]}, "properties": {"id": "23261-23262", "from": "1745600780", "to": "1744184795", "length_m": 43.61036229341173, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817712.4300193858, 5822044.363246607], [817752.2135865605, 5822071.123284263]]}, "properties": {"id": "23264", "from": "1412762807", "to": "59961700", "length_m": 47.946134441524585, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832486.0428633252, 5812853.911937407], [832396.2030549049, 5812235.102948552]]}, "properties": {"id": "23270-23272-23274-23276-23278-23280", "from": "36043667", "to": "1536031888", "length_m": 625.2965366707454, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832396.2030549049, 5812235.102948552], [832486.0428633252, 5812853.911937407]]}, "properties": {"id": "23281-23279-23277-23275-23273-23271", "from": "1536031888", "to": "36043667", "length_m": 625.2965366707454, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837974.4443402977, 5818456.798024318], [837987.9377723048, 5818447.237856751]]}, "properties": {"id": "23288-23289-23290-23291", "from": "169812730", "to": "1511218545", "length_m": 17.478539312276304, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837987.9377723048, 5818447.237856751], [837975.5727558464, 5818430.0312840305]]}, "properties": {"id": "23292-23293-23294-23295-23296-23297", "from": "1511218545", "to": "385180737", "length_m": 23.874389266691406, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837975.5727558464, 5818430.0312840305], [837960.3666954106, 5818442.630592603]]}, "properties": {"id": "23298-23299-23300-23301-23302-23303", "from": "385180737", "to": "1511218538", "length_m": 21.49406706128953, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837960.3666954106, 5818442.630592603], [837974.4443402977, 5818456.798024318]]}, "properties": {"id": "23304-23305-23306-23307-23308-23309-23310-23311-23287", "from": "1511218538", "to": "169812730", "length_m": 21.84132601995691, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777607.6421597226, 5744366.417453531], [777625.7052118967, 5744255.3296814505]]}, "properties": {"id": "23312-23314-23316-23318-23320", "from": "289885122", "to": "294988839", "length_m": 117.4350512939308, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777625.7052118967, 5744255.3296814505], [777607.6421597226, 5744366.417453531]]}, "properties": {"id": "23321-23319-23317-23315-23313", "from": "294988839", "to": "289885122", "length_m": 117.4350512939308, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777625.7052118967, 5744255.3296814505], [777681.1536262009, 5744171.712253553]]}, "properties": {"id": "23322", "from": "294988839", "to": "294988843", "length_m": 100.33145526826854, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777681.1536262009, 5744171.712253553], [777625.7052118967, 5744255.3296814505]]}, "properties": {"id": "23323", "from": "294988843", "to": "294988839", "length_m": 100.33145526826854, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777681.1536262009, 5744171.712253553], [777689.689657612, 5744158.581939293]]}, "properties": {"id": "23324", "from": "294988843", "to": "294988841", "length_m": 15.661065882084774, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777689.689657612, 5744158.581939293], [777681.1536262009, 5744171.712253553]]}, "properties": {"id": "23325", "from": "294988841", "to": "294988843", "length_m": 15.661065882084774, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777689.689657612, 5744158.581939293], [777732.7505807459, 5744091.561241382]]}, "properties": {"id": "23326", "from": "294988841", "to": "289545801", "length_m": 79.66189214404316, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777732.7505807459, 5744091.561241382], [777689.689657612, 5744158.581939293]]}, "properties": {"id": "23327", "from": "289545801", "to": "294988841", "length_m": 79.66189214404316, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757034.3221473898, 5827883.055165072], [757444.996169247, 5827225.583500506]]}, "properties": {"id": "23328-23330-23332-23334-23336", "from": "186779446", "to": "476357566", "length_m": 775.6481318192752, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757444.996169247, 5827225.583500506], [757034.3221473898, 5827883.055165072]]}, "properties": {"id": "23337-23335-23333-23331-23329", "from": "476357566", "to": "186779446", "length_m": 775.6481318192752, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757444.996169247, 5827225.583500506], [757830.914420214, 5826878.023606282]]}, "properties": {"id": "23338-23340-23342-23344-23346", "from": "476357566", "to": "476357518", "length_m": 525.1397589939015, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757830.914420214, 5826878.023606282], [757444.996169247, 5827225.583500506]]}, "properties": {"id": "23347-23345-23343-23341-23339", "from": "476357518", "to": "476357566", "length_m": 525.1397589939015, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757830.914420214, 5826878.023606282], [758383.1349607029, 5826785.952581027]]}, "properties": {"id": "23348-23350-23352-23354-23356-23358-23360", "from": "476357518", "to": "1215845548", "length_m": 563.6724113311558, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758383.1349607029, 5826785.952581027], [757830.914420214, 5826878.023606282]]}, "properties": {"id": "23361-23359-23357-23355-23353-23351-23349", "from": "1215845548", "to": "476357518", "length_m": 563.6724113311558, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758383.1349607029, 5826785.952581027], [759148.0940711208, 5826478.308869893]]}, "properties": {"id": "23362-23364-23366-23368-23370", "from": "1215845548", "to": "476357307", "length_m": 825.4457589447512, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759148.0940711208, 5826478.308869893], [758383.1349607029, 5826785.952581027]]}, "properties": {"id": "23371-23369-23367-23365-23363", "from": "476357307", "to": "1215845548", "length_m": 825.4457589447512, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759148.0940711208, 5826478.308869893], [759670.6681980734, 5826420.850789661]]}, "properties": {"id": "23372-23374-23376", "from": "476357307", "to": "476357265", "length_m": 526.229799806232, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759670.6681980734, 5826420.850789661], [759148.0940711208, 5826478.308869893]]}, "properties": {"id": "23377-23375-23373", "from": "476357265", "to": "476357307", "length_m": 526.229799806232, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759670.6681980734, 5826420.850789661], [760431.3149594433, 5826087.0101688355]]}, "properties": {"id": "23378-23380-23382-23215-23217-23219-23221-23223-23225", "from": "476357265", "to": "476357189", "length_m": 872.6319165656203, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757034.3221473898, 5827883.055165072], [756589.5341871651, 5828263.481052361]]}, "properties": {"id": "23397-23395-23393-23391-23389-23387-23385-39738-39736-39734-39732-39730-39728-39726", "from": "186779446", "to": "476357648", "length_m": 588.2770366872483, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768178.1103399785, 5765144.638660441], [768163.6544033239, 5765174.785136898]]}, "properties": {"id": "23398-23400", "from": "2373877435", "to": "2373877430", "length_m": 35.16618782964741, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768163.6544033239, 5765174.785136898], [768178.1103399785, 5765144.638660441]]}, "properties": {"id": "23401-23399", "from": "2373877430", "to": "2373877435", "length_m": 35.16618782964741, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768196.8886301962, 5765188.640831276], [768214.1183441619, 5765161.258099845]]}, "properties": {"id": "23402-23404", "from": "4908350449", "to": "4908350461", "length_m": 33.29687493980263, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768214.1183441619, 5765161.258099845], [768196.8886301962, 5765188.640831276]]}, "properties": {"id": "23405-23403", "from": "4908350461", "to": "4908350449", "length_m": 33.29687493980263, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836183.4448730396, 5807418.137625741], [836193.5691161893, 5807425.195610007]]}, "properties": {"id": "23406", "from": "2325319136", "to": "2325319134", "length_m": 12.34161412110661, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831386.4375060059, 5824373.205994418], [831113.9788960565, 5824553.213357198]]}, "properties": {"id": "23407-23408-23409-23410-23411-23412", "from": "2791828162", "to": "1503514919", "length_m": 326.5762281114779, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816051.2515505832, 5758868.7342161015], [816083.4992343019, 5758840.890700833]]}, "properties": {"id": "23437-9845", "from": "5468651818", "to": "5468655929", "length_m": 42.6189555873178, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816003.6242598298, 5758902.5264169425], [816038.8652573813, 5758878.146056662]]}, "properties": {"id": "23438", "from": "5468655928", "to": "5468651817", "length_m": 42.852419703169566, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838069.3467668188, 5818367.874383397], [838083.38421358, 5818384.289456556]]}, "properties": {"id": "23439-23440-23441-23442-23443", "from": "385180904", "to": "385180899", "length_m": 24.872461802779988, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830990.8581295849, 5813788.373739739], [831432.2718052659, 5813508.839957625]]}, "properties": {"id": "2344-2345-2346", "from": "360504707", "to": "1536068073", "length_m": 522.480762037789, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838083.38421358, 5818384.289456556], [838095.6222225041, 5818374.49146715]]}, "properties": {"id": "23444-23445-23446-23447-23448", "from": "385180899", "to": "385180901", "length_m": 16.641221857610976, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838095.6222225041, 5818374.49146715], [838086.8550570682, 5818358.004801317]]}, "properties": {"id": "23449-23450-23451-23452", "from": "385180901", "to": "385180902", "length_m": 20.487848837035152, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838086.8550570682, 5818358.004801317], [838069.3467668188, 5818367.874383397]]}, "properties": {"id": "23453-23454-23455-23456-23457-23458-23459", "from": "385180902", "to": "385180904", "length_m": 22.530639295645216, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788760.752334672, 5751012.946226019], [789021.6547309872, 5750958.496015544]]}, "properties": {"id": "23460-23462-23464", "from": "508067817", "to": "508067812", "length_m": 267.96759925120165, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789021.6547309872, 5750958.496015544], [788760.752334672, 5751012.946226019]]}, "properties": {"id": "23465-23463-23461", "from": "508067812", "to": "508067817", "length_m": 267.96759925120165, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788726.020648767, 5750836.993516019], [788923.4666663184, 5750844.113497908]]}, "properties": {"id": "23466-23468-23470-23472-23474-23476-23478-23480", "from": "508067849", "to": "508067851", "length_m": 198.2589804326, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777423.2387233003, 5742434.938882189], [777431.2446181313, 5742438.674487149]]}, "properties": {"id": "2347-2348-2349-2350-2351", "from": "4763088592", "to": "4763088551", "length_m": 10.006956087955665, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788923.4666663184, 5750844.113497908], [788726.020648767, 5750836.993516019]]}, "properties": {"id": "23481-23479-23477-23475-23473-23471-23469-23467", "from": "508067851", "to": "508067849", "length_m": 198.2589804326, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788923.4666663184, 5750844.113497908], [788970.808022897, 5750864.745721301]]}, "properties": {"id": "23482-23484-23486-23488", "from": "508067851", "to": "510175833", "length_m": 54.68967047868348, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788970.808022897, 5750864.745721301], [788923.4666663184, 5750844.113497908]]}, "properties": {"id": "23489-23487-23485-23483", "from": "510175833", "to": "508067851", "length_m": 54.68967047868348, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788804.7571685453, 5751267.656659032], [788936.4789995423, 5751243.398790221]]}, "properties": {"id": "23490", "from": "508067792", "to": "508067790", "length_m": 133.93686901960413, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788936.4789995423, 5751243.398790221], [788804.7571685453, 5751267.656659032]]}, "properties": {"id": "23491", "from": "508067790", "to": "508067792", "length_m": 133.93686901960413, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788664.0623575151, 5751197.283550384], [788624.5844583024, 5751118.551090344]]}, "properties": {"id": "23492-23494-23496-23498", "from": "508067962", "to": "508067966", "length_m": 91.08901899769772, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788624.5844583024, 5751118.551090344], [788664.0623575151, 5751197.283550384]]}, "properties": {"id": "23499-23497-23495-23493", "from": "508067966", "to": "508067962", "length_m": 91.08901899769772, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788624.5844583024, 5751118.551090344], [788622.7085703706, 5751090.843456833]]}, "properties": {"id": "23500", "from": "508067966", "to": "508067967", "length_m": 27.771062462084945, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788622.7085703706, 5751090.843456833], [788624.5844583024, 5751118.551090344]]}, "properties": {"id": "23501", "from": "508067967", "to": "508067966", "length_m": 27.771062462084945, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788622.7085703706, 5751090.843456833], [788607.1415235084, 5751011.755181146]]}, "properties": {"id": "23502", "from": "508067967", "to": "508067991", "length_m": 80.60575841915782, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788607.1415235084, 5751011.755181146], [788622.7085703706, 5751090.843456833]]}, "properties": {"id": "23503", "from": "508067991", "to": "508067967", "length_m": 80.60575841915782, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788607.1415235084, 5751011.755181146], [788617.7709394451, 5750928.205947077]]}, "properties": {"id": "23504-23506-23508", "from": "508067991", "to": "508067992", "length_m": 85.51369106480549, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788617.7709394451, 5750928.205947077], [788607.1415235084, 5751011.755181146]]}, "properties": {"id": "23509-23507-23505", "from": "508067992", "to": "508067991", "length_m": 85.51369106480549, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788617.7709394451, 5750928.205947077], [788738.0436198981, 5750896.76954035]]}, "properties": {"id": "23510-23512", "from": "508067992", "to": "508067986", "length_m": 127.14983991085495, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788738.0436198981, 5750896.76954035], [788617.7709394451, 5750928.205947077]]}, "properties": {"id": "23513-23511", "from": "508067986", "to": "508067992", "length_m": 127.14983991085495, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816051.2515505832, 5758868.7342161015], [816047.1379472292, 5758860.823471123]]}, "properties": {"id": "23514-23515-23516", "from": "5468651818", "to": "5468655922", "length_m": 9.198411812775298, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816047.1379472292, 5758860.823471123], [816032.781414786, 5758873.202964808]]}, "properties": {"id": "23517-23518-23519-23520-23521-23522-23523-23524-35523", "from": "5468655922", "to": "5468655927", "length_m": 25.86489017975471, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777431.2446181313, 5742438.674487149], [777429.9516383185, 5742427.805995234]]}, "properties": {"id": "2352-2353-2354-2355-2356-2357-2358", "from": "4763088551", "to": "4763088594", "length_m": 14.392129006777951, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788469.5877825047, 5750747.899440332], [788409.2396856026, 5750758.772110318]]}, "properties": {"id": "23525", "from": "508067883", "to": "508068004", "length_m": 61.319717362652476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788409.2396856026, 5750758.772110318], [788469.5877825047, 5750747.899440332]]}, "properties": {"id": "23526", "from": "508068004", "to": "508067883", "length_m": 61.319717362652476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788222.7817943355, 5750370.437113568], [788238.8088214401, 5750426.769411205]]}, "properties": {"id": "23532", "from": "508068022", "to": "508068018", "length_m": 58.567852514481885, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788238.8088214401, 5750426.769411205], [788222.7817943355, 5750370.437113568]]}, "properties": {"id": "23533", "from": "508068018", "to": "508068022", "length_m": 58.567852514481885, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816083.4992343019, 5758840.890700833], [816501.7068734374, 5758538.198194456]]}, "properties": {"id": "23534-23536-23538-23540-23542-23544", "from": "5468655929", "to": "631420121", "length_m": 516.3282241909434, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816501.7068734374, 5758538.198194456], [816083.4992343019, 5758840.890700833]]}, "properties": {"id": "23545-23543-23541-23539-23537-23535", "from": "631420121", "to": "5468655929", "length_m": 516.3282241909434, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816501.7068734374, 5758538.198194456], [816965.2077048337, 5757886.5565498]]}, "properties": {"id": "23546-853-855-857-859-861-12883-12885-12887-12889-12891-12893-12895-12897-12899-12901-12903-12905-12907-12909-12911", "from": "631420121", "to": "631416076", "length_m": 821.4741866067441, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788831.6283201623, 5751411.047771772], [788598.6075791736, 5751454.945343034]]}, "properties": {"id": "23549", "from": "508067889", "to": "508067878", "length_m": 237.11951055381252, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788598.6075791736, 5751454.945343034], [788831.6283201623, 5751411.047771772]]}, "properties": {"id": "23550", "from": "508067878", "to": "508067889", "length_m": 237.11951055381252, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788598.6075791736, 5751454.945343034], [788318.3883731575, 5751507.025451311]]}, "properties": {"id": "23551", "from": "508067878", "to": "512197281", "length_m": 285.01779023084157, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788318.3883731575, 5751507.025451311], [788598.6075791736, 5751454.945343034]]}, "properties": {"id": "23552", "from": "512197281", "to": "508067878", "length_m": 285.01779023084157, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833415.4272342643, 5804701.408532207], [833403.5818033325, 5804644.247466371]]}, "properties": {"id": "23553-23554", "from": "253337722", "to": "253337728", "length_m": 58.409857941290355, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816083.4992343019, 5758840.890700833], [816047.1379472292, 5758860.823471123]]}, "properties": {"id": "23555", "from": "5468655929", "to": "5468655922", "length_m": 41.46635414528987, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788775.2460977924, 5751097.463257733], [789064.9892639889, 5751042.1567643685]]}, "properties": {"id": "23558", "from": "321711586", "to": "508067808", "length_m": 294.9744229992922, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789064.9892639889, 5751042.1567643685], [788775.2460977924, 5751097.463257733]]}, "properties": {"id": "23559", "from": "508067808", "to": "321711586", "length_m": 294.9744229992922, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816032.781414786, 5758873.202964808], [816003.6242598298, 5758902.5264169425]]}, "properties": {"id": "23560", "from": "5468655927", "to": "5468655928", "length_m": 41.35220108159395, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788622.7085703706, 5751090.843456833], [788687.4722918392, 5751083.679114452]]}, "properties": {"id": "23577-23579", "from": "508067967", "to": "508067989", "length_m": 66.36689830360623, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788687.4722918392, 5751083.679114452], [788622.7085703706, 5751090.843456833]]}, "properties": {"id": "23580-23578", "from": "508067989", "to": "508067967", "length_m": 66.36689830360623, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784406.7302765225, 5749051.633907586], [783897.8562476452, 5749081.626413965]]}, "properties": {"id": "23581-23583-23585-23587-23589-23591-23593-23595-23597-23599", "from": "508068035", "to": "508068061", "length_m": 549.2843649769966, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777429.9516383185, 5742427.805995234], [777423.2387233003, 5742434.938882189]]}, "properties": {"id": "2359-2360-2361-2362-2363-2364", "from": "4763088594", "to": "4763088592", "length_m": 11.641989284786478, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783897.8562476452, 5749081.626413965], [784406.7302765225, 5749051.633907586]]}, "properties": {"id": "23600-23598-23596-23594-23592-23590-23588-23586-23584-23582", "from": "508068061", "to": "508068035", "length_m": 549.2843649769966, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788277.8606100405, 5750329.778664924], [788215.8591354894, 5750272.77855013]]}, "properties": {"id": "23620", "from": "508067956", "to": "508067959", "length_m": 84.22111307256134, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788215.8591354894, 5750272.77855013], [788017.4889025994, 5750214.338735353]]}, "properties": {"id": "23621-23622-23623-23624-23625-23626", "from": "508067959", "to": "508068036", "length_m": 219.969499808628, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788714.3996962641, 5750759.108881426], [788873.0512825602, 5750751.603211671]]}, "properties": {"id": "23631", "from": "321711585", "to": "509913945", "length_m": 158.82903003278582, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788873.0512825602, 5750751.603211671], [788714.3996962641, 5750759.108881426]]}, "properties": {"id": "23632", "from": "509913945", "to": "321711585", "length_m": 158.82903003278582, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788577.0201786156, 5750844.439680984], [788641.1234733195, 5750834.042655176]]}, "properties": {"id": "23633", "from": "508067978", "to": "508067981", "length_m": 64.94097721131736, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788641.1234733195, 5750834.042655176], [788577.0201786156, 5750844.439680984]]}, "properties": {"id": "23634", "from": "508067981", "to": "508067978", "length_m": 64.94097721131736, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788501.547593176, 5750925.074459391], [788385.2160566743, 5751009.703937303]]}, "properties": {"id": "23635-23637-23639", "from": "508067888", "to": "508068008", "length_m": 145.2709160039773, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788385.2160566743, 5751009.703937303], [788501.547593176, 5750925.074459391]]}, "properties": {"id": "23640-23638-23636", "from": "508068008", "to": "508067888", "length_m": 145.2709160039773, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788385.2160566743, 5751009.703937303], [788283.1664376126, 5751041.4168997845]]}, "properties": {"id": "23641-23643-23645-23647", "from": "508068008", "to": "509913954", "length_m": 107.61794193285283, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788283.1664376126, 5751041.4168997845], [788385.2160566743, 5751009.703937303]]}, "properties": {"id": "23648-23646-23644-23642", "from": "509913954", "to": "508068008", "length_m": 107.61794193285283, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787936.3563520717, 5750221.249463225], [787928.5989390858, 5750221.415411569]]}, "properties": {"id": "23649", "from": "508067973", "to": "509914449", "length_m": 7.759187783109156, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[819285.3995677417, 5821034.077447663], [820075.5590019741, 5820263.629000183]]}, "properties": {"id": "2365-2366-2367-2368", "from": "1412733140", "to": "4812686421", "length_m": 1103.617247964097, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787928.5989390858, 5750221.415411569], [787936.3563520717, 5750221.249463225]]}, "properties": {"id": "23650", "from": "509914449", "to": "508067973", "length_m": 7.759187783109156, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787928.5989390858, 5750221.415411569], [787696.8412702326, 5750227.911957729]]}, "properties": {"id": "23651-23653", "from": "509914449", "to": "509914451", "length_m": 231.84870539204707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787696.8412702326, 5750227.911957729], [787928.5989390858, 5750221.415411569]]}, "properties": {"id": "23654-23652", "from": "509914451", "to": "509914449", "length_m": 231.84870539204707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787696.8412702326, 5750227.911957729], [787356.057944584, 5750106.285561318]]}, "properties": {"id": "23655-23657-23659-23661-23663-23665-23667-23669-23671-23673", "from": "509914451", "to": "508067933", "length_m": 389.63490213994817, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787356.057944584, 5750106.285561318], [787696.8412702326, 5750227.911957729]]}, "properties": {"id": "23674-23672-23670-23668-23666-23664-23662-23660-23658-23656", "from": "508067933", "to": "509914451", "length_m": 389.63490213994817, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787356.057944584, 5750106.285561318], [786981.3059913993, 5750157.81370845]]}, "properties": {"id": "23675-23677-23679-23681-23683", "from": "508067933", "to": "976342888", "length_m": 383.7486547219448, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786981.3059913993, 5750157.81370845], [787356.057944584, 5750106.285561318]]}, "properties": {"id": "23684-23682-23680-23678-23676", "from": "976342888", "to": "508067933", "length_m": 383.7486547219448, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788385.2160566743, 5751009.703937303], [788312.3148679126, 5750604.4931097375]]}, "properties": {"id": "23685", "from": "508068008", "to": "508068009", "length_m": 411.7164047388498, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788312.3148679126, 5750604.4931097375], [788385.2160566743, 5751009.703937303]]}, "properties": {"id": "23686", "from": "508068009", "to": "508068008", "length_m": 411.7164047388498, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788572.6525382748, 5750820.722367387], [788485.0172825935, 5750833.461320161]]}, "properties": {"id": "23689", "from": "508067980", "to": "508067886", "length_m": 88.55630365179483, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820075.5590019741, 5820263.629000183], [820469.7039475632, 5819877.122693767]]}, "properties": {"id": "2369-2370-2371-2372", "from": "4812686421", "to": "1412789226", "length_m": 552.033234130869, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788485.0172825935, 5750833.461320161], [788572.6525382748, 5750820.722367387]]}, "properties": {"id": "23690", "from": "508067886", "to": "508067980", "length_m": 88.55630365179483, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837180.7068619209, 5809931.261955023], [838044.7574985719, 5809770.397862801]]}, "properties": {"id": "23692-30938-30936-30934-30932-30930-24386", "from": "5468277474", "to": "75141979", "length_m": 878.905518371475, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837180.7068619209, 5809931.261955023], [837006.6911266545, 5810716.697486488]]}, "properties": {"id": "23693-23695-23697-54396-54394-54392-54390-54388-54386-54384-54382-54380-54378-54376-54374-54372-54370-54368-54366-54364-54362", "from": "5468277474", "to": "1843397341", "length_m": 999.5857101384368, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788607.1415235084, 5751011.755181146], [788674.0666619358, 5750998.478419898]]}, "properties": {"id": "23699", "from": "508067991", "to": "508067988", "length_m": 68.22936699445836, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788674.0666619358, 5750998.478419898], [788607.1415235084, 5751011.755181146]]}, "properties": {"id": "23700", "from": "508067988", "to": "508067991", "length_m": 68.22936699445836, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788283.0089640042, 5750350.144951005], [788359.4024078266, 5750416.488269006]]}, "properties": {"id": "23701", "from": "508067961", "to": "508068040", "length_m": 101.18000810174811, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788359.4024078266, 5750416.488269006], [788483.2400449893, 5750520.833804166]]}, "properties": {"id": "23702", "from": "508068040", "to": "508067892", "length_m": 161.93749074941465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788420.7133208711, 5750456.573907931], [788339.6150059395, 5750267.530363034]]}, "properties": {"id": "23703-23705-23707-23709-23711-23713-23715", "from": "508067998", "to": "508067997", "length_m": 263.86144081302444, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788339.6150059395, 5750267.530363034], [788420.7133208711, 5750456.573907931]]}, "properties": {"id": "23716-23714-23712-23710-23708-23706-23704", "from": "508067997", "to": "508067998", "length_m": 263.86144081302444, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788457.1617732116, 5750679.0016329205], [788312.3148679126, 5750604.4931097375]]}, "properties": {"id": "23717-23719-23721-23723", "from": "508067884", "to": "508068009", "length_m": 165.6915165684119, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788312.3148679126, 5750604.4931097375], [788457.1617732116, 5750679.0016329205]]}, "properties": {"id": "23724-23722-23720-23718", "from": "508068009", "to": "508067884", "length_m": 165.6915165684119, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788312.3148679126, 5750604.4931097375], [788225.0285544572, 5750594.854947544]]}, "properties": {"id": "23725-23727", "from": "508068009", "to": "509913976", "length_m": 88.64842617758367, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788225.0285544572, 5750594.854947544], [788312.3148679126, 5750604.4931097375]]}, "properties": {"id": "23728-23726", "from": "509913976", "to": "508068009", "length_m": 88.64842617758367, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788225.0285544572, 5750594.854947544], [788113.2586365191, 5750709.815309546]]}, "properties": {"id": "23729-23731-23733-23735", "from": "509913976", "to": "509913962", "length_m": 166.72119775449795, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777109.0370017008, 5742518.486981659], [777189.6838959397, 5742606.901340557]]}, "properties": {"id": "2373-2375", "from": "4763088566", "to": "289885497", "length_m": 125.01621312127531, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788113.2586365191, 5750709.815309546], [788225.0285544572, 5750594.854947544]]}, "properties": {"id": "23736-23734-23732-23730", "from": "509913962", "to": "509913976", "length_m": 166.72119775449795, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788113.2586365191, 5750709.815309546], [788071.176630627, 5750741.961168526]]}, "properties": {"id": "23737-23739-23741", "from": "509913962", "to": "509913975", "length_m": 55.38424846185168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788071.176630627, 5750741.961168526], [788113.2586365191, 5750709.815309546]]}, "properties": {"id": "23742-23740-23738", "from": "509913975", "to": "509913962", "length_m": 55.38424846185168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787427.9664419862, 5750030.956888853], [787476.8431406447, 5749809.763211743]]}, "properties": {"id": "23743-23745-23747-23749-23751-23753-23755-23757-23759-23761-23763", "from": "508067930", "to": "508068067", "length_m": 359.1529577569773, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777189.6838959397, 5742606.901340557], [777109.0370017008, 5742518.486981659]]}, "properties": {"id": "2376-2374", "from": "289885497", "to": "4763088566", "length_m": 125.01621312127531, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787476.8431406447, 5749809.763211743], [787427.9664419862, 5750030.956888853]]}, "properties": {"id": "23764-23762-23760-23758-23756-23754-23752-23750-23748-23746-23744", "from": "508068067", "to": "508067930", "length_m": 359.1529577569773, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788489.1327528419, 5750856.25407507], [788431.0193362448, 5750869.425341452]]}, "properties": {"id": "23765", "from": "508067885", "to": "508068005", "length_m": 59.58734289833197, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788431.0193362448, 5750869.425341452], [788489.1327528419, 5750856.25407507]]}, "properties": {"id": "23766", "from": "508068005", "to": "508067885", "length_m": 59.58734289833197, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787936.3563520717, 5750221.249463225], [788017.8498958573, 5750223.217277045]]}, "properties": {"id": "23767-23768", "from": "508067973", "to": "508068039", "length_m": 81.76817333610128, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788273.6784659929, 5750347.199890712], [788222.7817943355, 5750370.437113568]]}, "properties": {"id": "23769-23771-23773-23775", "from": "508067954", "to": "508068022", "length_m": 56.84979799194451, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836260.4283536137, 5817351.410542287], [836282.8789856674, 5817353.596642908]]}, "properties": {"id": "2377", "from": "30928483", "to": "2045235436", "length_m": 22.55681514004443, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788222.7817943355, 5750370.437113568], [788273.6784659929, 5750347.199890712]]}, "properties": {"id": "23776-23774-23772-23770", "from": "508068022", "to": "508067954", "length_m": 56.84979799194451, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788222.7817943355, 5750370.437113568], [788114.6740451555, 5750386.705217203]]}, "properties": {"id": "23777-23779", "from": "508068022", "to": "509914453", "length_m": 110.50026186442038, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788114.6740451555, 5750386.705217203], [788222.7817943355, 5750370.437113568]]}, "properties": {"id": "23780-23778", "from": "509914453", "to": "508068022", "length_m": 110.50026186442038, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788114.6740451555, 5750386.705217203], [788022.6522840599, 5750388.737651996]]}, "properties": {"id": "23781", "from": "509914453", "to": "508068021", "length_m": 92.04420273488688, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788022.6522840599, 5750388.737651996], [788114.6740451555, 5750386.705217203]]}, "properties": {"id": "23782", "from": "508068021", "to": "509914453", "length_m": 92.04420273488688, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788022.6522840599, 5750388.737651996], [787968.8039297545, 5750393.317723239]]}, "properties": {"id": "23783-23785", "from": "508068021", "to": "508068019", "length_m": 54.277546119518405, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787968.8039297545, 5750393.317723239], [788022.6522840599, 5750388.737651996]]}, "properties": {"id": "23786-23784", "from": "508068019", "to": "508068021", "length_m": 54.277546119518405, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788073.2175748043, 5750051.545525996], [788266.3749345738, 5750214.433644126]]}, "properties": {"id": "23787", "from": "508068010", "to": "508068011", "length_m": 252.67034694589347, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788266.3749345738, 5750214.433644126], [788073.2175748043, 5750051.545525996]]}, "properties": {"id": "23788", "from": "508068011", "to": "508068010", "length_m": 252.67034694589347, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788667.8082167851, 5751364.03156589], [788715.4279210501, 5751298.00793185]]}, "properties": {"id": "23789-23791-23793-23795-23797", "from": "508067779", "to": "508067750", "length_m": 114.58092564541101, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838329.5797726075, 5809716.59057709], [838496.424804303, 5809685.44657159]]}, "properties": {"id": "2379-5643", "from": "321401326", "to": "75141976", "length_m": 169.7268795426793, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788715.4279210501, 5751298.00793185], [788667.8082167851, 5751364.03156589]]}, "properties": {"id": "23798-23796-23794-23792-23790", "from": "508067750", "to": "508067779", "length_m": 114.58092564541101, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788807.4567959982, 5751280.952795366], [788715.4279210501, 5751298.00793185]]}, "properties": {"id": "23799-23801", "from": "508067745", "to": "508067750", "length_m": 93.60277138405122, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788715.4279210501, 5751298.00793185], [788807.4567959982, 5751280.952795366]]}, "properties": {"id": "23802-23800", "from": "508067750", "to": "508067745", "length_m": 93.60277138405122, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788715.4279210501, 5751298.00793185], [788664.0623575151, 5751197.283550384]]}, "properties": {"id": "23803-23805-23807-23809-23811-23813-23815-23817-23819-23821", "from": "508067750", "to": "508067962", "length_m": 161.25187078629799, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788664.0623575151, 5751197.283550384], [788715.4279210501, 5751298.00793185]]}, "properties": {"id": "23822-23820-23818-23816-23814-23812-23810-23808-23806-23804", "from": "508067962", "to": "508067750", "length_m": 161.25187078629799, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788664.0623575151, 5751197.283550384], [788695.750379571, 5751177.97710407]]}, "properties": {"id": "23823-23825-23827", "from": "508067962", "to": "508067767", "length_m": 37.11107209681119, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788695.750379571, 5751177.97710407], [788664.0623575151, 5751197.283550384]]}, "properties": {"id": "23828-23826-23824", "from": "508067767", "to": "508067962", "length_m": 37.11107209681119, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788695.750379571, 5751177.97710407], [788776.9482369246, 5751137.169539691]]}, "properties": {"id": "23829-23831-23833", "from": "508067767", "to": "508067765", "length_m": 92.25979927666206, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788776.9482369246, 5751137.169539691], [788695.750379571, 5751177.97710407]]}, "properties": {"id": "23834-23832-23830", "from": "508067765", "to": "508067767", "length_m": 92.25979927666206, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791325.4910720758, 5832087.643376611], [792708.455408611, 5832405.665399047]]}, "properties": {"id": "23854-23855-23856-23857-23858-23859-23860-23861-23862-23863", "from": "317108235", "to": "3287411823", "length_m": 1420.1559404086793, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792708.455408611, 5832405.665399047], [793248.9229477945, 5832361.6665132325]]}, "properties": {"id": "23864-23865-23866-23867-23868-23869-23870-23871-23921-34217-34218-34219-34220-34221-34222-34223-34224-34225-34226-34227-34228-34229-34230", "from": "3287411823", "to": "3287411832", "length_m": 550.5132411092736, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788496.8223294315, 5750531.784430675], [788650.8304018611, 5750648.718688413]]}, "properties": {"id": "23872-23873-23874-23875-23876", "from": "508067896", "to": "508067912", "length_m": 194.12369525467386, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788617.7709394451, 5750928.205947077], [788577.0201786156, 5750844.439680984]]}, "properties": {"id": "23877-23879-23881-23883", "from": "508067992", "to": "508067978", "length_m": 96.07844071859594, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788577.0201786156, 5750844.439680984], [788617.7709394451, 5750928.205947077]]}, "properties": {"id": "23884-23882-23880-23878", "from": "508067978", "to": "508067992", "length_m": 96.07844071859594, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788577.0201786156, 5750844.439680984], [788572.6525382748, 5750820.722367387]]}, "properties": {"id": "23885", "from": "508067978", "to": "508067980", "length_m": 24.116120047326707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788572.6525382748, 5750820.722367387], [788577.0201786156, 5750844.439680984]]}, "properties": {"id": "23886", "from": "508067980", "to": "508067978", "length_m": 24.116120047326707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788572.6525382748, 5750820.722367387], [788558.2463928657, 5750749.594835191]]}, "properties": {"id": "23887-23889", "from": "508067980", "to": "508067979", "length_m": 72.58994596150556, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788558.2463928657, 5750749.594835191], [788572.6525382748, 5750820.722367387]]}, "properties": {"id": "23890-23888", "from": "508067979", "to": "508067980", "length_m": 72.58994596150556, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792368.5766337909, 5832302.633234998], [791226.9863815304, 5832074.70694375]]}, "properties": {"id": "23901-23902-23903-23904-23905-23906-23907-23908-23909-23910", "from": "174742065", "to": "317108265", "length_m": 1169.1111686030727, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794027.7284453437, 5771923.76769779], [794247.8870233397, 5771835.565179475]]}, "properties": {"id": "2391-2392-2393-13619", "from": "317727073", "to": "52494741", "length_m": 237.16973641091133, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791226.9863815304, 5832074.70694375], [790554.2086195123, 5832491.378295489]]}, "properties": {"id": "23911-23912-23913-23914-23915-23916-23917-23918-23919-23920-34440-34207-34208-34209-34210-34211-34212-34213-34214", "from": "317108265", "to": "322710651", "length_m": 801.2977934195981, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787639.782215964, 5749778.0425357465], [787520.6889263758, 5749802.375343535]]}, "properties": {"id": "23922-23924-23926", "from": "508068070", "to": "508068054", "length_m": 121.57946594323997, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787520.6889263758, 5749802.375343535], [787639.782215964, 5749778.0425357465]]}, "properties": {"id": "23927-23925-23923", "from": "508068054", "to": "508068070", "length_m": 121.57946594323997, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778532.7860207118, 5744394.541393228], [778466.3088393705, 5744398.776928476]]}, "properties": {"id": "23928-23929-23930-23931", "from": "2562476557", "to": "289545354", "length_m": 68.29415639760263, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788624.5844583024, 5751118.551090344], [788540.5334024928, 5751133.696119146]]}, "properties": {"id": "23932", "from": "508067966", "to": "508067887", "length_m": 85.40463601396615, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788540.5334024928, 5751133.696119146], [788624.5844583024, 5751118.551090344]]}, "properties": {"id": "23933", "from": "508067887", "to": "508067966", "length_m": 85.40463601396615, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788958.0888213823, 5751238.678824565], [789159.3095499827, 5751203.323875455]]}, "properties": {"id": "23936", "from": "508067796", "to": "508067794", "length_m": 204.3030931614835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789159.3095499827, 5751203.323875455], [788958.0888213823, 5751238.678824565]]}, "properties": {"id": "23937", "from": "508067794", "to": "508067796", "length_m": 204.3030931614835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778481.1478613799, 5744406.331516509], [778509.4137598404, 5744397.139733155]]}, "properties": {"id": "23939-23940-23941-23942", "from": "2562476536", "to": "2562476552", "length_m": 31.054153455629717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778509.4137598404, 5744397.139733155], [778532.7860207118, 5744394.541393228]]}, "properties": {"id": "23943-23944-23945", "from": "2562476552", "to": "2562476557", "length_m": 23.548938954252954, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788193.958000242, 5751043.272204859], [788183.5525598442, 5750986.76110667]]}, "properties": {"id": "23946", "from": "509914074", "to": "509914062", "length_m": 57.461094702450126, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788183.5525598442, 5750986.76110667], [788193.958000242, 5751043.272204859]]}, "properties": {"id": "23947", "from": "509914062", "to": "509914074", "length_m": 57.461094702450126, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788183.5525598442, 5750986.76110667], [788147.1006149407, 5750922.000480263]]}, "properties": {"id": "23948-23950-23952", "from": "509914062", "to": "509914310", "length_m": 74.56294993337286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788147.1006149407, 5750922.000480263], [788183.5525598442, 5750986.76110667]]}, "properties": {"id": "23953-23951-23949", "from": "509914310", "to": "509914062", "length_m": 74.56294993337286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788147.1006149407, 5750922.000480263], [788085.3820849643, 5750819.598203493]]}, "properties": {"id": "23954-23956", "from": "509914310", "to": "509913981", "length_m": 119.84831462558964, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788085.3820849643, 5750819.598203493], [788147.1006149407, 5750922.000480263]]}, "properties": {"id": "23957-23955", "from": "509913981", "to": "509914310", "length_m": 119.84831462558964, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788085.3820849643, 5750819.598203493], [788079.8910494938, 5750789.141178659]]}, "properties": {"id": "23958-23960", "from": "509913981", "to": "509914334", "length_m": 30.94857446998871, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788079.8910494938, 5750789.141178659], [788085.3820849643, 5750819.598203493]]}, "properties": {"id": "23961-23959", "from": "509914334", "to": "509913981", "length_m": 30.94857446998871, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788079.8910494938, 5750789.141178659], [788071.176630627, 5750741.961168526]]}, "properties": {"id": "23962", "from": "509914334", "to": "509913975", "length_m": 47.97806217668744, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788071.176630627, 5750741.961168526], [788079.8910494938, 5750789.141178659]]}, "properties": {"id": "23963", "from": "509913975", "to": "509914334", "length_m": 47.97806217668744, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788071.176630627, 5750741.961168526], [788053.277644359, 5750645.950789324]]}, "properties": {"id": "23964-23966", "from": "509913975", "to": "509914368", "length_m": 97.66456192715069, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788053.277644359, 5750645.950789324], [788071.176630627, 5750741.961168526]]}, "properties": {"id": "23967-23965", "from": "509914368", "to": "509913975", "length_m": 97.66456192715069, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788053.277644359, 5750645.950789324], [788037.218129466, 5750586.718558006]]}, "properties": {"id": "23968-23970", "from": "509914368", "to": "509914413", "length_m": 62.43310745373084, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832921.7209367836, 5804753.076171871], [833157.1845438138, 5804773.675478286]]}, "properties": {"id": "2397-2398-2399-2400-2401-2402-2403-2404-2405-2406-2407-2408-2409-2410-2411-2412-2413-2414", "from": "1745493158", "to": "1745493123", "length_m": 263.649664906617, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788037.218129466, 5750586.718558006], [788053.277644359, 5750645.950789324]]}, "properties": {"id": "23971-23969", "from": "509914413", "to": "509914368", "length_m": 62.43310745373084, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788037.218129466, 5750586.718558006], [788040.04464878, 5750536.480983955]]}, "properties": {"id": "23972-23974-23976", "from": "509914413", "to": "509914433", "length_m": 51.15572717827286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788040.04464878, 5750536.480983955], [788037.218129466, 5750586.718558006]]}, "properties": {"id": "23977-23975-23973", "from": "509914433", "to": "509914413", "length_m": 51.15572717827286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788040.04464878, 5750536.480983955], [788022.6522840599, 5750388.737651996]]}, "properties": {"id": "23978-23980-23982-23984-23986-23988", "from": "509914433", "to": "508068021", "length_m": 151.28726905433547, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788022.6522840599, 5750388.737651996], [788040.04464878, 5750536.480983955]]}, "properties": {"id": "23989-23987-23985-23983-23981-23979", "from": "508068021", "to": "509914433", "length_m": 151.28726905433547, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788022.6522840599, 5750388.737651996], [788017.8498958573, 5750223.217277045]]}, "properties": {"id": "23990-23992", "from": "508068021", "to": "508068039", "length_m": 165.59506149840558, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788017.8498958573, 5750223.217277045], [788022.6522840599, 5750388.737651996]]}, "properties": {"id": "23993-23991", "from": "508068039", "to": "508068021", "length_m": 165.59506149840558, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788501.2332912681, 5750527.369781419], [788498.493325409, 5750515.619932488]]}, "properties": {"id": "24001-24002-24003", "from": "508067893", "to": "508067894", "length_m": 12.93555506157567, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788498.493325409, 5750515.619932488], [788488.9837205417, 5750514.281972693]]}, "properties": {"id": "24004-24005-24006", "from": "508067894", "to": "508067891", "length_m": 9.993500481660753, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788488.9837205417, 5750514.281972693], [788483.2400449893, 5750520.833804166]]}, "properties": {"id": "24007-24008", "from": "508067891", "to": "508067892", "length_m": 8.95992640760046, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788483.2400449893, 5750520.833804166], [788486.9463489951, 5750530.970838102]]}, "properties": {"id": "24009-24010-24011-24012", "from": "508067892", "to": "508067905", "length_m": 11.420922363496073, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788486.9463489951, 5750530.970838102], [788496.8223294315, 5750531.784430675]]}, "properties": {"id": "24013-24014-24015", "from": "508067905", "to": "508067896", "length_m": 10.327741495615646, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788496.8223294315, 5750531.784430675], [788501.2332912681, 5750527.369781419]]}, "properties": {"id": "24016-24017", "from": "508067896", "to": "508067893", "length_m": 6.325952553746951, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792224.8733195832, 5779764.51820777], [792527.8099181149, 5780615.265502807]]}, "properties": {"id": "24025-16858-16859-16860-16861-16862", "from": "318036361", "to": "318036365", "length_m": 904.2864603696003, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789136.8711415018, 5750685.273689333], [789412.8022688095, 5750673.817109575]]}, "properties": {"id": "24026-24028-24030-24032-24034-24036-24038-24040-24042-24044-24046-24048-24050", "from": "508067864", "to": "508067874", "length_m": 286.4861759514611, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789412.8022688095, 5750673.817109575], [789136.8711415018, 5750685.273689333]]}, "properties": {"id": "24051-24049-24047-24045-24043-24041-24039-24037-24035-24033-24031-24029-24027", "from": "508067874", "to": "508067864", "length_m": 286.4861759514611, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778446.6797737188, 5744440.55300635], [778392.2388314256, 5744568.305248721]]}, "properties": {"id": "24052-28791-28793-28795", "from": "2562476494", "to": "4763140984", "length_m": 138.92510507206137, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789218.2387872927, 5751378.31888973], [789200.9942236787, 5751280.6969353845]]}, "properties": {"id": "24054-24056-24058", "from": "508067815", "to": "508067788", "length_m": 99.15326872300069, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789200.9942236787, 5751280.6969353845], [789218.2387872927, 5751378.31888973]]}, "properties": {"id": "24059-24057-24055", "from": "508067788", "to": "508067815", "length_m": 99.15326872300069, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789200.9942236787, 5751280.6969353845], [789159.3095499827, 5751203.323875455]]}, "properties": {"id": "24060", "from": "508067788", "to": "508067794", "length_m": 87.88744161094709, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789159.3095499827, 5751203.323875455], [789200.9942236787, 5751280.6969353845]]}, "properties": {"id": "24061", "from": "508067794", "to": "508067788", "length_m": 87.88744161094709, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789159.3095499827, 5751203.323875455], [789114.6847933879, 5751122.054890993]]}, "properties": {"id": "24062", "from": "508067794", "to": "508067801", "length_m": 92.71470596453213, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789114.6847933879, 5751122.054890993], [789159.3095499827, 5751203.323875455]]}, "properties": {"id": "24063", "from": "508067801", "to": "508067794", "length_m": 92.71470596453213, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769710.7516812605, 5839953.594835524], [770156.0070888563, 5839748.003563828]]}, "properties": {"id": "24066-24067-24068-24069-24070-24071-24072-24073-24074-24075", "from": "715308254", "to": "291557473", "length_m": 519.3389123060077, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778402.2097854242, 5744394.482900336], [778245.5514273599, 5744212.544850425]]}, "properties": {"id": "24076-24078-24080-24082-24084-24086-24088-24090-24092-8522", "from": "2562476556", "to": "294984815", "length_m": 244.470316643796, "freespeed_mps": 13.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788319.6873431609, 5750148.652855047], [788266.3749345738, 5750214.433644126]]}, "properties": {"id": "24094-24096-24098-24100", "from": "508067915", "to": "508068011", "length_m": 84.68879619655124, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788266.3749345738, 5750214.433644126], [788319.6873431609, 5750148.652855047]]}, "properties": {"id": "24101-24099-24097-24095", "from": "508068011", "to": "508067915", "length_m": 84.68879619655124, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788266.3749345738, 5750214.433644126], [788215.8591354894, 5750272.77855013]]}, "properties": {"id": "24102-24104", "from": "508068011", "to": "508067959", "length_m": 77.1911630853706, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788215.8591354894, 5750272.77855013], [788266.3749345738, 5750214.433644126]]}, "properties": {"id": "24105-24103", "from": "508067959", "to": "508068011", "length_m": 77.1911630853706, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778446.6797737188, 5744440.55300635], [778467.5942154587, 5744427.071170938]]}, "properties": {"id": "24110-24111-24112-24113", "from": "2562476494", "to": "2562476512", "length_m": 25.598256414319852, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788789.7328919009, 5751181.535952214], [788919.4643753781, 5751155.27112203]]}, "properties": {"id": "24114", "from": "508067803", "to": "508067806", "length_m": 132.36351096771747, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788919.4643753781, 5751155.27112203], [788789.7328919009, 5751181.535952214]]}, "properties": {"id": "24115", "from": "508067806", "to": "508067803", "length_m": 132.36351096771747, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769626.1050374177, 5839946.790995307], [769710.7516812605, 5839953.594835524]]}, "properties": {"id": "24118-24119-24120-24121-24106-24107-24108-24109", "from": "186317531", "to": "715308254", "length_m": 99.53266603410253, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778461.4429054882, 5744400.434517557], [778402.2097854242, 5744394.482900336]]}, "properties": {"id": "24122-24123-24124", "from": "289545355", "to": "2562476556", "length_m": 59.59759168823485, "freespeed_mps": 10.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788601.4829401673, 5751467.290508859], [788598.6075791736, 5751454.945343034]]}, "properties": {"id": "24125", "from": "822914635", "to": "508067878", "length_m": 12.675599393325514, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788598.6075791736, 5751454.945343034], [788601.4829401673, 5751467.290508859]]}, "properties": {"id": "24126", "from": "508067878", "to": "822914635", "length_m": 12.675599393325514, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788598.6075791736, 5751454.945343034], [788581.3362780248, 5751365.903997046]]}, "properties": {"id": "24127", "from": "508067878", "to": "509914438", "length_m": 90.70093234872405, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788581.3362780248, 5751365.903997046], [788598.6075791736, 5751454.945343034]]}, "properties": {"id": "24128", "from": "509914438", "to": "508067878", "length_m": 90.70093234872405, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788581.3362780248, 5751365.903997046], [788566.1145610578, 5751274.444161004]]}, "properties": {"id": "24129", "from": "509914438", "to": "509914436", "length_m": 92.7178637996429, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788566.1145610578, 5751274.444161004], [788581.3362780248, 5751365.903997046]]}, "properties": {"id": "24130", "from": "509914436", "to": "509914438", "length_m": 92.7178637996429, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788566.1145610578, 5751274.444161004], [788549.1604882726, 5751183.490878152]]}, "properties": {"id": "24131-24133-24135", "from": "509914436", "to": "509914035", "length_m": 92.521211517291, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788549.1604882726, 5751183.490878152], [788566.1145610578, 5751274.444161004]]}, "properties": {"id": "24136-24134-24132", "from": "509914035", "to": "509914436", "length_m": 92.521211517291, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788549.1604882726, 5751183.490878152], [788540.5334024928, 5751133.696119146]]}, "properties": {"id": "24137", "from": "509914035", "to": "508067887", "length_m": 50.5365672695729, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788540.5334024928, 5751133.696119146], [788549.1604882726, 5751183.490878152]]}, "properties": {"id": "24138", "from": "508067887", "to": "509914035", "length_m": 50.5365672695729, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788540.5334024928, 5751133.696119146], [788532.7745086672, 5751092.750651822]]}, "properties": {"id": "24139", "from": "508067887", "to": "509914019", "length_m": 41.67411337969365, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788532.7745086672, 5751092.750651822], [788540.5334024928, 5751133.696119146]]}, "properties": {"id": "24140", "from": "509914019", "to": "508067887", "length_m": 41.67411337969365, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788532.7745086672, 5751092.750651822], [788501.547593176, 5750925.074459391]]}, "properties": {"id": "24141-24143", "from": "509914019", "to": "508067888", "length_m": 170.56072814027902, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788501.547593176, 5750925.074459391], [788532.7745086672, 5751092.750651822]]}, "properties": {"id": "24144-24142", "from": "508067888", "to": "509914019", "length_m": 170.56072814027902, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788501.547593176, 5750925.074459391], [788489.1327528419, 5750856.25407507]]}, "properties": {"id": "24145", "from": "508067888", "to": "508067885", "length_m": 69.93120587068015, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788489.1327528419, 5750856.25407507], [788501.547593176, 5750925.074459391]]}, "properties": {"id": "24146", "from": "508067885", "to": "508067888", "length_m": 69.93120587068015, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788489.1327528419, 5750856.25407507], [788485.0172825935, 5750833.461320161]]}, "properties": {"id": "24147", "from": "508067885", "to": "508067886", "length_m": 23.16132057270953, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788485.0172825935, 5750833.461320161], [788489.1327528419, 5750856.25407507]]}, "properties": {"id": "24148", "from": "508067886", "to": "508067885", "length_m": 23.16132057270953, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788485.0172825935, 5750833.461320161], [788469.5877825047, 5750747.899440332]]}, "properties": {"id": "24149", "from": "508067886", "to": "508067883", "length_m": 86.94196194921007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788469.5877825047, 5750747.899440332], [788485.0172825935, 5750833.461320161]]}, "properties": {"id": "24150", "from": "508067883", "to": "508067886", "length_m": 86.94196194921007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788469.5877825047, 5750747.899440332], [788457.1617732116, 5750679.0016329205]]}, "properties": {"id": "24151", "from": "508067883", "to": "508067884", "length_m": 70.00938198468455, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788457.1617732116, 5750679.0016329205], [788469.5877825047, 5750747.899440332]]}, "properties": {"id": "24152", "from": "508067884", "to": "508067883", "length_m": 70.00938198468455, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788457.1617732116, 5750679.0016329205], [788486.9463489951, 5750530.970838102]]}, "properties": {"id": "24153-24155-24157-24159-24161-24163-24165", "from": "508067884", "to": "508067905", "length_m": 162.80258846144517, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788486.9463489951, 5750530.970838102], [788457.1617732116, 5750679.0016329205]]}, "properties": {"id": "24166-24164-24162-24160-24158-24156-24154", "from": "508067905", "to": "508067884", "length_m": 162.80258846144517, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778583.5109767521, 5744415.579068705], [778502.5657140049, 5744418.259227756]]}, "properties": {"id": "24167-24168-24169-24170-24171", "from": "2562476511", "to": "2562476524", "length_m": 81.2527797037747, "freespeed_mps": 10.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778502.5657140049, 5744418.259227756], [778482.5310595135, 5744410.417760738]]}, "properties": {"id": "24172-24173-24174", "from": "2562476524", "to": "2562476531", "length_m": 21.676520087826006, "freespeed_mps": 10.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780920.6759287129, 5783798.2484009955], [780780.2396598329, 5783921.338643606]]}, "properties": {"id": "24175-24176-24177-24178-24179-24180-24181-24182-24183-24184-24185", "from": "945648289", "to": "3520907454", "length_m": 192.26496143105757, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788821.4371553867, 5751353.562450244], [788951.5745308015, 5751332.439903004]]}, "properties": {"id": "24186", "from": "508067783", "to": "508067787", "length_m": 131.8404278041869, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788951.5745308015, 5751332.439903004], [788821.4371553867, 5751353.562450244]]}, "properties": {"id": "24187", "from": "508067787", "to": "508067783", "length_m": 131.8404278041869, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778477.6918025098, 5744423.709986823], [778583.5109767521, 5744415.579068705]]}, "properties": {"id": "24188-24189-24190-24191-24192-24193", "from": "37684607", "to": "2562476511", "length_m": 107.64037817400146, "freespeed_mps": 10.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780628.6782010256, 5784114.729964216], [780775.1210098121, 5783973.244485265]]}, "properties": {"id": "24194-24195-24196-24197-24198-24199-24200-24201-24202", "from": "3520907439", "to": "476323627", "length_m": 207.34432148374486, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788582.5297854384, 5750411.982666034], [788498.493325409, 5750515.619932488]]}, "properties": {"id": "24203", "from": "508067922", "to": "508067894", "length_m": 133.42716978791805, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788498.493325409, 5750515.619932488], [788582.5297854384, 5750411.982666034]]}, "properties": {"id": "24204", "from": "508067894", "to": "508067922", "length_m": 133.42716978791805, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788663.310817549, 5750660.30157027], [788693.7879860906, 5750690.8418073]]}, "properties": {"id": "24205-24206-24207-24208", "from": "321711578", "to": "2075585998", "length_m": 43.29402907370772, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788693.7879860906, 5750690.8418073], [788714.3996962641, 5750759.108881426]]}, "properties": {"id": "24209-24210-24211", "from": "2075585998", "to": "321711585", "length_m": 77.53693361542743, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788695.750379571, 5751177.97710407], [788715.9425369177, 5751219.233105273]]}, "properties": {"id": "24212-24214-24216", "from": "508067767", "to": "508067771", "length_m": 46.711980604377864, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788715.9425369177, 5751219.233105273], [788695.750379571, 5751177.97710407]]}, "properties": {"id": "24217-24215-24213", "from": "508067771", "to": "508067767", "length_m": 46.711980604377864, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787740.9542478225, 5749839.594220181], [787639.782215964, 5749778.0425357465]]}, "properties": {"id": "24218-24220-24222", "from": "508067920", "to": "508068070", "length_m": 119.1094943636399, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787639.782215964, 5749778.0425357465], [787740.9542478225, 5749839.594220181]]}, "properties": {"id": "24223-24221-24219", "from": "508068070", "to": "508067920", "length_m": 119.1094943636399, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787639.782215964, 5749778.0425357465], [787344.55458952, 5749592.640627166]]}, "properties": {"id": "24224-24226-24228-24230-24232-24234-24236-24238-24240-24242-24244-24246-24248-24250-24252-24254-24256-24258", "from": "508068070", "to": "508068057", "length_m": 434.3347167263717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787344.55458952, 5749592.640627166], [787639.782215964, 5749778.0425357465]]}, "properties": {"id": "24259-24257-24255-24253-24251-24249-24247-24245-24243-24241-24239-24237-24235-24233-24231-24229-24227-24225", "from": "508068057", "to": "508068070", "length_m": 434.3347167263717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788923.4666663184, 5750844.113497908], [788978.456050039, 5750757.4731841115]]}, "properties": {"id": "24260-24262", "from": "508067851", "to": "508067879", "length_m": 103.09089780466222, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788978.456050039, 5750757.4731841115], [788923.4666663184, 5750844.113497908]]}, "properties": {"id": "24263-24261", "from": "508067879", "to": "508067851", "length_m": 103.09089780466222, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788978.456050039, 5750757.4731841115], [789017.5534325626, 5750698.310101813]]}, "properties": {"id": "24264", "from": "508067879", "to": "508067876", "length_m": 70.91456576724678, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789017.5534325626, 5750698.310101813], [788978.456050039, 5750757.4731841115]]}, "properties": {"id": "24265", "from": "508067876", "to": "508067879", "length_m": 70.91456576724678, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789017.5534325626, 5750698.310101813], [789042.1616654999, 5750662.762018952]]}, "properties": {"id": "24266", "from": "508067876", "to": "508067870", "length_m": 43.2346079652934, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789042.1616654999, 5750662.762018952], [789017.5534325626, 5750698.310101813]]}, "properties": {"id": "24267", "from": "508067870", "to": "508067876", "length_m": 43.2346079652934, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788366.2236934975, 5750408.98660333], [788359.4024078266, 5750416.488269006]]}, "properties": {"id": "24268", "from": "508068017", "to": "508068040", "length_m": 10.139276395429254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788359.4024078266, 5750416.488269006], [788366.2236934975, 5750408.98660333]]}, "properties": {"id": "24269", "from": "508068040", "to": "508068017", "length_m": 10.139276395429254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788359.4024078266, 5750416.488269006], [788308.6174748468, 5750465.618407301]]}, "properties": {"id": "24270-24272", "from": "508068040", "to": "508068016", "length_m": 70.9441614309112, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788308.6174748468, 5750465.618407301], [788359.4024078266, 5750416.488269006]]}, "properties": {"id": "24273-24271", "from": "508068016", "to": "508068040", "length_m": 70.9441614309112, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788663.310817549, 5750660.30157027], [788669.5936899787, 5750647.657870238]]}, "properties": {"id": "24274-24275-24276-24277-24278", "from": "321711578", "to": "508067903", "length_m": 15.276226179493598, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788669.5936899787, 5750647.657870238], [788667.7884645425, 5750640.75379551]]}, "properties": {"id": "24279-24280", "from": "508067903", "to": "508067900", "length_m": 7.271662645018172, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788667.7884645425, 5750640.75379551], [788657.900373853, 5750637.162238084]]}, "properties": {"id": "24281-24282-24283", "from": "508067900", "to": "5640651672", "length_m": 11.068846532900391, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788657.900373853, 5750637.162238084], [788656.2398519138, 5750637.721839002]]}, "properties": {"id": "24284", "from": "5640651672", "to": "508067899", "length_m": 1.7522803161383296, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788656.2398519138, 5750637.721839002], [788650.8304018611, 5750648.718688413]]}, "properties": {"id": "24285-24286-24287-24288-24289", "from": "508067899", "to": "508067912", "length_m": 13.27504152898155, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788650.8304018611, 5750648.718688413], [788663.310817549, 5750660.30157027]]}, "properties": {"id": "24290-24291-24292", "from": "508067912", "to": "321711578", "length_m": 11.025448144462484, "freespeed_mps": 5.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788488.9837205417, 5750514.281972693], [788420.7133208711, 5750456.573907931]]}, "properties": {"id": "24293", "from": "508067891", "to": "508067998", "length_m": 89.39277460738566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788420.7133208711, 5750456.573907931], [788366.2236934975, 5750408.98660333]]}, "properties": {"id": "24294", "from": "508067998", "to": "508068017", "length_m": 72.34411530717126, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788366.2236934975, 5750408.98660333], [788291.5050346013, 5750341.994395946]]}, "properties": {"id": "24295", "from": "508068017", "to": "508067935", "length_m": 100.35354388262967, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788667.7884645425, 5750640.75379551], [788663.8346761146, 5750622.97899305]]}, "properties": {"id": "24296-24297", "from": "508067900", "to": "508067911", "length_m": 18.23452989223723, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833104.5251600896, 5804660.27321292], [832701.2828701447, 5804334.039079243]]}, "properties": {"id": "2430-2431-2432-2433-2434-2435-2436-2437-2438-2439-2440-2441-2442-2443-2444", "from": "29321143", "to": "825693262", "length_m": 527.6566955486719, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780920.6759287129, 5783798.2484009955], [781887.076495548, 5782729.404038218]]}, "properties": {"id": "24311-24313", "from": "945648289", "to": "60303859", "length_m": 1440.9575946702967, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781887.076495548, 5782729.404038218], [780920.6759287129, 5783798.2484009955]]}, "properties": {"id": "24314-24312", "from": "60303859", "to": "945648289", "length_m": 1440.9575946702967, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781887.076495548, 5782729.404038218], [782306.7120426407, 5782260.154416008]]}, "properties": {"id": "24315", "from": "60303859", "to": "945648185", "length_m": 629.5150520891688, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782306.7120426407, 5782260.154416008], [781887.076495548, 5782729.404038218]]}, "properties": {"id": "24316", "from": "945648185", "to": "60303859", "length_m": 629.5150520891688, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782306.7120426407, 5782260.154416008], [782761.8023737615, 5781745.640110695]]}, "properties": {"id": "24317", "from": "945648185", "to": "60303860", "length_m": 686.9004151990677, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782761.8023737615, 5781745.640110695], [782306.7120426407, 5782260.154416008]]}, "properties": {"id": "24318", "from": "60303860", "to": "945648185", "length_m": 686.9004151990677, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782761.8023737615, 5781745.640110695], [783128.2125461942, 5781344.609063601]]}, "properties": {"id": "24319-24321", "from": "60303860", "to": "60303861", "length_m": 543.2167956955237, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783128.2125461942, 5781344.609063601], [782761.8023737615, 5781745.640110695]]}, "properties": {"id": "24322-24320", "from": "60303861", "to": "60303860", "length_m": 543.2167956955237, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784261.049129138, 5748173.934030381], [784219.3256134246, 5747953.584611145]]}, "properties": {"id": "24323", "from": "508068037", "to": "508068034", "length_m": 224.26483957341878, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784219.3256134246, 5747953.584611145], [784261.049129138, 5748173.934030381]]}, "properties": {"id": "24324", "from": "508068034", "to": "508068037", "length_m": 224.26483957341878, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780748.5802042452, 5783948.699790745], [780628.6782010256, 5784114.729964216]]}, "properties": {"id": "24325-24326-24327-24328-24329-24330-24331-24332", "from": "5550653282", "to": "3520907439", "length_m": 205.12851989388346, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777765.2567559335, 5745136.808554268], [778301.1160892976, 5745676.787023855]]}, "properties": {"id": "24340-24338-24336-24334-8603-167-165-163-161-159-157-155-153-151-149-147-145", "from": "2558470482", "to": "289545391", "length_m": 968.1954592821305, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777765.2567559335, 5745136.808554268], [777559.9465927467, 5745033.327183111]]}, "properties": {"id": "24341-24343-24345-24347-24349-24351-24353-24355", "from": "2558470482", "to": "2558470497", "length_m": 524.490034555136, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777559.9465927467, 5745033.327183111], [777765.2567559335, 5745136.808554268]]}, "properties": {"id": "24356-24354-24352-24350-24348-24346-24344-24342", "from": "2558470497", "to": "2558470482", "length_m": 524.490034555136, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777559.9465927467, 5745033.327183111], [777026.7941332642, 5744975.541381284]]}, "properties": {"id": "24357-24359-24361-24363-24365-24367", "from": "2558470497", "to": "2558470503", "length_m": 537.1957513390721, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777026.7941332642, 5744975.541381284], [777559.9465927467, 5745033.327183111]]}, "properties": {"id": "24368-24366-24364-24362-24360-24358", "from": "2558470503", "to": "2558470497", "length_m": 537.1957513390721, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777026.7941332642, 5744975.541381284], [776522.6815985956, 5745037.454569722]]}, "properties": {"id": "24369-24371-24373-24375-24377-24379-24381-24383", "from": "2558470503", "to": "289545457", "length_m": 514.1062893244169, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838044.7574985719, 5809770.397862801], [837180.7068619209, 5809931.261955023]]}, "properties": {"id": "24385-30929-30931-30933-30935-30937-23691", "from": "75141979", "to": "5468277474", "length_m": 878.905518371475, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752225.581656146, 5839456.284489354], [752205.0927773556, 5839240.197510859]]}, "properties": {"id": "24387-24388-24389-24390-49813-49814-49815-49816", "from": "476915659", "to": "363999807", "length_m": 218.3495827294679, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795328.7418624038, 5771398.69420025], [795324.6294191709, 5771388.66269678]]}, "properties": {"id": "24391", "from": "263727831", "to": "705055387", "length_m": 10.841736522701256, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752191.895140154, 5839477.725479469], [752006.9805551153, 5839860.211675536]]}, "properties": {"id": "24397-24398-24399-24400-24401-24402-24403-24404", "from": "476915637", "to": "651421125", "length_m": 428.0250372200263, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752225.581656146, 5839456.284489354], [752200.1910103111, 5839449.247355119]]}, "properties": {"id": "24411-24412-24413", "from": "476915659", "to": "476915653", "length_m": 28.497561874126003, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752200.1910103111, 5839449.247355119], [752191.895140154, 5839477.725479469]]}, "properties": {"id": "24414-24415-24416-24417", "from": "476915653", "to": "476915637", "length_m": 33.18989806976269, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752191.895140154, 5839477.725479469], [752214.4528520738, 5839486.40392042]]}, "properties": {"id": "24418-24419-24420", "from": "476915637", "to": "363999767", "length_m": 25.753180822512178, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752214.4528520738, 5839486.40392042], [752225.581656146, 5839456.284489354]]}, "properties": {"id": "24421-24422-24408-24409-24410", "from": "363999767", "to": "476915659", "length_m": 37.02394781634294, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834046.0897673577, 5822311.687149234], [834118.9902961713, 5822403.358652301]]}, "properties": {"id": "24423-24424-24425", "from": "1534925766", "to": "1534925726", "length_m": 117.18397287312791, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797112.7653197098, 5769817.727215483], [796491.4583149988, 5770077.395999311]]}, "properties": {"id": "24426-24427-24428-24429-24430-24431-29345", "from": "270421130", "to": "317731183", "length_m": 676.4765364006957, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797114.9771730572, 5769829.483733076], [798065.2464314422, 5769457.357061098]]}, "properties": {"id": "24432-24433-24434-24435", "from": "380256747", "to": "380256745", "length_m": 1020.5353371102442, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837698.9342767609, 5819115.093814872], [837682.846559681, 5819128.640330331]]}, "properties": {"id": "24436-24437-24438-24439-24440-24441-24442-24443", "from": "30928580", "to": "169795563", "length_m": 25.043215526575135, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834046.0897673577, 5822311.687149234], [833927.9112242856, 5822175.192208612]]}, "properties": {"id": "24447-49149-49151", "from": "1534925766", "to": "603452964", "length_m": 180.57062039048117, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834118.9902961713, 5822403.358652301], [834125.6058599567, 5822397.609175699]]}, "properties": {"id": "24449", "from": "1534925726", "to": "603452595", "length_m": 8.76482545074173, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832701.2828701447, 5804334.039079243], [832477.9416245378, 5803503.095087853]]}, "properties": {"id": "2445-2446-2447-2448-2449-2450-2451-2452-2453-2454-2455-2456-2457-2458-2459", "from": "825693262", "to": "293313146", "length_m": 862.8908675329349, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769448.5101735912, 5748360.499390328], [770604.9294958675, 5747961.712595326]]}, "properties": {"id": "24457-24459-24461-24463-24465-24467-24469-24471-24473-24475-24477-24479-24481-24483-24485-24487-24489-24491-24493", "from": "498882149", "to": "2558470151", "length_m": 1246.4848678556796, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770604.9294958675, 5747961.712595326], [769448.5101735912, 5748360.499390328]]}, "properties": {"id": "24494-24492-24490-24488-24486-24484-24482-24480-24478-24476-24474-24472-24470-24468-24466-24464-24462-24460-24458", "from": "2558470151", "to": "498882149", "length_m": 1246.4848678556796, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770604.9294958675, 5747961.712595326], [771124.8385655438, 5747803.569347716]]}, "properties": {"id": "24495-24497-24499-24501-24503-24505-24507-24509-24511-24513", "from": "2558470151", "to": "2558470162", "length_m": 554.5634772381643, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771124.8385655438, 5747803.569347716], [770604.9294958675, 5747961.712595326]]}, "properties": {"id": "24514-24512-24510-24508-24506-24504-24502-24500-24498-24496", "from": "2558470162", "to": "2558470151", "length_m": 554.5634772381643, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771124.8385655438, 5747803.569347716], [771735.8463079857, 5747758.541575387]]}, "properties": {"id": "24515-24517-24519-24521-24523-24525-24527-24529-24531-24533-24535", "from": "2558470162", "to": "2558470163", "length_m": 627.661264442658, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771735.8463079857, 5747758.541575387], [771124.8385655438, 5747803.569347716]]}, "properties": {"id": "24536-24534-24532-24530-24528-24526-24524-24522-24520-24518-24516", "from": "2558470163", "to": "2558470162", "length_m": 627.661264442658, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771735.8463079857, 5747758.541575387], [772444.3338606617, 5747558.318802175]]}, "properties": {"id": "24537-24539-24541-24543-24545-24547-24549-24551-24553-24555-24557-24559-24561-24563-24565", "from": "2558470163", "to": "2558470177", "length_m": 753.3687856899683, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772444.3338606617, 5747558.318802175], [771735.8463079857, 5747758.541575387]]}, "properties": {"id": "24566-24564-24562-24560-24558-24556-24554-24552-24550-24548-24546-24544-24542-24540-24538", "from": "2558470177", "to": "2558470163", "length_m": 753.3687856899683, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772444.3338606617, 5747558.318802175], [772983.1798074348, 5747289.585059275]]}, "properties": {"id": "24567-24569-24571-24573-24575-24577-24579-24581-24583-24585-24587-24589-24591-24593-24595", "from": "2558470177", "to": "2558470211", "length_m": 636.4709899375081, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772983.1798074348, 5747289.585059275], [772444.3338606617, 5747558.318802175]]}, "properties": {"id": "24596-24594-24592-24590-24588-24586-24584-24582-24580-24578-24576-24574-24572-24570-24568", "from": "2558470211", "to": "2558470177", "length_m": 636.4709899375081, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772983.1798074348, 5747289.585059275], [773502.274582216, 5747112.694963757]]}, "properties": {"id": "24597-24599-24601-24603-24605-24607-24609-24611-24613-24615-24617", "from": "2558470211", "to": "2558470238", "length_m": 560.0144298530462, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832477.9416245378, 5803503.095087853], [832247.8926528275, 5802560.817248304]]}, "properties": {"id": "2460-2461-2462-2463-2464-2465-2466-2467-22158-20276-22192-22166-22167", "from": "293313146", "to": "29320573", "length_m": 970.479766729021, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773502.274582216, 5747112.694963757], [772983.1798074348, 5747289.585059275]]}, "properties": {"id": "24618-24616-24614-24612-24610-24608-24606-24604-24602-24600-24598", "from": "2558470238", "to": "2558470211", "length_m": 560.0144298530462, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773502.274582216, 5747112.694963757], [774245.8032834718, 5747083.161083811]]}, "properties": {"id": "24619-24621-24623-24625-24627-24629-24631-24633-24635-24637-24639-24641", "from": "2558470238", "to": "2558470240", "length_m": 756.5959886708641, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774245.8032834718, 5747083.161083811], [773502.274582216, 5747112.694963757]]}, "properties": {"id": "24642-24640-24638-24636-24634-24632-24630-24628-24626-24624-24622-24620", "from": "2558470240", "to": "2558470238", "length_m": 756.5959886708641, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774245.8032834718, 5747083.161083811], [774666.7955100406, 5746301.978958482]]}, "properties": {"id": "24643-24645-24647-24649-24651-24653-24655-24657-24659-24661-24663-24665-24667-24669-24671-24673-24675-24677-24679-24681", "from": "2558470240", "to": "519801355", "length_m": 950.4773094793721, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762592.1382873221, 5839461.831665914], [763156.7041991493, 5839599.596954661]]}, "properties": {"id": "2468-2469-2470-2471-2472-2473", "from": "1555084631", "to": "1555084666", "length_m": 581.3357794788926, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774666.7955100406, 5746301.978958482], [774245.8032834718, 5747083.161083811]]}, "properties": {"id": "24682-24680-24678-24676-24674-24672-24670-24668-24666-24664-24662-24660-24658-24656-24654-24652-24650-24648-24646-24644", "from": "519801355", "to": "2558470240", "length_m": 950.4773094793721, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774666.7955100406, 5746301.978958482], [774948.5816265474, 5745972.06776708]]}, "properties": {"id": "24683-24685-24687-24689-24691-24693-24695-24697-24699-24701-24703", "from": "519801355", "to": "498882146", "length_m": 526.3974585850149, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774948.5816265474, 5745972.06776708], [774666.7955100406, 5746301.978958482]]}, "properties": {"id": "24704-24702-24700-24698-24696-24694-24692-24690-24688-24686-24684", "from": "498882146", "to": "519801355", "length_m": 526.3974585850149, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774948.5816265474, 5745972.06776708], [774934.647509075, 5745517.04250961]]}, "properties": {"id": "24705-24707-24709-24711-24713-24715-24717-24719-24721-24723-24725-24727-24729", "from": "498882146", "to": "2558470480", "length_m": 507.78516422551223, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774934.647509075, 5745517.04250961], [774948.5816265474, 5745972.06776708]]}, "properties": {"id": "24730-24728-24726-24724-24722-24720-24718-24716-24714-24712-24710-24708-24706", "from": "2558470480", "to": "498882146", "length_m": 507.78516422551223, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774934.647509075, 5745517.04250961], [774407.4154549597, 5744997.4961850075]]}, "properties": {"id": "24731-24733-24735-24737-24739-24741-24743-24745-24747-24749-24751", "from": "2558470480", "to": "2558470493", "length_m": 622.0803703472051, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763156.7041991493, 5839599.596954661], [763978.7539456463, 5839689.043216003]]}, "properties": {"id": "2474-2475-2476-2477", "from": "1555084666", "to": "291556766", "length_m": 827.6583856604908, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774407.4154549597, 5744997.4961850075], [774934.647509075, 5745517.04250961]]}, "properties": {"id": "24752-24750-24748-24746-24744-24742-24740-24738-24736-24734-24732", "from": "2558470493", "to": "2558470480", "length_m": 622.0803703472051, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774407.4154549597, 5744997.4961850075], [774145.0345536757, 5744760.700112969]]}, "properties": {"id": "24753-24755-24757-24759-58035-58033-58031-58029-58027-58025", "from": "2558470493", "to": "2558470528", "length_m": 507.7308523198608, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770359.6831910333, 5737982.326101583], [770353.7002889145, 5738064.625815915]]}, "properties": {"id": "24761-24763-24765", "from": "3989810660", "to": "3989810659", "length_m": 97.39777622247544, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770353.7002889145, 5738064.625815915], [770359.6831910333, 5737982.326101583]]}, "properties": {"id": "24766-24764-24762", "from": "3989810659", "to": "3989810660", "length_m": 97.39777622247544, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761105.39280436, 5762777.578381436], [760459.7272321177, 5762545.416161255]]}, "properties": {"id": "24767-24768-24769-24770-24771-24772-24773", "from": "5857617037", "to": "3755251459", "length_m": 686.2566992412565, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760454.855390273, 5762561.472383756], [761100.7799931498, 5762791.582340685]]}, "properties": {"id": "24774-24775-24776-24777-24778-24779-24780", "from": "5857617039", "to": "5857617038", "length_m": 685.8015558232612, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790809.5210236667, 5755158.591244506], [790888.290692213, 5755144.961453477]]}, "properties": {"id": "24782", "from": "5678574453", "to": "2548347176", "length_m": 79.94017675600806, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790888.290692213, 5755144.961453477], [790809.5210236667, 5755158.591244506]]}, "properties": {"id": "24783", "from": "2548347176", "to": "5678574453", "length_m": 79.94017675600806, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790888.290692213, 5755144.961453477], [790960.6390806362, 5755090.949641913]]}, "properties": {"id": "24784-18854", "from": "2548347176", "to": "2548347184", "length_m": 120.94389459892798, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787778.0755587625, 5764853.138765428], [787703.1905117494, 5765043.791571635]]}, "properties": {"id": "24786-24787-24788-24789-24790-24791-32977-19967-19968-12913-12914-12915-12916-12917-12918-12919-12920-12921-12922-12923-12924-12925", "from": "1412037748", "to": "1412037741", "length_m": 219.63785766740315, "freespeed_mps": 3.5, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793676.6114116593, 5769521.545850031], [793722.2158518918, 5770077.147671824]]}, "properties": {"id": "24793-24794-24795-24796-24797-24798-24799-22893-22894-22895-22896-22897-22898-22899-22900-22901", "from": "880526921", "to": "880499710", "length_m": 565.0420404339575, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790726.1319844492, 5752239.518098917], [790649.1156892753, 5752161.546041556]]}, "properties": {"id": "24805-24807", "from": "5678574451", "to": "5678574449", "length_m": 152.61874208068832, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790649.1156892753, 5752161.546041556], [790726.1319844492, 5752239.518098917]]}, "properties": {"id": "24808-24806", "from": "5678574449", "to": "5678574451", "length_m": 152.61874208068832, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787051.336205417, 5754355.195482992], [786821.1884728321, 5754377.98079079]]}, "properties": {"id": "24809-24811-24813-24815-24817", "from": "5678574448", "to": "5678574443", "length_m": 232.658020498932, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786821.1884728321, 5754377.98079079], [787051.336205417, 5754355.195482992]]}, "properties": {"id": "24818-24816-24814-24812-24810", "from": "5678574443", "to": "5678574448", "length_m": 232.658020498932, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773854.4149361225, 5775872.421276042], [773897.2454991138, 5775919.637446176]]}, "properties": {"id": "24819-24821-24823-24825-24827-24829", "from": "5604445690", "to": "5604445684", "length_m": 66.71633462730254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773897.2454991138, 5775919.637446176], [773854.4149361225, 5775872.421276042]]}, "properties": {"id": "24830-24828-24826-24824-24822-24820", "from": "5604445684", "to": "5604445690", "length_m": 66.71633462730254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773897.2454991138, 5775919.637446176], [773985.6266109353, 5775964.25129219]]}, "properties": {"id": "24831-24833-24835", "from": "5604445684", "to": "5604445681", "length_m": 99.1895867278623, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773985.6266109353, 5775964.25129219], [773897.2454991138, 5775919.637446176]]}, "properties": {"id": "24836-24834-24832", "from": "5604445681", "to": "5604445684", "length_m": 99.1895867278623, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773985.6266109353, 5775964.25129219], [774040.307109978, 5775995.788323744]]}, "properties": {"id": "24837", "from": "5604445681", "to": "5604445680", "length_m": 63.123223207473345, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774040.307109978, 5775995.788323744], [773985.6266109353, 5775964.25129219]]}, "properties": {"id": "24838", "from": "5604445680", "to": "5604445681", "length_m": 63.123223207473345, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774040.307109978, 5775995.788323744], [774154.1735790087, 5776026.0956181735]]}, "properties": {"id": "24839-24841-24843-24845-24847", "from": "5604445680", "to": "5604445675", "length_m": 120.15917468522085, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774154.1735790087, 5776026.0956181735], [774040.307109978, 5775995.788323744]]}, "properties": {"id": "24848-24846-24844-24842-24840", "from": "5604445675", "to": "5604445680", "length_m": 120.15917468522085, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774154.1735790087, 5776026.0956181735], [774542.5051057844, 5775792.646409245]]}, "properties": {"id": "24849-24851-24853-24855-24857-24859-24861-24863-24865-24867-24869-24871-24873-24875-24877-24879-24881-24883-24885-24887", "from": "5604445675", "to": "5604445011", "length_m": 472.9631445967205, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774542.5051057844, 5775792.646409245], [774154.1735790087, 5776026.0956181735]]}, "properties": {"id": "24888-24886-24884-24882-24880-24878-24876-24874-24872-24870-24868-24866-24864-24862-24860-24858-24856-24854-24852-24850", "from": "5604445011", "to": "5604445675", "length_m": 472.9631445967205, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836070.9189364791, 5806377.198412481], [835651.1506349065, 5806078.1953985905]]}, "properties": {"id": "2490-2491-2492-2493-2494-2495-2496-2497-2498-2499-33937", "from": "36021221", "to": "29321163", "length_m": 522.876915039663, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774542.5051057844, 5775792.646409245], [774410.992824222, 5775058.601657473]]}, "properties": {"id": "24915-24917-24919-24921-24923-24925-24927-24929-24931-24933-24935-24937", "from": "5604445011", "to": "5604444999", "length_m": 745.7571988126334, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774410.992824222, 5775058.601657473], [774542.5051057844, 5775792.646409245]]}, "properties": {"id": "24938-24936-24934-24932-24930-24928-24926-24924-24922-24920-24918-24916", "from": "5604444999", "to": "5604445011", "length_m": 745.7571988126334, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774410.992824222, 5775058.601657473], [774316.2136743735, 5774524.588688431]]}, "properties": {"id": "24939-24941-24943-24945-24947", "from": "5604444999", "to": "5604438407", "length_m": 542.3828103008088, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774316.2136743735, 5774524.588688431], [774410.992824222, 5775058.601657473]]}, "properties": {"id": "24948-24946-24944-24942-24940", "from": "5604438407", "to": "5604444999", "length_m": 542.3828103008088, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835371.2911220524, 5812363.877455634], [835101.3743438013, 5812421.333348315]]}, "properties": {"id": "24951-24952-24953", "from": "2090569510", "to": "36026387", "length_m": 276.1634570698738, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835101.3743438013, 5812421.333348315], [834868.1384410388, 5812560.8041888345]]}, "properties": {"id": "24954-24955-24956-24957-24958", "from": "36026387", "to": "3088525625", "length_m": 273.20629407468886, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834868.1384410388, 5812560.8041888345], [834707.6507941913, 5812680.318071239]]}, "properties": {"id": "24959-24960", "from": "3088525625", "to": "36026393", "length_m": 200.10052883278595, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763978.7539456463, 5839689.043216003], [764770.2287726579, 5839654.935842681]]}, "properties": {"id": "2500-2501-55009", "from": "291556766", "to": "35098302", "length_m": 792.8864354041475, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833074.0350776088, 5819964.423236141], [833178.150870724, 5820309.061619351]]}, "properties": {"id": "2502-2595-2596-2597-56842-56843", "from": "601349059", "to": "603462038", "length_m": 360.0253514452217, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833268.2760720742, 5820608.354747334], [833270.561699091, 5820615.945555721]]}, "properties": {"id": "25028", "from": "2949278444", "to": "2865664642", "length_m": 7.927449946242483, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833270.561699091, 5820615.945555721], [833377.627372259, 5820968.9917648425]]}, "properties": {"id": "25029-25030-25031-25032-25033-25034-25035-25036-25037", "from": "2865664642", "to": "603462818", "length_m": 368.9721540930208, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833377.627372259, 5820968.9917648425], [833393.3930333938, 5821021.780958851]]}, "properties": {"id": "25038-25039-25040", "from": "603462818", "to": "26118268", "length_m": 55.09612607519269, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758860.2912084355, 5729660.372267379], [758966.9638247823, 5729525.565952098]]}, "properties": {"id": "25041-25043-25045-25047", "from": "832509099", "to": "832510337", "length_m": 173.3086935056056, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758966.9638247823, 5729525.565952098], [758860.2912084355, 5729660.372267379]]}, "properties": {"id": "25048-25046-25044-25042", "from": "832510337", "to": "832509099", "length_m": 173.3086935056056, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758966.9638247823, 5729525.565952098], [759072.732651972, 5729426.043075976]]}, "properties": {"id": "25049-25051", "from": "832510337", "to": "832509284", "length_m": 145.38604823731507, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759072.732651972, 5729426.043075976], [758966.9638247823, 5729525.565952098]]}, "properties": {"id": "25052-25050", "from": "832509284", "to": "832510337", "length_m": 145.38604823731507, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759072.732651972, 5729426.043075976], [759240.2684713962, 5729289.562688972]]}, "properties": {"id": "25053", "from": "832509284", "to": "832508177", "length_m": 216.09059869398598, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759240.2684713962, 5729289.562688972], [759072.732651972, 5729426.043075976]]}, "properties": {"id": "25054", "from": "832508177", "to": "832509284", "length_m": 216.09059869398598, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759240.2684713962, 5729289.562688972], [759331.9364379059, 5729204.514851804]]}, "properties": {"id": "25055", "from": "832508177", "to": "832509973", "length_m": 125.04459483439688, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759331.9364379059, 5729204.514851804], [759240.2684713962, 5729289.562688972]]}, "properties": {"id": "25056", "from": "832509973", "to": "832508177", "length_m": 125.04459483439688, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759331.9364379059, 5729204.514851804], [759437.5379137762, 5729114.9030693015]]}, "properties": {"id": "25057-25059-25061", "from": "832509973", "to": "832509468", "length_m": 138.71002823882765, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759437.5379137762, 5729114.9030693015], [759331.9364379059, 5729204.514851804]]}, "properties": {"id": "25062-25060-25058", "from": "832509468", "to": "832509973", "length_m": 138.71002823882765, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759437.5379137762, 5729114.9030693015], [759486.796387623, 5729078.8837613445]]}, "properties": {"id": "25063", "from": "832509468", "to": "5328184538", "length_m": 61.02284645497152, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759486.796387623, 5729078.8837613445], [759437.5379137762, 5729114.9030693015]]}, "properties": {"id": "25064", "from": "5328184538", "to": "832509468", "length_m": 61.02284645497152, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759486.796387623, 5729078.8837613445], [759524.1978543864, 5729051.526437631]]}, "properties": {"id": "25065", "from": "5328184538", "to": "832508974", "length_m": 46.338891631133905, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759524.1978543864, 5729051.526437631], [759486.796387623, 5729078.8837613445]]}, "properties": {"id": "25066", "from": "832508974", "to": "5328184538", "length_m": 46.338891631133905, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759524.1978543864, 5729051.526437631], [759608.9939780559, 5728978.342358621]]}, "properties": {"id": "25067-25069-25071", "from": "832508974", "to": "832509663", "length_m": 112.63301704058256, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759608.9939780559, 5728978.342358621], [759524.1978543864, 5729051.526437631]]}, "properties": {"id": "25072-25070-25068", "from": "832509663", "to": "832508974", "length_m": 112.63301704058256, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759608.9939780559, 5728978.342358621], [759647.8447441208, 5728594.364265472]]}, "properties": {"id": "25073-25075-25077-25079-25081-25083-25085-25087-25089-25091-25093-25095-25097", "from": "832509663", "to": "832510031", "length_m": 419.05060758307843, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759647.8447441208, 5728594.364265472], [759608.9939780559, 5728978.342358621]]}, "properties": {"id": "25098-25096-25094-25092-25090-25088-25086-25084-25082-25080-25078-25076-25074", "from": "832510031", "to": "832509663", "length_m": 419.05060758307843, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758862.9472901579, 5729685.575491294], [758860.2912084355, 5729660.372267379]]}, "properties": {"id": "25099", "from": "2876063767", "to": "832509099", "length_m": 25.342795138705526, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793913.6443397474, 5775211.348180891], [793874.3495755354, 5775008.517905575]]}, "properties": {"id": "25116", "from": "317732031", "to": "867706358", "length_m": 206.6015465284752, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793874.3495755354, 5775008.517905575], [793853.2633746966, 5774901.291863698]]}, "properties": {"id": "25117-25118", "from": "867706358", "to": "60278256", "length_m": 109.28002606123026, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792202.7507302337, 5764553.288129876], [792219.1126689105, 5764550.374817952]]}, "properties": {"id": "25121-7451", "from": "270450183", "to": "186879856", "length_m": 16.619278934944873, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750058.0905419933, 5836302.136644589], [750780.259518243, 5836412.056886036]]}, "properties": {"id": "25124-23561-23562-29662-29668-56709-56710-56711-56712-56713-56714-56715", "from": "1140594080", "to": "3205832023", "length_m": 730.4936885932153, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789974.396354984, 5751496.419157009], [789928.5682591703, 5751519.284511287]]}, "properties": {"id": "25125-25126", "from": "270452759", "to": "5642244500", "length_m": 51.291057776357434, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793652.867167108, 5771723.214595408], [793665.622148505, 5771721.8417653125]]}, "properties": {"id": "25127", "from": "317730866", "to": "317730498", "length_m": 12.82864808529862, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793665.622148505, 5771721.8417653125], [793652.867167108, 5771723.214595408]]}, "properties": {"id": "25128", "from": "317730498", "to": "317730866", "length_m": 12.82864808529862, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789440.4603790296, 5751345.571622396], [789784.1579673007, 5751475.3267116565]]}, "properties": {"id": "25142-25140-25138-25136-25134-25132-25130-25156-25162-25160", "from": "3049983777", "to": "270452662", "length_m": 370.88863743647454, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789440.4603790296, 5751345.571622396], [789218.2387872927, 5751378.31888973]]}, "properties": {"id": "25143-25145-25147-25149-25151", "from": "3049983777", "to": "508067815", "length_m": 225.04031982429487, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789218.2387872927, 5751378.31888973], [789440.4603790296, 5751345.571622396]]}, "properties": {"id": "25152-25150-25148-25146-25144", "from": "508067815", "to": "3049983777", "length_m": 225.04031982429487, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789218.2387872927, 5751378.31888973], [789122.0089455897, 5751398.107830709]]}, "properties": {"id": "25153", "from": "508067815", "to": "270452357", "length_m": 98.24349637869844, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789122.0089455897, 5751398.107830709], [789218.2387872927, 5751378.31888973]]}, "properties": {"id": "25154", "from": "270452357", "to": "508067815", "length_m": 98.24349637869844, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789942.4754441595, 5751536.245418434], [789974.396354984, 5751496.419157009]]}, "properties": {"id": "25157-25158", "from": "5642244499", "to": "270452759", "length_m": 51.10238619697312, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789784.1579673007, 5751475.3267116565], [789440.4603790296, 5751345.571622396]]}, "properties": {"id": "25159-25161-25155-25129-25131-25133-25135-25137-25139-25141", "from": "270452662", "to": "3049983777", "length_m": 370.88863743647454, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789784.1579673007, 5751475.3267116565], [789902.6774077143, 5751536.186845927]]}, "properties": {"id": "25163-25164-25165-25166-25167-25168", "from": "270452662", "to": "270452459", "length_m": 136.38654487445675, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789925.3822013005, 5751518.565466397], [789784.1579673007, 5751475.3267116565]]}, "properties": {"id": "25169-25170-25171-25172-25173-25174", "from": "270452455", "to": "270452662", "length_m": 151.43832814458926, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[815589.8007481659, 5759198.970086793], [815769.4465196204, 5759068.848715881]]}, "properties": {"id": "25190", "from": "632110348", "to": "143236890", "length_m": 221.8201397349233, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[815769.4465196204, 5759068.848715881], [815589.8007481659, 5759198.970086793]]}, "properties": {"id": "25191", "from": "143236890", "to": "632110348", "length_m": 221.8201397349233, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792713.2023863964, 5774831.041201365], [792152.5883109989, 5775765.934372057]]}, "properties": {"id": "25192-25193-25256-25257-25258-25259-25260-25261-25262-25263-25264-25265", "from": "253506644", "to": "622320061", "length_m": 1090.2872695978829, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789110.8029721687, 5751117.54824746], [789064.9892639889, 5751042.1567643685]]}, "properties": {"id": "25194", "from": "508068151", "to": "508067808", "length_m": 88.2200178133112, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789064.9892639889, 5751042.1567643685], [789110.8029721687, 5751117.54824746]]}, "properties": {"id": "25195", "from": "508067808", "to": "508068151", "length_m": 88.2200178133112, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789064.9892639889, 5751042.1567643685], [789021.6547309872, 5750958.496015544]]}, "properties": {"id": "25196", "from": "508067808", "to": "508067812", "length_m": 94.2178465572919, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789021.6547309872, 5750958.496015544], [789064.9892639889, 5751042.1567643685]]}, "properties": {"id": "25197", "from": "508067812", "to": "508067808", "length_m": 94.2178465572919, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789021.6547309872, 5750958.496015544], [788977.843238871, 5750871.76239402]]}, "properties": {"id": "25198-25200-25202", "from": "508067812", "to": "508067821", "length_m": 97.58485929677842, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788977.843238871, 5750871.76239402], [789021.6547309872, 5750958.496015544]]}, "properties": {"id": "25203-25201-25199", "from": "508067821", "to": "508067812", "length_m": 97.58485929677842, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789109.206171945, 5751122.084611978], [789114.6847933879, 5751122.054890993]]}, "properties": {"id": "25204-25205-25206", "from": "508068149", "to": "508067801", "length_m": 6.540016600274389, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789114.6847933879, 5751122.054890993], [789110.8029721687, 5751117.54824746]]}, "properties": {"id": "25207-25208-25209", "from": "508067801", "to": "508068151", "length_m": 7.263251238647813, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789110.8029721687, 5751117.54824746], [789109.206171945, 5751122.084611978]]}, "properties": {"id": "25210-25211", "from": "508068151", "to": "508068149", "length_m": 5.179717852252869, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788781.734657586, 5751139.565540636], [788780.5078462409, 5751131.951671686]]}, "properties": {"id": "25215-25216-25217-25218-25219-25220-25221-25222-25223", "from": "508068161", "to": "508068168", "length_m": 11.170702166676362, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788780.5078462409, 5751131.951671686], [788776.9482369246, 5751137.169539691]]}, "properties": {"id": "25224-25225-25226-25227-25228-25229", "from": "508068168", "to": "508067765", "length_m": 7.328713223554404, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788776.9482369246, 5751137.169539691], [788781.734657586, 5751139.565540636]]}, "properties": {"id": "25230-25231-25212-25213-25214", "from": "508067765", "to": "508068161", "length_m": 5.876723870727542, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789925.3822013005, 5751518.565466397], [789902.6774077143, 5751536.186845927]]}, "properties": {"id": "25232-25233-25234-25235-25236-25237", "from": "270452455", "to": "270452459", "length_m": 31.973377662760072, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789902.6774077143, 5751536.186845927], [789914.8359388472, 5751560.52042772]]}, "properties": {"id": "25238-25239-25240-25241-25242-25243", "from": "270452459", "to": "270452461", "length_m": 27.06879149023904, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789914.8359388472, 5751560.52042772], [789942.5169218365, 5751539.833916272]]}, "properties": {"id": "25244-25245-25246-25247-25248-25249", "from": "270452461", "to": "270452466", "length_m": 36.03126730043081, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789942.5169218365, 5751539.833916272], [789942.4754441595, 5751536.245418434]]}, "properties": {"id": "25250", "from": "270452466", "to": "5642244499", "length_m": 3.588737541865344, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789942.4754441595, 5751536.245418434], [789928.5682591703, 5751519.284511287]]}, "properties": {"id": "25251-25252-25253-25254", "from": "5642244499", "to": "5642244500", "length_m": 23.139993137380507, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789928.5682591703, 5751519.284511287], [789925.3822013005, 5751518.565466397]]}, "properties": {"id": "25255", "from": "5642244500", "to": "270452455", "length_m": 3.2661889508240036, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788387.5907077503, 5750204.751934341], [788339.6150059395, 5750267.530363034]]}, "properties": {"id": "25266", "from": "508067928", "to": "508067997", "length_m": 79.01138578318947, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788339.6150059395, 5750267.530363034], [788387.5907077503, 5750204.751934341]]}, "properties": {"id": "25267", "from": "508067997", "to": "508067928", "length_m": 79.01138578318947, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788339.6150059395, 5750267.530363034], [788286.9531463797, 5750330.965050025]]}, "properties": {"id": "25268-25270", "from": "508067997", "to": "508067937", "length_m": 82.46011823759929, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788286.9531463797, 5750330.965050025], [788339.6150059395, 5750267.530363034]]}, "properties": {"id": "25271-25269", "from": "508067937", "to": "508067997", "length_m": 82.46011823759929, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792192.2885563445, 5755043.134890294], [792222.1894028983, 5755228.024397171]]}, "properties": {"id": "25272-25274", "from": "5421415356", "to": "5421415350", "length_m": 187.6347813369101, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792222.1894028983, 5755228.024397171], [792192.2885563445, 5755043.134890294]]}, "properties": {"id": "25275-25273", "from": "5421415350", "to": "5421415356", "length_m": 187.6347813369101, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792231.8700317799, 5755227.129403853], [792247.0392681056, 5755273.34004129]]}, "properties": {"id": "25276", "from": "5421415351", "to": "5421415360", "length_m": 48.636701548226846, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792247.0392681056, 5755273.34004129], [792231.8700317799, 5755227.129403853]]}, "properties": {"id": "25277", "from": "5421415360", "to": "5421415351", "length_m": 48.636701548226846, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788216.9884942293, 5765253.739676239], [787745.4206071688, 5764911.558063916]]}, "properties": {"id": "25278-25279-25280-25281-25282-25283-25284-25285-25286", "from": "1270758517", "to": "1270758496", "length_m": 586.9151847159836, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787745.4206071688, 5764911.558063916], [787247.7409632091, 5764762.715810174]]}, "properties": {"id": "25287-25288-25289-25290-25291-25292-25293-25294-25295", "from": "1270758496", "to": "1270758480", "length_m": 520.9971709993011, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787247.7409632091, 5764762.715810174], [786400.2462653454, 5764895.843825157]]}, "properties": {"id": "25296-25297-25298-25299-25300-25301-25302-39771-39791-39792", "from": "1270758480", "to": "1270758465", "length_m": 868.7618720623315, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788254.4111639413, 5765313.568393441], [788874.8706688373, 5766022.16001412]]}, "properties": {"id": "25303-25304-25305-25306", "from": "1270758492", "to": "827509566", "length_m": 941.8588668852501, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792136.4392649594, 5755244.565143622], [792222.1894028983, 5755228.024397171]]}, "properties": {"id": "25312", "from": "5421415346", "to": "5421415350", "length_m": 87.33087897667616, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792222.1894028983, 5755228.024397171], [792136.4392649594, 5755244.565143622]]}, "properties": {"id": "25313", "from": "5421415350", "to": "5421415346", "length_m": 87.33087897667616, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792222.1894028983, 5755228.024397171], [792231.8700317799, 5755227.129403853]]}, "properties": {"id": "25314", "from": "5421415350", "to": "5421415351", "length_m": 9.721912754450527, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792231.8700317799, 5755227.129403853], [792222.1894028983, 5755228.024397171]]}, "properties": {"id": "25315", "from": "5421415351", "to": "5421415350", "length_m": 9.721912754450527, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792231.8700317799, 5755227.129403853], [792268.2865050366, 5755219.364729159]]}, "properties": {"id": "25316", "from": "5421415351", "to": "5421415352", "length_m": 37.23505998119827, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792268.2865050366, 5755219.364729159], [792231.8700317799, 5755227.129403853]]}, "properties": {"id": "25317", "from": "5421415352", "to": "5421415351", "length_m": 37.23505998119827, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787744.1616736475, 5765073.321817973], [788254.4111639413, 5765313.568393441]]}, "properties": {"id": "25318-25319-25320-25321-25322-25323-25324-25325-25326-25327-25328-25329-25330-25331-25332-25333-25334", "from": "1412037725", "to": "1270758492", "length_m": 594.8404385332993, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792100.9212803831, 5755051.787216717], [792185.2438848276, 5755042.322826254]]}, "properties": {"id": "25335-25337", "from": "5421415344", "to": "5421415354", "length_m": 84.9573435252526, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792185.2438848276, 5755042.322826254], [792100.9212803831, 5755051.787216717]]}, "properties": {"id": "25338-25336", "from": "5421415354", "to": "5421415344", "length_m": 84.9573435252526, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792185.2438848276, 5755042.322826254], [792192.2885563445, 5755043.134890294]]}, "properties": {"id": "25339", "from": "5421415354", "to": "5421415356", "length_m": 7.091321757431634, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792192.2885563445, 5755043.134890294], [792185.2438848276, 5755042.322826254]]}, "properties": {"id": "25340", "from": "5421415356", "to": "5421415354", "length_m": 7.091321757431634, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792192.2885563445, 5755043.134890294], [792234.1591699984, 5755036.784535772]]}, "properties": {"id": "25341-25343", "from": "5421415356", "to": "5421415358", "length_m": 42.37607162374057, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792234.1591699984, 5755036.784535772], [792192.2885563445, 5755043.134890294]]}, "properties": {"id": "25344-25342", "from": "5421415358", "to": "5421415356", "length_m": 42.37607162374057, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757921.6434022676, 5839061.045738755], [758357.1128328582, 5838845.978781601]]}, "properties": {"id": "25374-25375-25376-25377-25378-25379-25380-25381-25382", "from": "364000848", "to": "35098291", "length_m": 486.45206893696945, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829485.5805364068, 5814671.241676876], [829482.3883653067, 5814626.773193162]]}, "properties": {"id": "25385", "from": "1764268037", "to": "1764268034", "length_m": 44.58291153096249, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757557.977728913, 5839047.8282806985], [757546.5833345, 5839074.187757807]]}, "properties": {"id": "25389-25390-25391-25392-25393", "from": "1556440079", "to": "1556440055", "length_m": 29.062364437030205, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829473.390112578, 5814676.988605773], [829485.5805364068, 5814671.241676876]]}, "properties": {"id": "25394", "from": "1764268339", "to": "1764268037", "length_m": 13.477151940602859, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829482.3883653067, 5814626.773193162], [829471.0349137184, 5814632.697878911]]}, "properties": {"id": "25395", "from": "1764268034", "to": "1764268289", "length_m": 12.806356386676091, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757135.0161516013, 5839757.213043742], [756507.7646766041, 5840292.504004855]]}, "properties": {"id": "25429-25430-25431-25432-25433-25434-25435-25436-11222-11275-11276-11277-11278", "from": "364000877", "to": "1844189644", "length_m": 848.6973475909723, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757801.7154643342, 5839066.984506555], [758357.1128328582, 5838845.978781601]]}, "properties": {"id": "25439-25440-25441-25442-25443-25444-25445-25446-25447", "from": "1556440095", "to": "35098291", "length_m": 597.9065237887202, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794027.7284453437, 5771923.76769779], [794023.365711736, 5771913.8114287015]]}, "properties": {"id": "25519", "from": "317727073", "to": "705048767", "length_m": 10.870176554287424, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794023.365711736, 5771913.8114287015], [794027.7284453437, 5771923.76769779]]}, "properties": {"id": "25520", "from": "705048767", "to": "317727073", "length_m": 10.870176554287424, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799494.281985384, 5784272.297081155], [799954.7674624512, 5784586.082040942]]}, "properties": {"id": "25521-25633-25634-25635", "from": "619532812", "to": "880404429", "length_m": 557.5646730045344, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780560.0343553331, 5763452.976569278], [780437.6903719747, 5762936.279552477]]}, "properties": {"id": "25542-25544-25546-25548-25550-25552", "from": "480636127", "to": "1835206882", "length_m": 538.7570726545334, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780437.6903719747, 5762936.279552477], [780560.0343553331, 5763452.976569278]]}, "properties": {"id": "25553-25551-25549-25547-25545-25543", "from": "1835206882", "to": "480636127", "length_m": 538.7570726545334, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817094.6944992444, 5757801.749936119], [817112.0400675624, 5757793.709225318]]}, "properties": {"id": "25558-25559-25560-25561", "from": "631416339", "to": "631416519", "length_m": 20.410000933846, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817112.0400675624, 5757793.709225318], [817106.6928442648, 5757772.917096118]]}, "properties": {"id": "25562-25563-25564-25565", "from": "631416519", "to": "631416523", "length_m": 23.457691715861863, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817106.6928442648, 5757772.917096118], [817082.1246684758, 5757784.743351829]]}, "properties": {"id": "25566-25567-25568-25569-25570-25571-25572", "from": "631416523", "to": "631416524", "length_m": 32.58403287354984, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817082.1246684758, 5757784.743351829], [817094.6944992444, 5757801.749936119]]}, "properties": {"id": "25573-25574-25575-25576-25577", "from": "631416524", "to": "631416339", "length_m": 23.055501994852996, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816965.2077048337, 5757886.5565498], [817045.9714475803, 5757836.615247862]]}, "properties": {"id": "25578-25579", "from": "631416076", "to": "631416318", "length_m": 94.96742970201403, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817045.9714475803, 5757836.615247862], [817050.5516043326, 5757833.389236211]]}, "properties": {"id": "25580", "from": "631416318", "to": "631416323", "length_m": 5.602230513733742, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817050.5516043326, 5757833.389236211], [817094.6944992444, 5757801.749936119]]}, "properties": {"id": "25581-25582-25583-25584-25585-25586-25587", "from": "631416323", "to": "631416339", "length_m": 55.13271526738675, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817112.0400675624, 5757793.709225318], [817206.7780716445, 5757768.011007187]]}, "properties": {"id": "25588-25589-25590-25591-25592-25593-25594", "from": "631416519", "to": "631418013", "length_m": 100.262570245852, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817206.7780716445, 5757768.011007187], [817212.0551399023, 5757767.58152093]]}, "properties": {"id": "25595", "from": "631418013", "to": "631418011", "length_m": 5.294516720906142, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817212.0551399023, 5757767.58152093], [817311.5069183436, 5757764.622414809]]}, "properties": {"id": "25596-25597-25598", "from": "631418011", "to": "143570153", "length_m": 99.52419432141303, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817311.5069183436, 5757764.622414809], [817823.8075391345, 5757825.376125136]]}, "properties": {"id": "25599-25601-25603-25605-25607-25609-25611", "from": "143570153", "to": "52495533", "length_m": 515.9110308237458, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817823.8075391345, 5757825.376125136], [817311.5069183436, 5757764.622414809]]}, "properties": {"id": "25612-25610-25608-25606-25604-25602-25600", "from": "52495533", "to": "143570153", "length_m": 515.9110308237458, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798450.9952170888, 5769293.117561737], [797737.2453671894, 5769573.963175141]]}, "properties": {"id": "25618-49217-49218-49219-49220-49221-49222", "from": "668716088", "to": "279677534", "length_m": 767.0269193340466, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754170.3684243638, 5829152.739896544], [753356.5491437541, 5829531.423721744]]}, "properties": {"id": "25632-25630-25628-25626-25624-25622-25620-43034-43032-43030-43028-43026-43024-43022-43020-43018", "from": "2744576180", "to": "2744576182", "length_m": 915.2824757367221, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799954.7674624512, 5784586.082040942], [800582.7785778672, 5784975.532420226]]}, "properties": {"id": "25636-25637-25638-25639-25640-25641-25642-25643-25644-25645", "from": "880404429", "to": "322483539", "length_m": 740.8195985680366, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799323.318756271, 5784114.94202945], [798792.5830074709, 5783613.191734745]]}, "properties": {"id": "25650-25651-25652-25653-25654-25655-25656-25657", "from": "867732171", "to": "617475562", "length_m": 730.4226289313698, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754444.8884880715, 5829079.121964242], [754474.1154317558, 5829061.337308558]]}, "properties": {"id": "25665-25666", "from": "1845458264", "to": "3455069875", "length_m": 34.43984145647794, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790128.3869051913, 5753308.416164181], [790108.5728142075, 5753219.790210123]]}, "properties": {"id": "25667", "from": "270452051", "to": "270452119", "length_m": 90.81386416147517, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790108.5728142075, 5753219.790210123], [790072.2925582496, 5753019.466422894]]}, "properties": {"id": "25668", "from": "270452119", "to": "510172408", "length_m": 203.58260402536914, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790072.2925582496, 5753019.466422894], [790049.5934782743, 5752898.300832069]]}, "properties": {"id": "25669", "from": "510172408", "to": "510172769", "length_m": 123.2734708357957, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790049.5934782743, 5752898.300832069], [790031.1312165265, 5752800.967994779]]}, "properties": {"id": "25670", "from": "510172769", "to": "148808265", "length_m": 99.06834163168584, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790031.1312165265, 5752800.967994779], [790005.4004527288, 5752663.639705548]]}, "properties": {"id": "25671", "from": "148808265", "to": "510173127", "length_m": 139.71804180960098, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790005.4004527288, 5752663.639705548], [789991.5042837171, 5752587.849305163]]}, "properties": {"id": "25672", "from": "510173127", "to": "148808280", "length_m": 77.05380131281821, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789991.5042837171, 5752587.849305163], [789979.6025029168, 5752524.9133673115]]}, "properties": {"id": "25673", "from": "148808280", "to": "510173165", "length_m": 64.05142197280894, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789979.6025029168, 5752524.9133673115], [789953.9323345798, 5752386.315772806]]}, "properties": {"id": "25674", "from": "510173165", "to": "510174986", "length_m": 140.95478254291805, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789953.9323345798, 5752386.315772806], [789931.2758940725, 5752266.271063677]]}, "properties": {"id": "25675-25676-25677", "from": "510174986", "to": "270452270", "length_m": 122.1645722489343, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826838.1451004129, 5801145.120304722], [827415.3389997522, 5801297.322199045]]}, "properties": {"id": "25683-53704", "from": "125287423", "to": "350784931", "length_m": 596.9240899338307, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798792.5830074709, 5783613.191734745], [798238.3918192913, 5783077.559607344]]}, "properties": {"id": "25684-25685-25686-25687-25688-25689-25690", "from": "617475562", "to": "617475616", "length_m": 770.7357260280171, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786960.6308137961, 5753801.460716687], [787038.4758054324, 5754276.242674278]]}, "properties": {"id": "25691", "from": "2833518552", "to": "1658427408", "length_m": 481.12134620976866, "freespeed_mps": 13.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787038.4758054324, 5754276.242674278], [786960.6308137961, 5753801.460716687]]}, "properties": {"id": "25692", "from": "1658427408", "to": "2833518552", "length_m": 481.12134620976866, "freespeed_mps": 13.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787038.4758054324, 5754276.242674278], [787051.336205417, 5754355.195482992]]}, "properties": {"id": "25693-25695", "from": "1658427408", "to": "5678574448", "length_m": 79.99334902741731, "freespeed_mps": 13.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787051.336205417, 5754355.195482992], [787038.4758054324, 5754276.242674278]]}, "properties": {"id": "25696-25694", "from": "5678574448", "to": "1658427408", "length_m": 79.99334902741731, "freespeed_mps": 13.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787051.336205417, 5754355.195482992], [787091.5556547717, 5754602.14275065]]}, "properties": {"id": "25697", "from": "5678574448", "to": "321710619", "length_m": 250.20103329191275, "freespeed_mps": 13.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787091.5556547717, 5754602.14275065], [787051.336205417, 5754355.195482992]]}, "properties": {"id": "25698", "from": "321710619", "to": "5678574448", "length_m": 250.20103329191275, "freespeed_mps": 13.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786960.6308137961, 5753801.460716687], [786220.967493108, 5753938.55646854]]}, "properties": {"id": "25699-54015-54017", "from": "2833518552", "to": "5984995359", "length_m": 752.2637485371756, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817206.2659454034, 5821922.122163385], [817473.4672565339, 5821931.044166807]]}, "properties": {"id": "25701-25702-25703-25704-25705", "from": "59961468", "to": "59961698", "length_m": 267.80946017038013, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794205.2736740815, 5777905.392251887], [794225.4825959142, 5777901.727007394]]}, "properties": {"id": "25706", "from": "252359226", "to": "252359243", "length_m": 20.538610888188042, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794225.4825959142, 5777901.727007394], [794205.2736740815, 5777905.392251887]]}, "properties": {"id": "25707", "from": "252359243", "to": "252359226", "length_m": 20.538610888188042, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788753.109586768, 5772926.379708896], [788779.6667209917, 5772304.723276334]]}, "properties": {"id": "25729-25730-25731-25732-25733-25734-25735-25736", "from": "428722315", "to": "420460952", "length_m": 622.3545967942429, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810202.3515081999, 5822766.875549031], [809665.8858409623, 5822740.81403926]]}, "properties": {"id": "25755-35714-35715-35716-35717-35718", "from": "716679886", "to": "716679848", "length_m": 538.5174177995926, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791275.5474336584, 5773001.15882421], [792559.2166237669, 5772749.819499749]]}, "properties": {"id": "25763-25761-25759-25757-41029-41027-41025-41023-41106-41104-41102-41100-41098-41096-41094-36211-5940-5938-5936-5934-5932-5930-5928-5926-5924-5922-5920-4183-4181-4179-4177-4175-4173", "from": "880227919", "to": "317728407", "length_m": 1309.240015039898, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791275.5474336584, 5773001.15882421], [790745.0937687957, 5773125.797158313]]}, "properties": {"id": "25764-25766-25768-25770-25772-25774-25776-25778-25780-25782-25784-25786-25788-25790-25792-25794-25796-25798", "from": "880227919", "to": "265710645", "length_m": 733.4592316621078, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790745.0937687957, 5773125.797158313], [791275.5474336584, 5773001.15882421]]}, "properties": {"id": "25799-25797-25795-25793-25791-25789-25787-25785-25783-25781-25779-25777-25775-25773-25771-25769-25767-25765", "from": "265710645", "to": "880227919", "length_m": 733.4592316621078, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790745.0937687957, 5773125.797158313], [790229.9750993559, 5773340.931344876]]}, "properties": {"id": "25800-25802-25804-25806-25808-25810-25812-25814-25816-25818-25820-25822-25824-25826", "from": "265710645", "to": "690279991", "length_m": 640.7554134739905, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790229.9750993559, 5773340.931344876], [790745.0937687957, 5773125.797158313]]}, "properties": {"id": "25827-25825-25823-25821-25819-25817-25815-25813-25811-25809-25807-25805-25803-25801", "from": "690279991", "to": "265710645", "length_m": 640.7554134739905, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838693.2204772824, 5805835.530161926], [838673.6700674526, 5805727.638481267]]}, "properties": {"id": "25839", "from": "832362782", "to": "250287618", "length_m": 109.64868105484388, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[808437.9979841543, 5823303.081033997], [809079.0432170993, 5823017.345081918]]}, "properties": {"id": "25848-25849-25850-25851-25852-25853-25854-25855-25856-25857", "from": "4230275119", "to": "1579258902", "length_m": 706.5174841201639, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[809079.0432170993, 5823017.345081918], [809639.0583221022, 5822767.386344217]]}, "properties": {"id": "25858-25859-25860-25861-25862-25863-25864-25865-25866-25867-25868-25869-25870-25871", "from": "1579258902", "to": "716680030", "length_m": 618.737292053875, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[809639.0583221022, 5822767.386344217], [810312.9293883025, 5822801.49002729]]}, "properties": {"id": "25872-25873-25874-25875-25876-25877-25744-22079", "from": "716680030", "to": "716680041", "length_m": 677.6627612689697, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749051.003245512, 5716008.488159791], [749181.2878697568, 5716521.704953693]]}, "properties": {"id": "25883-25881-25879-45206-45204-45202-45200-45198-45196-45194-46699-46697-46695-19129-19127-19125-19123-19121-19119-19117-19115-19113-19111-19109", "from": "234824744", "to": "234824704", "length_m": 623.1917473963388, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749051.003245512, 5716008.488159791], [749028.9637338513, 5715773.38120576]]}, "properties": {"id": "25884-25886-25888-25890-25892-25894-25896-25898-25900-25902-25904-25906-25908-25910-25912-25914-25916-25918-25920-25922-25924-25926-25928-25930-25932-25934-25936-25938-25940-25942", "from": "234824744", "to": "234824793", "length_m": 535.83365921078, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836533.9934649337, 5806774.830407119], [836600.5509090135, 5806818.927509493]]}, "properties": {"id": "2592-2593-2594", "from": "36021203", "to": "36021205", "length_m": 79.8411145612164, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749028.9637338513, 5715773.38120576], [749051.003245512, 5716008.488159791]]}, "properties": {"id": "25943-25941-25939-25937-25935-25933-25931-25929-25927-25925-25923-25921-25919-25917-25915-25913-25911-25909-25907-25905-25903-25901-25899-25897-25895-25893-25891-25889-25887-25885", "from": "234824793", "to": "234824744", "length_m": 535.83365921078, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749028.9637338513, 5715773.38120576], [748592.9878882248, 5715505.565922509]]}, "properties": {"id": "25944-25946-25948-25950-25952-25954-25956-25958-25960-25962-25964-25966-25968-25970-25972-25974-25976", "from": "234824793", "to": "234824822", "length_m": 533.6397121928467, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748592.9878882248, 5715505.565922509], [749028.9637338513, 5715773.38120576]]}, "properties": {"id": "25977-25975-25973-25971-25969-25967-25965-25963-25961-25959-25957-25955-25953-25951-25949-25947-25945", "from": "234824822", "to": "234824793", "length_m": 533.6397121928467, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748592.9878882248, 5715505.565922509], [748100.2589442392, 5715431.35964857]]}, "properties": {"id": "25978-25980-25982-25984-25986-25988-25990-25992-25994-25996-25998-26000-26002-26004-26006-26008-26010-26012-26014-26016", "from": "234824822", "to": "234824852", "length_m": 515.3820132726828, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748100.2589442392, 5715431.35964857], [748592.9878882248, 5715505.565922509]]}, "properties": {"id": "26017-26015-26013-26011-26009-26007-26005-26003-26001-25999-25997-25995-25993-25991-25989-25987-25985-25983-25981-25979", "from": "234824852", "to": "234824822", "length_m": 515.3820132726828, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748100.2589442392, 5715431.35964857], [747611.1212079264, 5715253.975869291]]}, "properties": {"id": "26018-26020-26022-26024-26026-26028-26030-26032-26034-26036-26038-26040-26042", "from": "234824852", "to": "234824873", "length_m": 522.9803930436398, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778496.9183123087, 5765883.996826496], [778516.1721591211, 5765823.281483502]]}, "properties": {"id": "2602-2603-2604", "from": "2379162968", "to": "2379162969", "length_m": 63.748807580419566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747611.1212079264, 5715253.975869291], [748100.2589442392, 5715431.35964857]]}, "properties": {"id": "26043-26041-26039-26037-26035-26033-26031-26029-26027-26025-26023-26021-26019", "from": "234824873", "to": "234824852", "length_m": 522.9803930436398, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747611.1212079264, 5715253.975869291], [747193.2294946231, 5715075.453988148]]}, "properties": {"id": "26044-26046-26048-26050-26052-26054-26056-26058-26060-26062-26064-26066-26068-26070-26072-26074-26076-26078-26080-26082-26084-26086-26088-26090", "from": "234824873", "to": "234824925", "length_m": 512.9143902651768, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747193.2294946231, 5715075.453988148], [747611.1212079264, 5715253.975869291]]}, "properties": {"id": "26091-26089-26087-26085-26083-26081-26079-26077-26075-26073-26071-26069-26067-26065-26063-26061-26059-26057-26055-26053-26051-26049-26047-26045", "from": "234824925", "to": "234824873", "length_m": 512.9143902651768, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747193.2294946231, 5715075.453988148], [746961.3106038189, 5714665.513525365]]}, "properties": {"id": "26092-26094-26096-26098-26100-26102-26104-26106-26108-26110-26112-26114-26116-26118-26120-26122-26124-26126-26128-26130-26132-26134-26136-26138-26140", "from": "234824925", "to": "234824969", "length_m": 522.1356431564291, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791793.1563000405, 5757843.57884407], [792591.7020099267, 5757693.309706474]]}, "properties": {"id": "261-259-257-255-253-251-249-247-245-243-241-239-237-235-233", "from": "5604428831", "to": "5604428846", "length_m": 813.3666699371431, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833541.0060984937, 5804933.290794583], [834658.2692955739, 5805536.737065484]]}, "properties": {"id": "2614-2615-2616", "from": "1745493186", "to": "571400149", "length_m": 1269.84976920987, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746961.3106038189, 5714665.513525365], [747193.2294946231, 5715075.453988148]]}, "properties": {"id": "26141-26139-26137-26135-26133-26131-26129-26127-26125-26123-26121-26119-26117-26115-26113-26111-26109-26107-26105-26103-26101-26099-26097-26095-26093", "from": "234824969", "to": "234824925", "length_m": 522.1356431564291, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838684.4575825208, 5805857.642460985], [838708.8699581255, 5805988.885761861]]}, "properties": {"id": "26142-22694-22695", "from": "832362788", "to": "832362781", "length_m": 133.51596919949557, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780109.5228066412, 5747097.024914645], [780059.1183308262, 5746386.599686763]]}, "properties": {"id": "26143-26145-26147-26149-26151-26153-26155-26157-26159-26161-26163-26165-26167-26169-26171-26173-26175-26177-26179-26181-26183-26185-26187", "from": "4005368879", "to": "289545413", "length_m": 825.4799093463433, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836333.9206796132, 5820097.5897940695], [835489.7614810935, 5820926.718636574]]}, "properties": {"id": "2617-2618-2605-2718-2719-2720", "from": "36047423", "to": "5549173095", "length_m": 1183.6005233866535, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780059.1183308262, 5746386.599686763], [780109.5228066412, 5747097.024914645]]}, "properties": {"id": "26188-26186-26184-26182-26180-26178-26176-26174-26172-26170-26168-26166-26164-26162-26160-26158-26156-26154-26152-26150-26148-26146-26144", "from": "289545413", "to": "4005368879", "length_m": 825.4799093463433, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780059.1183308262, 5746386.599686763], [779891.239376009, 5745866.486730982]]}, "properties": {"id": "26189-26191-26193-26195-26197-26199-26201-26203-26205-26207-26209-26211-26213-26215-26217-26219-26221-26223-26225", "from": "289545413", "to": "37684809", "length_m": 615.6549192496547, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833403.5818033325, 5804644.247466371], [833426.0717594117, 5804640.6872848235]]}, "properties": {"id": "2619", "from": "253337728", "to": "254256120", "length_m": 22.770002483396798, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835330.4359698454, 5819179.43080884], [835313.248813444, 5819178.839997333]]}, "properties": {"id": "262", "from": "30929318", "to": "3008938960", "length_m": 17.197307941551397, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833426.0717594117, 5804640.6872848235], [833575.1068861452, 5804615.549525798]]}, "properties": {"id": "2620-2621", "from": "254256120", "to": "253337734", "length_m": 151.1403068340043, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779891.239376009, 5745866.486730982], [780059.1183308262, 5746386.599686763]]}, "properties": {"id": "26226-26224-26222-26220-26218-26216-26214-26212-26210-26208-26206-26204-26202-26200-26198-26196-26194-26192-26190", "from": "37684809", "to": "289545413", "length_m": 615.6549192496547, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779891.239376009, 5745866.486730982], [779545.8561802739, 5745479.920384184]]}, "properties": {"id": "26227-26229-26231-26233-26235", "from": "37684809", "to": "37684777", "length_m": 526.498453252706, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779545.8561802739, 5745479.920384184], [779891.239376009, 5745866.486730982]]}, "properties": {"id": "26236-26234-26232-26230-26228", "from": "37684777", "to": "37684809", "length_m": 526.498453252706, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779545.8561802739, 5745479.920384184], [779273.1331550764, 5745039.2882560035]]}, "properties": {"id": "26237-26239-26241-26243-26245-26247-26249", "from": "37684777", "to": "289545872", "length_m": 523.030291590134, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779273.1331550764, 5745039.2882560035], [779545.8561802739, 5745479.920384184]]}, "properties": {"id": "26250-26248-26246-26244-26242-26240-26238", "from": "289545872", "to": "37684777", "length_m": 523.030291590134, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779273.1331550764, 5745039.2882560035], [779127.1245340216, 5744860.995804267]]}, "properties": {"id": "26251-26253-26255-26257-26259", "from": "289545872", "to": "289545881", "length_m": 232.8746189333874, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779127.1245340216, 5744860.995804267], [779273.1331550764, 5745039.2882560035]]}, "properties": {"id": "26260-26258-26256-26254-26252", "from": "289545881", "to": "289545872", "length_m": 232.8746189333874, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838724.8193960745, 5806014.615546241], [838693.2204772824, 5805835.530161926]]}, "properties": {"id": "26262-26263-7030-7031", "from": "832362784", "to": "832362782", "length_m": 181.9376598160934, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771691.2887190755, 5739636.000595009], [771463.7723573451, 5739372.648058003]]}, "properties": {"id": "26264", "from": "37673837", "to": "831201551", "length_m": 348.0204779344841, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771463.7723573451, 5739372.648058003], [771691.2887190755, 5739636.000595009]]}, "properties": {"id": "26265", "from": "831201551", "to": "37673837", "length_m": 348.0204779344841, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771463.7723573451, 5739372.648058003], [771230.0935949076, 5739111.131912395]]}, "properties": {"id": "26266-26268", "from": "831201551", "to": "831202184", "length_m": 350.7085084191922, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771230.0935949076, 5739111.131912395], [771463.7723573451, 5739372.648058003]]}, "properties": {"id": "26269-26267", "from": "831202184", "to": "831201551", "length_m": 350.7085084191922, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771230.0935949076, 5739111.131912395], [771168.1075926195, 5739016.468865144]]}, "properties": {"id": "26270-26272", "from": "831202184", "to": "524155309", "length_m": 113.60716699679193, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771168.1075926195, 5739016.468865144], [771230.0935949076, 5739111.131912395]]}, "properties": {"id": "26273-26271", "from": "524155309", "to": "831202184", "length_m": 113.60716699679193, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771168.1075926195, 5739016.468865144], [771132.6913502344, 5738886.504326693]]}, "properties": {"id": "26274-26276-26278-26280-26282", "from": "524155309", "to": "831202021", "length_m": 135.0211664881423, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763489.7105527145, 5839618.578995002], [762599.1748987441, 5839434.613205612]]}, "properties": {"id": "2628-2629-2630-2631-2632-2633", "from": "291556819", "to": "1555084675", "length_m": 910.1004523038665, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771132.6913502344, 5738886.504326693], [771168.1075926195, 5739016.468865144]]}, "properties": {"id": "26283-26281-26279-26277-26275", "from": "831202021", "to": "524155309", "length_m": 135.0211664881423, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771132.6913502344, 5738886.504326693], [771085.2506285853, 5738642.065099783]]}, "properties": {"id": "26284-26286", "from": "831202021", "to": "831202460", "length_m": 249.00031659773293, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771085.2506285853, 5738642.065099783], [771132.6913502344, 5738886.504326693]]}, "properties": {"id": "26287-26285", "from": "831202460", "to": "831202021", "length_m": 249.00031659773293, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771085.2506285853, 5738642.065099783], [771066.1765084842, 5738551.986933261]]}, "properties": {"id": "26288", "from": "831202460", "to": "831201968", "length_m": 92.07550235463303, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771066.1765084842, 5738551.986933261], [771085.2506285853, 5738642.065099783]]}, "properties": {"id": "26289", "from": "831201968", "to": "831202460", "length_m": 92.07550235463303, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771066.1765084842, 5738551.986933261], [771036.0788890328, 5738476.226960222]]}, "properties": {"id": "26290-26292", "from": "831201968", "to": "831201154", "length_m": 81.64998241981304, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771036.0788890328, 5738476.226960222], [771066.1765084842, 5738551.986933261]]}, "properties": {"id": "26293-26291", "from": "831201154", "to": "831201968", "length_m": 81.64998241981304, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771036.0788890328, 5738476.226960222], [770967.3339675097, 5738366.466962031]]}, "properties": {"id": "26294-26296-26298-26300", "from": "831201154", "to": "831201068", "length_m": 129.51492079292026, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770967.3339675097, 5738366.466962031], [771036.0788890328, 5738476.226960222]]}, "properties": {"id": "26301-26299-26297-26295", "from": "831201068", "to": "831201154", "length_m": 129.51492079292026, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770967.3339675097, 5738366.466962031], [770873.9993888125, 5738221.331795187]]}, "properties": {"id": "26302-26304-26306", "from": "831201068", "to": "1737115065", "length_m": 172.5559762121443, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770873.9993888125, 5738221.331795187], [770967.3339675097, 5738366.466962031]]}, "properties": {"id": "26307-26305-26303", "from": "1737115065", "to": "831201068", "length_m": 172.5559762121443, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770873.9993888125, 5738221.331795187], [770606.5739219721, 5738119.147435802]]}, "properties": {"id": "26308-26310-26312-26314-26316-26318-26320-26322", "from": "1737115065", "to": "60287154", "length_m": 298.1867311164156, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770606.5739219721, 5738119.147435802], [770873.9993888125, 5738221.331795187]]}, "properties": {"id": "26323-26321-26319-26317-26315-26313-26311-26309", "from": "60287154", "to": "1737115065", "length_m": 298.1867311164156, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770606.5739219721, 5738119.147435802], [770547.421324237, 5738108.150508317]]}, "properties": {"id": "26324-26326-26328", "from": "60287154", "to": "312996426", "length_m": 60.65001548592695, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770547.421324237, 5738108.150508317], [770606.5739219721, 5738119.147435802]]}, "properties": {"id": "26329-26327-26325", "from": "312996426", "to": "60287154", "length_m": 60.65001548592695, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770547.421324237, 5738108.150508317], [770368.3900735701, 5737983.255255538]]}, "properties": {"id": "26330-26332-26334-26336-26338-26340-26342-26344", "from": "312996426", "to": "37673670", "length_m": 219.86140715840563, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770368.3900735701, 5737983.255255538], [770547.421324237, 5738108.150508317]]}, "properties": {"id": "26345-26343-26341-26339-26337-26335-26333-26331", "from": "37673670", "to": "312996426", "length_m": 219.86140715840563, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770368.3900735701, 5737983.255255538], [770359.6831910333, 5737982.326101583]]}, "properties": {"id": "26346", "from": "37673670", "to": "3989810660", "length_m": 8.756319412499687, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770359.6831910333, 5737982.326101583], [770368.3900735701, 5737983.255255538]]}, "properties": {"id": "26347", "from": "3989810660", "to": "37673670", "length_m": 8.756319412499687, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770359.6831910333, 5737982.326101583], [769728.840752912, 5737892.056409039]]}, "properties": {"id": "26348-26350-26352-26354-26356-26358-26360-26362-51419-51421-50100-50102-50104-50106-50108", "from": "3989810660", "to": "37673595", "length_m": 662.7523916514474, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790109.3066833543, 5753300.110554461], [790118.226569819, 5754037.32541556]]}, "properties": {"id": "26364-26365-26366-26367-26368-26369", "from": "270452106", "to": "270451591", "length_m": 749.785266141751, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792546.3114642298, 5766371.517744399], [792672.4526754743, 5767049.006427979]]}, "properties": {"id": "2637-2638-2639", "from": "270450175", "to": "341550505", "length_m": 689.1317153054192, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790118.226569819, 5754037.32541556], [790138.7239008485, 5754333.245311685]]}, "properties": {"id": "26370-26371-26372-26373-26374-26375", "from": "270451591", "to": "4574367346", "length_m": 301.4577316702531, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790138.7239008485, 5754333.245311685], [790253.6588722416, 5754674.39597428]]}, "properties": {"id": "26376-26377-26378", "from": "4574367346", "to": "513382358", "length_m": 360.00758596943933, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790253.6588722416, 5754674.39597428], [790269.7239557349, 5754723.944684677]]}, "properties": {"id": "26379", "from": "513382358", "to": "1580591323", "length_m": 52.08801786062476, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790269.7239557349, 5754723.944684677], [790300.2811341684, 5754815.329584787]]}, "properties": {"id": "26380-26381", "from": "1580591323", "to": "1580591273", "length_m": 96.35839926365574, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776623.4157919532, 5742145.974347032], [776052.7068643125, 5741917.560286182]]}, "properties": {"id": "26382-26384-26386-26388-26390-26392-26394-26396-26398-26400-26402", "from": "289884720", "to": "37684270", "length_m": 626.719616346805, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776052.7068643125, 5741917.560286182], [776623.4157919532, 5742145.974347032]]}, "properties": {"id": "26403-26401-26399-26397-26395-26393-26391-26389-26387-26385-26383", "from": "37684270", "to": "289884720", "length_m": 626.719616346805, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776052.7068643125, 5741917.560286182], [775148.9204237795, 5741823.847395317]]}, "properties": {"id": "26404-26406-26408-26410-26412-26414-26416-26418-26420-26422-26424-26426-26428-26430-26432", "from": "37684270", "to": "4544316658", "length_m": 922.5568757498467, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792435.7202453383, 5765768.756724772], [792546.3114642298, 5766371.517744399]]}, "properties": {"id": "2642-13534-2635-2636", "from": "317913096", "to": "270450175", "length_m": 612.8270149954449, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775148.9204237795, 5741823.847395317], [776052.7068643125, 5741917.560286182]]}, "properties": {"id": "26433-26431-26429-26427-26425-26423-26421-26419-26417-26415-26413-26411-26409-26407-26405", "from": "4544316658", "to": "37684270", "length_m": 922.5568757498467, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775148.9204237795, 5741823.847395317], [774227.6850080371, 5741679.411711377]]}, "properties": {"id": "26434-26436-26438-26440-26442-26444-26446-26448-26450-26452-26454-26456-26458-26460-26462", "from": "4544316658", "to": "37684162", "length_m": 946.9397421944018, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774227.6850080371, 5741679.411711377], [775148.9204237795, 5741823.847395317]]}, "properties": {"id": "26463-26461-26459-26457-26455-26453-26451-26449-26447-26445-26443-26441-26439-26437-26435", "from": "37684162", "to": "4544316658", "length_m": 946.9397421944018, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774227.6850080371, 5741679.411711377], [773625.1799370715, 5741539.754273472]]}, "properties": {"id": "26464-26466-26468-26470-26472-26474-26476-26478-26480-26482", "from": "37684162", "to": "37684100", "length_m": 623.2908654119478, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773625.1799370715, 5741539.754273472], [774227.6850080371, 5741679.411711377]]}, "properties": {"id": "26483-26481-26479-26477-26475-26473-26471-26469-26467-26465", "from": "37684100", "to": "37684162", "length_m": 623.2908654119478, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773625.1799370715, 5741539.754273472], [773083.9359759779, 5741318.972741447]]}, "properties": {"id": "26484-26486-26488-26490-26492-26494-26496-26498", "from": "37684100", "to": "37684052", "length_m": 589.895046387227, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833363.232026481, 5817655.618515285], [833359.6141614747, 5817652.418059476]]}, "properties": {"id": "2649", "from": "309809262", "to": "5492934278", "length_m": 4.830306867286342, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773083.9359759779, 5741318.972741447], [773625.1799370715, 5741539.754273472]]}, "properties": {"id": "26499-26497-26495-26493-26491-26489-26487-26485", "from": "37684052", "to": "37684100", "length_m": 589.895046387227, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835643.1107194122, 5818055.546423493], [835635.5587573366, 5818040.353671061]]}, "properties": {"id": "265", "from": "30929283", "to": "30929292", "length_m": 16.966197446309017, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833359.6141614747, 5817652.418059476], [833326.330962118, 5817659.02368545]]}, "properties": {"id": "2650-2651-2652-2653-2654", "from": "5492934278", "to": "5492934273", "length_m": 38.076380500140175, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773083.9359759779, 5741318.972741447], [772706.4148098185, 5740947.995300984]]}, "properties": {"id": "26500-26502-26504-26506-26508-26510-26512-26514-26516-26518-26520-26522-26524-26526", "from": "37684052", "to": "37683978", "length_m": 573.7536014505358, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772706.4148098185, 5740947.995300984], [773083.9359759779, 5741318.972741447]]}, "properties": {"id": "26527-26525-26523-26521-26519-26517-26515-26513-26511-26509-26507-26505-26503-26501", "from": "37683978", "to": "37684052", "length_m": 573.7536014505358, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772706.4148098185, 5740947.995300984], [772131.9156515277, 5740224.530239331]]}, "properties": {"id": "26528-26530-26532-26534-26536-26538-26540-26542-26544-26546-26548-26550-26552-26554-26556-26558", "from": "37683978", "to": "37683919", "length_m": 950.3388464399108, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833326.330962118, 5817659.02368545], [833330.830619233, 5817687.517501637]]}, "properties": {"id": "2655-2656-2657-2658-2659-2660", "from": "5492934273", "to": "5635814270", "length_m": 31.250660008083077, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772131.9156515277, 5740224.530239331], [772706.4148098185, 5740947.995300984]]}, "properties": {"id": "26559-26557-26555-26553-26551-26549-26547-26545-26543-26541-26539-26537-26535-26533-26531-26529", "from": "37683919", "to": "37683978", "length_m": 950.3388464399108, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772131.9156515277, 5740224.530239331], [771691.2887190755, 5739636.000595009]]}, "properties": {"id": "26560-26562-26564-26566-26568-26570-26572-26574-26576-26578-26580", "from": "37683919", "to": "37673837", "length_m": 740.5518078639628, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771691.2887190755, 5739636.000595009], [772131.9156515277, 5740224.530239331]]}, "properties": {"id": "26581-26579-26577-26575-26573-26571-26569-26567-26565-26563-26561", "from": "37673837", "to": "37683919", "length_m": 740.5518078639628, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833330.830619233, 5817687.517501637], [833359.2507935737, 5817689.281041833]]}, "properties": {"id": "2661-2662-2663-2664", "from": "5635814270", "to": "309809299", "length_m": 30.67323631858495, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757816.3559542676, 5730467.952708574], [758413.9536277532, 5729992.413495439]]}, "properties": {"id": "26627-26625-26623-26621-26619-26617-26615-26613-26611-26609-26607-26605-26603-26601-26599-26597-26595-26593-26591-26589-26587-26585-26583-5214-5212-5210-5208-5206-5204-5202-5200-5198-5196-5194-5192-5190", "from": "36705063", "to": "36705048", "length_m": 921.9039075454664, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757816.3559542676, 5730467.952708574], [757253.9314510615, 5731082.099001637]]}, "properties": {"id": "26628-26630-26632-26634-26636-26638-26640-26642-26644-26646-26648-26650-26652-26654-26656-26658-26660-26662-26664-26666-26668-26670", "from": "36705063", "to": "36705071", "length_m": 880.0679624010469, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833359.2507935737, 5817689.281041833], [833359.9803146239, 5817688.539916161]]}, "properties": {"id": "2665", "from": "309809299", "to": "5635814269", "length_m": 1.0399366454396928, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833359.9803146239, 5817688.539916161], [833363.232026481, 5817655.618515285]]}, "properties": {"id": "2666-2645-2646-2647-2648", "from": "5635814269", "to": "309809262", "length_m": 37.022708474732255, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757253.9314510615, 5731082.099001637], [757816.3559542676, 5730467.952708574]]}, "properties": {"id": "26671-26669-26667-26665-26663-26661-26659-26657-26655-26653-26651-26649-26647-26645-26643-26641-26639-26637-26635-26633-26631-26629", "from": "36705071", "to": "36705063", "length_m": 880.0679624010469, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757253.9314510615, 5731082.099001637], [756692.2788974204, 5731278.491840823]]}, "properties": {"id": "26672-26674-26676-26678-26680-26682-26684-26686-26688-26690-26692-26694-26696-26698-26700-26702", "from": "36705071", "to": "36705076", "length_m": 628.2268709794001, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756692.2788974204, 5731278.491840823], [757253.9314510615, 5731082.099001637]]}, "properties": {"id": "26703-26701-26699-26697-26695-26693-26691-26689-26687-26685-26683-26681-26679-26677-26675-26673", "from": "36705076", "to": "36705071", "length_m": 628.2268709794001, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756692.2788974204, 5731278.491840823], [756430.8409514856, 5731706.889800333]]}, "properties": {"id": "26704-26706-26708-26710-26712-26714-26716-26718-26720-26722-26724", "from": "36705076", "to": "36705082", "length_m": 512.040665755689, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837579.6503891312, 5814973.767189164], [837606.959552682, 5815035.362322088]]}, "properties": {"id": "2671-2672-2673-2674-2675-2676-2677-2678-2679", "from": "33302769", "to": "33302745", "length_m": 70.04066578103124, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756430.8409514856, 5731706.889800333], [756692.2788974204, 5731278.491840823]]}, "properties": {"id": "26725-26723-26721-26719-26717-26715-26713-26711-26709-26707-26705", "from": "36705082", "to": "36705076", "length_m": 512.040665755689, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756430.8409514856, 5731706.889800333], [756119.8971886944, 5731995.118169397]]}, "properties": {"id": "26726-26728-26730-26732", "from": "36705082", "to": "5838943989", "length_m": 424.08386141035635, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756119.8971886944, 5731995.118169397], [756430.8409514856, 5731706.889800333]]}, "properties": {"id": "26733-26731-26729-26727", "from": "5838943989", "to": "36705082", "length_m": 424.08386141035635, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756119.8971886944, 5731995.118169397], [755786.9232987693, 5732334.389892773]]}, "properties": {"id": "26734-26736-26738-26740-26742-26744-26746-26748-26750-26752-26754-26756-26758-26760-26762-26764", "from": "5838943989", "to": "36705089", "length_m": 521.1822592807995, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755786.9232987693, 5732334.389892773], [756119.8971886944, 5731995.118169397]]}, "properties": {"id": "26765-26763-26761-26759-26757-26755-26753-26751-26749-26747-26745-26743-26741-26739-26737-26735", "from": "36705089", "to": "5838943989", "length_m": 521.1822592807995, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755786.9232987693, 5732334.389892773], [755524.8477198939, 5732669.907392905]]}, "properties": {"id": "26766-26768-26770-26772-26774-26776-26778-26780-26782-26784-26786-26788-26790-26792-26794-26796-26798", "from": "36705089", "to": "36705095", "length_m": 526.2254420868379, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755524.8477198939, 5732669.907392905], [755786.9232987693, 5732334.389892773]]}, "properties": {"id": "26799-26797-26795-26793-26791-26789-26787-26785-26783-26781-26779-26777-26775-26773-26771-26769-26767", "from": "36705095", "to": "36705089", "length_m": 526.2254420868379, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755524.8477198939, 5732669.907392905], [755390.3653449793, 5732852.832559707]]}, "properties": {"id": "26800-26802-26804-26806-26808-26810-26812-26814-26816-26818-26820-26822-26824-26826-26828-26830-26832-26834", "from": "36705095", "to": "36705102", "length_m": 552.4367340458361, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755390.3653449793, 5732852.832559707], [755524.8477198939, 5732669.907392905]]}, "properties": {"id": "26835-26833-26831-26829-26827-26825-26823-26821-26819-26817-26815-26813-26811-26809-26807-26805-26803-26801", "from": "36705102", "to": "36705095", "length_m": 552.4367340458361, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755390.3653449793, 5732852.832559707], [754890.9817232115, 5733009.268857662]]}, "properties": {"id": "26836-26838-26840-26842-26844-26846-26848-26850-26852-26854", "from": "36705102", "to": "36705217", "length_m": 529.0924498377732, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754890.9817232115, 5733009.268857662], [755390.3653449793, 5732852.832559707]]}, "properties": {"id": "26855-26853-26851-26849-26847-26845-26843-26841-26839-26837", "from": "36705217", "to": "36705102", "length_m": 529.0924498377732, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754890.9817232115, 5733009.268857662], [753795.3942022037, 5733065.611532411]]}, "properties": {"id": "26856-26858-26860-26862-26864-26866-26868-26870-26872-26874-26876-26878-26880-26882-26884-26886-26888-26890-26892-26894-26896-26898-26900-26902-26904-26906", "from": "36705217", "to": "36705231", "length_m": 1145.0155827445626, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753795.3942022037, 5733065.611532411], [754890.9817232115, 5733009.268857662]]}, "properties": {"id": "26907-26905-26903-26901-26899-26897-26895-26893-26891-26889-26887-26885-26883-26881-26879-26877-26875-26873-26871-26869-26867-26865-26863-26861-26859-26857", "from": "36705231", "to": "36705217", "length_m": 1145.0155827445626, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753795.3942022037, 5733065.611532411], [753060.7490037613, 5733306.204889637]]}, "properties": {"id": "26908-26910-26912-26914-26916-26918-26920-26922-26924-26926-26928-26930-26932-26934-26936-26938-26940-26942-26944-26946-26948-26950-26952-26954-26956-26958", "from": "36705231", "to": "551613602", "length_m": 873.3934357378288, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759351.8756148288, 5730689.910151517], [759350.9454669779, 5730676.2780812895]]}, "properties": {"id": "2695-2696-2697", "from": "75297694", "to": "36698471", "length_m": 16.63373264558748, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753060.7490037613, 5733306.204889637], [753795.3942022037, 5733065.611532411]]}, "properties": {"id": "26959-26957-26955-26953-26951-26949-26947-26945-26943-26941-26939-26937-26935-26933-26931-26929-26927-26925-26923-26921-26919-26917-26915-26913-26911-26909", "from": "551613602", "to": "36705231", "length_m": 873.3934357378288, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753060.7490037613, 5733306.204889637], [753954.1663143297, 5733919.140337099]]}, "properties": {"id": "26960-15445-15447-15449-15451-15453-15455-15457-15459-15461-15463-15465-15467-15469-15471-15473-15475-15477-15479-15481-15483-15485-15487-15489-15491-15493-15495-15497-15499-15501-15503-15505-15507-15509-15511-15513-15515-15517", "from": "551613602", "to": "36705258", "length_m": 1425.867233110645, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753763.9877717652, 5753786.907693256], [750830.3338326766, 5753906.709404595]]}, "properties": {"id": "26963-26965", "from": "177788323", "to": "849464268", "length_m": 2936.099158410029, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750830.3338326766, 5753906.709404595], [753763.9877717652, 5753786.907693256]]}, "properties": {"id": "26966-26964", "from": "849464268", "to": "177788323", "length_m": 2936.099158410029, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750830.3338326766, 5753906.709404595], [749210.4800037156, 5753930.358701434]]}, "properties": {"id": "26967", "from": "849464268", "to": "177788324", "length_m": 1620.0264531113457, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749210.4800037156, 5753930.358701434], [750830.3338326766, 5753906.709404595]]}, "properties": {"id": "26968", "from": "177788324", "to": "849464268", "length_m": 1620.0264531113457, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749210.4800037156, 5753930.358701434], [747765.6679102984, 5753273.810508217]]}, "properties": {"id": "26969-26971", "from": "177788324", "to": "177788327", "length_m": 1587.0675561745932, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747765.6679102984, 5753273.810508217], [749210.4800037156, 5753930.358701434]]}, "properties": {"id": "26972-26970", "from": "177788327", "to": "177788324", "length_m": 1587.0675561745932, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747765.6679102984, 5753273.810508217], [745199.0772021287, 5752308.449720214]]}, "properties": {"id": "26973-26975", "from": "177788327", "to": "3710493445", "length_m": 1817.5273507793027, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745199.0772021287, 5752308.449720214], [747765.6679102984, 5753273.810508217]]}, "properties": {"id": "26976-26974", "from": "3710493445", "to": "177788327", "length_m": 1817.5273507793027, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757624.0224880527, 5749524.88722135], [757757.8706850726, 5750034.174782505]]}, "properties": {"id": "26982-26980-26978-32039-32037-32035-32033", "from": "524143381", "to": "36697622", "length_m": 531.8356347323006, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757624.0224880527, 5749524.88722135], [755264.2978051412, 5749254.217952664]]}, "properties": {"id": "26983-26985-26987-26989-26991-26993-26995-26997-26999-27001-27003-27005-27007", "from": "524143381", "to": "36697629", "length_m": 999.9999999999993, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746346.6726443688, 5757840.936954881], [746324.8978286416, 5757839.767841577]]}, "properties": {"id": "27", "from": "5817973355", "to": "5817973356", "length_m": 21.806178563580307, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755264.2978051412, 5749254.217952664], [757624.0224880527, 5749524.88722135]]}, "properties": {"id": "27008-27006-27004-27002-27000-26998-26996-26994-26992-26990-26988-26986-26984", "from": "36697629", "to": "524143381", "length_m": 999.9999999999993, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837675.233502741, 5814905.47594903], [837699.3057129008, 5814844.653689072]]}, "properties": {"id": "2709-2710", "from": "33302754", "to": "5430685149", "length_m": 65.42399920834654, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755264.2978051412, 5749254.217952664], [754465.2572237263, 5749232.174195298]]}, "properties": {"id": "27109-27111-27113-27115-27117-27119-27121-27123-27125-27127-27129-27131-27133-27135-27137-27139-27141-27143-27145-27147-27149-27151", "from": "36697629", "to": "917854731", "length_m": 818.2962308536216, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837699.3057129008, 5814844.653689072], [837720.9096005738, 5814763.917142937]]}, "properties": {"id": "2711-2712-2713-2714-37941", "from": "5430685149", "to": "33302974", "length_m": 83.66987067651216, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759310.7512898925, 5730642.985618209], [759329.2541173245, 5730663.764554764]]}, "properties": {"id": "2715-2716-2717", "from": "1976126515", "to": "1976126500", "length_m": 28.140989081399145, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754465.2572237263, 5749232.174195298], [755264.2978051412, 5749254.217952664]]}, "properties": {"id": "27152-27150-27148-27146-27144-27142-27140-27138-27136-27134-27132-27130-27128-27126-27124-27122-27120-27118-27116-27114-27112-27110", "from": "917854731", "to": "36697629", "length_m": 818.2962308536216, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754465.2572237263, 5749232.174195298], [753957.6886796223, 5749313.861084356]]}, "properties": {"id": "27153-27155-27157-27159-27161-27163-27165-27167-27169-27171-27173-27175", "from": "917854731", "to": "982267961", "length_m": 525.6265024209072, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753957.6886796223, 5749313.861084356], [754465.2572237263, 5749232.174195298]]}, "properties": {"id": "27176-27174-27172-27170-27168-27166-27164-27162-27160-27158-27156-27154", "from": "982267961", "to": "917854731", "length_m": 525.6265024209072, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753957.6886796223, 5749313.861084356], [753195.6211679574, 5748688.066780674]]}, "properties": {"id": "27177-27179-27181-27183-27185-27187-27189-27191-27193-27195-27197-27199-27201-27203", "from": "982267961", "to": "984102858", "length_m": 995.4686945700554, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753195.6211679574, 5748688.066780674], [753957.6886796223, 5749313.861084356]]}, "properties": {"id": "27204-27202-27200-27198-27196-27194-27192-27190-27188-27186-27184-27182-27180-27178", "from": "984102858", "to": "982267961", "length_m": 995.4686945700554, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753195.6211679574, 5748688.066780674], [752886.9995544495, 5747339.279227782]]}, "properties": {"id": "27205-27207-27209-27211-27213-27215-27217-27219-27221-27223", "from": "984102858", "to": "534673017", "length_m": 1390.1208447053436, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835489.7614810935, 5820926.718636574], [835146.7398185835, 5821219.329882022]]}, "properties": {"id": "2721-2722-2723-5836", "from": "5549173095", "to": "1534939319", "length_m": 450.87592724658106, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752886.9995544495, 5747339.279227782], [753195.6211679574, 5748688.066780674]]}, "properties": {"id": "27224-27222-27220-27218-27216-27214-27212-27210-27208-27206", "from": "534673017", "to": "984102858", "length_m": 1390.1208447053436, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752886.9995544495, 5747339.279227782], [752138.9084894881, 5746724.753679549]]}, "properties": {"id": "27225-27227-27229-27231-27233-27235-27237-27239-27241-27243-27245-27247-27249-27251-27253-27255-27257", "from": "534673017", "to": "917854696", "length_m": 994.2609440529516, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837720.9096005738, 5814763.917142937], [837726.316832454, 5814685.6685413215]]}, "properties": {"id": "2724-2725-2726", "from": "33302974", "to": "268386636", "length_m": 78.546363744255, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752138.9084894881, 5746724.753679549], [752886.9995544495, 5747339.279227782]]}, "properties": {"id": "27258-27256-27254-27252-27250-27248-27246-27244-27242-27240-27238-27236-27234-27232-27230-27228-27226", "from": "917854696", "to": "534673017", "length_m": 994.2609440529516, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752138.9084894881, 5746724.753679549], [752049.456468561, 5746228.178773224]]}, "properties": {"id": "27259", "from": "917854696", "to": "52485285", "length_m": 504.56743998811965, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752049.456468561, 5746228.178773224], [752138.9084894881, 5746724.753679549]]}, "properties": {"id": "27260", "from": "52485285", "to": "917854696", "length_m": 504.56743998811965, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838742.9258426224, 5806183.259877076], [838778.2521512299, 5806386.811154056]]}, "properties": {"id": "27261-27262-12267-12268-12269-12270-12271-12272", "from": "320778089", "to": "320777910", "length_m": 206.59906006803195, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759807.7046978637, 5731692.963402761], [759553.601056823, 5732142.759853261]]}, "properties": {"id": "27273-27271-27269-27267-27265-41413-41411-41409-41407-41405-41403-41401-41399", "from": "832509461", "to": "75295233", "length_m": 652.0015810767728, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759807.7046978637, 5731692.963402761], [759665.0329835998, 5731500.308312076]]}, "properties": {"id": "27274-27276-27278-27280-27282-27284-27286", "from": "832509461", "to": "832508908", "length_m": 262.0751606443477, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759665.0329835998, 5731500.308312076], [759807.7046978637, 5731692.963402761]]}, "properties": {"id": "27287-27285-27283-27281-27279-27277-27275", "from": "832508908", "to": "832509461", "length_m": 262.0751606443477, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759665.0329835998, 5731500.308312076], [759685.0317551803, 5731388.358592299]]}, "properties": {"id": "27288-27290-27292-27294-27296-27298-27300-27302-27304", "from": "832508908", "to": "832509914", "length_m": 159.4549930650448, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759341.4176312832, 5730652.637250714], [759310.7512898925, 5730642.985618209]]}, "properties": {"id": "2729-2730-2731", "from": "1976126508", "to": "1976126515", "length_m": 32.205955213584076, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759685.0317551803, 5731388.358592299], [759665.0329835998, 5731500.308312076]]}, "properties": {"id": "27305-27303-27301-27299-27297-27295-27293-27291-27289", "from": "832509914", "to": "832508908", "length_m": 159.4549930650448, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759685.0317551803, 5731388.358592299], [759721.0766940028, 5731210.865386932]]}, "properties": {"id": "27306-27308-27310-27312-27314-27316-27318-27320", "from": "832509914", "to": "832508884", "length_m": 201.41094443550648, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837710.8280126436, 5814730.582464546], [837700.4331874999, 5814786.040120541]]}, "properties": {"id": "2732-2733", "from": "268386309", "to": "33302806", "length_m": 56.51078777565933, "freespeed_mps": 16.666666666666668, "capacity_vph": 7500.0, "lanes": 5.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759721.0766940028, 5731210.865386932], [759685.0317551803, 5731388.358592299]]}, "properties": {"id": "27321-27319-27317-27315-27313-27311-27309-27307", "from": "832508884", "to": "832509914", "length_m": 201.41094443550648, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759721.0766940028, 5731210.865386932], [759691.3045970309, 5731153.496450025]]}, "properties": {"id": "27322-27324", "from": "832508884", "to": "832509645", "length_m": 64.9599215487178, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759691.3045970309, 5731153.496450025], [759721.0766940028, 5731210.865386932]]}, "properties": {"id": "27325-27323", "from": "832509645", "to": "832508884", "length_m": 64.9599215487178, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759691.3045970309, 5731153.496450025], [759608.9721845639, 5730986.485100995]]}, "properties": {"id": "27326-27328-27330", "from": "832509645", "to": "832509674", "length_m": 186.41666811590224, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759608.9721845639, 5730986.485100995], [759691.3045970309, 5731153.496450025]]}, "properties": {"id": "27331-27329-27327", "from": "832509674", "to": "832509645", "length_m": 186.41666811590224, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759608.9721845639, 5730986.485100995], [759498.1324819686, 5730820.363443804]]}, "properties": {"id": "27332-27334-27336-27338-27340-27342-27344-27346-27348-27350-27352-27354-27356-27358-27360-27362-27364-27366", "from": "832509674", "to": "75297590", "length_m": 236.4582609234489, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837700.4331874999, 5814786.040120541], [837686.2732675767, 5814836.025613962]]}, "properties": {"id": "2734-2735-2736", "from": "33302806", "to": "5430685148", "length_m": 51.96111908381983, "freespeed_mps": 16.666666666666668, "capacity_vph": 7500.0, "lanes": 5.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759498.1324819686, 5730820.363443804], [759608.9721845639, 5730986.485100995]]}, "properties": {"id": "27367-27365-27363-27361-27359-27357-27355-27353-27351-27349-27347-27345-27343-27341-27339-27337-27335-27333", "from": "75297590", "to": "832509674", "length_m": 236.4582609234489, "freespeed_mps": 15.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759498.1324819686, 5730820.363443804], [759361.4975735095, 5730698.398675203]]}, "properties": {"id": "27368-27370-27372-27374-27376-27378-27380-27382", "from": "75297590", "to": "75297686", "length_m": 187.44635742861104, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837686.2732675767, 5814836.025613962], [837617.9454296485, 5815006.779131224]]}, "properties": {"id": "2737-15334-15335-15356-15357", "from": "5430685148", "to": "33302747", "length_m": 183.931927778694, "freespeed_mps": 16.666666666666668, "capacity_vph": 7500.0, "lanes": 5.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759361.4975735095, 5730698.398675203], [759498.1324819686, 5730820.363443804]]}, "properties": {"id": "27383-27381-27379-27377-27375-27373-27371-27369", "from": "75297686", "to": "75297590", "length_m": 187.44635742861104, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759361.4975735095, 5730698.398675203], [759351.8756148288, 5730689.910151517]]}, "properties": {"id": "27384", "from": "75297686", "to": "75297694", "length_m": 12.83109983110008, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759351.8756148288, 5730689.910151517], [759361.4975735095, 5730698.398675203]]}, "properties": {"id": "27385", "from": "75297694", "to": "75297686", "length_m": 12.83109983110008, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838708.8699581255, 5805988.885761861], [838742.9258426224, 5806183.259877076]]}, "properties": {"id": "27386-27387-25745", "from": "832362781", "to": "320778089", "length_m": 197.42561204310053, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788042.9750086493, 5833753.127367817], [788630.7589866219, 5833539.437710753]]}, "properties": {"id": "27388-27389-27390-27391", "from": "791043211", "to": "322710873", "length_m": 625.4454491240429, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788630.7589866219, 5833539.437710753], [789165.1822492828, 5833339.324341106]]}, "properties": {"id": "27392-27393-27394", "from": "322710873", "to": "718486672", "length_m": 570.6657820851406, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789165.1822492828, 5833339.324341106], [789824.7784052303, 5833113.979638424]]}, "properties": {"id": "27395-27396-27397-27398-27399-27400-27401-27402", "from": "718486672", "to": "317108364", "length_m": 697.6320379110658, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789824.7784052303, 5833113.979638424], [790745.291405342, 5832408.74644968]]}, "properties": {"id": "27403-27404-27405-27406-27407-27408-27409-27410-27411-27412-27413-27414", "from": "317108364", "to": "322710765", "length_m": 1174.487470144984, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790745.291405342, 5832408.74644968], [791325.4910720758, 5832087.643376611]]}, "properties": {"id": "27415-27416-34215-23835-23836-23837-23838-23839-23840-23841-23842-23843-23844-23845-23846-23847-23848-23849-23850-23851-23852-23853", "from": "322710765", "to": "317108235", "length_m": 686.8184668372546, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838757.0628087411, 5806206.095373362], [838724.8193960745, 5806014.615546241]]}, "properties": {"id": "27417", "from": "832362785", "to": "832362784", "length_m": 194.175595259585, "freespeed_mps": 16.666666666666668, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789931.2758940725, 5752266.271063677], [789915.5593211458, 5752269.39229059]]}, "properties": {"id": "27418", "from": "270452270", "to": "270452248", "length_m": 16.023505254409365, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789915.5593211458, 5752269.39229059], [789931.2758940725, 5752266.271063677]]}, "properties": {"id": "27419", "from": "270452248", "to": "270452270", "length_m": 16.023505254409365, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782427.987116297, 5834939.771378979], [781636.0932259464, 5834863.256871324]]}, "properties": {"id": "27423-27424-27425", "from": "413303104", "to": "5513735474", "length_m": 795.5935406370511, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781636.0932259464, 5834863.256871324], [780955.0469221135, 5834797.143759713]]}, "properties": {"id": "27426", "from": "5513735474", "to": "5513735475", "length_m": 684.2477686920248, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780955.0469221135, 5834797.143759713], [780042.7693962115, 5834762.107695909]]}, "properties": {"id": "27427-27721-27460-27730-9869-9870-9871-9872", "from": "5513735475", "to": "317108826", "length_m": 916.2126154098631, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787957.7298641602, 5753994.130021814], [787951.4027376003, 5754002.580281448]]}, "properties": {"id": "27428-27430-27432-27434-27436-27438-27440-27442-27444-27446-27448-27450", "from": "515915426", "to": "1658427567", "length_m": 29.10942013471257, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832586.4915825361, 5813503.54725668], [832694.4143763791, 5814096.340189949]]}, "properties": {"id": "2744-2745-2746-2747-2748-2749-2750", "from": "243827566", "to": "36714309", "length_m": 602.5412312818527, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787951.4027376003, 5754002.580281448], [787957.7298641602, 5753994.130021814]]}, "properties": {"id": "27451-27449-27447-27445-27443-27441-27439-27437-27435-27433-27431-27429", "from": "1658427567", "to": "515915426", "length_m": 29.10942013471257, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787951.4027376003, 5754002.580281448], [787957.7298641602, 5753994.130021814]]}, "properties": {"id": "27452-27454-27456-27458", "from": "1658427567", "to": "515915426", "length_m": 11.121096641406695, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787957.7298641602, 5753994.130021814], [787951.4027376003, 5754002.580281448]]}, "properties": {"id": "27459-27457-27455-27453", "from": "515915426", "to": "1658427567", "length_m": 11.121096641406695, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787650.7085132687, 5754289.834556565], [787641.0923285375, 5754283.408724711]]}, "properties": {"id": "27461-27463-27465-27467", "from": "515915655", "to": "1658427394", "length_m": 11.955103005765721, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787641.0923285375, 5754283.408724711], [787650.7085132687, 5754289.834556565]]}, "properties": {"id": "27468-27466-27464-27462", "from": "1658427394", "to": "515915655", "length_m": 11.955103005765721, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787641.0923285375, 5754283.408724711], [787650.7085132687, 5754289.834556565]]}, "properties": {"id": "27469-27471-27473-27475-27477-27479-27481-27483-27485-27487-27489-27491-27493-27495", "from": "1658427394", "to": "515915655", "length_m": 31.73742243751334, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787650.7085132687, 5754289.834556565], [787641.0923285375, 5754283.408724711]]}, "properties": {"id": "27496-27494-27492-27490-27488-27486-27484-27482-27480-27478-27476-27474-27472-27470", "from": "515915655", "to": "1658427394", "length_m": 31.73742243751334, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787214.1523624335, 5754369.053365168], [787199.8889304977, 5754366.382252296]]}, "properties": {"id": "27497-27499-27501-27503-27505-27507", "from": "515915205", "to": "1658427366", "length_m": 16.847752904756053, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787199.8889304977, 5754366.382252296], [787214.1523624335, 5754369.053365168]]}, "properties": {"id": "27508-27506-27504-27502-27500-27498", "from": "1658427366", "to": "515915205", "length_m": 16.847752904756053, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787199.8889304977, 5754366.382252296], [787214.1523624335, 5754369.053365168]]}, "properties": {"id": "27509-27511-27513-27515-27517-27519-27521-27523-27525-27527", "from": "1658427366", "to": "515915205", "length_m": 30.103226223960956, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832694.4143763791, 5814096.340189949], [832829.7177071951, 5814850.173622707]]}, "properties": {"id": "2751-2752-2753-2754-2755-2756", "from": "36714309", "to": "1536186796", "length_m": 765.8864789391044, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787214.1523624335, 5754369.053365168], [787199.8889304977, 5754366.382252296]]}, "properties": {"id": "27528-27526-27524-27522-27520-27518-27516-27514-27512-27510", "from": "515915205", "to": "1658427366", "length_m": 30.103226223960956, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787097.6622120494, 5754166.9533092845], [787085.9254443098, 5754172.283217466]]}, "properties": {"id": "27529-27531-27533-27535-27537-27539-27541-27543-27545-27547-27549-27551-27553", "from": "515914467", "to": "1658427454", "length_m": 23.04855546562254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787085.9254443098, 5754172.283217466], [787097.6622120494, 5754166.9533092845]]}, "properties": {"id": "27554-27552-27550-27548-27546-27544-27542-27540-27538-27536-27534-27532-27530", "from": "1658427454", "to": "515914467", "length_m": 23.04855546562254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787085.9254443098, 5754172.283217466], [787097.6622120494, 5754166.9533092845]]}, "properties": {"id": "27555-27557-27559-27561-27563-27565-27567", "from": "1658427454", "to": "515914467", "length_m": 15.572951122814356, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787097.6622120494, 5754166.9533092845], [787085.9254443098, 5754172.283217466]]}, "properties": {"id": "27568-27566-27564-27562-27560-27558-27556", "from": "515914467", "to": "1658427454", "length_m": 15.572951122814356, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787327.7572141147, 5753918.288935289], [787332.1318555144, 5753921.634139394]]}, "properties": {"id": "27569-27571", "from": "515914623", "to": "1658427652", "length_m": 5.518884440929353, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784871.2445732235, 5752164.475006272], [785138.2598249624, 5751642.756038796]]}, "properties": {"id": "2757-2759-2761-2763-2765-2767-2769-2771-2773-2775-2777", "from": "513379568", "to": "846620186", "length_m": 606.800500267027, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787332.1318555144, 5753921.634139394], [787327.7572141147, 5753918.288935289]]}, "properties": {"id": "27572-27570", "from": "1658427652", "to": "515914623", "length_m": 5.518884440929353, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787332.1318555144, 5753921.634139394], [787327.7572141147, 5753918.288935289]]}, "properties": {"id": "27573-27575-27577-27579-27581-27583-27585-27587-27589-27591-27593", "from": "1658427652", "to": "515914623", "length_m": 34.00779775437007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787327.7572141147, 5753918.288935289], [787332.1318555144, 5753921.634139394]]}, "properties": {"id": "27594-27592-27590-27588-27586-27584-27582-27580-27578-27576-27574", "from": "515914623", "to": "1658427652", "length_m": 34.00779775437007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786741.1497914841, 5753950.766237114], [786935.0242091191, 5753973.994868402]]}, "properties": {"id": "27595-27597-27599-27601", "from": "1658427635", "to": "1658427618", "length_m": 242.9361375954699, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786935.0242091191, 5753973.994868402], [786741.1497914841, 5753950.766237114]]}, "properties": {"id": "27602-27600-27598-27596", "from": "1658427618", "to": "1658427635", "length_m": 242.9361375954699, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786935.0242091191, 5753973.994868402], [786944.4922505824, 5754031.695982064]]}, "properties": {"id": "27603", "from": "1658427618", "to": "1658427578", "length_m": 58.47274856499934, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786944.4922505824, 5754031.695982064], [786935.0242091191, 5753973.994868402]]}, "properties": {"id": "27604", "from": "1658427578", "to": "1658427618", "length_m": 58.47274856499934, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786944.4922505824, 5754031.695982064], [786836.2719249525, 5754052.8585724775]]}, "properties": {"id": "27605-27607-27609-27611-27613-27615-27617-27619-27621", "from": "1658427578", "to": "1658427561", "length_m": 218.53868608996177, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786836.2719249525, 5754052.8585724775], [786944.4922505824, 5754031.695982064]]}, "properties": {"id": "27622-27620-27618-27616-27614-27612-27610-27608-27606", "from": "1658427561", "to": "1658427578", "length_m": 218.53868608996177, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786780.8754882063, 5754238.564765605], [786925.3515551249, 5754261.526501683]]}, "properties": {"id": "27623-27625-27627-27629-27631-27633-27635-27637-27639-27641-27643-27645-27647-27649-27651-27653-27655-27657", "from": "1658427435", "to": "1658427419", "length_m": 522.2176854760404, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786925.3515551249, 5754261.526501683], [786780.8754882063, 5754238.564765605]]}, "properties": {"id": "27658-27656-27654-27652-27650-27648-27646-27644-27642-27640-27638-27636-27634-27632-27630-27628-27626-27624", "from": "1658427419", "to": "1658427435", "length_m": 522.2176854760404, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780971.769605366, 5834831.11151074], [782201.6093411841, 5834955.663707363]]}, "properties": {"id": "27661-27662", "from": "35098339", "to": "413303106", "length_m": 1236.15268317656, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782201.6093411841, 5834955.663707363], [783262.0194417646, 5835044.928934624]]}, "properties": {"id": "27663-14696-14697-14698", "from": "413303106", "to": "3315375752", "length_m": 1064.2648393704771, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787038.4758054324, 5754276.242674278], [786925.3515551249, 5754261.526501683]]}, "properties": {"id": "27664-27666-27668-27670-27672-27674", "from": "1658427408", "to": "1658427419", "length_m": 118.64129319891599, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786925.3515551249, 5754261.526501683], [787038.4758054324, 5754276.242674278]]}, "properties": {"id": "27675-27673-27671-27669-27667-27665", "from": "1658427419", "to": "1658427408", "length_m": 118.64129319891599, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786925.3515551249, 5754261.526501683], [786780.8754882063, 5754238.564765605]]}, "properties": {"id": "27676-27678-27680-27682-27684-27686-27688", "from": "1658427419", "to": "1658427435", "length_m": 152.112908691791, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786780.8754882063, 5754238.564765605], [786925.3515551249, 5754261.526501683]]}, "properties": {"id": "27689-27687-27685-27683-27681-27679-27677", "from": "1658427435", "to": "1658427419", "length_m": 152.112908691791, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786780.8754882063, 5754238.564765605], [786747.1253374466, 5754063.995106015]]}, "properties": {"id": "27690-27692-27694-27696-27698-27700-27702", "from": "1658427435", "to": "1658427558", "length_m": 184.0590832557593, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786747.1253374466, 5754063.995106015], [786780.8754882063, 5754238.564765605]]}, "properties": {"id": "27703-27701-27699-27697-27695-27693-27691", "from": "1658427558", "to": "1658427435", "length_m": 184.0590832557593, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786747.1253374466, 5754063.995106015], [786752.6724141535, 5754008.172169711]]}, "properties": {"id": "27704-27706-27708", "from": "1658427558", "to": "1658427603", "length_m": 56.171975651244566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786752.6724141535, 5754008.172169711], [786747.1253374466, 5754063.995106015]]}, "properties": {"id": "27709-27707-27705", "from": "1658427603", "to": "1658427558", "length_m": 56.171975651244566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786752.6724141535, 5754008.172169711], [786741.1497914841, 5753950.766237114]]}, "properties": {"id": "27710-27712", "from": "1658427603", "to": "1658427635", "length_m": 58.58810599261377, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786741.1497914841, 5753950.766237114], [786752.6724141535, 5754008.172169711]]}, "properties": {"id": "27713-27711", "from": "1658427635", "to": "1658427603", "length_m": 58.58810599261377, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786741.1497914841, 5753950.766237114], [786722.607923297, 5753911.192112768]]}, "properties": {"id": "27714", "from": "1658427635", "to": "1658427668", "length_m": 43.70254211072491, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786722.607923297, 5753911.192112768], [786741.1497914841, 5753950.766237114]]}, "properties": {"id": "27715", "from": "1658427668", "to": "1658427635", "length_m": 43.70254211072491, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786752.6724141535, 5754008.172169711], [786935.0242091191, 5753973.994868402]]}, "properties": {"id": "27718", "from": "1658427603", "to": "1658427618", "length_m": 185.52699242121088, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786935.0242091191, 5753973.994868402], [786752.6724141535, 5754008.172169711]]}, "properties": {"id": "27719", "from": "1658427618", "to": "1658427603", "length_m": 185.52699242121088, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786747.1253374466, 5754063.995106015], [786836.2719249525, 5754052.8585724775]]}, "properties": {"id": "27722-27724", "from": "1658427558", "to": "1658427561", "length_m": 90.08937361565603, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786836.2719249525, 5754052.8585724775], [786747.1253374466, 5754063.995106015]]}, "properties": {"id": "27725-27723", "from": "1658427561", "to": "1658427558", "length_m": 90.08937361565603, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786836.2719249525, 5754052.8585724775], [786944.4922505824, 5754031.695982064]]}, "properties": {"id": "27726", "from": "1658427561", "to": "1658427578", "length_m": 110.27009598560068, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786944.4922505824, 5754031.695982064], [786836.2719249525, 5754052.8585724775]]}, "properties": {"id": "27727", "from": "1658427578", "to": "1658427561", "length_m": 110.27009598560068, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790509.6059361612, 5752155.179420304], [790509.3624438904, 5752152.0649939515]]}, "properties": {"id": "27731", "from": "510171671", "to": "1321582051", "length_m": 3.123930214085205, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837244.9692358018, 5812097.644514551], [837343.7933730388, 5812612.0362281045]]}, "properties": {"id": "27738-9351-9353-9355-9357-9359-9361-9363", "from": "1387186631", "to": "33531752", "length_m": 523.8431360536388, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793727.3697331301, 5769786.878194796], [793470.0323020095, 5768823.591613743]]}, "properties": {"id": "27752-27753-22883-22884-22885-22886-22887-24781-22913-22914-13524-13525-13529-13530-13531-29639-29640-29641-29642-29643-29644-29645-29646-29647-29648-29649-29650", "from": "880526891", "to": "880526853(2)", "length_m": 947.9807798948646, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793647.5793819162, 5770275.69963745], [793727.3697331301, 5769786.878194796]]}, "properties": {"id": "27766-27740-27741-27742-27743-27744-27745-27746-27747-27748-27749-27750-27751", "from": "880499702", "to": "880526891", "length_m": 509.4750884277561, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789938.7841820274, 5767239.849605784], [789966.6295682573, 5767527.388649002]]}, "properties": {"id": "27768-27769-27770-27771-27772-27773-27774-27775-27776-27777", "from": "1611301461", "to": "421192970", "length_m": 291.14348390524987, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788993.6267062495, 5766159.084961095], [789446.5097481234, 5766623.049804277]]}, "properties": {"id": "27778-5584-55221-46194-46195-46196-5579-5580-5581", "from": "436937826", "to": "1357342798", "length_m": 649.9366519487997, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[827246.4489830716, 5801226.304120931], [826507.6604884019, 5800969.302085801]]}, "properties": {"id": "27779-27780-27781-27782-27783-27784-27785-27786-27787-27788-27789", "from": "29319958", "to": "1840911745", "length_m": 788.039368082284, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785138.2598249624, 5751642.756038796], [784871.2445732235, 5752164.475006272]]}, "properties": {"id": "2778-2776-2774-2772-2770-2768-2766-2764-2762-2760-2758", "from": "846620186", "to": "513379568", "length_m": 606.800500267027, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759334.8373762902, 5730674.206115661], [759351.8756148288, 5730689.910151517]]}, "properties": {"id": "2779-2780-2781", "from": "1976126489", "to": "75297694", "length_m": 23.181002387986137, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826507.6604884019, 5800969.302085801], [826272.1480839659, 5800080.518800238]]}, "properties": {"id": "27790-58875-58876-58878-58879-58880-58881-58882-58883-58884-58885-28120", "from": "1840911745", "to": "38717630", "length_m": 978.6567754584252, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789911.5975650961, 5767147.636200527], [789938.7841820274, 5767239.849605784]]}, "properties": {"id": "27804-27805-27806-27807", "from": "421192978", "to": "1611301461", "length_m": 130.23818310318427, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788909.6479653236, 5766033.645602863], [788586.4673790288, 5765671.564897807]]}, "properties": {"id": "27808-27809", "from": "1611301414", "to": "436942197", "length_m": 485.3408278195759, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789949.6155541097, 5767077.028413036], [789972.2114191023, 5766831.463405406]]}, "properties": {"id": "27810-27811-27812-27813-27814-27815-27816-27817", "from": "1611301330", "to": "428731182", "length_m": 249.6052199744184, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789972.2114191023, 5766831.463405406], [789999.1678748333, 5766732.327185061]]}, "properties": {"id": "27818-27819-27820", "from": "428731182", "to": "428731160", "length_m": 102.92064147925763, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782591.7839138226, 5755434.510674173], [781878.8417412366, 5755565.164373754]]}, "properties": {"id": "2782", "from": "1708444859", "to": "186873034", "length_m": 724.8150996610657, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788874.8706688373, 5766022.16001412], [788993.6267062495, 5766159.084961095]]}, "properties": {"id": "27825", "from": "827509566", "to": "436937826", "length_m": 181.2496547194873, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781878.8417412366, 5755565.164373754], [782591.7839138226, 5755434.510674173]]}, "properties": {"id": "2783", "from": "186873034", "to": "1708444859", "length_m": 724.8150996610657, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781878.8417412366, 5755565.164373754], [781365.2533872412, 5755654.979644856]]}, "properties": {"id": "2784", "from": "186873034", "to": "535081584", "length_m": 506.4468601973285, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781365.2533872412, 5755654.979644856], [781878.8417412366, 5755565.164373754]]}, "properties": {"id": "2785", "from": "535081584", "to": "186873034", "length_m": 506.4468601973285, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833285.5035286194, 5820606.3911232725], [833268.2760720742, 5820608.354747334]]}, "properties": {"id": "27853", "from": "599479818", "to": "2949278444", "length_m": 17.33900449576046, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781365.2533872412, 5755654.979644856], [780784.2336219051, 5755765.756214974]]}, "properties": {"id": "2786", "from": "535081584", "to": "484264190", "length_m": 591.485768967357, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780784.2336219051, 5755765.756214974], [781365.2533872412, 5755654.979644856]]}, "properties": {"id": "2787", "from": "484264190", "to": "535081584", "length_m": 591.485768967357, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780784.2336219051, 5755765.756214974], [779440.9865462212, 5756015.753961453]]}, "properties": {"id": "2788-2790-2792-2794-2796-2798-2800-2802-2804-2806-2808-2810-2812-2814-2816-2818-2820-2822-2824-2826-2828-2830-2832-2834", "from": "484264190", "to": "1708444833", "length_m": 1394.8792521323896, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838559.6027189624, 5817741.560341916], [838423.9451692898, 5818010.580489237]]}, "properties": {"id": "279-277-275-273-271-269-267-264-8676-8674-8672-8670-47832", "from": "170074256", "to": "1511218319", "length_m": 303.0198763426605, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[802852.6391755741, 5825989.765576366], [802297.8363177313, 5825972.884591462]]}, "properties": {"id": "27924-27925-27926-27927-27928-27929-27930-27931", "from": "317106842", "to": "5748230691", "length_m": 555.9638148021602, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[802297.8363177313, 5825972.884591462], [801703.6351661618, 5825895.531658087]]}, "properties": {"id": "27932-27933-27981", "from": "5748230691", "to": "317106964", "length_m": 599.2179350247851, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727909.4322011643, 5753671.369045679], [727059.6202034432, 5753641.485963989]]}, "properties": {"id": "27968-27966-27964-27962-27960-27958-27956-27954-27952-27950-27948-27946-27944-27942-27940-15016", "from": "632016236", "to": "5857624638", "length_m": 1132.8561076328365, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801397.047527862, 5825910.501477227], [802369.8935482928, 5826010.882273585]]}, "properties": {"id": "27970-27971-27972-27976", "from": "317107007", "to": "317106915", "length_m": 978.8280256067089, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801703.6351661618, 5825895.531658087], [801150.0144411947, 5825888.745740008]]}, "properties": {"id": "27974-27975-27973-49107", "from": "317106964", "to": "317107005", "length_m": 554.5367347489247, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791439.3444399606, 5767950.435178403], [791796.0332600466, 5768345.136708298]]}, "properties": {"id": "27977-27978-27979", "from": "317915554", "to": "317915553", "length_m": 531.9929418368549, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791796.0332600466, 5768345.136708298], [792305.3006916117, 5768782.708474016]]}, "properties": {"id": "27980-9069-9070-9071-9072-9073-9074-9075-9112-9113-9114-9115-9116-9117-21063-30220-30221-30222-30223-22919", "from": "317915553", "to": "264173093", "length_m": 690.6216260943877, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803815.8327129863, 5825842.897954297], [802852.6391755741, 5825989.765576366]]}, "properties": {"id": "27985-27991-27919-27920-27921-27922-27923", "from": "317106800", "to": "317106842", "length_m": 974.8058009233368, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800844.880486223, 5825899.90769755], [801397.047527862, 5825910.501477227]]}, "properties": {"id": "27994-27995-27996-27997-27969", "from": "2923307757", "to": "317107007", "length_m": 553.3431088038247, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803154.2492193717, 5825988.228887504], [803767.740259167, 5825882.778759639]]}, "properties": {"id": "27998", "from": "1341259752", "to": "1640164760", "length_m": 622.4877375049814, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746324.8978286416, 5757839.767841577], [746346.6726443688, 5757840.936954881]]}, "properties": {"id": "28", "from": "5817973356", "to": "5817973355", "length_m": 21.806178563580307, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835626.8826900513, 5818047.222898331], [835643.1107194122, 5818055.546423493]]}, "properties": {"id": "280", "from": "268387838", "to": "30929283", "length_m": 18.23814693703575, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818526.7895208674, 5757858.606111765], [817823.8075391345, 5757825.376125136]]}, "properties": {"id": "28010-28008-28006-28004-28002-28000-19847-19845-19843", "from": "52495536", "to": "52495533", "length_m": 704.3880490863673, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818526.7895208674, 5757858.606111765], [819085.5229258062, 5757929.670727131]]}, "properties": {"id": "28011-28013-28015-28017-28019-28021-19920-19922-19924-19926-19928", "from": "52495536", "to": "2812792755", "length_m": 571.7962564234356, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837233.3152208999, 5812004.33900639], [837224.6062253031, 5812005.685700946]]}, "properties": {"id": "28023", "from": "33531761", "to": "1387206041", "length_m": 8.812501900727815, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751218.3477105228, 5837477.400674425], [751967.2093646594, 5838221.541004753]]}, "properties": {"id": "28024-28025-28026-28027-28028-28029-24961-25024-25025-25026-25027-12699-23101-14995-10789", "from": "1841114204", "to": "945445405", "length_m": 1065.3762161122709, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777694.4066064168, 5743126.374281386], [777587.9179789243, 5743272.92122812]]}, "properties": {"id": "28032-28034", "from": "294977513", "to": "294977515", "length_m": 200.72694953638532, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777587.9179789243, 5743272.92122812], [777694.4066064168, 5743126.374281386]]}, "properties": {"id": "28035-28033", "from": "294977515", "to": "294977513", "length_m": 200.72694953638532, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754474.1154317558, 5829061.337308558], [754439.3206381784, 5829064.374386024]]}, "properties": {"id": "28036-28037", "from": "3455069875", "to": "3455069869", "length_m": 35.15599076905162, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754382.7155687191, 5829089.422095619], [754419.6946357661, 5829087.328940734]]}, "properties": {"id": "28038-28039-28040", "from": "3455069872", "to": "1845458262", "length_m": 37.3088699597934, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777541.7511348359, 5762094.219006888], [777526.996046625, 5762009.22370633]]}, "properties": {"id": "28041-28043", "from": "1851048879", "to": "475483092", "length_m": 86.33024447226425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777526.996046625, 5762009.22370633], [777541.7511348359, 5762094.219006888]]}, "properties": {"id": "28044-28042", "from": "475483092", "to": "1851048879", "length_m": 86.33024447226425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777197.2333451989, 5744396.904514945], [777337.9261612776, 5744418.23827045]]}, "properties": {"id": "28045-28047-28049", "from": "294977517", "to": "294977519", "length_m": 147.86439875662631, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777337.9261612776, 5744418.23827045], [777197.2333451989, 5744396.904514945]]}, "properties": {"id": "28050-28048-28046", "from": "294977519", "to": "294977517", "length_m": 147.86439875662631, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777337.9261612776, 5744418.23827045], [777353.2812911086, 5744421.776334635]]}, "properties": {"id": "28051", "from": "294977519", "to": "1851185037", "length_m": 15.757471532824772, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777353.2812911086, 5744421.776334635], [777337.9261612776, 5744418.23827045]]}, "properties": {"id": "28052", "from": "1851185037", "to": "294977519", "length_m": 15.757471532824772, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777353.2812911086, 5744421.776334635], [777337.9261612776, 5744418.23827045]]}, "properties": {"id": "28053-28055-28057-28059-28061", "from": "1851185037", "to": "294977519", "length_m": 36.52412851485036, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777337.9261612776, 5744418.23827045], [777353.2812911086, 5744421.776334635]]}, "properties": {"id": "28062-28060-28058-28056-28054", "from": "294977519", "to": "1851185037", "length_m": 36.52412851485036, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777548.7487835246, 5761837.074638303], [777474.3347239494, 5761886.289378307]]}, "properties": {"id": "28063-28065-28067-28069", "from": "475483094", "to": "475483100", "length_m": 91.97561146210931, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777474.3347239494, 5761886.289378307], [777548.7487835246, 5761837.074638303]]}, "properties": {"id": "28070-28068-28066-28064", "from": "475483100", "to": "475483094", "length_m": 91.97561146210931, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754474.1154317558, 5829061.337308558], [754974.8742231375, 5828907.828358665]]}, "properties": {"id": "28071-28073-28075-28077-28079-28081", "from": "3455069875", "to": "476372081", "length_m": 523.8035516277612, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754974.8742231375, 5828907.828358665], [754474.1154317558, 5829061.337308558]]}, "properties": {"id": "28082-28080-28078-28076-28074-28072", "from": "476372081", "to": "3455069875", "length_m": 523.8035516277612, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830200.6711292155, 5802021.751288587], [830782.8289244927, 5802065.042786211]]}, "properties": {"id": "28094-28095-59265-59262", "from": "29320462", "to": "293318333", "length_m": 583.772042039428, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777672.5325673553, 5762634.923479097], [777614.7783024274, 5762472.00296168]]}, "properties": {"id": "28096-28098-28100-28102-28104-28106", "from": "475483069", "to": "475483067", "length_m": 174.0427572496268, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787783.4296242673, 5751407.222505755], [787775.5646346996, 5751431.387691778]]}, "properties": {"id": "281-282", "from": "848692895", "to": "848692577", "length_m": 25.46237864346737, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777614.7783024274, 5762472.00296168], [777672.5325673553, 5762634.923479097]]}, "properties": {"id": "28107-28105-28103-28101-28099-28097", "from": "475483067", "to": "475483069", "length_m": 174.0427572496268, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829233.245843824, 5801773.481681827], [828283.956380235, 5801513.193088238]]}, "properties": {"id": "28109-59068-59069-59192-59193", "from": "125301103", "to": "34219992", "length_m": 984.3339006112936, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777862.2408625397, 5762418.836563621], [777743.259646249, 5762440.045831868]]}, "properties": {"id": "28110", "from": "475483063", "to": "475575487", "length_m": 120.856786483949, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777743.259646249, 5762440.045831868], [777862.2408625397, 5762418.836563621]]}, "properties": {"id": "28111", "from": "475575487", "to": "475483063", "length_m": 120.856786483949, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777743.259646249, 5762440.045831868], [777614.7783024274, 5762472.00296168]]}, "properties": {"id": "28112-28114-28116-28118", "from": "475575487", "to": "475483067", "length_m": 135.27935901870637, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777614.7783024274, 5762472.00296168], [777743.259646249, 5762440.045831868]]}, "properties": {"id": "28119-28117-28115-28113", "from": "475483067", "to": "475575487", "length_m": 135.27935901870637, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777786.8573952655, 5761963.823166685], [777526.996046625, 5762009.22370633]]}, "properties": {"id": "28121", "from": "475483090", "to": "475483092", "length_m": 263.7975156733554, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777526.996046625, 5762009.22370633], [777786.8573952655, 5761963.823166685]]}, "properties": {"id": "28122", "from": "475483092", "to": "475483090", "length_m": 263.7975156733554, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777614.7783024274, 5762472.00296168], [777345.4242530689, 5761940.505347745]]}, "properties": {"id": "28124-28126-28128-28130-28132-28134-28136-28138-28140", "from": "475483067", "to": "475483089", "length_m": 628.3975426376835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777345.4242530689, 5761940.505347745], [777614.7783024274, 5762472.00296168]]}, "properties": {"id": "28141-28139-28137-28135-28133-28131-28129-28127-28125", "from": "475483089", "to": "475483067", "length_m": 628.3975426376835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754415.6194829438, 5829070.8580109775], [754382.7155687191, 5829089.422095619]]}, "properties": {"id": "28143-28144-28145", "from": "3455069866", "to": "3455069872", "length_m": 37.8586471371422, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829312.5439055143, 5801821.9766701395], [830200.6711292155, 5802021.751288587]]}, "properties": {"id": "28147-59006-28091-28092-28093", "from": "2283053182", "to": "29320462", "length_m": 912.7100470576161, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836500.1905911047, 5812143.31211786], [836336.0150135327, 5812175.40116448]]}, "properties": {"id": "28148-28149", "from": "268179535", "to": "268179969", "length_m": 167.28217778976102, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836336.0150135327, 5812175.40116448], [836064.356670516, 5812228.479925126]]}, "properties": {"id": "28150-28151-28152-28153-28154", "from": "268179969", "to": "268179978", "length_m": 276.79524959807867, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836064.356670516, 5812228.479925126], [835664.0406667364, 5812306.692746315]]}, "properties": {"id": "28155-28156", "from": "268179978", "to": "2045001471", "length_m": 407.88496826470066, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835664.0406667364, 5812306.692746315], [835592.3357185144, 5812320.704292815]]}, "properties": {"id": "28157-28158", "from": "2045001471", "to": "321681204", "length_m": 73.0610910976806, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835592.3357185144, 5812320.704292815], [835371.2911220524, 5812363.877455634]]}, "properties": {"id": "28159-28160", "from": "321681204", "to": "2090569510", "length_m": 225.22130279435274, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837026.8393172221, 5810804.36196441], [837006.6911266545, 5810716.697486488]]}, "properties": {"id": "28185", "from": "309595876", "to": "1843397341", "length_m": 89.95004308856184, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754415.6194829438, 5829070.8580109775], [754419.6946357661, 5829087.328940734]]}, "properties": {"id": "28189-28190-28191", "from": "3455069866", "to": "1845458262", "length_m": 17.87547771588684, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754419.6946357661, 5829087.328940734], [754444.8884880715, 5829079.121964242]]}, "properties": {"id": "28192-28193-28194-28195-28196-28197-28198", "from": "1845458262", "to": "1845458264", "length_m": 31.93187365198273, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754444.8884880715, 5829079.121964242], [754439.3206381784, 5829064.374386024]]}, "properties": {"id": "28199-28200-28201", "from": "1845458264", "to": "3455069869", "length_m": 16.57825762206545, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754439.3206381784, 5829064.374386024], [754415.6194829438, 5829070.8580109775]]}, "properties": {"id": "28202-28203-28204-28186-28187-28188", "from": "3455069869", "to": "3455069866", "length_m": 28.69475550300304, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836502.4633353895, 5812158.308389106], [836602.3280739557, 5812138.632975656]]}, "properties": {"id": "28205", "from": "268175701", "to": "3451762884", "length_m": 101.78451660481696, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832810.340925606, 5804727.071888331], [832795.4159144392, 5804729.7564693075]]}, "properties": {"id": "28215", "from": "1745518706", "to": "1745518698", "length_m": 15.164528748289019, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759972.7173143012, 5760589.111396431], [759693.5368369468, 5760396.923015353]]}, "properties": {"id": "28216-28218", "from": "982267914", "to": "982267975", "length_m": 339.34386879726827, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759693.5368369468, 5760396.923015353], [759972.7173143012, 5760589.111396431]]}, "properties": {"id": "28219-28217", "from": "982267975", "to": "982267914", "length_m": 339.34386879726827, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759693.5368369468, 5760396.923015353], [758091.3387892, 5759278.59506828]]}, "properties": {"id": "28220", "from": "982267975", "to": "982268269", "length_m": 1953.8925162517419, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758091.3387892, 5759278.59506828], [759693.5368369468, 5760396.923015353]]}, "properties": {"id": "28221", "from": "982268269", "to": "982267975", "length_m": 1953.8925162517419, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758091.3387892, 5759278.59506828], [755729.0982484919, 5758473.307643506]]}, "properties": {"id": "28222-28224-28226-28228-28230-28232-28234", "from": "982268269", "to": "1012123549", "length_m": 2497.436913257992, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755729.0982484919, 5758473.307643506], [758091.3387892, 5759278.59506828]]}, "properties": {"id": "28235-28233-28231-28229-28227-28225-28223", "from": "1012123549", "to": "982268269", "length_m": 2497.436913257992, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755729.0982484919, 5758473.307643506], [754998.9681102857, 5758229.957514729]]}, "properties": {"id": "28236", "from": "1012123549", "to": "982267819", "length_m": 769.6163339180631, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754998.9681102857, 5758229.957514729], [755729.0982484919, 5758473.307643506]]}, "properties": {"id": "28237", "from": "982267819", "to": "1012123549", "length_m": 769.6163339180631, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754998.9681102857, 5758229.957514729], [753392.0385486739, 5757148.94249464]]}, "properties": {"id": "28238-28240-28242-28244-28246-28248-28250-28252-28254-28256-28258-28260", "from": "982267819", "to": "982267898", "length_m": 1939.7878874629905, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753392.0385486739, 5757148.94249464], [754998.9681102857, 5758229.957514729]]}, "properties": {"id": "28261-28259-28257-28255-28253-28251-28249-28247-28245-28243-28241-28239", "from": "982267898", "to": "982267819", "length_m": 1939.7878874629905, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753392.0385486739, 5757148.94249464], [752617.8002769395, 5757254.994941878]]}, "properties": {"id": "28262-28264-28266-28268-28270-28272-28274-28276-28278-28280-28282-28284-28286-28288-28290-28292-28294-28296-28298-28300-28302-28304-28306-28308-28310-28312-28314-28316-28318", "from": "982267898", "to": "982267888", "length_m": 876.8976116132923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790628.010779216, 5767130.008396814], [790010.1295240424, 5766704.593997886]]}, "properties": {"id": "283-81-82-83-84-85-86-87-88-89-90-91-92-93-94-95-96", "from": "490759581", "to": "4198709899", "length_m": 750.4936038019777, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752617.8002769395, 5757254.994941878], [753392.0385486739, 5757148.94249464]]}, "properties": {"id": "28319-28317-28315-28313-28311-28309-28307-28305-28303-28301-28299-28297-28295-28293-28291-28289-28287-28285-28283-28281-28279-28277-28275-28273-28271-28269-28267-28265-28263", "from": "982267888", "to": "982267898", "length_m": 876.8976116132923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752617.8002769395, 5757254.994941878], [751695.4995957811, 5758576.799694707]]}, "properties": {"id": "28320", "from": "982267888", "to": "982268290", "length_m": 1611.7711851734557, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751695.4995957811, 5758576.799694707], [752617.8002769395, 5757254.994941878]]}, "properties": {"id": "28321", "from": "982268290", "to": "982267888", "length_m": 1611.7711851734557, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751695.4995957811, 5758576.799694707], [751829.3548523078, 5759626.92730535]]}, "properties": {"id": "28322-28324-28326-28328-28330-28332-28334-28336-28338-28340-28342", "from": "982268290", "to": "5857617070", "length_m": 1075.1479083445483, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751829.3548523078, 5759626.92730535], [751695.4995957811, 5758576.799694707]]}, "properties": {"id": "28343-28341-28339-28337-28335-28333-28331-28329-28327-28325-28323", "from": "5857617070", "to": "982268290", "length_m": 1075.1479083445483, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751829.3548523078, 5759626.92730535], [751817.8497608372, 5759655.971159738]]}, "properties": {"id": "28344", "from": "5857617070", "to": "982268022", "length_m": 31.23960000563998, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751817.8497608372, 5759655.971159738], [751829.3548523078, 5759626.92730535]]}, "properties": {"id": "28345", "from": "982268022", "to": "5857617070", "length_m": 31.23960000563998, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832798.9026734572, 5804743.113760565], [832814.012822253, 5804740.210402605]]}, "properties": {"id": "28346", "from": "1745600780", "to": "1745518668", "length_m": 15.386555248350795, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832814.012822253, 5804740.210402605], [832810.340925606, 5804727.071888331]]}, "properties": {"id": "28347", "from": "1745518668", "to": "1745518706", "length_m": 13.641971326943725, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779440.9865462212, 5756015.753961453], [780784.2336219051, 5755765.756214974]]}, "properties": {"id": "2835-2833-2831-2829-2827-2825-2823-2821-2819-2817-2815-2813-2811-2809-2807-2805-2803-2801-2799-2797-2795-2793-2791-2789", "from": "1708444833", "to": "484264190", "length_m": 1394.8792521323896, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759693.5368369468, 5760396.923015353], [759848.3087035489, 5760184.803573718]]}, "properties": {"id": "28353-28355", "from": "982267975", "to": "982268205", "length_m": 266.0159947004984, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759848.3087035489, 5760184.803573718], [759693.5368369468, 5760396.923015353]]}, "properties": {"id": "28356-28354", "from": "982268205", "to": "982267975", "length_m": 266.0159947004984, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753763.9877717652, 5753786.907693256], [753884.348830998, 5753179.185234362]]}, "properties": {"id": "28357", "from": "177788323", "to": "982267984", "length_m": 619.5267322196554, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753884.348830998, 5753179.185234362], [753763.9877717652, 5753786.907693256]]}, "properties": {"id": "28358", "from": "982267984", "to": "177788323", "length_m": 619.5267322196554, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753884.348830998, 5753179.185234362], [754070.2347551793, 5752257.521042673]]}, "properties": {"id": "28359-28361-28363-28365-28367", "from": "982267984", "to": "982267816", "length_m": 940.2481278877989, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779440.9865462212, 5756015.753961453], [779371.10614317, 5756041.942613101]]}, "properties": {"id": "2836-2838-2840", "from": "1708444833", "to": "186877142", "length_m": 74.88984136305064, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754070.2347551793, 5752257.521042673], [753884.348830998, 5753179.185234362]]}, "properties": {"id": "28368-28366-28364-28362-28360", "from": "982267816", "to": "982267984", "length_m": 940.2481278877989, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754070.2347551793, 5752257.521042673], [753873.960372927, 5751509.320938928]]}, "properties": {"id": "28369-28371-28373-28375-28377-28379-28381-28383-28385-28387-28389-28391", "from": "982267816", "to": "982267878", "length_m": 801.8120680639014, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753873.960372927, 5751509.320938928], [754070.2347551793, 5752257.521042673]]}, "properties": {"id": "28392-28390-28388-28386-28384-28382-28380-28378-28376-28374-28372-28370", "from": "982267878", "to": "982267816", "length_m": 801.8120680639014, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753873.960372927, 5751509.320938928], [753560.3761066385, 5750655.2848100625]]}, "properties": {"id": "28393-28395-28397-28399-28401-28403-28405-28407-28409-28411", "from": "982267878", "to": "982267846", "length_m": 936.1740565817756, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790502.6086182188, 5754799.004224805], [790727.0165205697, 5754763.050551913]]}, "properties": {"id": "284-18789-18790-18791-18792-18793-18794", "from": "2548347220", "to": "3464604491", "length_m": 227.6219968809734, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779371.10614317, 5756041.942613101], [779440.9865462212, 5756015.753961453]]}, "properties": {"id": "2841-2839-2837", "from": "186877142", "to": "1708444833", "length_m": 74.88984136305064, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753560.3761066385, 5750655.2848100625], [753873.960372927, 5751509.320938928]]}, "properties": {"id": "28412-28410-28408-28406-28404-28402-28400-28398-28396-28394", "from": "982267846", "to": "982267878", "length_m": 936.1740565817756, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753560.3761066385, 5750655.2848100625], [753499.471983874, 5750144.09967423]]}, "properties": {"id": "28413-28415-28417-28419-28421-28423-28425-28427-28429-28431-28433-28435-28437-28439-28441-28443", "from": "982267846", "to": "982267895", "length_m": 515.6613912997243, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779371.10614317, 5756041.942613101], [779288.527469353, 5756624.556887407]]}, "properties": {"id": "2842-2844-2846-2848-2850-2852-2854-2856-2858-2860-2862-2864-2866-2868", "from": "186877142", "to": "186877152", "length_m": 639.8613899229861, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753499.471983874, 5750144.09967423], [753560.3761066385, 5750655.2848100625]]}, "properties": {"id": "28444-28442-28440-28438-28436-28434-28432-28430-28428-28426-28424-28422-28420-28418-28416-28414", "from": "982267895", "to": "982267846", "length_m": 515.6613912997243, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834351.1142704147, 5812788.716958418], [834338.1377268075, 5812768.907213649]]}, "properties": {"id": "28567", "from": "268219317", "to": "268219241", "length_m": 23.68156808665648, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750965.2954997879, 5837030.143286274], [751218.3477105228, 5837477.400674425]]}, "properties": {"id": "28625-25111-25112-25113-25114-25115", "from": "477076561", "to": "1841114204", "length_m": 515.0257763360415, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752616.3310900042, 5743076.025260545], [752165.9835734697, 5743145.344744689]]}, "properties": {"id": "28643", "from": "5838931153", "to": "5838931152", "length_m": 455.6512657867525, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752165.9835734697, 5743145.344744689], [752616.3310900042, 5743076.025260545]]}, "properties": {"id": "28644", "from": "5838931152", "to": "5838931153", "length_m": 455.6512657867525, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810107.6634890167, 5763137.462340241], [810072.7269992471, 5763148.939190099]]}, "properties": {"id": "28645", "from": "177776104", "to": "380240420", "length_m": 36.773310880010456, "freespeed_mps": 25.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752309.9142495141, 5742215.774035021], [752497.3186287675, 5742819.140027054]]}, "properties": {"id": "28647-28649-28651-28653-28655-28657-28659-28661", "from": "75292679", "to": "917846355", "length_m": 718.4169725452214, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752497.3186287675, 5742819.140027054], [752309.9142495141, 5742215.774035021]]}, "properties": {"id": "28662-28660-28658-28656-28654-28652-28650-28648", "from": "917846355", "to": "75292679", "length_m": 718.4169725452214, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810079.8679335783, 5763169.154174158], [810072.7269992471, 5763148.939190099]]}, "properties": {"id": "28666-28667-28668", "from": "380240417", "to": "380240420", "length_m": 22.345517053406105, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810072.7269992471, 5763148.939190099], [810037.5282417508, 5763162.271333115]]}, "properties": {"id": "28669-28670-28671-28672-28673-28674-28675", "from": "380240420", "to": "380240426", "length_m": 45.63551754654382, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810037.5282417508, 5763162.271333115], [810045.9188947831, 5763184.433842109]]}, "properties": {"id": "28676-28677-28678", "from": "380240426", "to": "380240429", "length_m": 25.436793107191445, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810045.9188947831, 5763184.433842109], [810079.8679335783, 5763169.154174158]]}, "properties": {"id": "28679-28680-28681-28663-28664-28665", "from": "380240429", "to": "380240417", "length_m": 40.38691794114659, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810079.8679335783, 5763169.154174158], [810107.6634890167, 5763137.462340241]]}, "properties": {"id": "28682", "from": "380240417", "to": "177776104", "length_m": 42.154065565296165, "freespeed_mps": 25.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779288.527469353, 5756624.556887407], [779371.10614317, 5756041.942613101]]}, "properties": {"id": "2869-2867-2865-2863-2861-2859-2857-2855-2853-2851-2849-2847-2845-2843", "from": "186877152", "to": "186877142", "length_m": 639.8613899229861, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755864.4875263066, 5754543.074059171], [755767.2908163052, 5753978.405315603]]}, "properties": {"id": "28695-28697-28699", "from": "849463760", "to": "811082269", "length_m": 573.5437987262993, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779288.527469353, 5756624.556887407], [779485.8500409117, 5757668.973594299]]}, "properties": {"id": "2870-2872", "from": "186877152", "to": "480679209", "length_m": 1062.916545199519, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755767.2908163052, 5753978.405315603], [755864.4875263066, 5754543.074059171]]}, "properties": {"id": "28700-28698-28696", "from": "811082269", "to": "849463760", "length_m": 573.5437987262993, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755767.2908163052, 5753978.405315603], [755650.7819964598, 5753312.721565356]]}, "properties": {"id": "28701", "from": "811082269", "to": "811082409", "length_m": 675.8026044638121, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755650.7819964598, 5753312.721565356], [755767.2908163052, 5753978.405315603]]}, "properties": {"id": "28702", "from": "811082409", "to": "811082269", "length_m": 675.8026044638121, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755650.7819964598, 5753312.721565356], [755588.3739804112, 5752724.350721612]]}, "properties": {"id": "28703-28705-28707-28709-28711", "from": "811082409", "to": "811082467", "length_m": 603.6077960203219, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755588.3739804112, 5752724.350721612], [755650.7819964598, 5753312.721565356]]}, "properties": {"id": "28712-28710-28708-28706-28704", "from": "811082467", "to": "811082409", "length_m": 603.6077960203219, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755588.3739804112, 5752724.350721612], [756098.16751451, 5751723.931455578]]}, "properties": {"id": "28713-28715-28717-28719-28721-28723-28725", "from": "811082467", "to": "811082528", "length_m": 1123.5639038564123, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756098.16751451, 5751723.931455578], [755588.3739804112, 5752724.350721612]]}, "properties": {"id": "28726-28724-28722-28720-28718-28716-28714", "from": "811082528", "to": "811082467", "length_m": 1123.5639038564123, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756098.16751451, 5751723.931455578], [756200.9026701979, 5751194.810565936]]}, "properties": {"id": "28727-28729-28731", "from": "811082528", "to": "811082390", "length_m": 539.0687190718461, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779485.8500409117, 5757668.973594299], [779288.527469353, 5756624.556887407]]}, "properties": {"id": "2873-2871", "from": "480679209", "to": "186877152", "length_m": 1062.916545199519, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756200.9026701979, 5751194.810565936], [756098.16751451, 5751723.931455578]]}, "properties": {"id": "28732-28730-28728", "from": "811082390", "to": "811082528", "length_m": 539.0687190718461, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756200.9026701979, 5751194.810565936], [756393.324464728, 5750587.4166169]]}, "properties": {"id": "28733-28735-28737-28739-28741-28743-28745-28747-28749-28751", "from": "811082390", "to": "811082504", "length_m": 652.8950456142607, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779485.8500409117, 5757668.973594299], [779467.9543330567, 5758667.73407336]]}, "properties": {"id": "2874-2876-2878-2880-2882-2884-2886-2888-2890-2892-2894-2896", "from": "480679209", "to": "186877160", "length_m": 1059.287800199854, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756393.324464728, 5750587.4166169], [756200.9026701979, 5751194.810565936]]}, "properties": {"id": "28752-28750-28748-28746-28744-28742-28740-28738-28736-28734", "from": "811082504", "to": "811082390", "length_m": 652.8950456142607, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756393.324464728, 5750587.4166169], [756644.8311321193, 5749702.303652143]]}, "properties": {"id": "28753-28755-28757-28759-28761-28763-28765-28767-28769-28771", "from": "811082504", "to": "811081787", "length_m": 961.2758234416876, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756644.8311321193, 5749702.303652143], [756393.324464728, 5750587.4166169]]}, "properties": {"id": "28772-28770-28768-28766-28764-28762-28760-28758-28756-28754", "from": "811081787", "to": "811082504", "length_m": 961.2758234416876, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778392.2388314256, 5744568.305248721], [778446.6797737188, 5744440.55300635]]}, "properties": {"id": "28796-28794-28792-24053", "from": "4763140984", "to": "2562476494", "length_m": 138.92510507206137, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778392.2388314256, 5744568.305248721], [778385.882199877, 5744582.738990668]]}, "properties": {"id": "28797", "from": "4763140984", "to": "289545363", "length_m": 15.771482876443931, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778385.882199877, 5744582.738990668], [778392.2388314256, 5744568.305248721]]}, "properties": {"id": "28798", "from": "289545363", "to": "4763140984", "length_m": 15.771482876443931, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778385.882199877, 5744582.738990668], [778357.9095258834, 5744742.314507653]]}, "properties": {"id": "28799-28801-28803-28805", "from": "289545363", "to": "289545365", "length_m": 164.68000664273717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778357.9095258834, 5744742.314507653], [778385.882199877, 5744582.738990668]]}, "properties": {"id": "28806-28804-28802-28800", "from": "289545365", "to": "289545363", "length_m": 164.68000664273717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778357.9095258834, 5744742.314507653], [778409.4297901895, 5744882.670017422]]}, "properties": {"id": "28807-28809-28811", "from": "289545365", "to": "289545367", "length_m": 153.24972665022645, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778409.4297901895, 5744882.670017422], [778357.9095258834, 5744742.314507653]]}, "properties": {"id": "28812-28810-28808", "from": "289545367", "to": "289545365", "length_m": 153.24972665022645, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778409.4297901895, 5744882.670017422], [778538.6969344437, 5745079.067974391]]}, "properties": {"id": "28813-28815", "from": "289545367", "to": "289545370", "length_m": 235.96629986748871, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778538.6969344437, 5745079.067974391], [778409.4297901895, 5744882.670017422]]}, "properties": {"id": "28816-28814", "from": "289545370", "to": "289545367", "length_m": 235.96629986748871, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778538.6969344437, 5745079.067974391], [778587.6828710029, 5745124.859096119]]}, "properties": {"id": "28817", "from": "289545370", "to": "289545371", "length_m": 67.05556491001146, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778587.6828710029, 5745124.859096119], [778538.6969344437, 5745079.067974391]]}, "properties": {"id": "28818", "from": "289545371", "to": "289545370", "length_m": 67.05556491001146, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778587.6828710029, 5745124.859096119], [778651.4711811901, 5745163.447265632]]}, "properties": {"id": "28819", "from": "289545371", "to": "289545372", "length_m": 74.55196380034656, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778651.4711811901, 5745163.447265632], [778587.6828710029, 5745124.859096119]]}, "properties": {"id": "28820", "from": "289545372", "to": "289545371", "length_m": 74.55196380034656, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778651.4711811901, 5745163.447265632], [778301.1160892976, 5745676.787023855]]}, "properties": {"id": "28821-28823-28825-28827-28829-28831-28833-28835-28837-28839-28841-28843-28845-28847-28849-28851", "from": "289545372", "to": "289545391", "length_m": 1055.6561276418465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778301.1160892976, 5745676.787023855], [778651.4711811901, 5745163.447265632]]}, "properties": {"id": "28852-28850-28848-28846-28844-28842-28840-28838-28836-28834-28832-28830-28828-28826-28824-28822", "from": "289545391", "to": "289545372", "length_m": 1055.6561276418465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793625.1127560742, 5774220.84110408], [792910.4279270213, 5774511.585993617]]}, "properties": {"id": "28854-10014-10015-10016-10017-7592-7593-7594-7595-11268-11269-11270-9917-9918-9919", "from": "318039939", "to": "1548463854", "length_m": 816.5586551825568, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757613.8115229425, 5743349.542359528], [757192.6754406942, 5743549.981060576]]}, "properties": {"id": "28857-28859-28861-28863-28865-28867-28869-28871", "from": "524143035", "to": "534672993", "length_m": 511.9008646848001, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757192.6754406942, 5743549.981060576], [757613.8115229425, 5743349.542359528]]}, "properties": {"id": "28872-28870-28868-28866-28864-28862-28860-28858", "from": "534672993", "to": "524143035", "length_m": 511.9008646848001, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757192.6754406942, 5743549.981060576], [756590.4531753957, 5744256.316319333]]}, "properties": {"id": "28873-28875-28877-28879-28881-28883-28885-28887-28889", "from": "534672993", "to": "655150562", "length_m": 773.8226094857, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756590.4531753957, 5744256.316319333], [757192.6754406942, 5743549.981060576]]}, "properties": {"id": "28890-28888-28886-28884-28882-28880-28878-28876-28874", "from": "655150562", "to": "534672993", "length_m": 773.8226094857, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756590.4531753957, 5744256.316319333], [756044.6454669213, 5744699.375747014]]}, "properties": {"id": "28891-28893-28895-28897-28899-28901-28903-28905", "from": "655150562", "to": "655150560", "length_m": 740.3017400778481, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756044.6454669213, 5744699.375747014], [756590.4531753957, 5744256.316319333]]}, "properties": {"id": "28906-28904-28902-28900-28898-28896-28894-28892", "from": "655150560", "to": "655150562", "length_m": 740.3017400778481, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756044.6454669213, 5744699.375747014], [755679.5021514535, 5745484.046864325]]}, "properties": {"id": "28907-28909-28911-28913", "from": "655150560", "to": "655150594", "length_m": 868.3941372931023, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755679.5021514535, 5745484.046864325], [756044.6454669213, 5744699.375747014]]}, "properties": {"id": "28914-28912-28910-28908", "from": "655150594", "to": "655150560", "length_m": 868.3941372931023, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755679.5021514535, 5745484.046864325], [755245.0103528774, 5746256.783524846]]}, "properties": {"id": "28915-28917-28919-28921-28923", "from": "655150594", "to": "655150599", "length_m": 939.9152303917941, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755245.0103528774, 5746256.783524846], [755679.5021514535, 5745484.046864325]]}, "properties": {"id": "28924-28922-28920-28918-28916", "from": "655150599", "to": "655150594", "length_m": 939.9152303917941, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755245.0103528774, 5746256.783524846], [755232.6919077595, 5746309.226558067]]}, "properties": {"id": "28925", "from": "655150599", "to": "655150600", "length_m": 53.87036130879137, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755232.6919077595, 5746309.226558067], [755245.0103528774, 5746256.783524846]]}, "properties": {"id": "28926", "from": "655150600", "to": "655150599", "length_m": 53.87036130879137, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755232.6919077595, 5746309.226558067], [754872.8893180672, 5746591.631824623]]}, "properties": {"id": "28927-28929-28931-28933-28935-28937-28939-28941-28943-28945-28947-28949", "from": "655150600", "to": "655150578", "length_m": 555.1272990964159, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754872.8893180672, 5746591.631824623], [755232.6919077595, 5746309.226558067]]}, "properties": {"id": "28950-28948-28946-28944-28942-28940-28938-28936-28934-28932-28930-28928", "from": "655150578", "to": "655150600", "length_m": 555.1272990964159, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754872.8893180672, 5746591.631824623], [753725.2073186957, 5747147.567980701]]}, "properties": {"id": "28951-28953-28955-28957-28959-28961-28963-28965-28967-28969-28971-28973-28975-28977-28979-28981-28983-28985-28987-28989-28991-28993-28995-28997", "from": "655150578", "to": "655150569", "length_m": 1433.0883378458334, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779467.9543330567, 5758667.73407336], [779485.8500409117, 5757668.973594299]]}, "properties": {"id": "2897-2895-2893-2891-2889-2887-2885-2883-2881-2879-2877-2875", "from": "186877160", "to": "480679209", "length_m": 1059.287800199854, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779467.9543330567, 5758667.73407336], [777419.1040315313, 5759106.8715537945]]}, "properties": {"id": "2898-2900-2902-2904-2906-2908-2910-2912-2914-2916", "from": "186877160", "to": "186877171", "length_m": 2105.8097856086215, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753725.2073186957, 5747147.567980701], [754872.8893180672, 5746591.631824623]]}, "properties": {"id": "28998-28996-28994-28992-28990-28988-28986-28984-28982-28980-28978-28976-28974-28972-28970-28968-28966-28964-28962-28960-28958-28956-28954-28952", "from": "655150569", "to": "655150578", "length_m": 1433.0883378458334, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838204.1104524132, 5818282.629130857], [838282.2545549661, 5818202.140580451]]}, "properties": {"id": "28999-29000-29001-29002-29003-29004", "from": "1511218711", "to": "1511218385", "length_m": 112.613329296604, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750861.7774776841, 5836723.582764633], [750856.5929673741, 5836429.04151433]]}, "properties": {"id": "29-30-31-32-33-34-35", "from": "5642242409", "to": "363993766", "length_m": 297.67350216445044, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838282.2545549661, 5818202.140580451], [838366.6938452027, 5818095.594980564]]}, "properties": {"id": "29005-29006-29007", "from": "1511218385", "to": "5625951630", "length_m": 135.95754521653217, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838366.6938452027, 5818095.594980564], [838423.9451692898, 5818010.580489237]]}, "properties": {"id": "29008-29009-29010-29011-29012", "from": "5625951630", "to": "1511218319", "length_m": 102.57355814360932, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838277.9683558032, 5818194.121290255], [838282.2545549661, 5818202.140580451]]}, "properties": {"id": "29013", "from": "385182456", "to": "1511218385", "length_m": 9.092882792379733, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838282.2545549661, 5818202.140580451], [838277.9683558032, 5818194.121290255]]}, "properties": {"id": "29014", "from": "1511218385", "to": "385182456", "length_m": 9.092882792379733, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838361.4257660969, 5818092.920133915], [838366.6938452027, 5818095.594980564]]}, "properties": {"id": "29015", "from": "1511218462", "to": "5625951630", "length_m": 5.908253659501671, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838366.6938452027, 5818095.594980564], [838361.4257660969, 5818092.920133915]]}, "properties": {"id": "29016", "from": "5625951630", "to": "1511218462", "length_m": 5.908253659501671, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838252.2002371561, 5818226.547433369], [838204.1104524132, 5818282.629130857]]}, "properties": {"id": "29017-29018-29019", "from": "170074244", "to": "1511218711", "length_m": 73.9798602972339, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765876.997269561, 5752381.294795198], [766640.6677739295, 5752876.37603472]]}, "properties": {"id": "29020-29022-29024-29026-29028-29030-29032-29034-29036", "from": "534677934", "to": "534677960", "length_m": 1026.7095224625527, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766640.6677739295, 5752876.37603472], [765876.997269561, 5752381.294795198]]}, "properties": {"id": "29037-29035-29033-29031-29029-29027-29025-29023-29021", "from": "534677960", "to": "534677934", "length_m": 1026.7095224625527, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766640.6677739295, 5752876.37603472], [767155.4710745735, 5753069.987923437]]}, "properties": {"id": "29038-29040-29055-29053", "from": "534677960", "to": "534677979", "length_m": 747.8323624371533, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767383.0199005846, 5754367.751176539], [767255.7746415223, 5753652.073807963]]}, "properties": {"id": "29042-29044-29046", "from": "534678127", "to": "5106590266", "length_m": 726.9202084356377, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767255.7746415223, 5753652.073807963], [767383.0199005846, 5754367.751176539]]}, "properties": {"id": "29047-29045-29043", "from": "5106590266", "to": "534678127", "length_m": 726.9202084356377, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767255.7746415223, 5753652.073807963], [767155.4710745735, 5753069.987923437]]}, "properties": {"id": "29048-29050", "from": "5106590266", "to": "534677979", "length_m": 590.6646953846251, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767155.4710745735, 5753069.987923437], [767255.7746415223, 5753652.073807963]]}, "properties": {"id": "29051-29049", "from": "534677979", "to": "5106590266", "length_m": 590.6646953846251, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767155.4710745735, 5753069.987923437], [766640.6677739295, 5752876.37603472]]}, "properties": {"id": "29052-29054-29041-29039", "from": "534677979", "to": "534677960", "length_m": 747.8323624371533, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771038.7623960852, 5753731.363934128], [771788.2327713282, 5753599.46721347]]}, "properties": {"id": "29065-29063-38147-33174", "from": "6004713620", "to": "534678095", "length_m": 761.0682602337803, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771038.7623960852, 5753731.363934128], [770307.9777217791, 5753858.140695949]]}, "properties": {"id": "29066-29068-33306-33308", "from": "6004713620", "to": "535080679", "length_m": 741.9678716079447, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765521.5417077604, 5750744.643616911], [765210.2515810558, 5751474.193015142]]}, "properties": {"id": "29133-29135-33809-33811-33813-33815", "from": "534677914", "to": "534677924", "length_m": 1086.1753086372132, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734333.2488094836, 5828014.29247183], [734054.9431468036, 5827566.422785373]]}, "properties": {"id": "29142-29140-29138-12423-12421-12419-12417-12415-12413-12411", "from": "2315437919", "to": "214442350", "length_m": 529.773503817328, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790628.010779216, 5767130.008396814], [790616.3565627448, 5767146.464161009]]}, "properties": {"id": "29143", "from": "490759581", "to": "490759589", "length_m": 20.16464573959797, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752008.3541054343, 5745990.198967284], [751367.3245432829, 5745461.80925467]]}, "properties": {"id": "29144-29146-48607", "from": "75292357", "to": "809524742", "length_m": 831.5031733363597, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790637.9115216653, 5767137.2999942675], [790628.010779216, 5767130.008396814]]}, "properties": {"id": "29148", "from": "262916737", "to": "490759581", "length_m": 12.296019407545346, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777419.1040315313, 5759106.8715537945], [779467.9543330567, 5758667.73407336]]}, "properties": {"id": "2917-2915-2913-2911-2909-2907-2905-2903-2901-2899", "from": "186877171", "to": "186877160", "length_m": 2105.8097856086215, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759216.0017475699, 5730558.962958543], [759171.5581210997, 5730497.878448516]]}, "properties": {"id": "2919-2741-2739-5721-5719-5717-5715", "from": "832510269", "to": "75308689", "length_m": 79.18734168763389, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835293.4663915492, 5818952.189674806], [835277.1113602282, 5818954.889644688]]}, "properties": {"id": "292", "from": "30929319", "to": "268387661", "length_m": 16.576395432951127, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759216.0017475699, 5730558.962958543], [759310.7512898925, 5730642.985618209]]}, "properties": {"id": "2920-2922-2924-2926-2928-2930", "from": "832510269", "to": "1976126515", "length_m": 126.90077778181774, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790626.159767611, 5767153.236900155], [790637.9115216653, 5767137.2999942675]]}, "properties": {"id": "29217", "from": "267124456", "to": "262916737", "length_m": 19.80122958117499, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796562.6256053727, 5760443.771294826], [796749.3250920852, 5760420.961903152]]}, "properties": {"id": "29235-29236-29237-29238-29239-29240-29241-29242-29243", "from": "468580917", "to": "1586767394", "length_m": 193.90188824102836, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796950.1948005741, 5760369.461863139], [796800.7624009554, 5760393.676203492]]}, "properties": {"id": "29244-29245-29246-29247-29248-29249-29250-29251-29252-29253-29254", "from": "1708194419", "to": "2085445771", "length_m": 155.2251608965629, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796801.1021380872, 5760431.355420783], [796950.1948005741, 5760369.461863139]]}, "properties": {"id": "29255-29256-29257-29258-29259-29260-29261-29262-29263", "from": "468580779", "to": "1708194419", "length_m": 162.12908999594515, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796800.5946669467, 5760393.40447859], [796765.0594281587, 5760387.094535409]]}, "properties": {"id": "29264-29265-29266-29267-29268-29269", "from": "468580798", "to": "2085445772", "length_m": 38.76355453911562, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796765.0594281587, 5760387.094535409], [796764.8255468952, 5760387.169808484]]}, "properties": {"id": "29270", "from": "2085445772", "to": "468580898", "length_m": 0.24569591463822804, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796764.8255468952, 5760387.169808484], [796749.3250920852, 5760420.961903152]]}, "properties": {"id": "29271-29272-29273-29274-29275", "from": "468580898", "to": "1586767394", "length_m": 38.815275045761, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796749.3250920852, 5760420.961903152], [796801.1021380872, 5760431.355420783]]}, "properties": {"id": "29276-29277-29278-29279-29280-29281-29282-29283-29284", "from": "1586767394", "to": "468580779", "length_m": 62.464716633412145, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796801.1021380872, 5760431.355420783], [796800.7624009554, 5760393.676203492]]}, "properties": {"id": "29285-29286-29287-29288-29289", "from": "468580779", "to": "2085445771", "length_m": 40.71446980086167, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796800.7624009554, 5760393.676203492], [796800.5946669467, 5760393.40447859]]}, "properties": {"id": "29290", "from": "2085445771", "to": "468580798", "length_m": 0.31932604123831343, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733238.0532511875, 5826935.916972264], [732825.8525877103, 5826614.906554924]]}, "properties": {"id": "29292-3628", "from": "3444578378", "to": "1969410820", "length_m": 522.4529399081101, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796854.5231845309, 5760220.050772932], [796765.0594281587, 5760387.094535409]]}, "properties": {"id": "29293-29294-29295-29296-29297-29298-29299-29300-29301-29302-29303", "from": "270450002", "to": "2085445772", "length_m": 191.481292190404, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835277.1113602282, 5818954.889644688], [835293.4663915492, 5818952.189674806]]}, "properties": {"id": "293", "from": "268387661", "to": "30929319", "length_m": 16.576395432951127, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796800.5946669467, 5760393.40447859], [796854.5231845309, 5760220.050772932]]}, "properties": {"id": "29304-29305-29306-29307-29308-29309-29310-29311-29312", "from": "468580798", "to": "270450002", "length_m": 189.63590470903685, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759310.7512898925, 5730642.985618209], [759216.0017475699, 5730558.962958543]]}, "properties": {"id": "2931-2929-2927-2925-2923-2921", "from": "1976126515", "to": "832510269", "length_m": 126.90077778181774, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796764.8255468952, 5760387.169808484], [796562.6256053727, 5760443.771294826]]}, "properties": {"id": "29313-29314-29315-29316-29317-29318", "from": "468580898", "to": "468580917", "length_m": 210.3135727494222, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783422.1903957813, 5761240.182550224], [783692.2880987604, 5762833.403781643]]}, "properties": {"id": "29321", "from": "616997571", "to": "616999271", "length_m": 1615.953792408917, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783692.2880987604, 5762833.403781643], [783422.1903957813, 5761240.182550224]]}, "properties": {"id": "29322", "from": "616999271", "to": "616997571", "length_m": 1615.953792408917, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817082.1246684758, 5757784.743351829], [817043.4525203974, 5757828.93145531]]}, "properties": {"id": "29323-29324-29325-29326-29327", "from": "631416524", "to": "631418007", "length_m": 59.04611612047112, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817043.4525203974, 5757828.93145531], [816965.2077048337, 5757886.5565498]]}, "properties": {"id": "29328-29329-29330-29331", "from": "631418007", "to": "631416076", "length_m": 97.1857498119111, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832539.1087599618, 5812959.032004086], [832671.6003989235, 5812932.8503591195]]}, "properties": {"id": "29343-29344", "from": "298347857", "to": "1536031875", "length_m": 135.05374183795638, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796491.4583149988, 5770077.395999311], [795716.0104073007, 5771190.573206468]]}, "properties": {"id": "29346-29347-29348-29349-29350-29351-29352-29353-29354-29355-29356-29357-29358-29359", "from": "317731183", "to": "441990591", "length_m": 1356.7908269933039, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810037.5282417508, 5763162.271333115], [809553.5894234574, 5763519.254078475]]}, "properties": {"id": "29362-29363-29364-29365-29366-29367", "from": "380240426", "to": "601290427", "length_m": 601.6858337742367, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[809553.5894234574, 5763519.254078475], [809152.7331279953, 5763827.7643868]]}, "properties": {"id": "29368-29369-29370-29371-29372", "from": "601290427", "to": "380240450", "length_m": 505.98012448227263, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[809152.7331279953, 5763827.7643868], [808240.6225959458, 5764488.971902891]]}, "properties": {"id": "29373-29374-29375", "from": "380240450", "to": "3285056289", "length_m": 1126.5707088943527, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[808240.6225959458, 5764488.971902891], [807324.8365055594, 5765150.423409362]]}, "properties": {"id": "29376-29377-29378-29379", "from": "3285056289", "to": "262915785", "length_m": 1129.740254500933, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807324.8365055594, 5765150.423409362], [807316.2187099776, 5765156.0862738965]]}, "properties": {"id": "29380", "from": "262915785", "to": "790928368", "length_m": 10.311858992105707, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807316.2187099776, 5765156.0862738965], [806852.2113815116, 5765480.92344344]]}, "properties": {"id": "29381-29382-29383-29384", "from": "790928368", "to": "3285045417", "length_m": 566.5516818801942, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[806852.2113815116, 5765480.92344344], [806447.1814767753, 5765774.341603147]]}, "properties": {"id": "29385", "from": "3285045417", "to": "380240446", "length_m": 500.14341967498257, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[806447.1814767753, 5765774.341603147], [805681.501801471, 5766333.188894886]]}, "properties": {"id": "29386-29387", "from": "380240446", "to": "360642389", "length_m": 947.9332949931897, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[805681.501801471, 5766333.188894886], [805207.2823682522, 5766683.93762618]]}, "properties": {"id": "29388-29389", "from": "360642389", "to": "52495522", "length_m": 589.8390336079275, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[805207.2823682522, 5766683.93762618], [804579.9062351943, 5767091.056061543]]}, "properties": {"id": "29390-29391-29392-29393-29394-29395-29396", "from": "52495522", "to": "482815257", "length_m": 750.5961816589512, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790796.1894007362, 5752659.214468884], [790685.9872120136, 5752680.647074892]]}, "properties": {"id": "294-296", "from": "4187193581", "to": "510172571", "length_m": 112.26705015714225, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731578.3813339998, 5705573.6314926185], [731943.3017647101, 5706145.972115315]]}, "properties": {"id": "29400-29398-29361-9111-9109-9107-9105", "from": "364228810", "to": "364228817", "length_m": 679.8147061869738, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731578.3813339998, 5705573.6314926185], [731439.0153384788, 5705065.62613594]]}, "properties": {"id": "29401-29403-29405-29407-29409-29411-29413-29415-29417", "from": "364228810", "to": "249074035", "length_m": 532.7766107788032, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731439.0153384788, 5705065.62613594], [731578.3813339998, 5705573.6314926185]]}, "properties": {"id": "29418-29416-29414-29412-29410-29408-29406-29404-29402", "from": "249074035", "to": "364228810", "length_m": 532.7766107788032, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731439.0153384788, 5705065.62613594], [731244.0432855765, 5704605.884011816]]}, "properties": {"id": "29419-29421-29423-29425-29427-9206-9204-9202-9200", "from": "249074035", "to": "357068979", "length_m": 535.9465506889945, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773185.4367538533, 5760243.989473116], [773264.2376852534, 5760130.782217734]]}, "properties": {"id": "29429-29431", "from": "934542720", "to": "535081573", "length_m": 137.9328441199361, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773264.2376852534, 5760130.782217734], [773185.4367538533, 5760243.989473116]]}, "properties": {"id": "29432-29430", "from": "535081573", "to": "934542720", "length_m": 137.9328441199361, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773264.2376852534, 5760130.782217734], [773336.7645031011, 5760026.675889171]]}, "properties": {"id": "29433", "from": "535081573", "to": "535081568", "length_m": 126.87894615793527, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773336.7645031011, 5760026.675889171], [773264.2376852534, 5760130.782217734]]}, "properties": {"id": "29434", "from": "535081568", "to": "535081573", "length_m": 126.87894615793527, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773336.7645031011, 5760026.675889171], [773464.0218241708, 5759817.762523119]]}, "properties": {"id": "29435-29437-29439-29441", "from": "535081568", "to": "474126198", "length_m": 251.59080915829378, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773464.0218241708, 5759817.762523119], [773336.7645031011, 5760026.675889171]]}, "properties": {"id": "29442-29440-29438-29436", "from": "474126198", "to": "535081568", "length_m": 251.59080915829378, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733238.0532511875, 5826935.916972264], [733703.7081307115, 5827298.523860816]]}, "properties": {"id": "29443", "from": "3444578378", "to": "2315437917", "length_m": 590.1849045950034, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733703.7081307115, 5827298.523860816], [733238.0532511875, 5826935.916972264]]}, "properties": {"id": "29444", "from": "2315437917", "to": "3444578378", "length_m": 590.1849045950034, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773373.0333497468, 5760378.56441353], [773526.2780512404, 5760163.838162882]]}, "properties": {"id": "29445-29447", "from": "934542719", "to": "535081570", "length_m": 263.80163261721464, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773526.2780512404, 5760163.838162882], [773373.0333497468, 5760378.56441353]]}, "properties": {"id": "29448-29446", "from": "535081570", "to": "934542719", "length_m": 263.80163261721464, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773526.2780512404, 5760163.838162882], [773653.0644160027, 5760002.67606181]]}, "properties": {"id": "29449-29451-29453-29455", "from": "535081570", "to": "3756753385", "length_m": 206.90421537002564, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773653.0644160027, 5760002.67606181], [773526.2780512404, 5760163.838162882]]}, "properties": {"id": "29456-29454-29452-29450", "from": "3756753385", "to": "535081570", "length_m": 206.90421537002564, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759407.3884553902, 5730715.706256325], [759352.1025385802, 5730660.802470717]]}, "properties": {"id": "2950-2951-2952-2953-2954", "from": "2932565813", "to": "36698470", "length_m": 74.40999179293453, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798772.4932869412, 5826044.211909806], [799589.6516610412, 5825987.801158758]]}, "properties": {"id": "29513-29514-29515-29516-29517-29518-29519-34554-34555-34556-34557-34558-34559-34560-34561-34562", "from": "175089846", "to": "2923307881", "length_m": 825.3364647388204, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747927.3176912256, 5758105.671443811], [748346.5649802526, 5758390.207010226]]}, "properties": {"id": "29523-29524-29525-29526-29527", "from": "917801363", "to": "5817935459", "length_m": 507.7065003634353, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748346.5649802526, 5758390.207010226], [748880.5534639701, 5758540.309520661]]}, "properties": {"id": "29528-29529-29530-29531-29532", "from": "5817935459", "to": "5817935464", "length_m": 555.6422228842015, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748880.5534639701, 5758540.309520661], [749495.9945674072, 5758832.888245416]]}, "properties": {"id": "29533-29534-29535-29536-29537-29538-29539-29540", "from": "5817935464", "to": "5817935472", "length_m": 682.6366495540021, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749495.9945674072, 5758832.888245416], [750160.0357694847, 5759085.091564719]]}, "properties": {"id": "29541-29542-29543-29544", "from": "5817935472", "to": "5817935476", "length_m": 710.5350552790319, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750160.0357694847, 5759085.091564719], [750640.9173755392, 5759246.559823255]]}, "properties": {"id": "29545", "from": "5817935476", "to": "5817935477", "length_m": 507.26631722317416, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750640.9173755392, 5759246.559823255], [751477.4914358857, 5759537.603940264]]}, "properties": {"id": "29546-29547", "from": "5817935477", "to": "5817935479", "length_m": 885.7625354978722, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751477.4914358857, 5759537.603940264], [751817.8497608372, 5759655.971159738]]}, "properties": {"id": "29548-29549", "from": "5817935479", "to": "982268022", "length_m": 360.3915338115749, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751817.8497608372, 5759655.971159738], [752565.2422313855, 5760016.657195523]]}, "properties": {"id": "29550-29551-29552-29553-29554-29555", "from": "982268022", "to": "5817935486", "length_m": 830.8057454548058, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752565.2422313855, 5760016.657195523], [753053.0004344292, 5760259.222514969]]}, "properties": {"id": "29556-29557", "from": "5817935486", "to": "5817935488", "length_m": 544.766067689183, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753053.0004344292, 5760259.222514969], [753649.1028002462, 5760573.533144023]]}, "properties": {"id": "29558-29559", "from": "5817935488", "to": "5817935490", "length_m": 674.1217551940479, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753649.1028002462, 5760573.533144023], [754328.3978319053, 5760957.42532489]]}, "properties": {"id": "29560-29561", "from": "5817935490", "to": "5817935492", "length_m": 780.2879621462803, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754328.3978319053, 5760957.42532489], [754822.3862244976, 5761068.13121027]]}, "properties": {"id": "29562-29563-29564-29565", "from": "5817935492", "to": "5857617065", "length_m": 509.65648221552186, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754822.3862244976, 5761068.13121027], [755959.9939418136, 5761225.671641862]]}, "properties": {"id": "29566", "from": "5857617065", "to": "917801342", "length_m": 1148.4643229641551, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755959.9939418136, 5761225.671641862], [757369.475822267, 5761420.80735704]]}, "properties": {"id": "29567", "from": "917801342", "to": "1743089375", "length_m": 1422.9255464614885, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757369.475822267, 5761420.80735704], [758911.2569720795, 5762038.726505709]]}, "properties": {"id": "29568-29569-29570-29571-29572-29573-29574", "from": "1743089375", "to": "5857617067", "length_m": 1667.7315199409861, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758911.2569720795, 5762038.726505709], [760207.2199772865, 5762477.709336418]]}, "properties": {"id": "29575-29576", "from": "5857617067", "to": "4096350031", "length_m": 1368.2931368972168, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796805.0767079096, 5782310.356399772], [796310.6960138734, 5782198.81461611]]}, "properties": {"id": "29578-29579-29580-29581-29582", "from": "318024803", "to": "318024805", "length_m": 507.0839463705322, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796310.6960138734, 5782198.81461611], [795461.1861502703, 5782178.859370859]]}, "properties": {"id": "29583-29584-29585-29586-29587-29588-29589-29590-29591-29592-29593-29594-29595-29596-29597-29598", "from": "318024805", "to": "318024853", "length_m": 852.1862011630334, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795461.1861502703, 5782178.859370859], [794903.530242782, 5782231.701795712]]}, "properties": {"id": "29599-29600-29601", "from": "318024853", "to": "318024854", "length_m": 560.1543103738084, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794903.530242782, 5782231.701795712], [794364.784985706, 5782282.643993813]]}, "properties": {"id": "29602-23103", "from": "318024854", "to": "318024856", "length_m": 541.1485799728649, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754571.403238252, 5760999.664243276], [753468.1446837215, 5760434.477755032]]}, "properties": {"id": "29603-29604-29605-29606-29607", "from": "917801313", "to": "1835206936", "length_m": 1245.760559277706, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753468.1446837215, 5760434.477755032], [751829.3548523078, 5759626.92730535]]}, "properties": {"id": "29608-29609-29610", "from": "1835206936", "to": "5857617070", "length_m": 1827.129047177967, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751829.3548523078, 5759626.92730535], [751470.3213642278, 5759497.987423494]]}, "properties": {"id": "29611-29612", "from": "5857617070", "to": "1012039873", "length_m": 381.50351764713207, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751470.3213642278, 5759497.987423494], [750041.8593101774, 5759010.33671028]]}, "properties": {"id": "29613", "from": "1012039873", "to": "1835207004", "length_m": 1509.4061909669492, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750041.8593101774, 5759010.33671028], [749390.7760888054, 5758748.936974738]]}, "properties": {"id": "29614-29615-29616", "from": "1835207004", "to": "1835207005", "length_m": 701.6417400085695, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749390.7760888054, 5758748.936974738], [748896.3704921264, 5758476.731607656]]}, "properties": {"id": "29617", "from": "1835207005", "to": "1835207007", "length_m": 564.3869724967484, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831998.1353376874, 5809547.365194403], [831984.870548625, 5809424.069117645]]}, "properties": {"id": "29618-29619", "from": "666604911", "to": "353642218", "length_m": 124.1016008178484, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831984.870548625, 5809424.069117645], [831983.0627853168, 5809414.47976127]]}, "properties": {"id": "29620", "from": "353642218", "to": "353642299", "length_m": 9.75826642862448, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831983.0627853168, 5809414.47976127], [831903.1263000704, 5808873.502034236]]}, "properties": {"id": "29621-29622-29623-17752-17753-17754-17721-17722", "from": "353642299", "to": "666608272", "length_m": 546.8842412686487, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790447.9883118743, 5752168.7575142635], [790471.1017499213, 5752164.401880683]]}, "properties": {"id": "29624", "from": "510171852", "to": "846538717", "length_m": 23.520258510897285, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790471.1017499213, 5752164.401880683], [790447.9883118743, 5752168.7575142635]]}, "properties": {"id": "29625", "from": "846538717", "to": "510171852", "length_m": 23.520258510897285, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831970.2366991262, 5809421.947205573], [831984.870548625, 5809424.069117645]]}, "properties": {"id": "29626", "from": "666605093", "to": "353642218", "length_m": 14.78688810302741, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831983.0627853168, 5809414.47976127], [831970.2366991262, 5809421.947205573]]}, "properties": {"id": "29627", "from": "353642299", "to": "666605093", "length_m": 14.841536694952609, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831808.3753978787, 5808364.411150107], [831970.2366991262, 5809421.947205573]]}, "properties": {"id": "29628-29629-29630-29631-17765-17766-17767-17768-17769-17755-17756-17757-17758-17759-17973-17974-17975-17976-17977", "from": "5642366127", "to": "666605093", "length_m": 1070.3276592993352, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833274.8850644374, 5817330.548715977], [833289.9508399584, 5817332.296552749]]}, "properties": {"id": "29632", "from": "2299094484", "to": "2299094483", "length_m": 15.166823111908775, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793056.4069230945, 5768666.783958063], [792983.3840669787, 5768654.729145135]]}, "properties": {"id": "29637-29638", "from": "3530740191", "to": "36692776", "length_m": 74.02328664233818, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831990.867182188, 5821391.67816001], [831889.73994506, 5821435.59611685]]}, "properties": {"id": "29651-29652-29653-29654-29655-29656", "from": "2299094462", "to": "2299094457", "length_m": 119.63882105168886, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785251.4237587112, 5752593.472175976], [785395.1992481574, 5752811.476544057]]}, "properties": {"id": "2966-2964-2962-2960-2958-2956-2727-12013-12011-12009-12007-12005-12003", "from": "509914950", "to": "513379642", "length_m": 273.6704943857542, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833305.2758043294, 5817414.679795878], [833290.9590932573, 5817416.826669104]]}, "properties": {"id": "29660", "from": "30918462", "to": "30918468", "length_m": 14.476784151795886, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833290.9590932573, 5817416.826669104], [833305.2758043294, 5817414.679795878]]}, "properties": {"id": "29661", "from": "30918468", "to": "30918462", "length_m": 14.476784151795886, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836189.5358583229, 5817348.765816394], [836228.8604716426, 5817383.343794756]]}, "properties": {"id": "29665-29666-29667", "from": "268386958", "to": "2045235431", "length_m": 53.16321881605989, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836269.0483596874, 5817281.306727197], [836217.846701961, 5817332.243668985]]}, "properties": {"id": "29669-29670-29671-29672", "from": "1208302360", "to": "2045235442", "length_m": 72.4776007663495, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785251.4237587112, 5752593.472175976], [784981.6229587398, 5752517.286654734]]}, "properties": {"id": "2967-2969-2971-2973-2975", "from": "509914950", "to": "148800372", "length_m": 281.7390382841036, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836317.7661698414, 5817342.40992586], [836278.3427549632, 5817308.014289737]]}, "properties": {"id": "29673-29674-29675-29676", "from": "2045235491", "to": "2045235488", "length_m": 53.047918013081826, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836242.816628228, 5817391.191694821], [836282.8789856674, 5817353.596642908]]}, "properties": {"id": "29684-29685-29686", "from": "2045235497", "to": "2045235436", "length_m": 55.70120184352998, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793863.7918555218, 5772785.136664435], [793853.1507578699, 5772791.123493175]]}, "properties": {"id": "29687", "from": "250444534", "to": "250444530", "length_m": 12.209630501161657, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790685.9872120136, 5752680.647074892], [790796.1894007362, 5752659.214468884]]}, "properties": {"id": "297-295", "from": "510172571", "to": "4187193581", "length_m": 112.26705015714225, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765027.2371865666, 5764091.79297329], [765028.6279906306, 5764061.991654284]]}, "properties": {"id": "29705", "from": "2716422143", "to": "2716422147", "length_m": 29.833755227819907, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765028.6279906306, 5764061.991654284], [765027.2371865666, 5764091.79297329]]}, "properties": {"id": "29706", "from": "2716422147", "to": "2716422143", "length_m": 29.833755227819907, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765028.6279906306, 5764061.991654284], [765011.5332088312, 5763978.583907575]]}, "properties": {"id": "29707", "from": "2716422147", "to": "2716422144", "length_m": 85.1415513713109, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765011.5332088312, 5763978.583907575], [765028.6279906306, 5764061.991654284]]}, "properties": {"id": "29708", "from": "2716422144", "to": "2716422147", "length_m": 85.1415513713109, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777907.4780612418, 5743838.13679686], [777905.1286348458, 5743832.394664096]]}, "properties": {"id": "29709-29710-29711-29712", "from": "4763289557", "to": "4763289550", "length_m": 6.7064619035897595, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777905.1286348458, 5743832.394664096], [777898.3186927442, 5743834.974812121]]}, "properties": {"id": "29713-29714-29715-29716-29717", "from": "4763289550", "to": "4763289558", "length_m": 8.199989858532012, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777898.3186927442, 5743834.974812121], [777899.0398566229, 5743839.650768771]]}, "properties": {"id": "29718-29719-29720", "from": "4763289558", "to": "4763289559", "length_m": 4.921914449924442, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777899.0398566229, 5743839.650768771], [777907.4780612418, 5743838.13679686]]}, "properties": {"id": "29721-29722-29723-29724-29725-29726", "from": "4763289559", "to": "4763289557", "length_m": 10.439369457147743, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831924.8295776173, 5813174.724231929], [831937.9328577635, 5813190.162358822]]}, "properties": {"id": "29727", "from": "465189170", "to": "369130238", "length_m": 20.249239700969557, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831937.9328577635, 5813190.162358822], [831924.8295776173, 5813174.724231929]]}, "properties": {"id": "29728", "from": "369130238", "to": "465189170", "length_m": 20.249239700969557, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777898.3186927442, 5743834.974812121], [777680.1685598858, 5743759.148681329]]}, "properties": {"id": "29729-29731", "from": "4763289558", "to": "289884849", "length_m": 230.9668962098094, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777680.1685598858, 5743759.148681329], [777898.3186927442, 5743834.974812121]]}, "properties": {"id": "29732-29730", "from": "289884849", "to": "4763289558", "length_m": 230.9668962098094, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777680.1685598858, 5743759.148681329], [777673.1616906265, 5743757.290179492]]}, "properties": {"id": "29733", "from": "289884849", "to": "297625516", "length_m": 7.249154785543013, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777673.1616906265, 5743757.290179492], [777680.1685598858, 5743759.148681329]]}, "properties": {"id": "29734", "from": "297625516", "to": "289884849", "length_m": 7.249154785543013, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777673.1616906265, 5743757.290179492], [777558.7471940587, 5743720.553821036]]}, "properties": {"id": "29735", "from": "297625516", "to": "289884837", "length_m": 120.16753708365626, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777558.7471940587, 5743720.553821036], [777673.1616906265, 5743757.290179492]]}, "properties": {"id": "29736", "from": "289884837", "to": "297625516", "length_m": 120.16753708365626, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777558.7471940587, 5743720.553821036], [777475.6886718713, 5743691.14695057]]}, "properties": {"id": "29737", "from": "289884837", "to": "297625626", "length_m": 88.11062419152725, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777475.6886718713, 5743691.14695057], [777558.7471940587, 5743720.553821036]]}, "properties": {"id": "29738", "from": "297625626", "to": "289884837", "length_m": 88.11062419152725, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777475.6886718713, 5743691.14695057], [777469.2266978307, 5743688.858298585]]}, "properties": {"id": "29739", "from": "297625626", "to": "1851185152", "length_m": 6.8552925770822535, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777469.2266978307, 5743688.858298585], [777475.6886718713, 5743691.14695057]]}, "properties": {"id": "29740", "from": "1851185152", "to": "297625626", "length_m": 6.8552925770822535, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777469.2266978307, 5743688.858298585], [777399.488882682, 5743664.358811318]]}, "properties": {"id": "29741", "from": "1851185152", "to": "289884836", "length_m": 73.91608555981789, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777399.488882682, 5743664.358811318], [777469.2266978307, 5743688.858298585]]}, "properties": {"id": "29742", "from": "289884836", "to": "1851185152", "length_m": 73.91608555981789, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777399.488882682, 5743664.358811318], [777380.5857509777, 5743657.542698701]]}, "properties": {"id": "29743", "from": "289884836", "to": "289884831", "length_m": 20.094471293267706, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777380.5857509777, 5743657.542698701], [777399.488882682, 5743664.358811318]]}, "properties": {"id": "29744", "from": "289884831", "to": "289884836", "length_m": 20.094471293267706, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777380.5857509777, 5743657.542698701], [777324.6431245841, 5743636.756508176]]}, "properties": {"id": "29745", "from": "289884831", "to": "289885187", "length_m": 59.67950351780913, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777324.6431245841, 5743636.756508176], [777380.5857509777, 5743657.542698701]]}, "properties": {"id": "29746", "from": "289885187", "to": "289884831", "length_m": 59.67950351780913, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777324.6431245841, 5743636.756508176], [777289.2877973332, 5743625.728789839]]}, "properties": {"id": "29747", "from": "289885187", "to": "289884832", "length_m": 37.03524982565783, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777289.2877973332, 5743625.728789839], [777324.6431245841, 5743636.756508176]]}, "properties": {"id": "29748", "from": "289884832", "to": "289885187", "length_m": 37.03524982565783, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777289.2877973332, 5743625.728789839], [777238.8171995658, 5743608.6874331385]]}, "properties": {"id": "29749", "from": "289884832", "to": "289885177", "length_m": 53.26996396496968, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777238.8171995658, 5743608.6874331385], [777289.2877973332, 5743625.728789839]]}, "properties": {"id": "29750", "from": "289885177", "to": "289884832", "length_m": 53.26996396496968, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777238.8171995658, 5743608.6874331385], [777146.1564124408, 5743582.453292815]]}, "properties": {"id": "29751-29753", "from": "289885177", "to": "289884830", "length_m": 96.45724656191024, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777146.1564124408, 5743582.453292815], [777238.8171995658, 5743608.6874331385]]}, "properties": {"id": "29754-29752", "from": "289884830", "to": "289885177", "length_m": 96.45724656191024, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788928.3109321025, 5751738.626303844], [789001.4008739811, 5751735.496235818]]}, "properties": {"id": "29755", "from": "516047593", "to": "516048379", "length_m": 73.15693336423925, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789001.4008739811, 5751735.496235818], [788928.3109321025, 5751738.626303844]]}, "properties": {"id": "29756", "from": "516048379", "to": "516047593", "length_m": 73.15693336423925, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789153.9362230194, 5751747.300565675], [789100.0921634961, 5751778.395065518]]}, "properties": {"id": "29757-29759-29761", "from": "516047271", "to": "516048311", "length_m": 63.31875055410251, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784981.6229587398, 5752517.286654734], [785251.4237587112, 5752593.472175976]]}, "properties": {"id": "2976-2974-2972-2970-2968", "from": "148800372", "to": "509914950", "length_m": 281.7390382841036, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789100.0921634961, 5751778.395065518], [789153.9362230194, 5751747.300565675]]}, "properties": {"id": "29762-29760-29758", "from": "516048311", "to": "516047271", "length_m": 63.31875055410251, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789100.0921634961, 5751778.395065518], [789099.2983494236, 5751783.1137992395]]}, "properties": {"id": "29763", "from": "516048311", "to": "516048326", "length_m": 4.785038007348447, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789099.2983494236, 5751783.1137992395], [789100.0921634961, 5751778.395065518]]}, "properties": {"id": "29764", "from": "516048326", "to": "516048311", "length_m": 4.785038007348447, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789125.6645024559, 5751693.697942869], [789087.3940620476, 5751711.107945083]]}, "properties": {"id": "29765", "from": "516048345", "to": "516048357", "length_m": 42.04443819358707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789087.3940620476, 5751711.107945083], [789125.6645024559, 5751693.697942869]]}, "properties": {"id": "29766", "from": "516048357", "to": "516048345", "length_m": 42.04443819358707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789032.8426470242, 5751947.6880467], [789004.7132744264, 5751860.425558194]]}, "properties": {"id": "29767-29769", "from": "516047927", "to": "516048119", "length_m": 92.01213825549743, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784981.6229587398, 5752517.286654734], [784871.2445732235, 5752164.475006272]]}, "properties": {"id": "2977-2979-2981-2983-2985-2987-2989-2991", "from": "148800372", "to": "513379568", "length_m": 398.9018249082726, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789004.7132744264, 5751860.425558194], [789032.8426470242, 5751947.6880467]]}, "properties": {"id": "29770-29768", "from": "516048119", "to": "516047927", "length_m": 92.01213825549743, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789004.7132744264, 5751860.425558194], [789035.4040308045, 5751844.254626001]]}, "properties": {"id": "29771-29773-29775", "from": "516048119", "to": "516048175", "length_m": 36.34812043869991, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789035.4040308045, 5751844.254626001], [789004.7132744264, 5751860.425558194]]}, "properties": {"id": "29776-29774-29772", "from": "516048175", "to": "516048119", "length_m": 36.34812043869991, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789035.4040308045, 5751844.254626001], [789004.7132744264, 5751860.425558194]]}, "properties": {"id": "29777-29779-29781-29783-29785-29787", "from": "516048175", "to": "516048119", "length_m": 73.74167246116275, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789004.7132744264, 5751860.425558194], [789035.4040308045, 5751844.254626001]]}, "properties": {"id": "29788-29786-29784-29782-29780-29778", "from": "516048119", "to": "516048175", "length_m": 73.74167246116275, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789163.7604633608, 5751830.61762442], [789125.943259513, 5751831.139832662]]}, "properties": {"id": "29789", "from": "516047445", "to": "516048277", "length_m": 37.820809087716874, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789125.943259513, 5751831.139832662], [789163.7604633608, 5751830.61762442]]}, "properties": {"id": "29790", "from": "516048277", "to": "516047445", "length_m": 37.820809087716874, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768335.9499883549, 5777196.222184613], [768531.0547465535, 5776523.978087722]]}, "properties": {"id": "29792-7372-7370-7368-7366-7364-7362-7360-7358-7356", "from": "1944283975", "to": "209212577", "length_m": 706.2419631049966, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788945.6836333019, 5751977.974542181], [788920.5642587186, 5751790.207813407]]}, "properties": {"id": "29793-29795-29797-29799-29801-29803-29805-29807-29809-29811-29813-29815", "from": "516047690", "to": "516047608", "length_m": 382.04985718151363, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790685.9872120136, 5752680.647074892], [790548.2068630233, 5752704.316226524]]}, "properties": {"id": "298-300", "from": "510172571", "to": "510559701", "length_m": 139.79861743738425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788920.5642587186, 5751790.207813407], [788945.6836333019, 5751977.974542181]]}, "properties": {"id": "29816-29814-29812-29810-29808-29806-29804-29802-29800-29798-29796-29794", "from": "516047608", "to": "516047690", "length_m": 382.04985718151363, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775278.2808448728, 5752625.383224198], [775688.5428158339, 5752223.216406326]]}, "properties": {"id": "29817-29819-29821-29823-29825-29827", "from": "2830985586", "to": "2558469862", "length_m": 610.3373529735445, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775688.5428158339, 5752223.216406326], [775278.2808448728, 5752625.383224198]]}, "properties": {"id": "29828-29826-29824-29822-29820-29818", "from": "2558469862", "to": "2830985586", "length_m": 610.3373529735445, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775688.5428158339, 5752223.216406326], [776235.6438361364, 5751636.811683112]]}, "properties": {"id": "29829-29831-29833-29835-29837-29839", "from": "2558469862", "to": "1835233341", "length_m": 822.9543515291542, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776235.6438361364, 5751636.811683112], [775688.5428158339, 5752223.216406326]]}, "properties": {"id": "29840-29838-29836-29834-29832-29830", "from": "1835233341", "to": "2558469862", "length_m": 822.9543515291542, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776235.6438361364, 5751636.811683112], [776641.1275233636, 5751299.483270261]]}, "properties": {"id": "29841-29843-29845-29847-29849", "from": "1835233341", "to": "494901132", "length_m": 529.2893832125857, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776641.1275233636, 5751299.483270261], [776235.6438361364, 5751636.811683112]]}, "properties": {"id": "29850-29848-29846-29844-29842", "from": "494901132", "to": "1835233341", "length_m": 529.2893832125857, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776641.1275233636, 5751299.483270261], [776837.0775131152, 5751202.665974728]]}, "properties": {"id": "29851-29853-29855", "from": "494901132", "to": "1835233349", "length_m": 219.9975232928722, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776837.0775131152, 5751202.665974728], [776641.1275233636, 5751299.483270261]]}, "properties": {"id": "29856-29854-29852", "from": "1835233349", "to": "494901132", "length_m": 219.9975232928722, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776837.0775131152, 5751202.665974728], [777566.2504451432, 5751124.488637439]]}, "properties": {"id": "29857-29859-29861-29863-29865-29867", "from": "1835233349", "to": "2558469907", "length_m": 733.429213417436, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777566.2504451432, 5751124.488637439], [776837.0775131152, 5751202.665974728]]}, "properties": {"id": "29868-29866-29864-29862-29860-29858", "from": "2558469907", "to": "1835233349", "length_m": 733.429213417436, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777566.2504451432, 5751124.488637439], [778064.6869707645, 5751052.038201426]]}, "properties": {"id": "29869-29871-29873-29875-29877", "from": "2558469907", "to": "1835233364", "length_m": 505.100783741442, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778064.6869707645, 5751052.038201426], [777566.2504451432, 5751124.488637439]]}, "properties": {"id": "29878-29876-29874-29872-29870", "from": "1835233364", "to": "2558469907", "length_m": 505.100783741442, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778064.6869707645, 5751052.038201426], [778480.2330192212, 5750732.408507778]]}, "properties": {"id": "29879-29881-29883-29885", "from": "1835233364", "to": "1835233368", "length_m": 525.1297830042797, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778480.2330192212, 5750732.408507778], [778064.6869707645, 5751052.038201426]]}, "properties": {"id": "29886-29884-29882-29880", "from": "1835233368", "to": "1835233364", "length_m": 525.1297830042797, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778480.2330192212, 5750732.408507778], [778828.1557447779, 5750330.656005716]]}, "properties": {"id": "29887-29889-29891-29893", "from": "1835233368", "to": "1835233372", "length_m": 531.5743245561995, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778828.1557447779, 5750330.656005716], [778480.2330192212, 5750732.408507778]]}, "properties": {"id": "29894-29892-29890-29888", "from": "1835233372", "to": "1835233368", "length_m": 531.5743245561995, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778828.1557447779, 5750330.656005716], [779267.672624354, 5749469.781276995]]}, "properties": {"id": "29895-29897-29899-29901-29903-29905-29907-29909-29911-29913-29915", "from": "1835233372", "to": "1851088582", "length_m": 999.6012286235863, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779267.672624354, 5749469.781276995], [778828.1557447779, 5750330.656005716]]}, "properties": {"id": "29916-29914-29912-29910-29908-29906-29904-29902-29900-29898-29896", "from": "1851088582", "to": "1835233372", "length_m": 999.6012286235863, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752153.3334299256, 5839006.85479681], [752191.9848537799, 5839229.932151066]]}, "properties": {"id": "29917-29918-29919-29920", "from": "60303498", "to": "60303501", "length_m": 226.4010569651326, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784871.2445732235, 5752164.475006272], [784981.6229587398, 5752517.286654734]]}, "properties": {"id": "2992-2990-2988-2986-2984-2982-2980-2978", "from": "513379568", "to": "148800372", "length_m": 398.9018249082726, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789153.363818188, 5751903.723067172], [789032.8426470242, 5751947.6880467]]}, "properties": {"id": "29921-29923-29925", "from": "516047348", "to": "516047927", "length_m": 128.43239817070022, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789032.8426470242, 5751947.6880467], [789153.363818188, 5751903.723067172]]}, "properties": {"id": "29926-29924-29922", "from": "516047927", "to": "516047348", "length_m": 128.43239817070022, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789032.8426470242, 5751947.6880467], [788959.8852203828, 5751972.8977502445]]}, "properties": {"id": "29927", "from": "516047927", "to": "516047797", "length_m": 77.19012396233568, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788959.8852203828, 5751972.8977502445], [789032.8426470242, 5751947.6880467]]}, "properties": {"id": "29928", "from": "516047797", "to": "516047927", "length_m": 77.19012396233568, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833976.5896664225, 5806399.318396719], [834140.3289491129, 5806364.769126819]]}, "properties": {"id": "29929-29930-29931-29932-29933", "from": "1537726839", "to": "353638688", "length_m": 167.40176587187895, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759350.9454669779, 5730676.2780812895], [759407.3884553902, 5730715.706256325]]}, "properties": {"id": "2993-2994-2995", "from": "36698471", "to": "2932565813", "length_m": 69.07496193960822, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834026.4421513089, 5806380.789343518], [833974.8839838662, 5806388.390767297]]}, "properties": {"id": "29934", "from": "1537726671", "to": "1537726853", "length_m": 52.115508731994076, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783484.074536056, 5747435.06375489], [783350.4515928947, 5747800.844739193]]}, "properties": {"id": "29946-29944-29942-29940-29938-29936-11574-11572", "from": "513381588", "to": "513381373", "length_m": 563.0555888127242, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783484.074536056, 5747435.06375489], [783756.3312491945, 5746626.102352015]]}, "properties": {"id": "29947-29949-29951-29953-29955-29957-29959-29961-29963", "from": "513381588", "to": "5223787759", "length_m": 883.70364028176, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779280.527416292, 5756044.464346213], [779371.10614317, 5756041.942613101]]}, "properties": {"id": "2996-2997-2998-2999-3000", "from": "1708444873", "to": "186877142", "length_m": 92.80574087013767, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783756.3312491945, 5746626.102352015], [783484.074536056, 5747435.06375489]]}, "properties": {"id": "29964-29962-29960-29958-29956-29954-29952-29950-29948", "from": "5223787759", "to": "513381588", "length_m": 883.70364028176, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783756.3312491945, 5746626.102352015], [784072.783080246, 5745341.024603822]]}, "properties": {"id": "29965-29967-29969-29971-29973-29975-29977-29979-29981-29983-29985-29987-29989-29991-29993-29995-29997-29999-30001-30003-30005-30007-30009-30011-30013-30015-30017-30019-30021-30023-30025-30027-30029-30031-30033-30035-30037-30039-30041", "from": "5223787759", "to": "282686370", "length_m": 1422.4676259140172, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779440.9865462212, 5756015.753961453], [779280.527416292, 5756044.464346213]]}, "properties": {"id": "3002-3003-3004", "from": "1708444833", "to": "1708444873", "length_m": 163.05951217907773, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784072.783080246, 5745341.024603822], [783756.3312491945, 5746626.102352015]]}, "properties": {"id": "30042-30040-30038-30036-30034-30032-30030-30028-30026-30024-30022-30020-30018-30016-30014-30012-30010-30008-30006-30004-30002-30000-29998-29996-29994-29992-29990-29988-29986-29984-29982-29980-29978-29976-29974-29972-29970-29968-29966", "from": "282686370", "to": "5223787759", "length_m": 1422.4676259140172, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790505.6253277919, 5753140.929106952], [790470.3001995045, 5752946.495851752]]}, "properties": {"id": "30044", "from": "513527159", "to": "513527127", "length_m": 197.61618196593997, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790470.3001995045, 5752946.495851752], [790505.6253277919, 5753140.929106952]]}, "properties": {"id": "30045", "from": "513527127", "to": "513527159", "length_m": 197.61618196593997, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837222.482938929, 5811991.784204916], [837229.9068959779, 5811984.496692212]]}, "properties": {"id": "30046-30047", "from": "268175487", "to": "268175492", "length_m": 10.503759337907674, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816951.8650237189, 5794537.084051108], [817958.9525063754, 5795175.881124706]]}, "properties": {"id": "30048", "from": "282810561", "to": "661569159", "length_m": 1192.596697800928, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817958.9525063754, 5795175.881124706], [818765.1176318325, 5795770.8603415415]]}, "properties": {"id": "30049-30050-40960-40961-40962-40963", "from": "661569159", "to": "3317644263", "length_m": 1006.0683260960509, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788948.7515009907, 5751969.284334049], [788945.6836333019, 5751977.974542181]]}, "properties": {"id": "30056-30057-30058-30059", "from": "516047658", "to": "516047690", "length_m": 9.882739658653904, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753567.1696542065, 5763172.861101316], [753427.8764726501, 5762399.930850895]]}, "properties": {"id": "3006-3008", "from": "5605052097", "to": "5605052096", "length_m": 785.3818363493081, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788945.6836333019, 5751977.974542181], [788954.8398415579, 5751982.83693418]]}, "properties": {"id": "30060-30061-30062-30063-30064", "from": "516047690", "to": "516047710", "length_m": 11.380134244930343, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788954.8398415579, 5751982.83693418], [788959.8852203828, 5751972.8977502445]]}, "properties": {"id": "30065-30066-30067-30068-30069", "from": "516047710", "to": "516047797", "length_m": 12.495592885604665, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788959.8852203828, 5751972.8977502445], [788948.7515009907, 5751969.284334049]]}, "properties": {"id": "30070-30071-30052-30053-30054-30055", "from": "516047797", "to": "516047658", "length_m": 13.345312272624449, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789211.5177587671, 5751958.377051172], [789153.363818188, 5751903.723067172]]}, "properties": {"id": "30072-30074", "from": "516047289", "to": "516047348", "length_m": 80.00252047921697, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789153.363818188, 5751903.723067172], [789211.5177587671, 5751958.377051172]]}, "properties": {"id": "30075-30073", "from": "516047348", "to": "516047289", "length_m": 80.00252047921697, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789153.363818188, 5751903.723067172], [789163.7604633608, 5751830.61762442]]}, "properties": {"id": "30076-30078-30080-30082-30084", "from": "516047348", "to": "516047445", "length_m": 74.45926784046604, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789163.7604633608, 5751830.61762442], [789153.363818188, 5751903.723067172]]}, "properties": {"id": "30085-30083-30081-30079-30077", "from": "516047445", "to": "516047348", "length_m": 74.45926784046604, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789163.7604633608, 5751830.61762442], [789153.9362230194, 5751747.300565675]]}, "properties": {"id": "30086-30088-30090-30092", "from": "516047445", "to": "516047271", "length_m": 85.25475712202982, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753427.8764726501, 5762399.930850895], [753567.1696542065, 5763172.861101316]]}, "properties": {"id": "3009-3007", "from": "5605052096", "to": "5605052097", "length_m": 785.3818363493081, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789153.9362230194, 5751747.300565675], [789163.7604633608, 5751830.61762442]]}, "properties": {"id": "30093-30091-30089-30087", "from": "516047271", "to": "516047445", "length_m": 85.25475712202982, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789153.9362230194, 5751747.300565675], [789125.6645024559, 5751693.697942869]]}, "properties": {"id": "30094-30096", "from": "516047271", "to": "516048345", "length_m": 60.60142857541681, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789125.6645024559, 5751693.697942869], [789153.9362230194, 5751747.300565675]]}, "properties": {"id": "30097-30095", "from": "516048345", "to": "516047271", "length_m": 60.60142857541681, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789125.6645024559, 5751693.697942869], [788928.3109321025, 5751738.626303844]]}, "properties": {"id": "30098-30100-30102-30104-30106-30108-30110-30112-30114-30116-30118", "from": "516048345", "to": "516047593", "length_m": 311.12164799555427, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790548.2068630233, 5752704.316226524], [790685.9872120136, 5752680.647074892]]}, "properties": {"id": "301-299", "from": "510559701", "to": "510172571", "length_m": 139.79861743738425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753427.8764726501, 5762399.930850895], [753261.3001017016, 5761480.225040667]]}, "properties": {"id": "3010-3012", "from": "5605052096", "to": "5605052094", "length_m": 934.7214452308538, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788928.3109321025, 5751738.626303844], [789125.6645024559, 5751693.697942869]]}, "properties": {"id": "30119-30117-30115-30113-30111-30109-30107-30105-30103-30101-30099", "from": "516047593", "to": "516048345", "length_m": 311.12164799555427, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788928.3109321025, 5751738.626303844], [788920.5642587186, 5751790.207813407]]}, "properties": {"id": "30120", "from": "516047593", "to": "516047608", "length_m": 52.159975857202504, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788920.5642587186, 5751790.207813407], [788928.3109321025, 5751738.626303844]]}, "properties": {"id": "30121", "from": "516047608", "to": "516047593", "length_m": 52.159975857202504, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788920.5642587186, 5751790.207813407], [788948.7515009907, 5751969.284334049]]}, "properties": {"id": "30122-30124-30126-30128-30130", "from": "516047608", "to": "516047658", "length_m": 183.18431101171686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753261.3001017016, 5761480.225040667], [753427.8764726501, 5762399.930850895]]}, "properties": {"id": "3013-3011", "from": "5605052094", "to": "5605052096", "length_m": 934.7214452308538, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788948.7515009907, 5751969.284334049], [788920.5642587186, 5751790.207813407]]}, "properties": {"id": "30131-30129-30127-30125-30123", "from": "516047658", "to": "516047608", "length_m": 183.18431101171686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788954.8398415579, 5751982.83693418], [788988.1486971941, 5752061.711575544]]}, "properties": {"id": "30132-30134-30136", "from": "516047710", "to": "516047689", "length_m": 85.81873275473968, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788988.1486971941, 5752061.711575544], [788954.8398415579, 5751982.83693418]]}, "properties": {"id": "30137-30135-30133", "from": "516047689", "to": "516047710", "length_m": 85.81873275473968, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789142.7231964917, 5751513.177352698], [789085.7758549624, 5751525.788773266]]}, "properties": {"id": "30138", "from": "516047220", "to": "516047234", "length_m": 58.32707452461199, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789085.7758549624, 5751525.788773266], [789142.7231964917, 5751513.177352698]]}, "properties": {"id": "30139", "from": "516047234", "to": "516047220", "length_m": 58.32707452461199, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789236.6094018924, 5751705.279960384], [789153.9362230194, 5751747.300565675]]}, "properties": {"id": "30140", "from": "516047253", "to": "516047271", "length_m": 92.7393431025423, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789153.9362230194, 5751747.300565675], [789236.6094018924, 5751705.279960384]]}, "properties": {"id": "30141", "from": "516047271", "to": "516047253", "length_m": 92.7393431025423, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833401.5423666255, 5804627.907152027], [833164.9001883243, 5804668.129716666]]}, "properties": {"id": "3016-3017", "from": "253337733", "to": "75203370", "length_m": 240.03619491160873, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790015.4930316447, 5752897.3927132385], [790039.4260770478, 5752930.631653037]]}, "properties": {"id": "30179", "from": "516046729", "to": "516046805", "length_m": 40.95873256647273, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751774.7532577317, 5842561.002296355], [751765.7320533702, 5842084.627549961]]}, "properties": {"id": "3018-3020-3022-3024", "from": "364001492", "to": "4748708209", "length_m": 476.4769269738575, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791763.7150019009, 5779043.60698673], [791424.0985583123, 5778666.5618221685]]}, "properties": {"id": "30181-30182-30183-30184-30185-30186", "from": "318028131", "to": "318028135", "length_m": 510.2697909099983, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791424.0985583123, 5778666.5618221685], [791168.3093382941, 5777813.966922678]]}, "properties": {"id": "30187-30188-30189-30190-30191-30192-30193-30194-30195-30196-30197", "from": "318028135", "to": "334409391", "length_m": 894.890068776031, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790019.8690990193, 5752826.224876525], [790015.4930316447, 5752897.3927132385]]}, "properties": {"id": "30198-30199-30200-30201-30202", "from": "516046592", "to": "516046729", "length_m": 76.71494983275082, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794359.5641782114, 5778745.701382748], [794558.4232348467, 5779519.987633501]]}, "properties": {"id": "302-303-304-305-306-307-308-309-310-311-312-313-314", "from": "621549704", "to": "318038046", "length_m": 804.0144088214003, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837709.5274403951, 5819116.427928694], [837698.9342767609, 5819115.093814872]]}, "properties": {"id": "30203", "from": "961256781", "to": "30928580", "length_m": 10.676842888314207, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803415.4940487805, 5767521.049987575], [802655.308729867, 5767789.168055306]]}, "properties": {"id": "30204-17986-17987", "from": "366137196", "to": "277046787", "length_m": 806.0825115869221, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791879.3951730416, 5768410.623270009], [791451.6546619035, 5767938.567088706]]}, "properties": {"id": "30215-27982-27983-27984", "from": "3530741631", "to": "297103218", "length_m": 637.0245056367361, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789775.2768928094, 5752847.184082781], [789763.1172160443, 5752777.510761591]]}, "properties": {"id": "30216", "from": "148808268", "to": "516046381", "length_m": 70.72644074416553, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789763.1172160443, 5752777.510761591], [789775.2768928094, 5752847.184082781]]}, "properties": {"id": "30217", "from": "516046381", "to": "148808268", "length_m": 70.72644074416553, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789816.3862493236, 5751840.3801570395], [789821.7663363784, 5751839.542185635]]}, "properties": {"id": "30218", "from": "516044355", "to": "846506232", "length_m": 5.4449547547451465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789821.7663363784, 5751839.542185635], [789816.3862493236, 5751840.3801570395]]}, "properties": {"id": "30219", "from": "846506232", "to": "516044355", "length_m": 5.4449547547451465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838487.9154809832, 5804679.443685349], [838476.3091131498, 5804681.334656247]]}, "properties": {"id": "30224", "from": "3189541011", "to": "3189541012", "length_m": 11.759402375633474, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838476.3091131498, 5804681.334656247], [838487.9154809832, 5804679.443685349]]}, "properties": {"id": "30225", "from": "3189541012", "to": "3189541011", "length_m": 11.759402375633474, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789718.1208587056, 5753034.914913151], [789760.703203405, 5753030.140324795]]}, "properties": {"id": "30226", "from": "516046164", "to": "516046186", "length_m": 42.84918625113064, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789760.703203405, 5753030.140324795], [789718.1208587056, 5753034.914913151]]}, "properties": {"id": "30227", "from": "516046186", "to": "516046164", "length_m": 42.84918625113064, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789709.3496681431, 5752989.371622237], [789718.1208587056, 5753034.914913151]]}, "properties": {"id": "30228-30230-30232-30234", "from": "516046077", "to": "516046164", "length_m": 47.28580824840923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789718.1208587056, 5753034.914913151], [789709.3496681431, 5752989.371622237]]}, "properties": {"id": "30235-30233-30231-30229", "from": "516046164", "to": "516046077", "length_m": 47.28580824840923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789718.1208587056, 5753034.914913151], [789679.481633473, 5753037.824963106]]}, "properties": {"id": "30236", "from": "516046164", "to": "516046165", "length_m": 38.74865300312095, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789679.481633473, 5753037.824963106], [789718.1208587056, 5753034.914913151]]}, "properties": {"id": "30237", "from": "516046165", "to": "516046164", "length_m": 38.74865300312095, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835719.736358199, 5804202.760382874], [835712.6183176426, 5804187.617588819]]}, "properties": {"id": "30238", "from": "353637502", "to": "825539749", "length_m": 16.732325335951806, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794581.7424647457, 5779515.253454561], [794562.8767039636, 5779526.528479559]]}, "properties": {"id": "30239", "from": "3955050488", "to": "3955050473", "length_m": 21.978241926123086, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789494.500528299, 5752798.913174675], [789480.7789333673, 5752894.511713648]]}, "properties": {"id": "30240-30242-30244", "from": "516045454", "to": "2548347280", "length_m": 97.0451028117971, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789480.7789333673, 5752894.511713648], [789494.500528299, 5752798.913174675]]}, "properties": {"id": "30245-30243-30241", "from": "2548347280", "to": "516045454", "length_m": 97.0451028117971, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789480.7789333673, 5752894.511713648], [789590.5748713661, 5752984.833025364]]}, "properties": {"id": "30246-30248-30250-30252-30254-30256-30258-30260", "from": "2548347280", "to": "2332735811", "length_m": 171.55590414163225, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751765.7320533702, 5842084.627549961], [751774.7532577317, 5842561.002296355]]}, "properties": {"id": "3025-3023-3021-3019", "from": "4748708209", "to": "364001492", "length_m": 476.4769269738575, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833949.4037787123, 5804552.289788788], [834370.4178944225, 5804480.50395038]]}, "properties": {"id": "3026-3027-3028", "from": "825685785", "to": "825684797", "length_m": 427.0910550655367, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789590.5748713661, 5752984.833025364], [789480.7789333673, 5752894.511713648]]}, "properties": {"id": "30261-30259-30257-30255-30253-30251-30249-30247", "from": "2332735811", "to": "2548347280", "length_m": 171.55590414163225, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789590.5748713661, 5752984.833025364], [789709.3496681431, 5752989.371622237]]}, "properties": {"id": "30262-30264-30266-30268-30270-30272-30274-30276", "from": "2332735811", "to": "516046077", "length_m": 122.2763526024927, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789709.3496681431, 5752989.371622237], [789590.5748713661, 5752984.833025364]]}, "properties": {"id": "30277-30275-30273-30271-30269-30267-30265-30263", "from": "516046077", "to": "2332735811", "length_m": 122.2763526024927, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789709.3496681431, 5752989.371622237], [789711.211595207, 5752845.917145008]]}, "properties": {"id": "30278-30280-30282", "from": "516046077", "to": "516045758", "length_m": 147.32049756539092, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789711.211595207, 5752845.917145008], [789709.3496681431, 5752989.371622237]]}, "properties": {"id": "30283-30281-30279", "from": "516045758", "to": "516046077", "length_m": 147.32049756539092, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835483.8705103041, 5806888.486334165], [835365.7110523591, 5807259.266851621]]}, "properties": {"id": "30284-30285-30286-30287-39673-39739", "from": "254224862", "to": "75158541", "length_m": 389.72092782414495, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789604.8476581076, 5752814.614266621], [789502.4657759868, 5752790.558273284]]}, "properties": {"id": "30288-30290-30292", "from": "148808274", "to": "516045615", "length_m": 105.95199538647539, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834370.4178944225, 5804480.50395038], [834771.1053040426, 5804383.2609564345]]}, "properties": {"id": "3029-3030-3031-3032-3033-3034-3035-3036-3037-3038-3039-3040-3041-3042-3043", "from": "825684797", "to": "354777622", "length_m": 412.6385540241561, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789502.4657759868, 5752790.558273284], [789604.8476581076, 5752814.614266621]]}, "properties": {"id": "30293-30291-30289", "from": "516045615", "to": "148808274", "length_m": 105.95199538647539, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789486.8833929044, 5752790.861788892], [789494.500528299, 5752798.913174675]]}, "properties": {"id": "30294-30295-30296", "from": "516045686", "to": "516045454", "length_m": 12.19901388739503, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789494.500528299, 5752798.913174675], [789502.4657759868, 5752790.558273284]]}, "properties": {"id": "30297-30298-30299", "from": "516045454", "to": "516045615", "length_m": 12.826254260670986, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789502.4657759868, 5752790.558273284], [789496.0748766725, 5752783.496535482]]}, "properties": {"id": "30300-30301-30302", "from": "516045615", "to": "516045489", "length_m": 10.163387159609028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789496.0748766725, 5752783.496535482], [789486.8833929044, 5752790.861788892]]}, "properties": {"id": "30303-30304-30305-30306", "from": "516045489", "to": "516045686", "length_m": 13.239150997126645, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789486.8833929044, 5752790.861788892], [789378.7922382103, 5752815.090126646]]}, "properties": {"id": "30315", "from": "516045686", "to": "971202671", "length_m": 110.77323694280129, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789378.7922382103, 5752815.090126646], [789486.8833929044, 5752790.861788892]]}, "properties": {"id": "30316", "from": "971202671", "to": "516045686", "length_m": 110.77323694280129, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789378.7922382103, 5752815.090126646], [789366.4452632193, 5752817.233492598]]}, "properties": {"id": "30317", "from": "971202671", "to": "2332735826", "length_m": 12.531632333655025, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789366.4452632193, 5752817.233492598], [789378.7922382103, 5752815.090126646]]}, "properties": {"id": "30318", "from": "2332735826", "to": "971202671", "length_m": 12.531632333655025, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789366.4452632193, 5752817.233492598], [789320.6067109624, 5752834.448747785]]}, "properties": {"id": "30319-30321", "from": "2332735826", "to": "2332735822", "length_m": 49.05619252788074, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789320.6067109624, 5752834.448747785], [789366.4452632193, 5752817.233492598]]}, "properties": {"id": "30322-30320", "from": "2332735822", "to": "2332735826", "length_m": 49.05619252788074, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789320.6067109624, 5752834.448747785], [789249.8588556829, 5752873.396319133]]}, "properties": {"id": "30323-30325", "from": "2332735822", "to": "2548347285", "length_m": 80.88486856041874, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789249.8588556829, 5752873.396319133], [789320.6067109624, 5752834.448747785]]}, "properties": {"id": "30326-30324", "from": "2548347285", "to": "2332735822", "length_m": 80.88486856041874, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789537.5887423252, 5752523.829405893], [789335.3097025949, 5752577.222954285]]}, "properties": {"id": "30340-30342-30344-30346-30348", "from": "516044791", "to": "3577715641", "length_m": 212.53101645283968, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789335.3097025949, 5752577.222954285], [789537.5887423252, 5752523.829405893]]}, "properties": {"id": "30349-30347-30345-30343-30341", "from": "3577715641", "to": "516044791", "length_m": 212.53101645283968, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789512.9851538225, 5752708.21182018], [789351.663525045, 5752726.836629133]]}, "properties": {"id": "30350-30352-30354", "from": "516045368", "to": "3577715637", "length_m": 163.15039826116154, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789351.663525045, 5752726.836629133], [789512.9851538225, 5752708.21182018]]}, "properties": {"id": "30355-30353-30351", "from": "3577715637", "to": "516045368", "length_m": 163.15039826116154, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789351.663525045, 5752726.836629133], [789281.9910008752, 5752755.454082622]]}, "properties": {"id": "30356", "from": "3577715637", "to": "3577715634", "length_m": 75.32077570669706, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789281.9910008752, 5752755.454082622], [789351.663525045, 5752726.836629133]]}, "properties": {"id": "30357", "from": "3577715634", "to": "3577715637", "length_m": 75.32077570669706, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792875.7929980741, 5754941.399122335], [792896.1709786198, 5754833.913074568]]}, "properties": {"id": "30364-30366-30368-30370-30372-30374-30376-30378-30380-30382-30384-30386", "from": "510169519", "to": "510169584", "length_m": 111.59202088162563, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792896.1709786198, 5754833.913074568], [792875.7929980741, 5754941.399122335]]}, "properties": {"id": "30387-30385-30383-30381-30379-30377-30375-30373-30371-30369-30367-30365", "from": "510169584", "to": "510169519", "length_m": 111.59202088162563, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792896.1709786198, 5754833.913074568], [792878.863650114, 5754738.275475967]]}, "properties": {"id": "30388-30390-30392-30394-30396-30398-30400-30402-30404-30406", "from": "510169584", "to": "510170489", "length_m": 98.30231725842378, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792878.863650114, 5754738.275475967], [792896.1709786198, 5754833.913074568]]}, "properties": {"id": "30407-30405-30403-30401-30399-30397-30395-30393-30391-30389", "from": "510170489", "to": "510169584", "length_m": 98.30231725842378, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792878.863650114, 5754738.275475967], [792810.4099009339, 5754604.702154344]]}, "properties": {"id": "30408-30410-30412-6425-6427-6429-6431-6433-6435", "from": "510170489", "to": "510169731", "length_m": 150.75481992144097, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791161.7455350058, 5753558.685778785], [791041.9751390992, 5753596.794717697]]}, "properties": {"id": "30415-30417-30419", "from": "510173557", "to": "512198959", "length_m": 126.17917371351533, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791041.9751390992, 5753596.794717697], [791161.7455350058, 5753558.685778785]]}, "properties": {"id": "30420-30418-30416", "from": "512198959", "to": "510173557", "length_m": 126.17917371351533, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731956.0216720946, 5788131.077226033], [733005.502237871, 5787954.355966018]]}, "properties": {"id": "30424-30422-11642", "from": "2152827783", "to": "2321615733", "length_m": 1064.2560586303953, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791342.1411630828, 5753729.809312233], [791537.3631453239, 5753677.011223532]]}, "properties": {"id": "30431-30433-30435-30437-30439-30441-30443-30445-30447-30449", "from": "512198007", "to": "512198085", "length_m": 391.0348506646204, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831845.9838414626, 5802200.720721112], [831986.3256465002, 5802345.792702314]]}, "properties": {"id": "3044-3045-3046-3047-3048-3049-3050-3051-3052-3053-3054-3055", "from": "1537828680", "to": "293323979", "length_m": 218.82183470564976, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791537.3631453239, 5753677.011223532], [791342.1411630828, 5753729.809312233]]}, "properties": {"id": "30450-30448-30446-30444-30442-30440-30438-30436-30434-30432", "from": "512198085", "to": "512198007", "length_m": 391.0348506646204, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791530.9350047983, 5753435.332485981], [791586.6429967708, 5753476.533586181]]}, "properties": {"id": "30451", "from": "512198551", "to": "512198557", "length_m": 69.28860650587578, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791586.6429967708, 5753476.533586181], [791530.9350047983, 5753435.332485981]]}, "properties": {"id": "30452", "from": "512198557", "to": "512198551", "length_m": 69.28860650587578, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791588.2567753068, 5753357.6259149425], [791530.9350047983, 5753435.332485981]]}, "properties": {"id": "30453-30455", "from": "512198542", "to": "512198551", "length_m": 96.56136200315787, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791530.9350047983, 5753435.332485981], [791588.2567753068, 5753357.6259149425]]}, "properties": {"id": "30456-30454", "from": "512198551", "to": "512198542", "length_m": 96.56136200315787, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791530.9350047983, 5753435.332485981], [791469.7973529205, 5753380.03370824]]}, "properties": {"id": "30457", "from": "512198551", "to": "512198555", "length_m": 82.43644370375786, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791469.7973529205, 5753380.03370824], [791530.9350047983, 5753435.332485981]]}, "properties": {"id": "30458", "from": "512198555", "to": "512198551", "length_m": 82.43644370375786, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791221.9566398622, 5753423.837645143], [791247.1909166491, 5753505.075233621]]}, "properties": {"id": "30459-30461", "from": "512197958", "to": "512198531", "length_m": 85.78574398767022, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791247.1909166491, 5753505.075233621], [791221.9566398622, 5753423.837645143]]}, "properties": {"id": "30462-30460", "from": "512198531", "to": "512197958", "length_m": 85.78574398767022, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791147.2001829317, 5753448.475520755], [791355.7628351444, 5753234.4819169]]}, "properties": {"id": "30467-30469-30471-30473-30475-30477-30479-30481", "from": "512197939", "to": "512198808", "length_m": 399.4098355583943, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791355.7628351444, 5753234.4819169], [791147.2001829317, 5753448.475520755]]}, "properties": {"id": "30482-30480-30478-30476-30474-30472-30470-30468", "from": "512198808", "to": "512197939", "length_m": 399.4098355583943, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837541.7940466346, 5815236.397343887], [837524.9110243325, 5815239.602435982]]}, "properties": {"id": "30483", "from": "299199702", "to": "299199699", "length_m": 17.18455861900223, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791175.7731788764, 5777262.284174896], [791196.4057598726, 5777243.018113513]]}, "properties": {"id": "30486", "from": "334409424", "to": "334409415", "length_m": 28.22914310874332, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791196.4057598726, 5777243.018113513], [791267.0544587442, 5777163.289123201]]}, "properties": {"id": "30487-30488-30489-30490", "from": "334409415", "to": "318039355", "length_m": 106.66745180406011, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791267.0544587442, 5777163.289123201], [791635.2710095195, 5776621.300716323]]}, "properties": {"id": "30491-30492-7990-7991-7992-7993-7994-8028-8029-55741-55742-55743", "from": "318039355", "to": "318039338", "length_m": 655.71210225785, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790979.3575253708, 5753530.73132175], [790887.7891743286, 5753458.497821456]]}, "properties": {"id": "30493-30495-30497", "from": "510173937", "to": "512198698", "length_m": 118.39826034988104, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790887.7891743286, 5753458.497821456], [790979.3575253708, 5753530.73132175]]}, "properties": {"id": "30498-30496-30494", "from": "512198698", "to": "510173937", "length_m": 118.39826034988104, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791037.7290587164, 5753492.659427126], [790982.2189048526, 5753419.704349333]]}, "properties": {"id": "30499-30501-30503", "from": "510174036", "to": "512198626", "length_m": 95.8209568410009, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790982.2189048526, 5753419.704349333], [791037.7290587164, 5753492.659427126]]}, "properties": {"id": "30504-30502-30500", "from": "512198626", "to": "510174036", "length_m": 95.8209568410009, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791462.6685702316, 5753500.729781281], [791359.4010348374, 5753578.482609487]]}, "properties": {"id": "30505-30507", "from": "512198360", "to": "512198398", "length_m": 130.40024826892227, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791359.4010348374, 5753578.482609487], [791462.6685702316, 5753500.729781281]]}, "properties": {"id": "30508-30506", "from": "512198398", "to": "512198360", "length_m": 130.40024826892227, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791359.4010348374, 5753578.482609487], [791280.2298511853, 5753590.499159372]]}, "properties": {"id": "30509", "from": "512198398", "to": "512198408", "length_m": 80.0779230774628, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791280.2298511853, 5753590.499159372], [791359.4010348374, 5753578.482609487]]}, "properties": {"id": "30510", "from": "512198408", "to": "512198398", "length_m": 80.0779230774628, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791280.2298511853, 5753590.499159372], [791172.5823295376, 5753605.665328863]]}, "properties": {"id": "30511-30513", "from": "512198408", "to": "512198428", "length_m": 108.96716359128752, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791172.5823295376, 5753605.665328863], [791280.2298511853, 5753590.499159372]]}, "properties": {"id": "30514-30512", "from": "512198428", "to": "512198408", "length_m": 108.96716359128752, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791355.3014450624, 5753373.50963489], [791398.758800973, 5753438.7395396205]]}, "properties": {"id": "30515-30517", "from": "512197970", "to": "512198334", "length_m": 79.36878447262087, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791398.758800973, 5753438.7395396205], [791355.3014450624, 5753373.50963489]]}, "properties": {"id": "30518-30516", "from": "512198334", "to": "512197970", "length_m": 79.36878447262087, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791398.758800973, 5753438.7395396205], [791462.6685702316, 5753500.729781281]]}, "properties": {"id": "30519", "from": "512198334", "to": "512198360", "length_m": 89.03509764700932, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791462.6685702316, 5753500.729781281], [791398.758800973, 5753438.7395396205]]}, "properties": {"id": "30520", "from": "512198360", "to": "512198334", "length_m": 89.03509764700932, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791462.6685702316, 5753500.729781281], [791598.7974511064, 5753602.801812656]]}, "properties": {"id": "30521-30523", "from": "512198360", "to": "512198139", "length_m": 170.14921681859153, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791598.7974511064, 5753602.801812656], [791462.6685702316, 5753500.729781281]]}, "properties": {"id": "30524-30522", "from": "512198139", "to": "512198360", "length_m": 170.14921681859153, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791398.758800973, 5753438.7395396205], [791327.8773151739, 5753487.513589901]]}, "properties": {"id": "30525-30527-30529", "from": "512198334", "to": "512198518", "length_m": 87.22319713635028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791327.8773151739, 5753487.513589901], [791398.758800973, 5753438.7395396205]]}, "properties": {"id": "30530-30528-30526", "from": "512198518", "to": "512198334", "length_m": 87.22319713635028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791277.2797567027, 5777124.890286564], [791232.5168108785, 5777124.09297916]]}, "properties": {"id": "30531-30532-30533-30534-30535-30536", "from": "318028180", "to": "318035114", "length_m": 48.59004300948739, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791280.2298511853, 5753590.499159372], [791277.9512100513, 5753643.331505463]]}, "properties": {"id": "30537-30539", "from": "512198408", "to": "512198501", "length_m": 53.324748031891076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791277.9512100513, 5753643.331505463], [791280.2298511853, 5753590.499159372]]}, "properties": {"id": "30540-30538", "from": "512198501", "to": "512198408", "length_m": 53.324748031891076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791359.4010348374, 5753578.482609487], [791377.5623690053, 5753632.333151552]]}, "properties": {"id": "30541", "from": "512198398", "to": "512198448", "length_m": 56.830580955424935, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791377.5623690053, 5753632.333151552], [791359.4010348374, 5753578.482609487]]}, "properties": {"id": "30542", "from": "512198448", "to": "512198398", "length_m": 56.830580955424935, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790666.3683025254, 5753355.141911421], [790405.8582201501, 5753379.02620727]]}, "properties": {"id": "30544-30560-30558-30556-30554-30574-30572", "from": "512197875", "to": "512197826", "length_m": 304.8469821404408, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832858.7805177483, 5814900.179280497], [832839.4939465562, 5814904.194610063]]}, "properties": {"id": "3056", "from": "30918604", "to": "30918606", "length_m": 19.7001192061076, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790261.9105939658, 5753188.512131313], [790279.215176626, 5753280.351325925]]}, "properties": {"id": "30561", "from": "512197812", "to": "512197810", "length_m": 93.455263297806, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790279.215176626, 5753280.351325925], [790261.9105939658, 5753188.512131313]]}, "properties": {"id": "30562", "from": "512197810", "to": "512197812", "length_m": 93.455263297806, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790279.215176626, 5753280.351325925], [790320.9792380505, 5753318.016361684]]}, "properties": {"id": "30563-30565", "from": "512197810", "to": "512197821", "length_m": 56.383222316127444, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790320.9792380505, 5753318.016361684], [790279.215176626, 5753280.351325925]]}, "properties": {"id": "30566-30564", "from": "512197821", "to": "512197810", "length_m": 56.383222316127444, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790320.9792380505, 5753318.016361684], [790380.539739062, 5753357.730522673]]}, "properties": {"id": "30567", "from": "512197821", "to": "512197807", "length_m": 71.58678528045887, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790380.539739062, 5753357.730522673], [790320.9792380505, 5753318.016361684]]}, "properties": {"id": "30568", "from": "512197807", "to": "512197821", "length_m": 71.58678528045887, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790380.539739062, 5753357.730522673], [790405.8582201501, 5753379.02620727]]}, "properties": {"id": "30569", "from": "512197807", "to": "512197826", "length_m": 33.08370685376959, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752147.798316893, 5838975.4535494], [752153.3334299256, 5839006.85479681]]}, "properties": {"id": "3057-3058", "from": "60303500", "to": "60303498", "length_m": 31.88535425591591, "freespeed_mps": 13.88888888888889, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790405.8582201501, 5753379.02620727], [790380.539739062, 5753357.730522673]]}, "properties": {"id": "30570", "from": "512197826", "to": "512197807", "length_m": 33.08370685376959, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790405.8582201501, 5753379.02620727], [790666.3683025254, 5753355.141911421]]}, "properties": {"id": "30571-30573-30553-30555-30557-30559-30543", "from": "512197826", "to": "512197875", "length_m": 304.8469821404408, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790988.629851013, 5753149.988244163], [790640.7341515735, 5753214.009952585]]}, "properties": {"id": "30575", "from": "512197799", "to": "512197808", "length_m": 353.7374680722476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790640.7341515735, 5753214.009952585], [790988.629851013, 5753149.988244163]]}, "properties": {"id": "30576", "from": "512197808", "to": "512197799", "length_m": 353.7374680722476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790640.7341515735, 5753214.009952585], [790279.215176626, 5753280.351325925]]}, "properties": {"id": "30577", "from": "512197808", "to": "512197810", "length_m": 367.5556372718447, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790279.215176626, 5753280.351325925], [790640.7341515735, 5753214.009952585]]}, "properties": {"id": "30578", "from": "512197810", "to": "512197808", "length_m": 367.5556372718447, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790279.215176626, 5753280.351325925], [790177.22898469, 5753300.168989167]]}, "properties": {"id": "30579", "from": "512197810", "to": "512197811", "length_m": 103.89380675044383, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790177.22898469, 5753300.168989167], [790279.215176626, 5753280.351325925]]}, "properties": {"id": "30580", "from": "512197811", "to": "512197810", "length_m": 103.89380675044383, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791476.1560915703, 5753696.205358518], [791467.5499153468, 5753616.968518868]]}, "properties": {"id": "30581-30583-30585-30587", "from": "512198048", "to": "512198272", "length_m": 81.91951370929249, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791467.5499153468, 5753616.968518868], [791476.1560915703, 5753696.205358518]]}, "properties": {"id": "30588-30586-30584-30582", "from": "512198272", "to": "512198048", "length_m": 81.91951370929249, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790320.9792380505, 5753318.016361684], [790252.148840516, 5753409.564291187]]}, "properties": {"id": "30589", "from": "512197821", "to": "512197917", "length_m": 114.53666246946969, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752160.9059404671, 5839005.5026652515], [752155.2941122032, 5838973.614991747]]}, "properties": {"id": "3059-3060", "from": "363999778", "to": "363999777", "length_m": 32.37771376054674, "freespeed_mps": 13.88888888888889, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790252.148840516, 5753409.564291187], [790320.9792380505, 5753318.016361684]]}, "properties": {"id": "30590", "from": "512197917", "to": "512197821", "length_m": 114.53666246946969, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790405.8582201501, 5753379.02620727], [790336.3234018387, 5753463.887058808]]}, "properties": {"id": "30591-30593", "from": "512197826", "to": "512197896", "length_m": 111.5248036404009, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790336.3234018387, 5753463.887058808], [790405.8582201501, 5753379.02620727]]}, "properties": {"id": "30594-30592", "from": "512197896", "to": "512197826", "length_m": 111.5248036404009, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789122.0089455897, 5751398.107830709], [789142.7231964917, 5751513.177352698]]}, "properties": {"id": "30595-30597", "from": "270452357", "to": "516047220", "length_m": 116.97097830715367, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789142.7231964917, 5751513.177352698], [789122.0089455897, 5751398.107830709]]}, "properties": {"id": "30598-30596", "from": "516047220", "to": "270452357", "length_m": 116.97097830715367, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789142.7231964917, 5751513.177352698], [789170.7243858092, 5751581.94965306]]}, "properties": {"id": "30599-30601", "from": "516047220", "to": "516048400", "length_m": 74.3550765379666, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789170.7243858092, 5751581.94965306], [789142.7231964917, 5751513.177352698]]}, "properties": {"id": "30602-30600", "from": "516048400", "to": "516047220", "length_m": 74.3550765379666, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789170.7243858092, 5751581.94965306], [789236.6094018924, 5751705.279960384]]}, "properties": {"id": "30603-30605", "from": "516048400", "to": "516047253", "length_m": 139.92411772159602, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789236.6094018924, 5751705.279960384], [789170.7243858092, 5751581.94965306]]}, "properties": {"id": "30606-30604", "from": "516047253", "to": "516048400", "length_m": 139.92411772159602, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789236.6094018924, 5751705.279960384], [789253.2049756338, 5751868.511366247]]}, "properties": {"id": "30607-30609-30611", "from": "516047253", "to": "516049648", "length_m": 167.42716666344822, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752155.2941122032, 5838973.614991747], [752114.888834157, 5838745.736568157]]}, "properties": {"id": "3061-3062-3063-3064", "from": "363999777", "to": "4963796495", "length_m": 231.43284656898848, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789253.2049756338, 5751868.511366247], [789236.6094018924, 5751705.279960384]]}, "properties": {"id": "30612-30610-30608", "from": "516049648", "to": "516047253", "length_m": 167.42716666344822, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789253.2049756338, 5751868.511366247], [789211.5177587671, 5751958.377051172]]}, "properties": {"id": "30613-30615-30617", "from": "516049648", "to": "516047289", "length_m": 99.57341771337114, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789211.5177587671, 5751958.377051172], [789253.2049756338, 5751868.511366247]]}, "properties": {"id": "30618-30616-30614", "from": "516047289", "to": "516049648", "length_m": 99.57341771337114, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789211.5177587671, 5751958.377051172], [789102.7951436037, 5752026.716172033]]}, "properties": {"id": "30619-30621-30623", "from": "516047289", "to": "516049452", "length_m": 131.64627100855176, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789102.7951436037, 5752026.716172033], [789211.5177587671, 5751958.377051172]]}, "properties": {"id": "30624-30622-30620", "from": "516049452", "to": "516047289", "length_m": 131.64627100855176, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789102.7951436037, 5752026.716172033], [789092.5744066462, 5752029.772198282]]}, "properties": {"id": "30625", "from": "516049452", "to": "516049280", "length_m": 10.667837624144827, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789092.5744066462, 5752029.772198282], [789102.7951436037, 5752026.716172033]]}, "properties": {"id": "30626", "from": "516049280", "to": "516049452", "length_m": 10.667837624144827, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789092.5744066462, 5752029.772198282], [788988.1486971941, 5752061.711575544]]}, "properties": {"id": "30627-30629", "from": "516049280", "to": "516047689", "length_m": 109.20107710292532, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788988.1486971941, 5752061.711575544], [789092.5744066462, 5752029.772198282]]}, "properties": {"id": "30630-30628", "from": "516047689", "to": "516049280", "length_m": 109.20107710292532, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788988.1486971941, 5752061.711575544], [788920.794271569, 5752070.826506579]]}, "properties": {"id": "30631-30633", "from": "516047689", "to": "516049279", "length_m": 68.13461649384587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788920.794271569, 5752070.826506579], [788988.1486971941, 5752061.711575544]]}, "properties": {"id": "30634-30632", "from": "516049279", "to": "516047689", "length_m": 68.13461649384587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788920.794271569, 5752070.826506579], [788825.7464891642, 5752059.8152850075]]}, "properties": {"id": "30635-30637", "from": "516049279", "to": "516049561", "length_m": 95.81056491168333, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788825.7464891642, 5752059.8152850075], [788920.794271569, 5752070.826506579]]}, "properties": {"id": "30638-30636", "from": "516049561", "to": "516049279", "length_m": 95.81056491168333, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788825.7464891642, 5752059.8152850075], [788786.9578328016, 5752055.23576251]]}, "properties": {"id": "30639", "from": "516049561", "to": "512197108", "length_m": 39.05805779709034, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788786.9578328016, 5752055.23576251], [788825.7464891642, 5752059.8152850075]]}, "properties": {"id": "30640", "from": "512197108", "to": "516049561", "length_m": 39.05805779709034, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810213.9639818718, 5790203.810515659], [808856.0051978768, 5789391.131492307]]}, "properties": {"id": "30641", "from": "1173113227", "to": "27266303", "length_m": 1582.5609718640897, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[808856.0051978768, 5789391.131492307], [807866.6647091903, 5788843.559993658]]}, "properties": {"id": "30642-30643", "from": "27266303", "to": "253491505", "length_m": 1130.9025508011555, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807866.6647091903, 5788843.559993658], [806905.0457402938, 5788328.109372263]]}, "properties": {"id": "30644", "from": "253491505", "to": "319641354", "length_m": 1091.054706742653, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790533.0064540841, 5755620.299590529], [790566.8349170256, 5755609.992154668]]}, "properties": {"id": "30645", "from": "512196786", "to": "512196735", "length_m": 50.0, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790566.8349170256, 5755609.992154668], [790533.0064540841, 5755620.299590529]]}, "properties": {"id": "30646", "from": "512196735", "to": "512196786", "length_m": 21.43951857903403, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790563.8491030225, 5755571.773649455], [790775.664437825, 5755551.158246004]]}, "properties": {"id": "30647", "from": "512196735-34", "to": "512196739", "length_m": 215.77302251296607, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790775.664437825, 5755551.158246004], [790566.8349170256, 5755609.992154668]]}, "properties": {"id": "30648", "from": "512196739", "to": "512196735", "length_m": 215.7730225129661, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790775.664437825, 5755551.158246004], [791726.8992473797, 5755377.64371426]]}, "properties": {"id": "30649", "from": "512196739", "to": "5421428362", "length_m": 968.1044659652705, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798960.9266223626, 5769093.070051848], [798450.9952170888, 5769293.117561737]]}, "properties": {"id": "3065-25615-25616-25617", "from": "3598503099", "to": "668716088", "length_m": 547.7814294005016, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791726.8992473797, 5755377.64371426], [790775.664437825, 5755551.158246004]]}, "properties": {"id": "30650", "from": "5421428362", "to": "512196739", "length_m": 968.1044659652705, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791726.8992473797, 5755377.64371426], [791813.7582722332, 5755361.445335072]]}, "properties": {"id": "30651", "from": "5421428362", "to": "5253402957", "length_m": 88.35653711033422, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791813.7582722332, 5755361.445335072], [791726.8992473797, 5755377.64371426]]}, "properties": {"id": "30652", "from": "5253402957", "to": "5421428362", "length_m": 88.35653711033422, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791813.7582722332, 5755361.445335072], [792134.6568458313, 5755301.570334726]]}, "properties": {"id": "30653-30655", "from": "5253402957", "to": "5421428363", "length_m": 326.4366859459643, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792134.6568458313, 5755301.570334726], [791813.7582722332, 5755361.445335072]]}, "properties": {"id": "30656-30654", "from": "5421428363", "to": "5253402957", "length_m": 326.4366859459643, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803824.4709068425, 5786708.609813968], [804692.7289066319, 5787172.438725374]]}, "properties": {"id": "30657", "from": "616948949", "to": "174828888", "length_m": 984.3826514207477, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791274.1978290501, 5755877.471919284], [791350.958412987, 5756280.697073954]]}, "properties": {"id": "30658", "from": "512196757", "to": "512196772", "length_m": 410.46645710794274, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791350.958412987, 5756280.697073954], [791274.1978290501, 5755877.471919284]]}, "properties": {"id": "30659", "from": "512196772", "to": "512196757", "length_m": 410.46645710794274, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790853.5211424541, 5755959.065354487], [791274.1978290501, 5755877.471919284]]}, "properties": {"id": "30660", "from": "512196746", "to": "512196757", "length_m": 428.51646708022787, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791274.1978290501, 5755877.471919284], [790853.5211424541, 5755959.065354487]]}, "properties": {"id": "30661", "from": "512196757", "to": "512196746", "length_m": 428.51646708022787, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791274.1978290501, 5755877.471919284], [791800.286291731, 5755775.386759236]]}, "properties": {"id": "30662", "from": "512196757", "to": "512196755", "length_m": 535.901529444777, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791800.286291731, 5755775.386759236], [791274.1978290501, 5755877.471919284]]}, "properties": {"id": "30663", "from": "512196755", "to": "512196757", "length_m": 535.901529444777, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801764.6138027171, 5785572.392296818], [801110.0495525922, 5785222.773702656]]}, "properties": {"id": "30664-7028", "from": "319641788", "to": "2134404317", "length_m": 742.1148884550241, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790961.2745469159, 5753060.101656476], [790988.629851013, 5753149.988244163]]}, "properties": {"id": "30665", "from": "512197424", "to": "512197799", "length_m": 93.9569650919869, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790988.629851013, 5753149.988244163], [790961.2745469159, 5753060.101656476]]}, "properties": {"id": "30666", "from": "512197799", "to": "512197424", "length_m": 93.9569650919869, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790988.629851013, 5753149.988244163], [790657.6173256331, 5753305.452681392]]}, "properties": {"id": "30667-30669-30671-30673", "from": "512197799", "to": "512197806", "length_m": 427.9112975405123, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759580.468959406, 5731025.320458643], [759508.3599332672, 5730999.734353021]]}, "properties": {"id": "3067-3069", "from": "832508372", "to": "832508297", "length_m": 85.46101156087897, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790657.6173256331, 5753305.452681392], [790988.629851013, 5753149.988244163]]}, "properties": {"id": "30674-30672-30670-30668", "from": "512197806", "to": "512197799", "length_m": 427.9112975405123, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790657.6173256331, 5753305.452681392], [790380.539739062, 5753357.730522673]]}, "properties": {"id": "30675", "from": "512197806", "to": "512197807", "length_m": 281.9662414619299, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790380.539739062, 5753357.730522673], [790657.6173256331, 5753305.452681392]]}, "properties": {"id": "30676", "from": "512197807", "to": "512197806", "length_m": 281.9662414619299, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788764.8883107104, 5752042.533086256], [788755.9912773893, 5752042.951638758]]}, "properties": {"id": "30677-30678", "from": "512197219", "to": "512197140", "length_m": 9.167066106377357, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788755.9912773893, 5752042.951638758], [788752.3071572338, 5752055.709437495]]}, "properties": {"id": "30679-30680-30681-30682", "from": "512197140", "to": "512197263", "length_m": 14.57819666359005, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788752.3071572338, 5752055.709437495], [788761.8134376889, 5752060.815141858]]}, "properties": {"id": "30683-30684-30685-30686", "from": "512197263", "to": "512197156", "length_m": 11.405046969918471, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788761.8134376889, 5752060.815141858], [788767.8280037683, 5752057.887909135]]}, "properties": {"id": "30687-30688", "from": "512197156", "to": "512197190", "length_m": 6.791504452652483, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788767.8280037683, 5752057.887909135], [788768.916154816, 5752045.9788189735]]}, "properties": {"id": "30689-30690-30691-30692", "from": "512197190", "to": "512197170", "length_m": 12.8493187404004, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788768.916154816, 5752045.9788189735], [788764.8883107104, 5752042.533086256]]}, "properties": {"id": "30693-30694", "from": "512197170", "to": "512197219", "length_m": 5.3497161781506914, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788752.9302106608, 5752085.095711997], [788773.641409717, 5752568.7620949]]}, "properties": {"id": "30695-30697-30699-30701", "from": "845902474", "to": "845902138", "length_m": 489.6472611953253, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759508.3599332672, 5730999.734353021], [759580.468959406, 5731025.320458643]]}, "properties": {"id": "3070-3068", "from": "832508297", "to": "832508372", "length_m": 85.46101156087897, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788773.641409717, 5752568.7620949], [788752.9302106608, 5752085.095711997]]}, "properties": {"id": "30702-30700-30698-30696", "from": "845902138", "to": "845902474", "length_m": 489.6472611953253, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788773.641409717, 5752568.7620949], [788932.2350955133, 5753436.849657111]]}, "properties": {"id": "30703-30705", "from": "845902138", "to": "321711594", "length_m": 882.4557133472208, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788932.2350955133, 5753436.849657111], [788773.641409717, 5752568.7620949]]}, "properties": {"id": "30706-30704", "from": "321711594", "to": "845902138", "length_m": 882.4557133472208, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[806905.0457402938, 5788328.109372263], [806199.963103038, 5787950.0758460425]]}, "properties": {"id": "30707-30708", "from": "319641354", "to": "319641376", "length_m": 800.0317910846493, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[806199.963103038, 5787950.0758460425], [804979.3190780925, 5787295.585671995]]}, "properties": {"id": "30709", "from": "319641376", "to": "616936239", "length_m": 1385.0376188932992, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759508.3599332672, 5730999.734353021], [759390.11875538, 5730976.641684394]]}, "properties": {"id": "3071-3073-3075", "from": "832508297", "to": "832507805", "length_m": 125.7180367304991, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[811203.6739974513, 5790821.960875621], [811672.8522683994, 5791112.200038212]]}, "properties": {"id": "30714-30715-30716-30717", "from": "628549556", "to": "628549525", "length_m": 551.7100713884906, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790775.664437825, 5755551.158246004], [790853.5211424541, 5755959.065354487]]}, "properties": {"id": "30719", "from": "512196739", "to": "512196746", "length_m": 405.77548344208765, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790853.5211424541, 5755959.065354487], [790775.664437825, 5755551.158246004]]}, "properties": {"id": "30720", "from": "512196746", "to": "512196739", "length_m": 405.77548344208765, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790853.5211424541, 5755959.065354487], [790925.8750242977, 5756353.85972246]]}, "properties": {"id": "30721", "from": "512196746", "to": "512196740", "length_m": 401.3697510220888, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790925.8750242977, 5756353.85972246], [790853.5211424541, 5755959.065354487]]}, "properties": {"id": "30722", "from": "512196740", "to": "512196746", "length_m": 401.3697510220888, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791726.8992473797, 5755377.64371426], [791800.286291731, 5755775.386759236]]}, "properties": {"id": "30724", "from": "5421428362", "to": "512196755", "length_m": 404.456657659731, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791800.286291731, 5755775.386759236], [791726.8992473797, 5755377.64371426]]}, "properties": {"id": "30725", "from": "512196755", "to": "5421428362", "length_m": 404.456657659731, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791800.286291731, 5755775.386759236], [791876.6155980378, 5756177.580191431]]}, "properties": {"id": "30726", "from": "512196755", "to": "512196738", "length_m": 409.3723485034094, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791876.6155980378, 5756177.580191431], [791800.286291731, 5755775.386759236]]}, "properties": {"id": "30727", "from": "512196738", "to": "512196755", "length_m": 409.3723485034094, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790529.4234757901, 5755573.720785346], [789655.0642847737, 5754960.541641]]}, "properties": {"id": "30743-30741-30739-30737-30735-30733-30731-30729-7644", "from": "512196786-33", "to": "2833528508", "length_m": 1139.778148484433, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803756.0946667057, 5786643.796044217], [802853.4338175668, 5786159.625131537]]}, "properties": {"id": "30747-30748", "from": "616936360", "to": "267115805", "length_m": 1024.3177553317264, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[802853.4338175668, 5786159.625131537], [801764.6138027171, 5785572.392296818]]}, "properties": {"id": "30749", "from": "267115805", "to": "319641788", "length_m": 1237.081813518882, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812283.3858857555, 5791493.350102044], [811718.579486728, 5791110.455292225]]}, "properties": {"id": "30753-30754-30755-30756", "from": "351094976", "to": "628549553", "length_m": 682.3757355048376, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800582.7785778672, 5784975.532420226], [801087.4583071457, 5785251.685085669]]}, "properties": {"id": "30757", "from": "322483539", "to": "2134404316", "length_m": 575.2929001000504, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801087.4583071457, 5785251.685085669], [801728.4006744015, 5785587.904408142]]}, "properties": {"id": "30758-21344", "from": "2134404316", "to": "385128529", "length_m": 723.7954572649098, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759390.11875538, 5730976.641684394], [759508.3599332672, 5730999.734353021]]}, "properties": {"id": "3076-3074-3072", "from": "832507805", "to": "832508297", "length_m": 125.7180367304991, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812809.5981960003, 5791896.09784885], [813253.0546630705, 5792192.578634503]]}, "properties": {"id": "30760-30761-30762", "from": "616951642", "to": "351095911", "length_m": 533.5364237657404, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[813253.0546630705, 5792192.578634503], [813727.3953819033, 5792492.299775647]]}, "properties": {"id": "30763-30764", "from": "351095911", "to": "4954921762", "length_m": 561.1016004647197, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[813727.3953819033, 5792492.299775647], [814545.3976117366, 5793004.218113917]]}, "properties": {"id": "30765", "from": "4954921762", "to": "351093450", "length_m": 964.9808409592143, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814545.3976117366, 5793004.218113917], [814970.1914184038, 5793280.391778425]]}, "properties": {"id": "30766", "from": "351093450", "to": "253370972", "length_m": 506.6770850329282, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814970.1914184038, 5793280.391778425], [815437.4289029147, 5793577.353973598]]}, "properties": {"id": "30767", "from": "253370972", "to": "253370971", "length_m": 553.6220814843763, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[815437.4289029147, 5793577.353973598], [816050.8022371193, 5793967.920918897]]}, "properties": {"id": "30768", "from": "253370971", "to": "253370968", "length_m": 727.1653046574638, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816050.8022371193, 5793967.920918897], [816951.8650237189, 5794537.084051108]]}, "properties": {"id": "30769-30770", "from": "253370968", "to": "282810561", "length_m": 1065.7677838429, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794024.1148750989, 5776489.60018097], [794014.0249331456, 5776875.471348298]]}, "properties": {"id": "30771-30772-30773-30774-30775-30776-34536-34537-34538-34539-34540-34541-34542-34543-34544", "from": "2735737972", "to": "867695761", "length_m": 401.324708740301, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794581.7424647457, 5779515.253454561], [794386.6397995575, 5778748.467303715]]}, "properties": {"id": "30778-30779-30780-30781-30782-30783-30784-30785-30786-30787", "from": "3955050488", "to": "621549705", "length_m": 795.9036581974469, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833690.1298390816, 5809790.125426516], [834452.617077715, 5809520.6482612835]]}, "properties": {"id": "30788-30789-30790-30791-30792-30793-30794-30795-30796-30797-30798-30799-30800-30801-30802", "from": "26475875", "to": "366741775", "length_m": 827.7897571603683, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759181.6230032607, 5729669.3993653115], [759249.1644546826, 5729607.678647973]]}, "properties": {"id": "3080-3082-3084", "from": "832509710", "to": "832508171", "length_m": 92.70611322078018, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789249.9369055433, 5768729.618091677], [788823.7764029987, 5769131.7636440005]]}, "properties": {"id": "30804-30805-30806-30807", "from": "1833870416", "to": "1833870407", "length_m": 586.1127911613162, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788823.7764029987, 5769131.7636440005], [788371.9653189037, 5769833.152696605]]}, "properties": {"id": "30808-30809-30810-30811-30812-30813-13993-13994", "from": "1833870407", "to": "-125853", "length_m": 807.4450653725567, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824988.6282283078, 5816554.631173976], [824499.4834020892, 5816770.698885212]]}, "properties": {"id": "30833-30834-30835-30836-30837-32800-32801-32802", "from": "582329658", "to": "582330186", "length_m": 535.1593818153508, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777912.3796764596, 5743604.435203921], [777852.5261202907, 5743717.52357756]]}, "properties": {"id": "30838-30840-30842-30844-30846", "from": "5678581114", "to": "5678581109", "length_m": 129.56251042241658, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777852.5261202907, 5743717.52357756], [777912.3796764596, 5743604.435203921]]}, "properties": {"id": "30847-30845-30843-30841-30839", "from": "5678581109", "to": "5678581114", "length_m": 129.56251042241658, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834749.3407957968, 5809444.398458657], [834559.7508885547, 5809478.7490844615]]}, "properties": {"id": "30848-30849", "from": "26475881", "to": "1834824664", "length_m": 192.71753506927539, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759249.1644546826, 5729607.678647973], [759181.6230032607, 5729669.3993653115]]}, "properties": {"id": "3085-3083-3081", "from": "832508171", "to": "832509710", "length_m": 92.70611322078018, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790030.5256731359, 5767503.546470562], [789949.6155541097, 5767077.028413036]]}, "properties": {"id": "30850-30851-30852-30853-30854", "from": "420461022", "to": "1611301330", "length_m": 252.81614525808453, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789986.5149662865, 5766726.033635433], [789999.1678748333, 5766732.327185061]]}, "properties": {"id": "30855-30856", "from": "331122806", "to": "428731160", "length_m": 14.131704490159828, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789999.1678748333, 5766732.327185061], [790025.031285091, 5766748.239649472]]}, "properties": {"id": "30857-30858", "from": "428731160", "to": "264173097", "length_m": 30.366470238599547, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790025.031285091, 5766748.239649472], [790616.3565627448, 5767146.464161009]]}, "properties": {"id": "30859-30860-30861-30862-30863-30864-30865-30866-30867-30868-30869-30870", "from": "264173097", "to": "490759589", "length_m": 713.5136400503188, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759129.4720942077, 5729254.671499329], [759072.732651972, 5729426.043075976]]}, "properties": {"id": "3091-3089-3087-5039-5037", "from": "832510232", "to": "832509284", "length_m": 239.60474009299867, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789253.2434837569, 5752156.17337306], [789247.900822209, 5752155.375780311]]}, "properties": {"id": "30922", "from": "516049824", "to": "516049839", "length_m": 5.401868801088047, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789247.900822209, 5752155.375780311], [789253.2434837569, 5752156.17337306]]}, "properties": {"id": "30923-30924-30925-30926-30927-30928", "from": "516049839", "to": "516049824", "length_m": 35.2333541328902, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789246.1810189886, 5751553.069158925], [789244.4043899546, 5751518.911556998]]}, "properties": {"id": "30947-30949", "from": "516048435", "to": "516050355", "length_m": 34.213242321520134, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789244.4043899546, 5751518.911556998], [789246.1810189886, 5751553.069158925]]}, "properties": {"id": "30950-30948", "from": "516050355", "to": "516048435", "length_m": 34.213242321520134, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789244.4043899546, 5751518.911556998], [789250.4791895492, 5751492.296899601]]}, "properties": {"id": "30951-30953-30955", "from": "516050355", "to": "516050406", "length_m": 29.707069930585142, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789250.4791895492, 5751492.296899601], [789244.4043899546, 5751518.911556998]]}, "properties": {"id": "30956-30954-30952", "from": "516050406", "to": "516050355", "length_m": 29.707069930585142, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789250.4791895492, 5751492.296899601], [789244.4043899546, 5751518.911556998]]}, "properties": {"id": "30957-30959-30961-30963-30965-30967-30969", "from": "516050406", "to": "516050355", "length_m": 52.33336669682045, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789244.4043899546, 5751518.911556998], [789250.4791895492, 5751492.296899601]]}, "properties": {"id": "30970-30968-30966-30964-30962-30960-30958", "from": "516050355", "to": "516050406", "length_m": 52.33336669682045, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789295.0365362938, 5751561.597567344], [789390.2447129637, 5751823.11660296]]}, "properties": {"id": "31001-31003-31005-31007-31009-31011-31013-31015-31017-31019", "from": "516048455", "to": "516050323", "length_m": 308.4542331078451, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789390.2447129637, 5751823.11660296], [789295.0365362938, 5751561.597567344]]}, "properties": {"id": "31020-31018-31016-31014-31012-31010-31008-31006-31004-31002", "from": "516050323", "to": "516048455", "length_m": 308.4542331078451, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789309.179156964, 5751396.785489029], [789328.2998866386, 5751570.818476676]]}, "properties": {"id": "31021-31023-31025", "from": "516050068", "to": "516048468", "length_m": 177.03393988099407, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789328.2998866386, 5751570.818476676], [789309.179156964, 5751396.785489029]]}, "properties": {"id": "31026-31024-31022", "from": "516048468", "to": "516050068", "length_m": 177.03393988099407, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836726.2295275416, 5819603.335484241], [836716.67863132, 5819612.821178509]]}, "properties": {"id": "3103-3104-3105-3106-3107", "from": "1834050708", "to": "716027910", "length_m": 14.868046567506553, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789353.6263754654, 5751979.5545997955], [789253.2434837569, 5752156.17337306]]}, "properties": {"id": "31032-31034-31036-31038-31040-31042-31044-31046-31048-31050-31052-31054", "from": "516049689", "to": "516049824", "length_m": 269.5598075021391, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789253.2434837569, 5752156.17337306], [789353.6263754654, 5751979.5545997955]]}, "properties": {"id": "31055-31053-31051-31049-31047-31045-31043-31041-31039-31037-31035-31033", "from": "516049824", "to": "516049689", "length_m": 269.5598075021391, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789253.2434837569, 5752156.17337306], [789326.9181205269, 5752136.770453151]]}, "properties": {"id": "31056-31058-31060-31062", "from": "516049824", "to": "516048733", "length_m": 78.68229401435278, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789326.9181205269, 5752136.770453151], [789253.2434837569, 5752156.17337306]]}, "properties": {"id": "31063-31061-31059-31057", "from": "516048733", "to": "516049824", "length_m": 78.68229401435278, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789060.5041371018, 5752230.013705189], [789041.1829063935, 5752320.665919076]]}, "properties": {"id": "31064-31066", "from": "516049193", "to": "971202666", "length_m": 92.69448348751408, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789041.1829063935, 5752320.665919076], [789060.5041371018, 5752230.013705189]]}, "properties": {"id": "31067-31065", "from": "971202666", "to": "516049193", "length_m": 92.69448348751408, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789253.2049756338, 5751868.511366247], [789371.6319396147, 5751906.531421891]]}, "properties": {"id": "31068", "from": "516049648", "to": "516049675", "length_m": 124.38034538374912, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789371.6319396147, 5751906.531421891], [789253.2049756338, 5751868.511366247]]}, "properties": {"id": "31069", "from": "516049675", "to": "516049648", "length_m": 124.38034538374912, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779267.672624354, 5749469.781276995], [779648.7249087391, 5748854.827855059]]}, "properties": {"id": "31070-31072-31074-31076-31078-31080-31082-31084-31086", "from": "1851088582", "to": "1835233386", "length_m": 725.5420024749291, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836716.67863132, 5819612.821178509], [836727.6145782004, 5819622.326493301]]}, "properties": {"id": "3108-3109-3110-3111-3112", "from": "716027910", "to": "1510910458", "length_m": 16.353650447006835, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779648.7249087391, 5748854.827855059], [779267.672624354, 5749469.781276995]]}, "properties": {"id": "31087-31085-31083-31081-31079-31077-31075-31073-31071", "from": "1835233386", "to": "1851088582", "length_m": 725.5420024749291, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779648.7249087391, 5748854.827855059], [779944.1498977963, 5748403.792148835]]}, "properties": {"id": "31088-31090-31092-31094", "from": "1835233386", "to": "1835233387", "length_m": 539.2108084796594, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779944.1498977963, 5748403.792148835], [779648.7249087391, 5748854.827855059]]}, "properties": {"id": "31095-31093-31091-31089", "from": "1835233387", "to": "1835233386", "length_m": 539.2108084796594, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779944.1498977963, 5748403.792148835], [780172.85483148, 5747660.459108772]]}, "properties": {"id": "31096-31098-31100-31102-31104-31106-31108-31110-31112", "from": "1835233387", "to": "1835233396", "length_m": 789.5031328225738, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780172.85483148, 5747660.459108772], [779944.1498977963, 5748403.792148835]]}, "properties": {"id": "31113-31111-31109-31107-31105-31103-31101-31099-31097", "from": "1835233396", "to": "1835233387", "length_m": 789.5031328225738, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780172.85483148, 5747660.459108772], [780132.8752478685, 5747138.387819897]]}, "properties": {"id": "31114-31116-31118-31120-31122-31124-31126-31128-31130", "from": "1835233396", "to": "4005368867", "length_m": 531.5191553940938, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836727.6145782004, 5819622.326493301], [836735.8538739507, 5819612.738675743]]}, "properties": {"id": "3113-3114-3115-3116-3117", "from": "1510910458", "to": "716027818", "length_m": 13.764319313438337, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780132.8752478685, 5747138.387819897], [780172.85483148, 5747660.459108772]]}, "properties": {"id": "31131-31129-31127-31125-31123-31121-31119-31117-31115", "from": "4005368867", "to": "1835233396", "length_m": 531.5191553940938, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789134.066764324, 5752113.187827437], [789125.7193624964, 5752115.754386017]]}, "properties": {"id": "31132", "from": "845902313", "to": "516049289", "length_m": 8.733060197193833, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789125.7193624964, 5752115.754386017], [789134.066764324, 5752113.187827437]]}, "properties": {"id": "31133", "from": "516049289", "to": "845902313", "length_m": 8.733060197193833, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789125.7193624964, 5752115.754386017], [788963.0053644135, 5752206.85480956]]}, "properties": {"id": "31134-31136-31138-31140", "from": "516049289", "to": "516049536", "length_m": 195.73890995767573, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788963.0053644135, 5752206.85480956], [789125.7193624964, 5752115.754386017]]}, "properties": {"id": "31141-31139-31137-31135", "from": "516049536", "to": "516049289", "length_m": 195.73890995767573, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774329.5429643721, 5776430.468617087], [774337.8239955921, 5776438.6120799165]]}, "properties": {"id": "31142-31143-31144-31145-31146-31147-31148-31149-31150-31151-31152-31153-31154-31155-31156-31157-31158-31159-31160", "from": "5604450011", "to": "5604453397", "length_m": 16.683695776399283, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774337.8239955921, 5776438.6120799165], [774338.1032176508, 5776429.457444348]]}, "properties": {"id": "31161-31162-31163-31164-31165-31166-31167-31168-31169-31170-31171-31172", "from": "5604453397", "to": "5604453394", "length_m": 10.519576985876514, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774338.1032176508, 5776429.457444348], [774329.5429643721, 5776430.468617087]]}, "properties": {"id": "31173-31174-31175-31176-31177-31178-31179-31180-31181-31182-31183", "from": "5604453394", "to": "5604450011", "length_m": 9.659170121071387, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836735.8538739507, 5819612.738675743], [836726.2295275416, 5819603.335484241]]}, "properties": {"id": "3118-3099-3100-3101-3102", "from": "716027818", "to": "1834050708", "length_m": 14.86372044478149, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807316.2187099776, 5765156.0862738965], [807321.8805039361, 5765159.20643137]]}, "properties": {"id": "31184", "from": "790928368", "to": "790928383", "length_m": 6.464618569663253, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807321.8805039361, 5765159.20643137], [807338.3064840159, 5765159.139072399]]}, "properties": {"id": "31185-31186", "from": "790928383", "to": "790928385", "length_m": 16.556352956975598, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760614.0709414796, 5732361.17835797], [760756.813227517, 5732477.848804429]]}, "properties": {"id": "3122-3124-3126-3128-3130-3132-3134-3136-3138", "from": "832510164", "to": "832510076", "length_m": 198.72349997738968, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774449.8954773345, 5776278.504643748], [774542.5051057844, 5775792.646409245]]}, "properties": {"id": "31347-31349-31351-31353-31355-31357-31359-31361-31363-31365-31367-31369-31371-31373-31375-31377-31379-31381-31383-31385-31387-31389-31391-31393-31395-31397-31399-31401", "from": "5604453354", "to": "5604445011", "length_m": 526.5415430444993, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760756.813227517, 5732477.848804429], [760614.0709414796, 5732361.17835797]]}, "properties": {"id": "3139-3137-3135-3133-3131-3129-3127-3125-3123", "from": "832510076", "to": "832510164", "length_m": 198.72349997738968, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774542.5051057844, 5775792.646409245], [774449.8954773345, 5776278.504643748]]}, "properties": {"id": "31402-31400-31398-31396-31394-31392-31390-31388-31386-31384-31382-31380-31378-31376-31374-31372-31370-31368-31366-31364-31362-31360-31358-31356-31354-31352-31350-31348", "from": "5604445011", "to": "5604453354", "length_m": 526.5415430444993, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789170.7243858092, 5751581.94965306], [789246.1810189886, 5751553.069158925]]}, "properties": {"id": "31403-31405", "from": "516048400", "to": "516048435", "length_m": 81.76193429471722, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789246.1810189886, 5751553.069158925], [789170.7243858092, 5751581.94965306]]}, "properties": {"id": "31406-31404", "from": "516048435", "to": "516048400", "length_m": 81.76193429471722, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789246.1810189886, 5751553.069158925], [789295.0365362938, 5751561.597567344]]}, "properties": {"id": "31407", "from": "516048435", "to": "516048455", "length_m": 49.594307153950005, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789295.0365362938, 5751561.597567344], [789246.1810189886, 5751553.069158925]]}, "properties": {"id": "31408", "from": "516048455", "to": "516048435", "length_m": 49.594307153950005, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789295.0365362938, 5751561.597567344], [789328.2998866386, 5751570.818476676]]}, "properties": {"id": "31409-31411", "from": "516048455", "to": "516048468", "length_m": 34.74253804149656, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759798.5934676919, 5729202.862220353], [759766.8312120241, 5729228.1378165735]]}, "properties": {"id": "3141", "from": "832508286", "to": "5328187031", "length_m": 40.59182984396273, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789328.2998866386, 5751570.818476676], [789295.0365362938, 5751561.597567344]]}, "properties": {"id": "31412-31410", "from": "516048468", "to": "516048455", "length_m": 34.74253804149656, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789328.2998866386, 5751570.818476676], [789390.2447129637, 5751823.11660296]]}, "properties": {"id": "31413-31415-31417-31419-31421-31423-31425-31427-31429-31431-31433-31435-31437-31439", "from": "516048468", "to": "516050323", "length_m": 311.0500191213799, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759766.8312120241, 5729228.1378165735], [759798.5934676919, 5729202.862220353]]}, "properties": {"id": "3142", "from": "5328187031", "to": "832508286", "length_m": 40.59182984396273, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759498.1324819686, 5730820.363443804], [759473.374966743, 5730836.610140299]]}, "properties": {"id": "3143", "from": "75297590", "to": "832507753", "length_m": 29.612323556656523, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759473.374966743, 5730836.610140299], [759498.1324819686, 5730820.363443804]]}, "properties": {"id": "3144", "from": "832507753", "to": "75297590", "length_m": 29.612323556656523, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789390.2447129637, 5751823.11660296], [789328.2998866386, 5751570.818476676]]}, "properties": {"id": "31440-31438-31436-31434-31432-31430-31428-31426-31424-31422-31420-31418-31416-31414", "from": "516050323", "to": "516048468", "length_m": 311.0500191213799, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789390.2447129637, 5751823.11660296], [789371.6319396147, 5751906.531421891]]}, "properties": {"id": "31441-31443-31445", "from": "516050323", "to": "516049675", "length_m": 85.49051872057683, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789371.6319396147, 5751906.531421891], [789390.2447129637, 5751823.11660296]]}, "properties": {"id": "31446-31444-31442", "from": "516049675", "to": "516050323", "length_m": 85.49051872057683, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789371.6319396147, 5751906.531421891], [789353.6263754654, 5751979.5545997955]]}, "properties": {"id": "31447-31449-31451", "from": "516049675", "to": "516049689", "length_m": 75.21300511188727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796578.7838471091, 5758860.985678975], [796725.026223979, 5759644.588963718]]}, "properties": {"id": "3145", "from": "616942600", "to": "616942601", "length_m": 797.1329499460562, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789353.6263754654, 5751979.5545997955], [789371.6319396147, 5751906.531421891]]}, "properties": {"id": "31452-31450-31448", "from": "516049689", "to": "516049675", "length_m": 75.21300511188727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789353.6263754654, 5751979.5545997955], [789326.9181205269, 5752136.770453151]]}, "properties": {"id": "31453-31455-31457-31459-31461", "from": "516049689", "to": "516048733", "length_m": 159.8212105369467, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796725.026223979, 5759644.588963718], [796578.7838471091, 5758860.985678975]]}, "properties": {"id": "3146", "from": "616942601", "to": "616942600", "length_m": 797.1329499460562, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789326.9181205269, 5752136.770453151], [789353.6263754654, 5751979.5545997955]]}, "properties": {"id": "31462-31460-31458-31456-31454", "from": "516048733", "to": "516049689", "length_m": 159.8212105369467, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789326.9181205269, 5752136.770453151], [789333.6088495302, 5752233.237068119]]}, "properties": {"id": "31463-31465", "from": "516048733", "to": "845902172", "length_m": 96.7001827293518, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789333.6088495302, 5752233.237068119], [789326.9181205269, 5752136.770453151]]}, "properties": {"id": "31466-31464", "from": "845902172", "to": "516048733", "length_m": 96.7001827293518, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789333.6088495302, 5752233.237068119], [789335.2971921214, 5752246.135926209]]}, "properties": {"id": "31467", "from": "845902172", "to": "516048769", "length_m": 13.008883143858638, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789335.2971921214, 5752246.135926209], [789333.6088495302, 5752233.237068119]]}, "properties": {"id": "31468", "from": "516048769", "to": "845902172", "length_m": 13.008883143858638, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789335.2971921214, 5752246.135926209], [789041.1829063935, 5752320.665919076]]}, "properties": {"id": "31469-31471-31473-31475-31477-31479-31481-31483-31485-31487-31489-31491", "from": "516048769", "to": "971202666", "length_m": 398.3409906768767, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759517.6217881952, 5731188.903295033], [759505.1759391589, 5731070.638380203]]}, "properties": {"id": "3147", "from": "832507718", "to": "832509557", "length_m": 118.91799373334459, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759505.1759391589, 5731070.638380203], [759517.6217881952, 5731188.903295033]]}, "properties": {"id": "3148", "from": "832509557", "to": "832507718", "length_m": 118.91799373334459, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789041.1829063935, 5752320.665919076], [789335.2971921214, 5752246.135926209]]}, "properties": {"id": "31492-31490-31488-31486-31484-31482-31480-31478-31476-31474-31472-31470", "from": "971202666", "to": "516048769", "length_m": 398.3409906768767, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789041.1829063935, 5752320.665919076], [788821.527874755, 5752150.303879677]]}, "properties": {"id": "31493-31495-31497-31499-31501-31503-31505", "from": "971202666", "to": "971202678", "length_m": 301.82345011183315, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794558.4232348467, 5779519.987633501], [794562.8767039636, 5779526.528479559]]}, "properties": {"id": "315", "from": "318038046", "to": "3955050473", "length_m": 7.9130306440338, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788821.527874755, 5752150.303879677], [789041.1829063935, 5752320.665919076]]}, "properties": {"id": "31506-31504-31502-31500-31498-31496-31494", "from": "971202678", "to": "971202666", "length_m": 301.82345011183315, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788821.527874755, 5752150.303879677], [788825.7464891642, 5752059.8152850075]]}, "properties": {"id": "31507-31509", "from": "971202678", "to": "516049561", "length_m": 90.81604435403045, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788825.7464891642, 5752059.8152850075], [788821.527874755, 5752150.303879677]]}, "properties": {"id": "31510-31508", "from": "516049561", "to": "971202678", "length_m": 90.81604435403045, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774798.896923234, 5759126.40340134], [774545.3807943988, 5757745.950193863]]}, "properties": {"id": "31549", "from": "1835206965", "to": "535081555", "length_m": 1403.5389143080304, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774545.3807943988, 5757745.950193863], [774798.896923234, 5759126.40340134]]}, "properties": {"id": "31550", "from": "535081555", "to": "1835206965", "length_m": 1403.5389143080304, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774545.3807943988, 5757745.950193863], [774391.2890252451, 5757099.161319833]]}, "properties": {"id": "31551-31553-31555-31557-31559-31561-31563", "from": "535081555", "to": "535081548", "length_m": 690.1069660393745, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774391.2890252451, 5757099.161319833], [774545.3807943988, 5757745.950193863]]}, "properties": {"id": "31564-31562-31560-31558-31556-31554-31552", "from": "535081548", "to": "535081555", "length_m": 690.1069660393745, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774391.2890252451, 5757099.161319833], [773978.5319165817, 5754836.766327672]]}, "properties": {"id": "31565-31567-3327-3325", "from": "535081548", "to": "498837749", "length_m": 2299.818664322298, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789092.5744066462, 5752029.772198282], [789109.2535295802, 5752073.054011715]]}, "properties": {"id": "31583", "from": "516049280", "to": "845902516", "length_m": 46.38435629878663, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789109.2535295802, 5752073.054011715], [789125.7193624964, 5752115.754386017]]}, "properties": {"id": "31584", "from": "845902516", "to": "516049289", "length_m": 45.76511349910541, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789125.7193624964, 5752115.754386017], [789141.293968692, 5752159.720385783]]}, "properties": {"id": "31585", "from": "516049289", "to": "516049306", "length_m": 46.643086166300925, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789141.293968692, 5752159.720385783], [789157.6250171093, 5752203.536991967]]}, "properties": {"id": "31586", "from": "516049306", "to": "516049327", "length_m": 46.761074784545904, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789157.6250171093, 5752203.536991967], [789155.7047159183, 5752259.866932313]]}, "properties": {"id": "31587-31588-31589", "from": "516049327", "to": "516049361", "length_m": 57.2576958864994, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789165.9872473923, 5752263.655109181], [789165.9355204338, 5752200.427125453]]}, "properties": {"id": "31595-31596-31597", "from": "516049140", "to": "516049411", "length_m": 64.37309041000444, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789165.9355204338, 5752200.427125453], [789149.4995305511, 5752157.103327787]]}, "properties": {"id": "31598", "from": "516049411", "to": "516049425", "length_m": 46.336737058409874, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789149.4995305511, 5752157.103327787], [789134.066764324, 5752113.187827437]]}, "properties": {"id": "31599", "from": "516049425", "to": "845902313", "length_m": 46.54826998817003, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794562.8767039636, 5779526.528479559], [794569.0347441917, 5779535.019348324]]}, "properties": {"id": "316-9281", "from": "3955050473", "to": "3955050483", "length_m": 10.492134993379748, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789134.066764324, 5752113.187827437], [789117.6831292659, 5752069.850999072]]}, "properties": {"id": "31600", "from": "845902313", "to": "845902275", "length_m": 46.3303807930314, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789117.6831292659, 5752069.850999072], [789102.7951436037, 5752026.716172033]]}, "properties": {"id": "31601", "from": "845902275", "to": "516049452", "length_m": 45.63184651022807, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838657.057032187, 5805698.422109553], [838673.6700674526, 5805727.638481267]]}, "properties": {"id": "31602-31603-31604-31605-31606", "from": "2982440660", "to": "250287618", "length_m": 35.153256254888475, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838673.6700674526, 5805727.638481267], [838663.5010909018, 5805741.7467607595]]}, "properties": {"id": "31607-31608-31609", "from": "250287618", "to": "2982440667", "length_m": 17.42195751296626, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759163.019276984, 5730497.765875322], [759171.5581210997, 5730497.878448516]]}, "properties": {"id": "31610", "from": "1976126537", "to": "75308689", "length_m": 8.539586144300124, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788920.794271569, 5752070.826506579], [788963.0053644135, 5752206.85480956]]}, "properties": {"id": "31621-31623-31625-31627-31629", "from": "516049279", "to": "516049536", "length_m": 153.28588433715427, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788963.0053644135, 5752206.85480956], [788920.794271569, 5752070.826506579]]}, "properties": {"id": "31630-31628-31626-31624-31622", "from": "516049536", "to": "516049279", "length_m": 153.28588433715427, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788963.0053644135, 5752206.85480956], [789060.5041371018, 5752230.013705189]]}, "properties": {"id": "31631-31633-31635", "from": "516049536", "to": "516049193", "length_m": 101.44811735680615, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789060.5041371018, 5752230.013705189], [788963.0053644135, 5752206.85480956]]}, "properties": {"id": "31636-31634-31632", "from": "516049193", "to": "516049536", "length_m": 101.44811735680615, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789060.5041371018, 5752230.013705189], [789155.7047159183, 5752259.866932313]]}, "properties": {"id": "31637-31639-31641", "from": "516049193", "to": "516049361", "length_m": 99.85695393091311, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789155.7047159183, 5752259.866932313], [789060.5041371018, 5752230.013705189]]}, "properties": {"id": "31642-31640-31638", "from": "516049361", "to": "516049193", "length_m": 99.85695393091311, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789155.7047159183, 5752259.866932313], [789165.9872473923, 5752263.655109181]]}, "properties": {"id": "31643", "from": "516049361", "to": "516049140", "length_m": 10.958135614809187, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789165.9872473923, 5752263.655109181], [789155.7047159183, 5752259.866932313]]}, "properties": {"id": "31644", "from": "516049140", "to": "516049361", "length_m": 10.958135614809187, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789165.9872473923, 5752263.655109181], [789307.0820815729, 5752242.757753509]]}, "properties": {"id": "31645-31647-31649-31651-31653-31655", "from": "516049140", "to": "516049047", "length_m": 149.71492471145748, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789307.0820815729, 5752242.757753509], [789165.9872473923, 5752263.655109181]]}, "properties": {"id": "31656-31654-31652-31650-31648-31646", "from": "516049047", "to": "516049140", "length_m": 149.71492471145748, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790463.1713839117, 5752292.3271725355], [790471.4536349163, 5752298.164174743]]}, "properties": {"id": "31657-31658-31659-31660", "from": "510558463", "to": "510558518", "length_m": 11.15560567260496, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790471.4536349163, 5752298.164174743], [790477.2289539655, 5752289.086777283]]}, "properties": {"id": "31661-31662-31663-31664", "from": "510558518", "to": "510558574", "length_m": 12.054105215277502, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790477.2289539655, 5752289.086777283], [790469.3649510584, 5752283.923823569]]}, "properties": {"id": "31665-31666-31667-31668", "from": "510558574", "to": "510558639", "length_m": 10.19280122782575, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790469.3649510584, 5752283.923823569], [790463.1713839117, 5752292.3271725355]]}, "properties": {"id": "31669-31670-31671-31672-31673", "from": "510558639", "to": "510558463", "length_m": 11.624763013242337, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762641.0711333831, 5763619.337746172], [762688.7366521307, 5763649.0794908935]]}, "properties": {"id": "31674-31676", "from": "1852765547", "to": "3755251630", "length_m": 56.281485602703114, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762688.7366521307, 5763649.0794908935], [762641.0711333831, 5763619.337746172]]}, "properties": {"id": "31677-31675", "from": "3755251630", "to": "1852765547", "length_m": 56.281485602703114, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790463.1713839117, 5752292.3271725355], [789953.9323345798, 5752386.315772806]]}, "properties": {"id": "31678-31680", "from": "510558463", "to": "510174986", "length_m": 517.9090024018506, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789953.9323345798, 5752386.315772806], [790463.1713839117, 5752292.3271725355]]}, "properties": {"id": "31681-31679", "from": "510174986", "to": "510558463", "length_m": 517.9090024018506, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789953.9323345798, 5752386.315772806], [789938.0215704001, 5752389.399543786]]}, "properties": {"id": "31682", "from": "510174986", "to": "510171828", "length_m": 16.206852218344746, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789938.0215704001, 5752389.399543786], [789953.9323345798, 5752386.315772806]]}, "properties": {"id": "31683", "from": "510171828", "to": "510174986", "length_m": 16.206852218344746, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790633.8950666669, 5753120.160340159], [790719.5335190252, 5753105.504864164]]}, "properties": {"id": "31684", "from": "510558352", "to": "510172516", "length_m": 86.88341308159929, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790719.5335190252, 5753105.504864164], [790633.8950666669, 5753120.160340159]]}, "properties": {"id": "31685", "from": "510172516", "to": "510558352", "length_m": 86.88341308159929, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790719.5335190252, 5753105.504864164], [790961.2745469159, 5753060.101656476]]}, "properties": {"id": "31686", "from": "510172516", "to": "512197424", "length_m": 245.96783442769978, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790961.2745469159, 5753060.101656476], [790719.5335190252, 5753105.504864164]]}, "properties": {"id": "31687", "from": "512197424", "to": "510172516", "length_m": 245.96783442769978, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790961.2745469159, 5753060.101656476], [790995.8315068836, 5753054.209488024]]}, "properties": {"id": "31688", "from": "512197424", "to": "510172682", "length_m": 35.05568611168073, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790995.8315068836, 5753054.209488024], [790961.2745469159, 5753060.101656476]]}, "properties": {"id": "31689", "from": "510172682", "to": "512197424", "length_m": 35.05568611168073, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790995.8315068836, 5753054.209488024], [791010.4713681766, 5753052.269915621]]}, "properties": {"id": "31690", "from": "510172682", "to": "848692885", "length_m": 14.767785155679073, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791010.4713681766, 5753052.269915621], [790995.8315068836, 5753054.209488024]]}, "properties": {"id": "31691", "from": "848692885", "to": "510172682", "length_m": 14.767785155679073, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791010.4713681766, 5753052.269915621], [791053.0573084746, 5753044.6763459025]]}, "properties": {"id": "31692", "from": "848692885", "to": "848692546", "length_m": 43.25765371849076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791053.0573084746, 5753044.6763459025], [791010.4713681766, 5753052.269915621]]}, "properties": {"id": "31693", "from": "848692546", "to": "848692885", "length_m": 43.25765371849076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791053.0573084746, 5753044.6763459025], [791117.8432898236, 5753015.597230084]]}, "properties": {"id": "31694-31696-31698-31700-31702", "from": "848692546", "to": "270452134", "length_m": 73.84190111952734, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788738.2303549927, 5773384.734620038], [788742.9275725666, 5773414.397305081]]}, "properties": {"id": "317", "from": "318835263", "to": "428721693", "length_m": 30.032294886897564, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791117.8432898236, 5753015.597230084], [791053.0573084746, 5753044.6763459025]]}, "properties": {"id": "31703-31701-31699-31697-31695", "from": "270452134", "to": "848692546", "length_m": 73.84190111952734, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790626.8445095096, 5753131.284351756], [790640.7341515735, 5753214.009952585]]}, "properties": {"id": "31704", "from": "510558294", "to": "512197808", "length_m": 83.88353344276487, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790640.7341515735, 5753214.009952585], [790626.8445095096, 5753131.284351756]]}, "properties": {"id": "31705", "from": "512197808", "to": "510558294", "length_m": 83.88353344276487, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790640.7341515735, 5753214.009952585], [790657.6173256331, 5753305.452681392]]}, "properties": {"id": "31706", "from": "512197808", "to": "512197806", "length_m": 92.98824768929661, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790657.6173256331, 5753305.452681392], [790640.7341515735, 5753214.009952585]]}, "properties": {"id": "31707", "from": "512197806", "to": "512197808", "length_m": 92.98824768929661, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790657.6173256331, 5753305.452681392], [790666.3683025254, 5753355.141911421]]}, "properties": {"id": "31708-31710", "from": "512197806", "to": "512197875", "length_m": 50.454149327191935, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790666.3683025254, 5753355.141911421], [790657.6173256331, 5753305.452681392]]}, "properties": {"id": "31711-31709", "from": "512197875", "to": "512197806", "length_m": 50.454149327191935, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790666.3683025254, 5753355.141911421], [790775.8947983291, 5753493.540295329]]}, "properties": {"id": "31712-31714-31716-31718-31720-31722", "from": "512197875", "to": "512199304", "length_m": 182.57704558218612, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790775.8947983291, 5753493.540295329], [790666.3683025254, 5753355.141911421]]}, "properties": {"id": "31723-31721-31719-31717-31715-31713", "from": "512199304", "to": "512197875", "length_m": 182.57704558218612, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790775.8947983291, 5753493.540295329], [790922.0994026486, 5753597.516069159]]}, "properties": {"id": "31724-31726", "from": "512199304", "to": "510173805", "length_m": 179.45029736564513, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790922.0994026486, 5753597.516069159], [790775.8947983291, 5753493.540295329]]}, "properties": {"id": "31727-31725", "from": "510173805", "to": "512199304", "length_m": 179.45029736564513, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790922.0994026486, 5753597.516069159], [791005.8774756519, 5753696.738661671]]}, "properties": {"id": "31728-31730-31732", "from": "510173805", "to": "510172024", "length_m": 130.43198102254843, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791005.8774756519, 5753696.738661671], [790922.0994026486, 5753597.516069159]]}, "properties": {"id": "31733-31731-31729", "from": "510172024", "to": "510173805", "length_m": 130.43198102254843, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791005.8774756519, 5753696.738661671], [791038.6160283054, 5753781.662934025]]}, "properties": {"id": "31734", "from": "510172024", "to": "510172059", "length_m": 91.01617899502888, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791038.6160283054, 5753781.662934025], [791005.8774756519, 5753696.738661671]]}, "properties": {"id": "31735", "from": "510172059", "to": "510172024", "length_m": 91.01617899502888, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789864.1523999549, 5751812.188837564], [789914.7205022224, 5751801.312917129]]}, "properties": {"id": "31736", "from": "510171345", "to": "510559455", "length_m": 51.724448816047804, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789914.7205022224, 5751801.312917129], [789961.0216808897, 5751791.801558552]]}, "properties": {"id": "31737", "from": "510559455", "to": "510171551", "length_m": 47.26801324374799, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789961.0216808897, 5751791.801558552], [790026.9623022848, 5751778.493859456]]}, "properties": {"id": "31738", "from": "510171551", "to": "510171295", "length_m": 67.27005567224701, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790026.9623022848, 5751778.493859456], [790157.0263897623, 5751753.698263697]]}, "properties": {"id": "31739", "from": "510171295", "to": "510559555", "length_m": 132.40652682202844, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790157.0263897623, 5751753.698263697], [790255.5112231162, 5751737.606108648]]}, "properties": {"id": "31740", "from": "510559555", "to": "510559570", "length_m": 99.7908804076322, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790255.5112231162, 5751737.606108648], [790336.9969211989, 5751721.568977992]]}, "properties": {"id": "31741", "from": "510559570", "to": "510558754", "length_m": 83.04883217359955, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760601.9078525802, 5762856.127298324], [760653.992051173, 5762827.039804813]]}, "properties": {"id": "31742", "from": "3755251619", "to": "3755251620", "length_m": 59.656064426463324, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760653.992051173, 5762827.039804813], [760601.9078525802, 5762856.127298324]]}, "properties": {"id": "31743", "from": "3755251620", "to": "3755251619", "length_m": 59.656064426463324, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790350.6461092948, 5751742.02855161], [790366.4282338871, 5751829.754471624]]}, "properties": {"id": "31744", "from": "845901952", "to": "510171596", "length_m": 89.13423859948394, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790366.4282338871, 5751829.754471624], [790350.6461092948, 5751742.02855161]]}, "properties": {"id": "31745", "from": "510171596", "to": "845901952", "length_m": 89.13423859948394, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790366.4282338871, 5751829.754471624], [790389.7096812981, 5751936.105136447]]}, "properties": {"id": "31746", "from": "510171596", "to": "2315614121", "length_m": 108.86914019097115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790389.7096812981, 5751936.105136447], [790366.4282338871, 5751829.754471624]]}, "properties": {"id": "31747", "from": "2315614121", "to": "510171596", "length_m": 108.86914019097115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761095.0872010285, 5763002.703935624], [761218.9297406, 5763087.438416237]]}, "properties": {"id": "31748", "from": "3755251621", "to": "3755251622", "length_m": 150.05634512368593, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761218.9297406, 5763087.438416237], [761095.0872010285, 5763002.703935624]]}, "properties": {"id": "31749", "from": "3755251622", "to": "3755251621", "length_m": 150.05634512368593, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790471.4536349163, 5752298.164174743], [790493.8848355606, 5752429.230771815]]}, "properties": {"id": "31750-31752", "from": "510558518", "to": "510173177", "length_m": 133.01696891651392, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790493.8848355606, 5752429.230771815], [790471.4536349163, 5752298.164174743]]}, "properties": {"id": "31753-31751", "from": "510173177", "to": "510558518", "length_m": 133.01696891651392, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790493.8848355606, 5752429.230771815], [790520.0420657897, 5752569.177072372]]}, "properties": {"id": "31754", "from": "510173177", "to": "510173156", "length_m": 142.3698272522443, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790520.0420657897, 5752569.177072372], [790493.8848355606, 5752429.230771815]]}, "properties": {"id": "31755", "from": "510173156", "to": "510173177", "length_m": 142.3698272522443, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790520.0420657897, 5752569.177072372], [790543.5999299997, 5752700.625387144]]}, "properties": {"id": "31756", "from": "510173156", "to": "510559771", "length_m": 133.54262392619512, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790543.5999299997, 5752700.625387144], [790520.0420657897, 5752569.177072372]]}, "properties": {"id": "31757", "from": "510559771", "to": "510173156", "length_m": 133.54262392619512, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835442.4925537761, 5818239.67649271], [835414.993617984, 5818309.03449692]]}, "properties": {"id": "31773-31774-31775-31776-31777-31778-31779-31780", "from": "2790078696", "to": "2790078690", "length_m": 80.6428926188516, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761584.5651021114, 5763729.356155853], [761699.7456935025, 5763778.509830354]]}, "properties": {"id": "31781-31783-31785-31787-31789-31791-31793-31795", "from": "559370757", "to": "559370766", "length_m": 128.59572207339858, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761699.7456935025, 5763778.509830354], [761584.5651021114, 5763729.356155853]]}, "properties": {"id": "31796-31794-31792-31790-31788-31786-31784-31782", "from": "559370766", "to": "559370757", "length_m": 128.59572207339858, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790336.9969211989, 5751721.568977992], [790342.0967081375, 5751724.619722359]]}, "properties": {"id": "31797", "from": "510558754", "to": "510558796", "length_m": 5.942631387939586, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790342.0967081375, 5751724.619722359], [790353.3414438624, 5751722.547712455]]}, "properties": {"id": "31798-31799", "from": "510558796", "to": "510558815", "length_m": 11.76836219321463, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790353.3414438624, 5751722.547712455], [790357.3057335202, 5751717.15891366]]}, "properties": {"id": "31800", "from": "510558815", "to": "510558928", "length_m": 6.689898735897064, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790357.3057335202, 5751717.15891366], [790354.7557850862, 5751704.446737387]]}, "properties": {"id": "31801-31802", "from": "510558928", "to": "510558832", "length_m": 13.48223356538516, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790354.7557850862, 5751704.446737387], [790349.5864114689, 5751701.165100979]]}, "properties": {"id": "31803", "from": "510558832", "to": "510558846", "length_m": 6.123035275268744, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790349.5864114689, 5751701.165100979], [790337.8477525697, 5751703.377150056]]}, "properties": {"id": "31804-31805", "from": "510558846", "to": "510558866", "length_m": 12.332522216208178, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790337.8477525697, 5751703.377150056], [790334.2438218314, 5751708.3194980575]]}, "properties": {"id": "31806", "from": "510558866", "to": "510558908", "length_m": 6.116790064188619, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790334.2438218314, 5751708.3194980575], [790336.9969211989, 5751721.568977992]]}, "properties": {"id": "31807-31808", "from": "510558908", "to": "510558754", "length_m": 14.129486492713848, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797009.3747870498, 5782066.954091974], [796668.5454476548, 5781557.4616894545]]}, "properties": {"id": "31809-31810-31811-31812-31813-31814-31815-31816-31817-31818-31819-31820-31821-52694-52695", "from": "1586646565", "to": "286389293", "length_m": 620.9467708866975, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762181.4308322023, 5762869.453258443], [762246.753330407, 5762916.158090954]]}, "properties": {"id": "31822", "from": "3755251589", "to": "3755251590", "length_m": 80.30174421243727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762246.753330407, 5762916.158090954], [762181.4308322023, 5762869.453258443]]}, "properties": {"id": "31823", "from": "3755251590", "to": "3755251589", "length_m": 80.30174421243727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762268.2085406908, 5762902.229747155], [762246.753330407, 5762916.158090954]]}, "properties": {"id": "31824-31826", "from": "3755251591", "to": "3755251590", "length_m": 25.617302011738733, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762246.753330407, 5762916.158090954], [762268.2085406908, 5762902.229747155]]}, "properties": {"id": "31827-31825", "from": "3755251590", "to": "3755251591", "length_m": 25.617302011738733, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762246.753330407, 5762916.158090954], [762223.9245820637, 5762956.119263554]]}, "properties": {"id": "31828-31830-31832", "from": "3755251590", "to": "3755251595", "length_m": 46.60926013560388, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762223.9245820637, 5762956.119263554], [762246.753330407, 5762916.158090954]]}, "properties": {"id": "31833-31831-31829", "from": "3755251595", "to": "3755251590", "length_m": 46.60926013560388, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760570.5127805402, 5762995.755381466], [760601.9078525802, 5762856.127298324]]}, "properties": {"id": "31834-31836-31838-31840", "from": "2982813930", "to": "3755251619", "length_m": 146.92111029850176, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760601.9078525802, 5762856.127298324], [760570.5127805402, 5762995.755381466]]}, "properties": {"id": "31841-31839-31837-31835", "from": "3755251619", "to": "2982813930", "length_m": 146.92111029850176, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760601.9078525802, 5762856.127298324], [760452.6548493403, 5762850.288028656]]}, "properties": {"id": "31842-31844-31846-31848-31850", "from": "3755251619", "to": "2982824137", "length_m": 160.11216574427635, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784242.877442449, 5748177.442629559], [784406.7302765225, 5749051.633907586]]}, "properties": {"id": "3185", "from": "310177062", "to": "508068035", "length_m": 889.4144933664735, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760452.6548493403, 5762850.288028656], [760601.9078525802, 5762856.127298324]]}, "properties": {"id": "31851-31849-31847-31845-31843", "from": "2982824137", "to": "3755251619", "length_m": 160.11216574427635, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784406.7302765225, 5749051.633907586], [784242.877442449, 5748177.442629559]]}, "properties": {"id": "3186", "from": "508068035", "to": "310177062", "length_m": 889.4144933664735, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790614.7297506537, 5753124.08500124], [790626.8445095096, 5753131.284351756]]}, "properties": {"id": "31864-31865-31866-31867-31868", "from": "510558255", "to": "510558294", "length_m": 15.656250937949812, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790626.8445095096, 5753131.284351756], [790633.8950666669, 5753120.160340159]]}, "properties": {"id": "31869-31870-31871-31872", "from": "510558294", "to": "510558352", "length_m": 14.366075289673764, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784406.7302765225, 5749051.633907586], [784534.0876722797, 5749638.55158832]]}, "properties": {"id": "3187-3189-3191", "from": "508068035", "to": "509914701", "length_m": 601.0715261069332, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790633.8950666669, 5753120.160340159], [790624.0887114727, 5753112.1442924235]]}, "properties": {"id": "31873-31874-31875-31876", "from": "510558352", "to": "510558403", "length_m": 13.70835048918007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790624.0887114727, 5753112.1442924235], [790614.7297506537, 5753124.08500124]]}, "properties": {"id": "31877-31878-31879-31880-31881", "from": "510558403", "to": "510558255", "length_m": 17.28946089652157, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790123.7207640486, 5751522.891568637], [790303.9495410782, 5751490.542067921]]}, "properties": {"id": "31882-31883", "from": "510176267", "to": "510558215", "length_m": 183.1608684946376, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790303.9495410782, 5751490.542067921], [790426.3839960112, 5751469.639631448]]}, "properties": {"id": "31884", "from": "510558215", "to": "510558231", "length_m": 124.20590784405157, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790426.3839960112, 5751469.639631448], [790440.8085494202, 5751466.66380999]]}, "properties": {"id": "31885", "from": "510558231", "to": "510559337", "length_m": 14.728314677501405, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790440.8085494202, 5751466.66380999], [790548.9096713937, 5751443.019095423]]}, "properties": {"id": "31886-31887", "from": "510559337", "to": "510558097", "length_m": 110.65704877461626, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762054.2446534907, 5763051.657744535], [762128.3624219209, 5763103.6786806]]}, "properties": {"id": "31888", "from": "3755251587", "to": "3755251588", "length_m": 90.55176062171613, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762128.3624219209, 5763103.6786806], [762054.2446534907, 5763051.657744535]]}, "properties": {"id": "31889", "from": "3755251588", "to": "3755251587", "length_m": 90.55176062171613, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791559.8557122461, 5754100.390164865], [791430.0633735559, 5754120.160278697]]}, "properties": {"id": "31902", "from": "512199041", "to": "518259935", "length_m": 131.2894074312413, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791430.0633735559, 5754120.160278697], [791559.8557122461, 5754100.390164865]]}, "properties": {"id": "31903", "from": "518259935", "to": "512199041", "length_m": 131.2894074312413, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791430.0633735559, 5754120.160278697], [791344.5801235416, 5754136.984098099]]}, "properties": {"id": "31904", "from": "518259935", "to": "518259905", "length_m": 87.12305610753633, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791344.5801235416, 5754136.984098099], [791430.0633735559, 5754120.160278697]]}, "properties": {"id": "31905", "from": "518259905", "to": "518259935", "length_m": 87.12305610753633, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791344.5801235416, 5754136.984098099], [791252.0885741203, 5754154.226599332]]}, "properties": {"id": "31906", "from": "518259905", "to": "822479567", "length_m": 94.08501753553425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791252.0885741203, 5754154.226599332], [791344.5801235416, 5754136.984098099]]}, "properties": {"id": "31907", "from": "822479567", "to": "518259905", "length_m": 94.08501753553425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791252.0885741203, 5754154.226599332], [791124.4020543259, 5754177.2945217285]]}, "properties": {"id": "31908", "from": "822479567", "to": "512199239", "length_m": 129.75352135947296, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791124.4020543259, 5754177.2945217285], [791252.0885741203, 5754154.226599332]]}, "properties": {"id": "31909", "from": "512199239", "to": "822479567", "length_m": 129.75352135947296, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837553.3388296532, 5814901.1782476455], [837579.6503891312, 5814973.767189164]]}, "properties": {"id": "31910-31911-31912", "from": "33302761", "to": "33302769", "length_m": 77.5276518495516, "freespeed_mps": 16.666666666666668, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791697.8821545937, 5754278.18396054], [791649.509754909, 5754204.096482492]]}, "properties": {"id": "31913-31915", "from": "518259993", "to": "518259870", "length_m": 88.79700265454662, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791649.509754909, 5754204.096482492], [791697.8821545937, 5754278.18396054]]}, "properties": {"id": "31916-31914", "from": "518259870", "to": "518259993", "length_m": 88.79700265454662, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791649.509754909, 5754204.096482492], [791581.8773823947, 5754136.928814006]]}, "properties": {"id": "31917", "from": "518259870", "to": "518259974", "length_m": 95.31858915478892, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791581.8773823947, 5754136.928814006], [791649.509754909, 5754204.096482492]]}, "properties": {"id": "31918", "from": "518259974", "to": "518259870", "length_m": 95.31858915478892, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791581.8773823947, 5754136.928814006], [791559.8557122461, 5754100.390164865]]}, "properties": {"id": "31919", "from": "518259974", "to": "512199041", "length_m": 42.66177245523726, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784534.0876722797, 5749638.55158832], [784406.7302765225, 5749051.633907586]]}, "properties": {"id": "3192-3190-3188", "from": "509914701", "to": "508068035", "length_m": 601.0715261069332, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791559.8557122461, 5754100.390164865], [791581.8773823947, 5754136.928814006]]}, "properties": {"id": "31920", "from": "512199041", "to": "518259974", "length_m": 42.66177245523726, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837579.6503891312, 5814973.767189164], [837617.9454296485, 5815006.779131224]]}, "properties": {"id": "31921-31922-31923-31924-31925", "from": "33302769", "to": "33302747", "length_m": 52.238818403280504, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760653.3281387425, 5758903.163229804], [760368.9154593371, 5759333.2281221915]]}, "properties": {"id": "31929-31927-55386-55384-55382-55380", "from": "36693740", "to": "36693738", "length_m": 516.2315343703251, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784534.0876722797, 5749638.55158832], [784542.0971598532, 5749765.522633855]]}, "properties": {"id": "3193-3195-3197-3199-3201-3203-3205-3207", "from": "509914701", "to": "498837819", "length_m": 127.79809407464575, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760653.3281387425, 5758903.163229804], [760836.0979513626, 5757325.216856659]]}, "properties": {"id": "31930-31932-31934-31936-31938", "from": "36693740", "to": "36693742", "length_m": 1592.8252449365257, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760836.0979513626, 5757325.216856659], [760653.3281387425, 5758903.163229804]]}, "properties": {"id": "31939-31937-31935-31933-31931", "from": "36693742", "to": "36693740", "length_m": 1592.8252449365257, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760836.0979513626, 5757325.216856659], [760657.4903283372, 5756748.507106248]]}, "properties": {"id": "31940-31942-31944-31946-31948-31950-31952-31954", "from": "36693742", "to": "177787414", "length_m": 612.1510124816734, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760657.4903283372, 5756748.507106248], [760836.0979513626, 5757325.216856659]]}, "properties": {"id": "31955-31953-31951-31949-31947-31945-31943-31941", "from": "177787414", "to": "36693742", "length_m": 612.1510124816734, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760657.4903283372, 5756748.507106248], [760405.1282011687, 5756157.529579852]]}, "properties": {"id": "31956", "from": "177787414", "to": "5652392372", "length_m": 642.6049168245681, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760405.1282011687, 5756157.529579852], [760657.4903283372, 5756748.507106248]]}, "properties": {"id": "31957", "from": "5652392372", "to": "177787414", "length_m": 642.6049168245681, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760405.1282011687, 5756157.529579852], [760209.3986784212, 5755688.596132609]]}, "properties": {"id": "31958-31960-31962", "from": "5652392372", "to": "36693745", "length_m": 508.1490483868039, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760209.3986784212, 5755688.596132609], [760405.1282011687, 5756157.529579852]]}, "properties": {"id": "31963-31961-31959", "from": "36693745", "to": "5652392372", "length_m": 508.1490483868039, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760209.3986784212, 5755688.596132609], [760042.3865292829, 5754774.602011525]]}, "properties": {"id": "31964-31966-31968", "from": "36693745", "to": "5652392371", "length_m": 929.2500267900532, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760042.3865292829, 5754774.602011525], [760209.3986784212, 5755688.596132609]]}, "properties": {"id": "31969-31967-31965", "from": "5652392371", "to": "36693745", "length_m": 929.2500267900532, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760042.3865292829, 5754774.602011525], [759882.7440317313, 5753881.812571698]]}, "properties": {"id": "31970", "from": "5652392371", "to": "5652392369", "length_m": 906.9502248582551, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759882.7440317313, 5753881.812571698], [760042.3865292829, 5754774.602011525]]}, "properties": {"id": "31971", "from": "5652392369", "to": "5652392371", "length_m": 906.9502248582551, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759882.7440317313, 5753881.812571698], [759768.1568387621, 5753264.485672909]]}, "properties": {"id": "31972", "from": "5652392369", "to": "535080581", "length_m": 627.8715828151021, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759768.1568387621, 5753264.485672909], [759882.7440317313, 5753881.812571698]]}, "properties": {"id": "31973", "from": "535080581", "to": "5652392369", "length_m": 627.8715828151021, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759768.1568387621, 5753264.485672909], [759502.5321284324, 5752520.288784297]]}, "properties": {"id": "31974-31976-31978", "from": "535080581", "to": "36693749", "length_m": 811.9930638543894, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759502.5321284324, 5752520.288784297], [759768.1568387621, 5753264.485672909]]}, "properties": {"id": "31979-31977-31975", "from": "36693749", "to": "535080581", "length_m": 811.9930638543894, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759502.5321284324, 5752520.288784297], [759115.981597441, 5752131.895269056]]}, "properties": {"id": "31980-31982-31984-31986", "from": "36693749", "to": "917854710", "length_m": 564.4943165987561, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759115.981597441, 5752131.895269056], [759502.5321284324, 5752520.288784297]]}, "properties": {"id": "31987-31985-31983-31981", "from": "917854710", "to": "36693749", "length_m": 564.4943165987561, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759115.981597441, 5752131.895269056], [758854.9245720606, 5751296.684263565]]}, "properties": {"id": "31988", "from": "917854710", "to": "811082329", "length_m": 875.0589655431493, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758854.9245720606, 5751296.684263565], [759115.981597441, 5752131.895269056]]}, "properties": {"id": "31989", "from": "811082329", "to": "917854710", "length_m": 875.0589655431493, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758854.9245720606, 5751296.684263565], [758680.5470942779, 5750784.14270521]]}, "properties": {"id": "31990-31992-31994-31996-31998-32000", "from": "811082329", "to": "36697620", "length_m": 542.5029773202521, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758680.5470942779, 5750784.14270521], [758854.9245720606, 5751296.684263565]]}, "properties": {"id": "32001-31999-31997-31995-31993-31991", "from": "36697620", "to": "811082329", "length_m": 542.5029773202521, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758680.5470942779, 5750784.14270521], [758282.8023406076, 5750430.442994335]]}, "properties": {"id": "32002-32004-32006-32008-32010-32012-32014-32016-32018-32020", "from": "36697620", "to": "75320575", "length_m": 534.7886315421848, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758282.8023406076, 5750430.442994335], [758680.5470942779, 5750784.14270521]]}, "properties": {"id": "32021-32019-32017-32015-32013-32011-32009-32007-32005-32003", "from": "75320575", "to": "36697620", "length_m": 534.7886315421848, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758282.8023406076, 5750430.442994335], [757757.8706850726, 5750034.174782505]]}, "properties": {"id": "32022-32024-32026-32028-32030", "from": "75320575", "to": "36697622", "length_m": 668.5668700739587, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757757.8706850726, 5750034.174782505], [758282.8023406076, 5750430.442994335]]}, "properties": {"id": "32031-32029-32027-32025-32023", "from": "36697622", "to": "75320575", "length_m": 668.5668700739587, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757757.8706850726, 5750034.174782505], [757624.0224880527, 5749524.88722135]]}, "properties": {"id": "32032-32034-32036-32038-26977-26979-26981", "from": "36697622", "to": "524143381", "length_m": 531.8356347323006, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732578.6967159661, 5708556.366793395], [732074.4638974043, 5707722.182440526]]}, "properties": {"id": "32040-32042-32044-32046-32048-32050-32052-32054", "from": "2882838082", "to": "861264089", "length_m": 981.474966545803, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732074.4638974043, 5707722.182440526], [732578.6967159661, 5708556.366793395]]}, "properties": {"id": "32055-32053-32051-32049-32047-32045-32043-32041", "from": "861264089", "to": "2882838082", "length_m": 981.474966545803, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836725.5678682034, 5805407.990097676], [836473.8111014753, 5804208.199092578]]}, "properties": {"id": "32059-32060-32061-32062-32063-32064-32065-32066-32067-32068-32069-32070-32071-32072-32073-32074-32075-32076-32077", "from": "2506831437", "to": "3040323344", "length_m": 1240.6916963810704, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836473.8111014753, 5804208.199092578], [836374.5662673359, 5804089.1841860665]]}, "properties": {"id": "32078-32079-32080-32081-32082-32083", "from": "3040323344", "to": "1763046589", "length_m": 155.0763400286284, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784542.0971598532, 5749765.522633855], [784534.0876722797, 5749638.55158832]]}, "properties": {"id": "3208-3206-3204-3202-3200-3198-3196-3194", "from": "498837819", "to": "509914701", "length_m": 127.79809407464575, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837520.0051836439, 5815249.377533218], [837536.8144731394, 5815246.742577625]]}, "properties": {"id": "32084", "from": "33302740", "to": "33302739", "length_m": 17.01455850939939, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784542.0971598532, 5749765.522633855], [784653.8455355375, 5750363.804296993]]}, "properties": {"id": "3209-3211-3213-3215", "from": "498837819", "to": "37685198", "length_m": 608.6533522152979, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[839215.8974266173, 5817549.031218974], [839286.4619602594, 5817533.683078646]]}, "properties": {"id": "32097-32098-32099-32100-32101-32102", "from": "304725630", "to": "236890836", "length_m": 79.4867492023397, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837124.4923575546, 5806988.894764103], [837065.8488579642, 5806971.820115928]]}, "properties": {"id": "32109-32110", "from": "4006753156", "to": "253521108", "length_m": 61.10998412578532, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837124.4923575546, 5806988.894764103], [837158.7892247571, 5807022.6808523275]]}, "properties": {"id": "32111-32112", "from": "4006753156", "to": "36022318", "length_m": 49.335220604316405, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837124.4923575546, 5806988.894764103], [837123.223841357, 5806939.085788556]]}, "properties": {"id": "32114-32115-32116", "from": "4006753156", "to": "1833721693", "length_m": 51.85270792174457, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837025.4692230518, 5806421.047594052], [837023.7770399626, 5806448.582878754]]}, "properties": {"id": "32117-32118-32119", "from": "3989374887", "to": "3989374893", "length_m": 28.21441757101505, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837025.4692230518, 5806421.047594052], [837036.3665570645, 5806421.5899469815]]}, "properties": {"id": "32120-32121", "from": "3989374887", "to": "254230219", "length_m": 11.110966740695202, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790812.5835654524, 5753803.348704928], [790750.9841070055, 5753849.137305214]]}, "properties": {"id": "32122-32124-32126", "from": "512199825", "to": "512199938", "length_m": 78.71898021847127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790750.9841070055, 5753849.137305214], [790812.5835654524, 5753803.348704928]]}, "properties": {"id": "32127-32125-32123", "from": "512199938", "to": "512199825", "length_m": 78.71898021847127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790750.9841070055, 5753849.137305214], [790724.7302286574, 5753929.074323178]]}, "properties": {"id": "32128-32130", "from": "512199938", "to": "512199583", "length_m": 84.32422302932727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790724.7302286574, 5753929.074323178], [790750.9841070055, 5753849.137305214]]}, "properties": {"id": "32131-32129", "from": "512199583", "to": "512199938", "length_m": 84.32422302932727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790724.7302286574, 5753929.074323178], [790675.9972938078, 5754009.020569877]]}, "properties": {"id": "32132-32134", "from": "512199583", "to": "512199892", "length_m": 94.02171987134074, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790675.9972938078, 5754009.020569877], [790724.7302286574, 5753929.074323178]]}, "properties": {"id": "32135-32133", "from": "512199892", "to": "512199583", "length_m": 94.02171987134074, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790675.9972938078, 5754009.020569877], [790645.18945969, 5754044.729671556]]}, "properties": {"id": "32136", "from": "512199892", "to": "512199956", "length_m": 47.1620884600515, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790645.18945969, 5754044.729671556], [790675.9972938078, 5754009.020569877]]}, "properties": {"id": "32137", "from": "512199956", "to": "512199892", "length_m": 47.1620884600515, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751781.6663780427, 5840295.770807716], [751794.9890976109, 5840292.389579629]]}, "properties": {"id": "32138", "from": "364001283", "to": "356613593", "length_m": 13.745092174813651, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751794.9890976109, 5840292.389579629], [751781.6663780427, 5840295.770807716]]}, "properties": {"id": "32139", "from": "356613593", "to": "364001283", "length_m": 13.745092174813651, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760454.855390273, 5762561.472383756], [760452.6548493403, 5762850.288028656]]}, "properties": {"id": "32140-32142-32144-32146-32148", "from": "5857617039", "to": "2982824137", "length_m": 291.17226463186137, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760452.6548493403, 5762850.288028656], [760454.855390273, 5762561.472383756]]}, "properties": {"id": "32149-32147-32145-32143-32141", "from": "2982824137", "to": "5857617039", "length_m": 291.17226463186137, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760452.6548493403, 5762850.288028656], [760570.5127805402, 5762995.755381466]]}, "properties": {"id": "32150-32152-1280-1282", "from": "2982824137", "to": "2982813930", "length_m": 215.2674322960233, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761538.2126341189, 5763810.91826606], [761436.5607133465, 5764136.992211868]]}, "properties": {"id": "32154-32156-32158-32160-32162", "from": "559370749", "to": "3755251467", "length_m": 345.4665200982691, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784653.8455355375, 5750363.804296993], [784542.0971598532, 5749765.522633855]]}, "properties": {"id": "3216-3214-3212-3210", "from": "37685198", "to": "498837819", "length_m": 608.6533522152979, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761436.5607133465, 5764136.992211868], [761538.2126341189, 5763810.91826606]]}, "properties": {"id": "32163-32161-32159-32157-32155", "from": "3755251467", "to": "559370749", "length_m": 345.4665200982691, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788933.6177354187, 5764706.179859539], [788935.6908142897, 5764716.608727037]]}, "properties": {"id": "32164", "from": "3726903744", "to": "3527871426", "length_m": 10.632917438107958, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788935.6908142897, 5764716.608727037], [788933.6177354187, 5764706.179859539]]}, "properties": {"id": "32165", "from": "3527871426", "to": "3726903744", "length_m": 10.632917438107958, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836673.9716642074, 5805167.273658204], [836784.7033648158, 5805952.600032542]]}, "properties": {"id": "32171-32085-32086-32087-32088-32089-32090-32091-32092-32093-32094-32095-32096", "from": "32549429", "to": "5642286722", "length_m": 794.9713974347305, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797561.2429809852, 5826683.119214311], [797194.5883073409, 5827374.634899827]]}, "properties": {"id": "32172-32173", "from": "35094589", "to": "317107572", "length_m": 782.7597824349366, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797194.5883073409, 5827374.634899827], [797059.1649095229, 5827884.624780193]]}, "properties": {"id": "32174-32175-32176-32177-32178", "from": "317107572", "to": "317107726", "length_m": 532.0771539735174, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797059.1649095229, 5827884.624780193], [797083.3804257602, 5828410.958707405]]}, "properties": {"id": "32179-5442-5443-5444-21857-21858", "from": "317107726", "to": "175092565", "length_m": 527.3336166376666, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791710.1462303144, 5753452.396917186], [791654.3485565202, 5753529.3824169235]]}, "properties": {"id": "32180", "from": "512198174", "to": "512198151", "length_m": 95.07969073162535, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791654.3485565202, 5753529.3824169235], [791710.1462303144, 5753452.396917186]]}, "properties": {"id": "32181", "from": "512198151", "to": "512198174", "length_m": 95.07969073162535, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791654.3485565202, 5753529.3824169235], [791598.7974511064, 5753602.801812656]]}, "properties": {"id": "32182", "from": "512198151", "to": "512198139", "length_m": 92.06700277299176, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791598.7974511064, 5753602.801812656], [791654.3485565202, 5753529.3824169235]]}, "properties": {"id": "32183", "from": "512198139", "to": "512198151", "length_m": 92.06700277299176, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791598.7974511064, 5753602.801812656], [791537.3631453239, 5753677.011223532]]}, "properties": {"id": "32184-32186", "from": "512198139", "to": "512198085", "length_m": 96.4670345832165, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791537.3631453239, 5753677.011223532], [791598.7974511064, 5753602.801812656]]}, "properties": {"id": "32187-32185", "from": "512198085", "to": "512198139", "length_m": 96.4670345832165, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791537.3631453239, 5753677.011223532], [791476.1560915703, 5753696.205358518]]}, "properties": {"id": "32188-32190", "from": "512198085", "to": "512198048", "length_m": 64.46312505833211, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791476.1560915703, 5753696.205358518], [791537.3631453239, 5753677.011223532]]}, "properties": {"id": "32191-32189", "from": "512198048", "to": "512198085", "length_m": 64.46312505833211, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791476.1560915703, 5753696.205358518], [791342.1411630828, 5753729.809312233]]}, "properties": {"id": "32192-32194", "from": "512198048", "to": "512198007", "length_m": 138.17867074775899, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791342.1411630828, 5753729.809312233], [791476.1560915703, 5753696.205358518]]}, "properties": {"id": "32195-32193", "from": "512198007", "to": "512198048", "length_m": 138.17867074775899, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791342.1411630828, 5753729.809312233], [791239.9572615933, 5753735.06477427]]}, "properties": {"id": "32196-32198", "from": "512198007", "to": "510173498", "length_m": 102.50051129894888, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791239.9572615933, 5753735.06477427], [791342.1411630828, 5753729.809312233]]}, "properties": {"id": "32199-32197", "from": "510173498", "to": "512198007", "length_m": 102.50051129894888, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791239.9572615933, 5753735.06477427], [791204.4390411105, 5753742.548454266]]}, "properties": {"id": "32200", "from": "510173498", "to": "510173530", "length_m": 36.29806395599166, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791204.4390411105, 5753742.548454266], [791239.9572615933, 5753735.06477427]]}, "properties": {"id": "32201", "from": "510173530", "to": "510173498", "length_m": 36.29806395599166, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791204.4390411105, 5753742.548454266], [791038.6160283054, 5753781.662934025]]}, "properties": {"id": "32202", "from": "510173530", "to": "510172059", "length_m": 170.3737479447355, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791038.6160283054, 5753781.662934025], [791204.4390411105, 5753742.548454266]]}, "properties": {"id": "32203", "from": "510172059", "to": "510173530", "length_m": 170.3737479447355, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834707.6507941913, 5812680.318071239], [834515.9064260232, 5812805.091000039]]}, "properties": {"id": "32204-32205-32206", "from": "36026393", "to": "321682639", "length_m": 228.89344030205257, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834515.9064260232, 5812805.091000039], [834428.2634227674, 5812842.300690196]]}, "properties": {"id": "32207-32208", "from": "321682639", "to": "268172123", "length_m": 95.44544177253889, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834428.2634227674, 5812842.300690196], [834376.434208619, 5812855.10389199]]}, "properties": {"id": "32209-32210-32211", "from": "268172123", "to": "268170275", "length_m": 53.4423141276071, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798780.1042179911, 5826012.3172181565], [797929.8730653678, 5826191.059874679]]}, "properties": {"id": "32212-22308-22309-22310-22311-22312-22313", "from": "175089739", "to": "317107519", "length_m": 895.7705359362457, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732074.4638974043, 5707722.182440526], [731932.912737311, 5707256.270641802]]}, "properties": {"id": "32213-32215-32217-9209-9211", "from": "861264089", "to": "249074021", "length_m": 487.5869086258461, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751796.059391847, 5840283.3595119435], [751783.1632370076, 5840285.350391282]]}, "properties": {"id": "32219", "from": "1140362179", "to": "2282481505", "length_m": 13.048923678563586, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751783.1632370076, 5840285.350391282], [751796.059391847, 5840283.3595119435]]}, "properties": {"id": "32220", "from": "2282481505", "to": "1140362179", "length_m": 13.048923678563586, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791819.164300083, 5753516.110472971], [791821.5632977043, 5753504.964576266]]}, "properties": {"id": "32222-32223-32224", "from": "512200715", "to": "2075578416", "length_m": 11.722443001139544, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791821.5632977043, 5753504.964576266], [791795.6477467674, 5753502.156060477]]}, "properties": {"id": "32225-32226-32227-32228-32229-32230-32231-32232", "from": "2075578416", "to": "617928632", "length_m": 34.06270894562387, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791795.6477467674, 5753502.156060477], [791796.200627988, 5753514.54008783]]}, "properties": {"id": "32233-32234-32235", "from": "617928632", "to": "512200692", "length_m": 12.838749769907977, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791796.200627988, 5753514.54008783], [791800.7757514799, 5753519.7430576645]]}, "properties": {"id": "32236-32237", "from": "512200692", "to": "617928631", "length_m": 6.978787583702689, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791800.7757514799, 5753519.7430576645], [791813.1323540778, 5753521.230190617]]}, "properties": {"id": "32238-32239-32240", "from": "617928631", "to": "36701492", "length_m": 12.65534191031865, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791813.1323540778, 5753521.230190617], [791819.164300083, 5753516.110472971]]}, "properties": {"id": "32241-32242-32221", "from": "36701492", "to": "512200715", "length_m": 7.958318835413384, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791838.7266692279, 5753521.449430184], [792033.1133362765, 5753609.570410871]]}, "properties": {"id": "32243-32245-32247-32249", "from": "512200738", "to": "512200354", "length_m": 213.43562420493146, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792033.1133362765, 5753609.570410871], [791838.7266692279, 5753521.449430184]]}, "properties": {"id": "32250-32248-32246-32244", "from": "512200354", "to": "512200738", "length_m": 213.43562420493146, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792033.1133362765, 5753609.570410871], [792162.9207628805, 5753662.046210633]]}, "properties": {"id": "32251-32253-32255", "from": "512200354", "to": "512200438", "length_m": 140.1268600626457, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792162.9207628805, 5753662.046210633], [792033.1133362765, 5753609.570410871]]}, "properties": {"id": "32256-32254-32252", "from": "512200438", "to": "512200354", "length_m": 140.1268600626457, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792162.9207628805, 5753662.046210633], [792248.7054553466, 5753694.084950192]]}, "properties": {"id": "32257", "from": "512200438", "to": "512200465", "length_m": 91.57234421677192, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792248.7054553466, 5753694.084950192], [792162.9207628805, 5753662.046210633]]}, "properties": {"id": "32258", "from": "512200465", "to": "512200438", "length_m": 91.57234421677192, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792248.7054553466, 5753694.084950192], [792333.2942978498, 5753724.032125055]]}, "properties": {"id": "32259", "from": "512200465", "to": "512200503", "length_m": 89.73352495563387, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833416.807633714, 5821036.256586455], [833410.4314504482, 5821016.2111620745]]}, "properties": {"id": "3226", "from": "255031363", "to": "255031354", "length_m": 21.035083784927096, "freespeed_mps": 19.444444444444443, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792333.2942978498, 5753724.032125055], [792248.7054553466, 5753694.084950192]]}, "properties": {"id": "32260", "from": "512200503", "to": "512200465", "length_m": 89.73352495563387, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792333.2942978498, 5753724.032125055], [792536.2915297013, 5753798.136632494]]}, "properties": {"id": "32261-32263-32265-32267-32269-32271-32273", "from": "512200503", "to": "845901841", "length_m": 216.10883525515354, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792536.2915297013, 5753798.136632494], [792333.2942978498, 5753724.032125055]]}, "properties": {"id": "32274-32272-32270-32268-32266-32264-32262", "from": "845901841", "to": "512200503", "length_m": 216.10883525515354, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792299.9308156288, 5753812.5137974555], [792385.027979112, 5753836.873643855]]}, "properties": {"id": "32275-32277", "from": "512200507", "to": "512200670", "length_m": 90.45463759002286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792385.027979112, 5753836.873643855], [792299.9308156288, 5753812.5137974555]]}, "properties": {"id": "32278-32276", "from": "512200670", "to": "512200507", "length_m": 90.45463759002286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828283.956380235, 5801513.193088238], [827246.4489830716, 5801226.304120931]]}, "properties": {"id": "32279-28123-53772-31027", "from": "34219992", "to": "29319958", "length_m": 1076.4697585994836, "freespeed_mps": 27.77777777777778, "capacity_vph": 10000.0, "lanes": 5.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792134.6568458313, 5755301.570334726], [792145.3992299738, 5755311.862904554]]}, "properties": {"id": "32280-32282-32284-32286", "from": "5421428363", "to": "5421428364", "length_m": 15.545467018009761, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792145.3992299738, 5755311.862904554], [792134.6568458313, 5755301.570334726]]}, "properties": {"id": "32287-32285-32283-32281", "from": "5421428364", "to": "5421428363", "length_m": 15.545467018009761, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792145.3992299738, 5755311.862904554], [792151.0622165652, 5755284.649235929]]}, "properties": {"id": "32288-32290-32292-32294-32296-32298-32300-32302-32304", "from": "5421428364", "to": "5421428361", "length_m": 39.035050620177046, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792151.0622165652, 5755284.649235929], [792145.3992299738, 5755311.862904554]]}, "properties": {"id": "32305-32303-32301-32299-32297-32295-32293-32291-32289", "from": "5421428361", "to": "5421428364", "length_m": 39.035050620177046, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792151.0622165652, 5755284.649235929], [792138.426204025, 5755286.651380573]]}, "properties": {"id": "32306-32308-32310", "from": "5421428361", "to": "5421428360", "length_m": 13.448320989268353, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792138.426204025, 5755286.651380573], [792151.0622165652, 5755284.649235929]]}, "properties": {"id": "32311-32309-32307", "from": "5421428360", "to": "5421428361", "length_m": 13.448320989268353, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792138.426204025, 5755286.651380573], [792134.6568458313, 5755301.570334726]]}, "properties": {"id": "32312-32314-32316-32318", "from": "5421428360", "to": "5421428363", "length_m": 16.119770791169216, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792134.6568458313, 5755301.570334726], [792138.426204025, 5755286.651380573]]}, "properties": {"id": "32319-32317-32315-32313", "from": "5421428363", "to": "5421428360", "length_m": 16.119770791169216, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791989.105373905, 5753796.967847069], [791972.1352231633, 5753909.05142141]]}, "properties": {"id": "32320-32322-32324", "from": "512200540", "to": "512200557", "length_m": 115.25368516895708, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791972.1352231633, 5753909.05142141], [791989.105373905, 5753796.967847069]]}, "properties": {"id": "32325-32323-32321", "from": "512200557", "to": "512200540", "length_m": 115.25368516895708, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791972.1352231633, 5753909.05142141], [791979.7529197938, 5753915.322407613]]}, "properties": {"id": "32326", "from": "512200557", "to": "512200559", "length_m": 9.866841918217313, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791979.7529197938, 5753915.322407613], [791972.1352231633, 5753909.05142141]]}, "properties": {"id": "32327", "from": "512200559", "to": "512200557", "length_m": 9.866841918217313, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792333.2942978498, 5753724.032125055], [792299.9308156288, 5753812.5137974555]]}, "properties": {"id": "32328", "from": "512200503", "to": "512200507", "length_m": 94.56282735943077, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792299.9308156288, 5753812.5137974555], [792333.2942978498, 5753724.032125055]]}, "properties": {"id": "32329", "from": "512200507", "to": "512200503", "length_m": 94.56282735943077, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792299.9308156288, 5753812.5137974555], [792091.2306834604, 5753843.5220305715]]}, "properties": {"id": "32330-32332-32334-32336-32338-32340-32342-32344", "from": "512200507", "to": "512200536", "length_m": 234.00516434191974, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792091.2306834604, 5753843.5220305715], [792299.9308156288, 5753812.5137974555]]}, "properties": {"id": "32345-32343-32341-32339-32337-32335-32333-32331", "from": "512200536", "to": "512200507", "length_m": 234.00516434191974, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792091.2306834604, 5753843.5220305715], [791989.105373905, 5753796.967847069]]}, "properties": {"id": "32346", "from": "512200536", "to": "512200540", "length_m": 112.23578199277163, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791989.105373905, 5753796.967847069], [792091.2306834604, 5753843.5220305715]]}, "properties": {"id": "32347", "from": "512200540", "to": "512200536", "length_m": 112.23578199277163, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791989.105373905, 5753796.967847069], [791857.4486578916, 5753786.836436557]]}, "properties": {"id": "32348-32350-32352", "from": "512200540", "to": "512200554", "length_m": 136.93851325167083, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791857.4486578916, 5753786.836436557], [791989.105373905, 5753796.967847069]]}, "properties": {"id": "32353-32351-32349", "from": "512200554", "to": "512200540", "length_m": 136.93851325167083, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792248.7054553466, 5753694.084950192], [792222.7814761143, 5753763.134978046]]}, "properties": {"id": "32354", "from": "512200465", "to": "512200486", "length_m": 73.75607810771591, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792222.7814761143, 5753763.134978046], [792248.7054553466, 5753694.084950192]]}, "properties": {"id": "32355", "from": "512200486", "to": "512200465", "length_m": 73.75607810771591, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792078.1249812677, 5753883.053548265], [792067.2191646077, 5753888.038613467]]}, "properties": {"id": "32356", "from": "512200588", "to": "512200634", "length_m": 11.991151377694168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792067.2191646077, 5753888.038613467], [792078.1249812677, 5753883.053548265]]}, "properties": {"id": "32357", "from": "512200634", "to": "512200588", "length_m": 11.991151377694168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732072.1405797028, 5706548.412548565], [732056.5886227835, 5706527.560148765]]}, "properties": {"id": "3237-3239", "from": "861264206", "to": "861264069", "length_m": 26.271224421557314, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792091.2306834604, 5753843.5220305715], [792078.1249812677, 5753883.053548265]]}, "properties": {"id": "32370", "from": "512200536", "to": "512200588", "length_m": 41.64733275795219, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792078.1249812677, 5753883.053548265], [792091.2306834604, 5753843.5220305715]]}, "properties": {"id": "32371", "from": "512200588", "to": "512200536", "length_m": 41.64733275795219, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792078.1249812677, 5753883.053548265], [792082.7470147547, 5753891.477969171]]}, "properties": {"id": "32372", "from": "512200588", "to": "512200614", "length_m": 9.609061385560462, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792082.7470147547, 5753891.477969171], [792078.1249812677, 5753883.053548265]]}, "properties": {"id": "32373", "from": "512200614", "to": "512200588", "length_m": 9.609061385560462, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791972.1352231633, 5753909.05142141], [791965.8775718207, 5753916.168931547]]}, "properties": {"id": "32378", "from": "512200557", "to": "512200573", "length_m": 9.477191103404008, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791965.8775718207, 5753916.168931547], [791972.1352231633, 5753909.05142141]]}, "properties": {"id": "32379", "from": "512200573", "to": "512200557", "length_m": 9.477191103404008, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792440.5583271749, 5756887.384782911], [792145.3992299738, 5755311.862904554]]}, "properties": {"id": "32381", "from": "36701491", "to": "5421428364", "length_m": 1602.9310898877366, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792145.3992299738, 5755311.862904554], [792440.5583271749, 5756887.384782911]]}, "properties": {"id": "32382", "from": "5421428364", "to": "36701491", "length_m": 1602.9310898877366, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791081.5450217123, 5753991.058907774], [790960.1504814547, 5754065.680412997]]}, "properties": {"id": "32383-32385-32387-32389", "from": "512200110", "to": "512200165", "length_m": 154.46449717547296, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790960.1504814547, 5754065.680412997], [791081.5450217123, 5753991.058907774]]}, "properties": {"id": "32390-32388-32386-32384", "from": "512200165", "to": "512200110", "length_m": 154.46449717547296, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790960.1504814547, 5754065.680412997], [790765.2713350398, 5754041.782696327]]}, "properties": {"id": "32391-32393-32395-32397-32399-32401", "from": "512200165", "to": "512199875", "length_m": 242.33971453540627, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732056.5886227835, 5706527.560148765], [732072.1405797028, 5706548.412548565]]}, "properties": {"id": "3240-3238", "from": "861264069", "to": "861264206", "length_m": 26.271224421557314, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790765.2713350398, 5754041.782696327], [790960.1504814547, 5754065.680412997]]}, "properties": {"id": "32402-32400-32398-32396-32394-32392", "from": "512199875", "to": "512200165", "length_m": 242.33971453540627, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790821.803528508, 5753956.664405608], [790884.2375851566, 5754016.8672663355]]}, "properties": {"id": "32403-32405-32407-32409-32411", "from": "512199861", "to": "512200087", "length_m": 127.94738554543326, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833399.8065570304, 5821042.314114787], [833407.2662277416, 5821067.96416049]]}, "properties": {"id": "3241-3242", "from": "255031362", "to": "603462880", "length_m": 26.7127607872455, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790884.2375851566, 5754016.8672663355], [790821.803528508, 5753956.664405608]]}, "properties": {"id": "32412-32410-32408-32406-32404", "from": "512200087", "to": "512199861", "length_m": 127.94738554543326, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790834.5137407868, 5753886.551322361], [790883.3305792464, 5753884.069542348]]}, "properties": {"id": "32413", "from": "512199837", "to": "512200000", "length_m": 48.87988271539127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790883.3305792464, 5753884.069542348], [790834.5137407868, 5753886.551322361]]}, "properties": {"id": "32414", "from": "512200000", "to": "512199837", "length_m": 48.87988271539127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790750.9841070055, 5753849.137305214], [790612.388467676, 5753776.316239486]]}, "properties": {"id": "32415-32417-32419", "from": "512199938", "to": "512199981", "length_m": 162.01847649591446, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790612.388467676, 5753776.316239486], [790750.9841070055, 5753849.137305214]]}, "properties": {"id": "32420-32418-32416", "from": "512199981", "to": "512199938", "length_m": 162.01847649591446, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792162.9207628805, 5753662.046210633], [792130.537335761, 5753753.692613557]]}, "properties": {"id": "32421", "from": "512200438", "to": "512200461", "length_m": 97.19953469268202, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792130.537335761, 5753753.692613557], [792162.9207628805, 5753662.046210633]]}, "properties": {"id": "32422", "from": "512200461", "to": "512200438", "length_m": 97.19953469268202, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791994.0495846253, 5753697.645543253], [792050.9017766691, 5753723.641917926]]}, "properties": {"id": "32423", "from": "512200369", "to": "512200414", "length_m": 62.513864111947036, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792050.9017766691, 5753723.641917926], [791994.0495846253, 5753697.645543253]]}, "properties": {"id": "32424", "from": "512200414", "to": "512200369", "length_m": 62.513864111947036, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792033.1133362765, 5753609.570410871], [791994.0495846253, 5753697.645543253]]}, "properties": {"id": "32425", "from": "512200354", "to": "512200369", "length_m": 96.3493936487143, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791994.0495846253, 5753697.645543253], [792033.1133362765, 5753609.570410871]]}, "properties": {"id": "32426", "from": "512200369", "to": "512200354", "length_m": 96.3493936487143, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791994.0495846253, 5753697.645543253], [791938.9772509706, 5753674.363097642]]}, "properties": {"id": "32427", "from": "512200369", "to": "512200382", "length_m": 59.79158954768361, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791938.9772509706, 5753674.363097642], [791994.0495846253, 5753697.645543253]]}, "properties": {"id": "32428", "from": "512200382", "to": "512200369", "length_m": 59.79158954768361, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790960.1504814547, 5754065.680412997], [791008.5864414473, 5754115.750416258]]}, "properties": {"id": "32429-32431-32433", "from": "512200165", "to": "512200331", "length_m": 76.0505963268675, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833407.2662277416, 5821067.96416049], [833418.4656904615, 5821102.202518079]]}, "properties": {"id": "3243-3244", "from": "603462880", "to": "603450883", "length_m": 36.040468034902176, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791008.5864414473, 5754115.750416258], [790960.1504814547, 5754065.680412997]]}, "properties": {"id": "32434-32432-32430", "from": "512200331", "to": "512200165", "length_m": 76.0505963268675, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790646.8280554079, 5753592.752728925], [790674.9531068815, 5753693.871454094]]}, "properties": {"id": "32435", "from": "512199771", "to": "512199776", "length_m": 104.95720594278397, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790674.9531068815, 5753693.871454094], [790646.8280554079, 5753592.752728925]]}, "properties": {"id": "32436", "from": "512199776", "to": "512199771", "length_m": 104.95720594278397, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790538.7358741869, 5753627.432417296], [790576.253183272, 5753687.878513194]]}, "properties": {"id": "32437-32439", "from": "512199355", "to": "512199759", "length_m": 75.45977351830985, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790576.253183272, 5753687.878513194], [790538.7358741869, 5753627.432417296]]}, "properties": {"id": "32440-32438", "from": "512199759", "to": "512199355", "length_m": 75.45977351830985, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790411.7056406154, 5753711.829426024], [790525.4376259055, 5753761.285724122]]}, "properties": {"id": "32441", "from": "512199402", "to": "512199719", "length_m": 124.01971533923906, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790525.4376259055, 5753761.285724122], [790411.7056406154, 5753711.829426024]]}, "properties": {"id": "32442", "from": "512199719", "to": "512199402", "length_m": 124.01971533923906, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790524.1010739737, 5753946.001948827], [790611.7711066555, 5753979.979299238]]}, "properties": {"id": "32445-32447", "from": "512199600", "to": "512199665", "length_m": 94.46872246531136, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790611.7711066555, 5753979.979299238], [790524.1010739737, 5753946.001948827]]}, "properties": {"id": "32448-32446", "from": "512199665", "to": "512199600", "length_m": 94.46872246531136, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833418.4656904615, 5821102.202518079], [833449.6883656697, 5821199.465232262]]}, "properties": {"id": "3245-3246-3247", "from": "603450883", "to": "584248061", "length_m": 102.15131424821556, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790793.053269461, 5753726.22817315], [790749.8126692402, 5753734.955051893]]}, "properties": {"id": "32450-32452", "from": "512199795", "to": "512199911", "length_m": 44.900251782310704, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790749.8126692402, 5753734.955051893], [790793.053269461, 5753726.22817315]]}, "properties": {"id": "32453-32451", "from": "512199911", "to": "512199795", "length_m": 44.900251782310704, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790739.6359353281, 5753578.628431291], [790793.053269461, 5753726.22817315]]}, "properties": {"id": "32454-32456", "from": "512199783", "to": "512199795", "length_m": 156.9773851345686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790793.053269461, 5753726.22817315], [790739.6359353281, 5753578.628431291]]}, "properties": {"id": "32457-32455", "from": "512199795", "to": "512199783", "length_m": 156.9773851345686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790793.053269461, 5753726.22817315], [790812.5835654524, 5753803.348704928]]}, "properties": {"id": "32458", "from": "512199795", "to": "512199825", "length_m": 79.55506816541254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790812.5835654524, 5753803.348704928], [790793.053269461, 5753726.22817315]]}, "properties": {"id": "32459", "from": "512199825", "to": "512199795", "length_m": 79.55506816541254, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790812.5835654524, 5753803.348704928], [790834.5137407868, 5753886.551322361]]}, "properties": {"id": "32460-32462", "from": "512199825", "to": "512199837", "length_m": 86.05620453440208, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790834.5137407868, 5753886.551322361], [790812.5835654524, 5753803.348704928]]}, "properties": {"id": "32463-32461", "from": "512199837", "to": "512199825", "length_m": 86.05620453440208, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790834.5137407868, 5753886.551322361], [790821.803528508, 5753956.664405608]]}, "properties": {"id": "32464-32466", "from": "512199837", "to": "512199861", "length_m": 71.73283968601072, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790821.803528508, 5753956.664405608], [790834.5137407868, 5753886.551322361]]}, "properties": {"id": "32467-32465", "from": "512199861", "to": "512199837", "length_m": 71.73283968601072, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790821.803528508, 5753956.664405608], [790765.2713350398, 5754041.782696327]]}, "properties": {"id": "32468-32470-32472", "from": "512199861", "to": "512199875", "length_m": 104.96283001206672, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790765.2713350398, 5754041.782696327], [790821.803528508, 5753956.664405608]]}, "properties": {"id": "32473-32471-32469", "from": "512199875", "to": "512199861", "length_m": 104.96283001206672, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790765.2713350398, 5754041.782696327], [790675.9972938078, 5754009.020569877]]}, "properties": {"id": "32474-32476-32478-32480", "from": "512199875", "to": "512199892", "length_m": 98.27125569718902, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758650.4612396864, 5730884.403896867], [758534.9362822727, 5730811.9889270095]]}, "properties": {"id": "3248-3250-3252-3254-3256-3258-3260-3262-3264-3266-3268", "from": "832508748", "to": "832508300", "length_m": 166.1830486794916, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790675.9972938078, 5754009.020569877], [790765.2713350398, 5754041.782696327]]}, "properties": {"id": "32481-32479-32477-32475", "from": "512199892", "to": "512199875", "length_m": 98.27125569718902, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790725.676022772, 5753569.572837216], [790739.6359353281, 5753578.628431291]]}, "properties": {"id": "32482", "from": "512199345", "to": "512199783", "length_m": 16.639799887460995, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790739.6359353281, 5753578.628431291], [790735.9175562125, 5753559.756473874]]}, "properties": {"id": "32483", "from": "512199783", "to": "512199324", "length_m": 19.234789306683737, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790366.7076703822, 5753808.733412695], [790548.3169015509, 5753861.937848247]]}, "properties": {"id": "32484-32486", "from": "512199422", "to": "512199529", "length_m": 189.79967414772864, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790548.3169015509, 5753861.937848247], [790366.7076703822, 5753808.733412695]]}, "properties": {"id": "32487-32485", "from": "512199529", "to": "512199422", "length_m": 189.79967414772864, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790548.3169015509, 5753861.937848247], [790724.7302286574, 5753929.074323178]]}, "properties": {"id": "32488-32490-32492", "from": "512199529", "to": "512199583", "length_m": 190.33043829959047, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790724.7302286574, 5753929.074323178], [790548.3169015509, 5753861.937848247]]}, "properties": {"id": "32493-32491-32489", "from": "512199583", "to": "512199529", "length_m": 190.33043829959047, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790331.4519544066, 5753887.792320996], [790399.1268528033, 5753957.490751092]]}, "properties": {"id": "32520-32522-32524", "from": "512199442", "to": "512199511", "length_m": 118.67382055056686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790399.1268528033, 5753957.490751092], [790331.4519544066, 5753887.792320996]]}, "properties": {"id": "32525-32523-32521", "from": "512199511", "to": "512199442", "length_m": 118.67382055056686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833035.6903000579, 5816088.170690347], [833054.7157002913, 5816084.832900133]]}, "properties": {"id": "32526", "from": "30918489", "to": "30918488", "length_m": 19.315969976522247, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833054.7157002913, 5816084.832900133], [833035.6903000579, 5816088.170690347]]}, "properties": {"id": "32527", "from": "30918488", "to": "30918489", "length_m": 19.315969976522247, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790548.3169015509, 5753861.937848247], [790524.1010739737, 5753946.001948827]]}, "properties": {"id": "32528", "from": "512199529", "to": "512199600", "length_m": 87.48245153821637, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790524.1010739737, 5753946.001948827], [790548.3169015509, 5753861.937848247]]}, "properties": {"id": "32529", "from": "512199600", "to": "512199529", "length_m": 87.48245153821637, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790524.1010739737, 5753946.001948827], [790465.6644900439, 5753938.13556166]]}, "properties": {"id": "32530-32532", "from": "512199600", "to": "512199624", "length_m": 59.178412505826614, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790465.6644900439, 5753938.13556166], [790524.1010739737, 5753946.001948827]]}, "properties": {"id": "32533-32531", "from": "512199624", "to": "512199600", "length_m": 59.178412505826614, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790958.4240842899, 5753844.362141546], [790970.4685659811, 5753920.496370065]]}, "properties": {"id": "32534", "from": "512199240", "to": "512199242", "length_m": 77.08106309570555, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790970.4685659811, 5753920.496370065], [790958.4240842899, 5753844.362141546]]}, "properties": {"id": "32535", "from": "512199242", "to": "512199240", "length_m": 77.08106309570555, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790775.8947983291, 5753493.540295329], [790735.9175562125, 5753559.756473874]]}, "properties": {"id": "32536", "from": "512199304", "to": "512199324", "length_m": 77.34831736706433, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790735.9175562125, 5753559.756473874], [790775.8947983291, 5753493.540295329]]}, "properties": {"id": "32537", "from": "512199324", "to": "512199304", "length_m": 77.34831736706433, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790735.9175562125, 5753559.756473874], [790725.676022772, 5753569.572837216]]}, "properties": {"id": "32538", "from": "512199324", "to": "512199345", "length_m": 14.186260842850313, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790725.676022772, 5753569.572837216], [790735.9175562125, 5753559.756473874]]}, "properties": {"id": "32539", "from": "512199345", "to": "512199324", "length_m": 14.186260842850313, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790725.676022772, 5753569.572837216], [790646.8280554079, 5753592.752728925]]}, "properties": {"id": "32540", "from": "512199345", "to": "512199771", "length_m": 82.18460510591613, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790646.8280554079, 5753592.752728925], [790725.676022772, 5753569.572837216]]}, "properties": {"id": "32541", "from": "512199771", "to": "512199345", "length_m": 82.18460510591613, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790646.8280554079, 5753592.752728925], [790538.7358741869, 5753627.432417296]]}, "properties": {"id": "32542", "from": "512199771", "to": "512199355", "length_m": 113.51916307224107, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790538.7358741869, 5753627.432417296], [790646.8280554079, 5753592.752728925]]}, "properties": {"id": "32543", "from": "512199355", "to": "512199771", "length_m": 113.51916307224107, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790538.7358741869, 5753627.432417296], [790411.7056406154, 5753711.829426024]]}, "properties": {"id": "32544-32546-32548", "from": "512199355", "to": "512199402", "length_m": 158.03334486061016, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790411.7056406154, 5753711.829426024], [790538.7358741869, 5753627.432417296]]}, "properties": {"id": "32549-32547-32545", "from": "512199402", "to": "512199355", "length_m": 158.03334486061016, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790411.7056406154, 5753711.829426024], [790366.7076703822, 5753808.733412695]]}, "properties": {"id": "32550", "from": "512199402", "to": "512199422", "length_m": 106.84193924498855, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790366.7076703822, 5753808.733412695], [790411.7056406154, 5753711.829426024]]}, "properties": {"id": "32551", "from": "512199422", "to": "512199402", "length_m": 106.84193924498855, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790366.7076703822, 5753808.733412695], [790331.4519544066, 5753887.792320996]]}, "properties": {"id": "32552", "from": "512199422", "to": "512199442", "length_m": 86.56371357188513, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790331.4519544066, 5753887.792320996], [790366.7076703822, 5753808.733412695]]}, "properties": {"id": "32553", "from": "512199442", "to": "512199422", "length_m": 86.56371357188513, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790331.4519544066, 5753887.792320996], [790302.5825782109, 5753985.4492684]]}, "properties": {"id": "32554-32556", "from": "512199442", "to": "512199471", "length_m": 105.03749309301594, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790302.5825782109, 5753985.4492684], [790331.4519544066, 5753887.792320996]]}, "properties": {"id": "32557-32555", "from": "512199471", "to": "512199442", "length_m": 105.03749309301594, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790912.4960674883, 5753751.5882387245], [790823.0352223197, 5753645.545124769]]}, "properties": {"id": "32558-32560-32562", "from": "512199256", "to": "669536038", "length_m": 142.16220636791311, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790823.0352223197, 5753645.545124769], [790912.4960674883, 5753751.5882387245]]}, "properties": {"id": "32563-32561-32559", "from": "669536038", "to": "512199256", "length_m": 142.16220636791311, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791005.8774756519, 5753696.738661671], [790912.4960674883, 5753751.5882387245]]}, "properties": {"id": "32564", "from": "510172024", "to": "512199256", "length_m": 108.29849256019727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790912.4960674883, 5753751.5882387245], [791005.8774756519, 5753696.738661671]]}, "properties": {"id": "32565", "from": "512199256", "to": "510172024", "length_m": 108.29849256019727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790912.4960674883, 5753751.5882387245], [790844.2846256468, 5753789.313387833]]}, "properties": {"id": "32566", "from": "512199256", "to": "512199243", "length_m": 77.94862194836496, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790844.2846256468, 5753789.313387833], [790912.4960674883, 5753751.5882387245]]}, "properties": {"id": "32567", "from": "512199243", "to": "512199256", "length_m": 77.94862194836496, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793897.2336437867, 5775214.242401259], [793913.6443397474, 5775211.348180891]]}, "properties": {"id": "32581", "from": "317732030", "to": "317732031", "length_m": 16.663956674169242, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793913.6443397474, 5775211.348180891], [793897.2336437867, 5775214.242401259]]}, "properties": {"id": "32582", "from": "317732031", "to": "317732030", "length_m": 16.663956674169242, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791048.3679279151, 5753822.857659008], [790958.4240842899, 5753844.362141546]]}, "properties": {"id": "32583", "from": "510172091", "to": "512199240", "length_m": 92.47885023386607, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790958.4240842899, 5753844.362141546], [791048.3679279151, 5753822.857659008]]}, "properties": {"id": "32584", "from": "512199240", "to": "510172091", "length_m": 92.47885023386607, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790958.4240842899, 5753844.362141546], [790948.077797154, 5753824.07310679]]}, "properties": {"id": "32585", "from": "512199240", "to": "512199241", "length_m": 22.774779603630478, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790948.077797154, 5753824.07310679], [790958.4240842899, 5753844.362141546]]}, "properties": {"id": "32586", "from": "512199241", "to": "512199240", "length_m": 22.774779603630478, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790229.9750993559, 5773340.931344876], [789352.8806934556, 5773265.011595374]]}, "properties": {"id": "32587-32589-55696-25737-25739-25741-55698-55700-1251-1253-1259-1261-1263-1265-1267-1269-1271-1273-1275-1277", "from": "690279991", "to": "3431090321", "length_m": 915.3676775717531, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791310.2439620972, 5753886.85476343], [791271.1597672759, 5753966.123448962]]}, "properties": {"id": "32602-32604-32606-32608-32610", "from": "510173401", "to": "512199238", "length_m": 98.20932318713183, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791271.1597672759, 5753966.123448962], [791310.2439620972, 5753886.85476343]]}, "properties": {"id": "32611-32609-32607-32605-32603", "from": "512199238", "to": "510173401", "length_m": 98.20932318713183, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791751.3165196503, 5753857.073134729], [791547.6381916273, 5753997.320585069]]}, "properties": {"id": "32612-32614-32616-32618-32620-32622-32624-32626-32628", "from": "510173213", "to": "512199022", "length_m": 357.91977883124093, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791547.6381916273, 5753997.320585069], [791751.3165196503, 5753857.073134729]]}, "properties": {"id": "32629-32627-32625-32623-32621-32619-32617-32615-32613", "from": "512199022", "to": "510173213", "length_m": 357.91977883124093, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791539.5070823702, 5753889.557479992], [791547.6381916273, 5753997.320585069]]}, "properties": {"id": "32630-32632-32634-32636", "from": "510173298", "to": "512199022", "length_m": 109.1594487545302, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791547.6381916273, 5753997.320585069], [791539.5070823702, 5753889.557479992]]}, "properties": {"id": "32637-32635-32633-32631", "from": "512199022", "to": "510173298", "length_m": 109.1594487545302, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791547.6381916273, 5753997.320585069], [791559.8557122461, 5754100.390164865]]}, "properties": {"id": "32638-32640", "from": "512199022", "to": "512199041", "length_m": 105.01425014028045, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791559.8557122461, 5754100.390164865], [791547.6381916273, 5753997.320585069]]}, "properties": {"id": "32641-32639", "from": "512199041", "to": "512199022", "length_m": 105.01425014028045, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791184.2505257475, 5753658.939097893], [791089.633189799, 5753670.988615594]]}, "properties": {"id": "32642-32644-32646", "from": "512198983", "to": "512199002", "length_m": 96.31467922743204, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791089.633189799, 5753670.988615594], [791184.2505257475, 5753658.939097893]]}, "properties": {"id": "32647-32645-32643", "from": "512199002", "to": "512198983", "length_m": 96.31467922743204, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791265.958901906, 5753834.147007788], [791179.3142616339, 5753988.354673912]]}, "properties": {"id": "32648-32650-32652-32654-32656", "from": "510173431", "to": "512199169", "length_m": 232.41261920718682, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791179.3142616339, 5753988.354673912], [791265.958901906, 5753834.147007788]]}, "properties": {"id": "32657-32655-32653-32651-32649", "from": "512199169", "to": "510173431", "length_m": 232.41261920718682, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791376.2583363515, 5753915.148120197], [791362.9065736495, 5753960.0887398515]]}, "properties": {"id": "32658", "from": "510173363", "to": "512199150", "length_m": 46.88207404416023, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791362.9065736495, 5753960.0887398515], [791376.2583363515, 5753915.148120197]]}, "properties": {"id": "32659", "from": "512199150", "to": "510173363", "length_m": 46.88207404416023, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780866.6718984402, 5747460.856382624], [780863.2284407124, 5747460.954246154]]}, "properties": {"id": "32667", "from": "5743445299", "to": "1083026063", "length_m": 3.4448480944460798, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780863.2284407124, 5747460.954246154], [780866.6718984402, 5747460.856382624]]}, "properties": {"id": "32668", "from": "1083026063", "to": "5743445299", "length_m": 3.4448480944460798, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837536.8144731394, 5815246.742577625], [837541.7940466346, 5815236.397343887]]}, "properties": {"id": "32669", "from": "33302739", "to": "299199702", "length_m": 11.481289725031642, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837520.0051836439, 5815249.377533218], [837509.4760266603, 5815273.827522706]]}, "properties": {"id": "32670", "from": "33302740", "to": "299199620", "length_m": 26.620765133572046, "freespeed_mps": 16.666666666666668, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837524.9110243325, 5815239.602435982], [837520.0051836439, 5815249.377533218]]}, "properties": {"id": "32673", "from": "299199699", "to": "33302740", "length_m": 10.937083664351109, "freespeed_mps": 16.666666666666668, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836063.3384668557, 5804121.897970949], [836066.2128686176, 5804137.825933013]]}, "properties": {"id": "32674", "from": "1712459296", "to": "1712459570", "length_m": 16.185245156405877, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836066.2128686176, 5804137.825933013], [836063.3384668557, 5804121.897970949]]}, "properties": {"id": "32675", "from": "1712459570", "to": "1712459296", "length_m": 16.185245156405877, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780865.5886795744, 5747479.4647507565], [780866.6718984402, 5747460.856382624]]}, "properties": {"id": "32687-32688-32689", "from": "513379380", "to": "5743445299", "length_m": 18.696112557856253, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758534.9362822727, 5730811.9889270095], [758650.4612396864, 5730884.403896867]]}, "properties": {"id": "3269-3267-3265-3263-3261-3259-3257-3255-3253-3251-3249", "from": "832508300", "to": "832508748", "length_m": 166.1830486794916, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780866.6718984402, 5747460.856382624], [780879.930798558, 5747438.174867957]]}, "properties": {"id": "32690-32691-32692", "from": "5743445299", "to": "5743445304", "length_m": 25.778385776064585, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780865.5886795744, 5747479.4647507565], [781056.3879117694, 5748540.235123575]]}, "properties": {"id": "32697-39355-39357", "from": "513379380", "to": "292878983", "length_m": 1077.7982421602817, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758994.2606383105, 5730120.221864604], [758851.9221596455, 5730193.769143272]]}, "properties": {"id": "3270-3272-3274-3276-3278", "from": "832509924", "to": "832510058", "length_m": 164.1425241956013, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759343.3847183828, 5838565.513556613], [759437.5777384588, 5838570.743865479]]}, "properties": {"id": "32705-32706-32707-32708-32709-32710-32711", "from": "3340917301", "to": "1555084610", "length_m": 100.99752106547926, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787304.5387106524, 5764792.842501673], [787703.1905117494, 5765043.791571635]]}, "properties": {"id": "32712-32713-32714-32715-32716-32717-32718-32719-32720-32721-32722-32723-32724-32725-32726-32727-32728", "from": "1270758456", "to": "1412037741", "length_m": 492.4259447317483, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768980.6169834638, 5738096.742959815], [768951.842553857, 5737951.603579301]]}, "properties": {"id": "32729-32731-32733", "from": "665716940", "to": "831202171", "length_m": 154.092451906474, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768951.842553857, 5737951.603579301], [768980.6169834638, 5738096.742959815]]}, "properties": {"id": "32734-32732-32730", "from": "831202171", "to": "665716940", "length_m": 154.092451906474, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768951.842553857, 5737951.603579301], [768854.4334031848, 5737858.301176732]]}, "properties": {"id": "32735-32737-32739-32741-32743-32745-32747", "from": "831202171", "to": "665717007", "length_m": 299.454844817878, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768854.4334031848, 5737858.301176732], [768951.842553857, 5737951.603579301]]}, "properties": {"id": "32748-32746-32744-32742-32740-32738-32736", "from": "665717007", "to": "831202171", "length_m": 299.454844817878, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768854.4334031848, 5737858.301176732], [768660.27185339, 5737844.876952968]]}, "properties": {"id": "32749-32751-32753-32755-32757-32759-32761-32763-32765", "from": "665717007", "to": "831202446", "length_m": 208.0732482841431, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768660.27185339, 5737844.876952968], [768854.4334031848, 5737858.301176732]]}, "properties": {"id": "32766-32764-32762-32760-32758-32756-32754-32752-32750", "from": "831202446", "to": "665717007", "length_m": 208.0732482841431, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769078.2866588924, 5737965.424065503], [769115.2124099622, 5737987.988787461]]}, "properties": {"id": "32767", "from": "665716939", "to": "665716975", "length_m": 43.274446967340744, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769115.2124099622, 5737987.988787461], [769078.2866588924, 5737965.424065503]]}, "properties": {"id": "32768", "from": "665716975", "to": "665716939", "length_m": 43.274446967340744, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769115.2124099622, 5737987.988787461], [769180.8341129345, 5737850.964082922]]}, "properties": {"id": "32769", "from": "665716975", "to": "665716978", "length_m": 151.92754059507016, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769180.8341129345, 5737850.964082922], [769115.2124099622, 5737987.988787461]]}, "properties": {"id": "32770", "from": "665716978", "to": "665716975", "length_m": 151.92754059507016, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787837.1307048574, 5764874.657357141], [787863.9306695075, 5764858.256452981]]}, "properties": {"id": "32774-32775-32776", "from": "1412037731", "to": "1600806069", "length_m": 31.816348000125284, "freespeed_mps": 3.5, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787863.9306695075, 5764858.256452981], [787876.3282868057, 5764833.820746156]]}, "properties": {"id": "32777-32778-32779", "from": "1600806069", "to": "1412037704", "length_m": 27.704575998110037, "freespeed_mps": 3.5, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787876.3282868057, 5764833.820746156], [787866.809728794, 5764789.025259718]]}, "properties": {"id": "32780-32781-32782-32783-32784", "from": "1412037704", "to": "1412037714", "length_m": 47.2446084127498, "freespeed_mps": 3.5, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787866.809728794, 5764789.025259718], [787771.3277508038, 5764780.531364758]]}, "properties": {"id": "32785-32786-32787-32788-32789-32790-32791-32792", "from": "1412037714", "to": "1412037743", "length_m": 121.74684013968144, "freespeed_mps": 3.5, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758851.9221596455, 5730193.769143272], [758994.2606383105, 5730120.221864604]]}, "properties": {"id": "3279-3277-3275-3273-3271", "from": "832510058", "to": "832509924", "length_m": 164.1425241956013, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787771.3277508038, 5764780.531364758], [787778.0755587625, 5764853.138765428]]}, "properties": {"id": "32793-32794-32795-32796", "from": "1412037743", "to": "1412037748", "length_m": 47.8215107522289, "freespeed_mps": 3.5, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787778.0755587625, 5764853.138765428], [787837.1307048574, 5764874.657357141]]}, "properties": {"id": "32797-32798-32799-32771-32772-32773", "from": "1412037748", "to": "1412037731", "length_m": 67.14380730007936, "freespeed_mps": 3.5, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824499.4834020892, 5816770.698885212], [823933.7060203659, 5817034.608184316]]}, "properties": {"id": "32803-32804-32805-32806-32807-32808", "from": "582330186", "to": "1412789220", "length_m": 624.3185082540829, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768256.3711274923, 5738120.6739400355], [768356.8187962349, 5738237.072666806]]}, "properties": {"id": "32809-32811-32813-32815-32817-32819-32821-32823", "from": "831201730", "to": "831201177", "length_m": 182.03218514548226, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768356.8187962349, 5738237.072666806], [768256.3711274923, 5738120.6739400355]]}, "properties": {"id": "32824-32822-32820-32818-32816-32814-32812-32810", "from": "831201177", "to": "831201730", "length_m": 182.03218514548226, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768356.8187962349, 5738237.072666806], [768495.9148227762, 5738274.893099774]]}, "properties": {"id": "32825", "from": "831201177", "to": "831201823", "length_m": 144.14607046885834, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768495.9148227762, 5738274.893099774], [768356.8187962349, 5738237.072666806]]}, "properties": {"id": "32826", "from": "831201823", "to": "831201177", "length_m": 144.14607046885834, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768495.9148227762, 5738274.893099774], [768605.0303018773, 5738302.613188001]]}, "properties": {"id": "32827", "from": "831201823", "to": "831202326", "length_m": 112.58148607798108, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768605.0303018773, 5738302.613188001], [768495.9148227762, 5738274.893099774]]}, "properties": {"id": "32828", "from": "831202326", "to": "831201823", "length_m": 112.58148607798108, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768605.0303018773, 5738302.613188001], [768748.5755326154, 5738298.909973041]]}, "properties": {"id": "32829-32831-32833-32835-32837", "from": "831202326", "to": "831201641", "length_m": 154.91277326018826, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768748.5755326154, 5738298.909973041], [768605.0303018773, 5738302.613188001]]}, "properties": {"id": "32838-32836-32834-32832-32830", "from": "831201641", "to": "831202326", "length_m": 154.91277326018826, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768748.5755326154, 5738298.909973041], [768809.9358724051, 5738224.048891712]]}, "properties": {"id": "32839-32841-32843", "from": "831201641", "to": "665717000", "length_m": 96.79654502910206, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768809.9358724051, 5738224.048891712], [768748.5755326154, 5738298.909973041]]}, "properties": {"id": "32844-32842-32840", "from": "665717000", "to": "831201641", "length_m": 96.79654502910206, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768809.9358724051, 5738224.048891712], [768955.5144864673, 5738189.79300382]]}, "properties": {"id": "32845-32847", "from": "665717000", "to": "665716942", "length_m": 150.1695208922735, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768955.5144864673, 5738189.79300382], [768809.9358724051, 5738224.048891712]]}, "properties": {"id": "32848-32846", "from": "665716942", "to": "665717000", "length_m": 150.1695208922735, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769141.1243059975, 5737737.528255588], [769078.2866588924, 5737965.424065503]]}, "properties": {"id": "32849-32851-32853", "from": "665716928", "to": "665716939", "length_m": 236.54468141299637, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769078.2866588924, 5737965.424065503], [769141.1243059975, 5737737.528255588]]}, "properties": {"id": "32854-32852-32850", "from": "665716939", "to": "665716928", "length_m": 236.54468141299637, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769078.2866588924, 5737965.424065503], [768980.6169834638, 5738096.742959815]]}, "properties": {"id": "32855-32857", "from": "665716939", "to": "665716940", "length_m": 164.01032613048363, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768980.6169834638, 5738096.742959815], [769078.2866588924, 5737965.424065503]]}, "properties": {"id": "32858-32856", "from": "665716940", "to": "665716939", "length_m": 164.01032613048363, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788216.9884942293, 5765253.739676239], [787863.9306695075, 5764858.256452981]]}, "properties": {"id": "32859-32860-32861-32862-32863-32864-32865-32866-32867-32868-32869-32870-32871-32872-32873-32874-32875-32876", "from": "1270758517", "to": "1600806069", "length_m": 546.4847883312839, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752028.0421257479, 5838289.052019249], [752049.0157286815, 5838384.778248543]]}, "properties": {"id": "32877-32878-32879", "from": "363998599", "to": "1840300860", "length_m": 98.04229966370006, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782201.6093411841, 5834955.663707363], [782735.7613704057, 5835101.462540819]]}, "properties": {"id": "32880-32881-32882-32883-32884-32885-32886-20390", "from": "413303106", "to": "5515265900", "length_m": 558.2471495459529, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751967.2093646594, 5838221.541004753], [752028.0421257479, 5838289.052019249]]}, "properties": {"id": "32887-32888-32889-32890", "from": "945445405", "to": "363998599", "length_m": 94.36808615751167, "freespeed_mps": 16.666666666666668, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761755.0993567139, 5763189.746082453], [761765.7736143917, 5763184.089886236]]}, "properties": {"id": "32907", "from": "1852719103", "to": "1852765616", "length_m": 12.080245560413719, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761765.7736143917, 5763184.089886236], [761755.0993567139, 5763189.746082453]]}, "properties": {"id": "32908", "from": "1852765616", "to": "1852719103", "length_m": 12.080245560413719, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761765.7736143917, 5763184.089886236], [761891.4611047932, 5763076.359696528]]}, "properties": {"id": "32909-32911-32913-32915-32917-32919", "from": "1852765616", "to": "1852765642", "length_m": 166.5685995003522, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761891.4611047932, 5763076.359696528], [761765.7736143917, 5763184.089886236]]}, "properties": {"id": "32920-32918-32916-32914-32912-32910", "from": "1852765642", "to": "1852765616", "length_m": 166.5685995003522, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761891.4611047932, 5763076.359696528], [762053.9067711644, 5762864.505960189]]}, "properties": {"id": "32921-32923-32925-32927-32929-32931", "from": "1852765642", "to": "1852719140", "length_m": 268.2809586784772, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762053.9067711644, 5762864.505960189], [761891.4611047932, 5763076.359696528]]}, "properties": {"id": "32932-32930-32928-32926-32924-32922", "from": "1852719140", "to": "1852765642", "length_m": 268.2809586784772, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762053.9067711644, 5762864.505960189], [762152.208425781, 5762725.569426483]]}, "properties": {"id": "32933", "from": "1852719140", "to": "1852719143", "length_m": 170.19569833417256, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762152.208425781, 5762725.569426483], [762053.9067711644, 5762864.505960189]]}, "properties": {"id": "32934", "from": "1852719143", "to": "1852719140", "length_m": 170.19569833417256, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762152.208425781, 5762725.569426483], [762510.8060288841, 5762213.04161245]]}, "properties": {"id": "32935-32937-32939", "from": "1852719143", "to": "1852719151", "length_m": 625.5213837764838, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762510.8060288841, 5762213.04161245], [762152.208425781, 5762725.569426483]]}, "properties": {"id": "32940-32938-32936", "from": "1852719151", "to": "1852719143", "length_m": 625.5213837764838, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762510.8060288841, 5762213.04161245], [762586.3097756819, 5762104.582010966]]}, "properties": {"id": "32941", "from": "1852719151", "to": "1856653096", "length_m": 132.152566954547, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762586.3097756819, 5762104.582010966], [762510.8060288841, 5762213.04161245]]}, "properties": {"id": "32942", "from": "1856653096", "to": "1852719151", "length_m": 132.152566954547, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762586.3097756819, 5762104.582010966], [762848.6067886006, 5761761.913186047]]}, "properties": {"id": "32943-32945-32947-32949", "from": "1856653096", "to": "1856653128", "length_m": 433.32310542996856, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762848.6067886006, 5761761.913186047], [762586.3097756819, 5762104.582010966]]}, "properties": {"id": "32950-32948-32946-32944", "from": "1856653128", "to": "1856653096", "length_m": 433.32310542996856, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762848.6067886006, 5761761.913186047], [763364.6574370936, 5761643.719523931]]}, "properties": {"id": "32951-32953-32955-32957-32959", "from": "1856653128", "to": "614531167", "length_m": 532.5601750767729, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763364.6574370936, 5761643.719523931], [762848.6067886006, 5761761.913186047]]}, "properties": {"id": "32960-32958-32956-32954-32952", "from": "614531167", "to": "1856653128", "length_m": 532.5601750767729, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762510.8060288841, 5762213.04161245], [763438.9455643402, 5762060.521038535]]}, "properties": {"id": "32961-32963-32965-32967-32969", "from": "1852719151", "to": "614531219", "length_m": 942.481766353714, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763438.9455643402, 5762060.521038535], [762510.8060288841, 5762213.04161245]]}, "properties": {"id": "32970-32968-32966-32964-32962", "from": "614531219", "to": "1852719151", "length_m": 942.481766353714, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769106.7983568708, 5738051.566073613], [769115.2124099622, 5737987.988787461]]}, "properties": {"id": "32978-32980-32982", "from": "665717094", "to": "665716975", "length_m": 74.64657607790656, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769115.2124099622, 5737987.988787461], [769106.7983568708, 5738051.566073613]]}, "properties": {"id": "32983-32981-32979", "from": "665716975", "to": "665717094", "length_m": 74.64657607790656, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[839122.619635982, 5817604.166121807], [839215.8974266173, 5817549.031218974]]}, "properties": {"id": "32984-32985-32986-32987", "from": "1511360330", "to": "304725630", "length_m": 108.57806938364513, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751716.6865395976, 5847888.07362012], [751830.2753320043, 5847175.5235989075]]}, "properties": {"id": "32990-32992-32994-32996", "from": "654949911", "to": "301984635", "length_m": 723.1187575006952, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751830.2753320043, 5847175.5235989075], [751716.6865395976, 5847888.07362012]]}, "properties": {"id": "32997-32995-32993-32991", "from": "301984635", "to": "654949911", "length_m": 723.1187575006952, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751830.2753320043, 5847175.5235989075], [751644.3796446252, 5846087.590834754]]}, "properties": {"id": "32998", "from": "301984635", "to": "830988612", "length_m": 1103.7005505895156, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751644.3796446252, 5846087.590834754], [751830.2753320043, 5847175.5235989075]]}, "properties": {"id": "32999", "from": "830988612", "to": "301984635", "length_m": 1103.7005505895156, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751644.3796446252, 5846087.590834754], [751511.621762589, 5845377.241814656]]}, "properties": {"id": "33000", "from": "830988612", "to": "4748684935", "length_m": 722.6481753367575, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751511.621762589, 5845377.241814656], [751644.3796446252, 5846087.590834754]]}, "properties": {"id": "33001", "from": "4748684935", "to": "830988612", "length_m": 722.6481753367575, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751511.621762589, 5845377.241814656], [751561.9492100806, 5844763.611631742]]}, "properties": {"id": "33002-33004-33006-33008-33010", "from": "4748684935", "to": "4748684944", "length_m": 618.8897040303998, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751561.9492100806, 5844763.611631742], [751511.621762589, 5845377.241814656]]}, "properties": {"id": "33011-33009-33007-33005-33003", "from": "4748684944", "to": "4748684935", "length_m": 618.8897040303998, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790255.5112231162, 5751737.606108648], [790252.7357029731, 5751722.756924667]]}, "properties": {"id": "33012", "from": "510559570", "to": "510559579", "length_m": 15.10634888880505, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790252.7357029731, 5751722.756924667], [790255.5112231162, 5751737.606108648]]}, "properties": {"id": "33013", "from": "510559579", "to": "510559570", "length_m": 15.10634888880505, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790545.1406104157, 5752708.883598458], [790563.5304820155, 5752802.8173892]]}, "properties": {"id": "33014", "from": "510559642", "to": "512196730", "length_m": 95.71700167819336, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790563.5304820155, 5752802.8173892], [790545.1406104157, 5752708.883598458]]}, "properties": {"id": "33015", "from": "512196730", "to": "510559642", "length_m": 95.71700167819336, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790563.5304820155, 5752802.8173892], [790587.0383761064, 5752922.8861274645]]}, "properties": {"id": "33016", "from": "512196730", "to": "512196733", "length_m": 122.34836727451686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790587.0383761064, 5752922.8861274645], [790563.5304820155, 5752802.8173892]]}, "properties": {"id": "33017", "from": "512196733", "to": "512196730", "length_m": 122.34836727451686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790587.0383761064, 5752922.8861274645], [790624.0887114727, 5753112.1442924235]]}, "properties": {"id": "33018", "from": "512196733", "to": "510558403", "length_m": 192.85066842061372, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790624.0887114727, 5753112.1442924235], [790587.0383761064, 5752922.8861274645]]}, "properties": {"id": "33019", "from": "510558403", "to": "512196733", "length_m": 192.85066842061372, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790539.745962215, 5752705.443417182], [790545.1406104157, 5752708.883598458]]}, "properties": {"id": "33020-33021-33022", "from": "510559592", "to": "510559642", "length_m": 7.098932442578606, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790545.1406104157, 5752708.883598458], [790548.2068630233, 5752704.316226524]]}, "properties": {"id": "33023-33024-33025", "from": "510559642", "to": "510559701", "length_m": 6.243345830689645, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790548.2068630233, 5752704.316226524], [790543.5999299997, 5752700.625387144]]}, "properties": {"id": "33026-33027-33028", "from": "510559701", "to": "510559771", "length_m": 6.7518348503819885, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790543.5999299997, 5752700.625387144], [790539.745962215, 5752705.443417182]]}, "properties": {"id": "33029-33030-33031", "from": "510559771", "to": "510559592", "length_m": 7.162568387425479, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790539.745962215, 5752705.443417182], [790224.3932384045, 5752765.031297897]]}, "properties": {"id": "33032", "from": "510559592", "to": "510172901", "length_m": 320.93310132842544, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790224.3932384045, 5752765.031297897], [790539.745962215, 5752705.443417182]]}, "properties": {"id": "33033", "from": "510172901", "to": "510559592", "length_m": 320.93310132842544, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790224.3932384045, 5752765.031297897], [790031.1312165265, 5752800.967994779]]}, "properties": {"id": "33034", "from": "510172901", "to": "148808265", "length_m": 196.5748079587538, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790031.1312165265, 5752800.967994779], [790224.3932384045, 5752765.031297897]]}, "properties": {"id": "33035", "from": "148808265", "to": "510172901", "length_m": 196.5748079587538, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790334.2438218314, 5751708.3194980575], [790252.7357029731, 5751722.756924667]]}, "properties": {"id": "33036", "from": "510558908", "to": "510559579", "length_m": 82.77688505774444, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790252.7357029731, 5751722.756924667], [790155.7253651684, 5751740.652142729]]}, "properties": {"id": "33037", "from": "510559579", "to": "510559537", "length_m": 98.6470700536473, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790155.7253651684, 5751740.652142729], [790025.3448122871, 5751768.326664755]]}, "properties": {"id": "33038-33039-33040", "from": "510559537", "to": "510559436", "length_m": 133.39579437597, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773862.2863262774, 5754076.351988338], [773978.5319165817, 5754836.766327672]]}, "properties": {"id": "3304-3306-3308-3310-3312-3314-3316-3318-3320-3322", "from": "498837765", "to": "498837749", "length_m": 770.9375898592853, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790025.3448122871, 5751768.326664755], [789915.365791142, 5751789.552800309]]}, "properties": {"id": "33041", "from": "510559436", "to": "510559516", "length_m": 112.00863300878646, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789915.365791142, 5751789.552800309], [789872.3183250879, 5751785.587318997]]}, "properties": {"id": "33042-33043-33044-33045", "from": "510559516", "to": "4553047633", "length_m": 46.08414471355019, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789914.7205022224, 5751801.312917129], [789915.365791142, 5751789.552800309]]}, "properties": {"id": "33046", "from": "510559455", "to": "510559516", "length_m": 11.777807326205346, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790155.7253651684, 5751740.652142729], [790157.0263897623, 5751753.698263697]]}, "properties": {"id": "33047", "from": "510559537", "to": "510559555", "length_m": 13.110832820535856, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790157.0263897623, 5751753.698263697], [790155.7253651684, 5751740.652142729]]}, "properties": {"id": "33048", "from": "510559555", "to": "510559537", "length_m": 13.110832820535856, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790461.065007124, 5751685.40278813], [790354.7557850862, 5751704.446737387]]}, "properties": {"id": "33049", "from": "510558947", "to": "510558832", "length_m": 108.00149369017832, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790478.3168098888, 5751677.301318199], [790461.8254047038, 5751584.254936223]]}, "properties": {"id": "33050", "from": "510559247", "to": "518638262", "length_m": 94.49653769345387, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790461.8254047038, 5751584.254936223], [790447.166901482, 5751503.446368357]]}, "properties": {"id": "33051", "from": "518638262", "to": "518638211", "length_m": 82.12731792507057, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790447.166901482, 5751503.446368357], [790440.8085494202, 5751466.66380999]]}, "properties": {"id": "33052", "from": "518638211", "to": "510559337", "length_m": 37.328075758198935, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790440.8085494202, 5751466.66380999], [790436.9798394159, 5751456.60963111]]}, "properties": {"id": "33053", "from": "510559337", "to": "510559316", "length_m": 10.758509790863116, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790461.065007124, 5751685.40278813], [790463.6507380975, 5751697.402324565]]}, "properties": {"id": "33054-33055", "from": "510558947", "to": "510558967", "length_m": 12.67609948540557, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790463.6507380975, 5751697.402324565], [790470.1329644029, 5751701.403513902]]}, "properties": {"id": "33056", "from": "510558967", "to": "510559032", "length_m": 7.617661965682238, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790470.1329644029, 5751701.403513902], [790482.2898538457, 5751698.164778559]]}, "properties": {"id": "33057-33058", "from": "510559032", "to": "518638127", "length_m": 13.002021361629836, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790482.2898538457, 5751698.164778559], [790485.909610752, 5751691.476796064]]}, "properties": {"id": "33059", "from": "518638127", "to": "510559135", "length_m": 7.604718937209589, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790485.909610752, 5751691.476796064], [790483.8620410701, 5751681.780827842]]}, "properties": {"id": "33060-33061", "from": "510559135", "to": "510559176", "length_m": 10.110992764421626, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790483.8620410701, 5751681.780827842], [790478.3168098888, 5751677.301318199]]}, "properties": {"id": "33062", "from": "510559176", "to": "510559247", "length_m": 7.128505816447873, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790478.3168098888, 5751677.301318199], [790464.7851009927, 5751679.555910474]]}, "properties": {"id": "33063-33064", "from": "510559247", "to": "510559279", "length_m": 14.283028084410823, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790464.7851009927, 5751679.555910474], [790461.065007124, 5751685.40278813]]}, "properties": {"id": "33065", "from": "510559279", "to": "510558947", "length_m": 6.930012772299523, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790470.1329644029, 5751701.403513902], [790488.2805161795, 5751803.481966003]]}, "properties": {"id": "33066", "from": "510559032", "to": "518638287", "length_m": 103.67904324133006, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790488.2805161795, 5751803.481966003], [790500.8828768658, 5751869.2376149595]]}, "properties": {"id": "33067", "from": "518638287", "to": "518638320", "length_m": 66.95240741700769, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790500.8828768658, 5751869.2376149595], [790509.3368425348, 5751913.635961029]]}, "properties": {"id": "33068", "from": "518638320", "to": "510171642", "length_m": 45.19604702680391, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790357.3057335202, 5751717.15891366], [790463.6507380975, 5751697.402324565]]}, "properties": {"id": "33069", "from": "510558928", "to": "510558967", "length_m": 108.16460954309295, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790522.9182062058, 5751911.29062555], [790514.8938324812, 5751867.154677269]]}, "properties": {"id": "33070", "from": "510171662", "to": "518638346", "length_m": 44.85947504983554, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790514.8938324812, 5751867.154677269], [790502.9612163248, 5751800.552436405]]}, "properties": {"id": "33071", "from": "518638346", "to": "518638293", "length_m": 67.66273577667171, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790502.9612163248, 5751800.552436405], [790482.2898538457, 5751698.164778559]]}, "properties": {"id": "33072", "from": "518638293", "to": "518638127", "length_m": 104.4535192895062, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772727.2815280168, 5761580.11443588], [774551.8275554571, 5761244.512585502]]}, "properties": {"id": "33084", "from": "489289819", "to": "489289820", "length_m": 1855.1541167447247, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774551.8275554571, 5761244.512585502], [772727.2815280168, 5761580.11443588]]}, "properties": {"id": "33085", "from": "489289820", "to": "489289819", "length_m": 1855.1541167447247, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838189.2669790476, 5803892.429771372], [837348.9161513284, 5803887.79657206]]}, "properties": {"id": "33090-33091-33092-33093-33094-33095-33096-33097-33098-33099-33100-33101-33102-33103-33104-33105-41079-41041-41042-41043-41044-41045-41046-41047-41048-41049-41050-41051", "from": "1711589514", "to": "1712171666", "length_m": 865.2394751668919, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770465.8966871428, 5755451.371848019], [770277.6933817072, 5754942.677234291]]}, "properties": {"id": "33113-33115-33117-33119-33121", "from": "535081510", "to": "535081498", "length_m": 579.9465302434278, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770277.6933817072, 5754942.677234291], [770465.8966871428, 5755451.371848019]]}, "properties": {"id": "33122-33120-33118-33116-33114", "from": "535081498", "to": "535081510", "length_m": 579.9465302434278, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770277.6933817072, 5754942.677234291], [770217.1573329294, 5754778.846024252]]}, "properties": {"id": "33123-33125-33127-33129-33131-33133-33135-33137-33139-33141-33143-33145", "from": "535081498", "to": "535081494", "length_m": 554.2810329114525, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770217.1573329294, 5754778.846024252], [770277.6933817072, 5754942.677234291]]}, "properties": {"id": "33146-33144-33142-33140-33138-33136-33134-33132-33130-33128-33126-33124", "from": "535081494", "to": "535081498", "length_m": 554.2810329114525, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770450.1092428603, 5755461.012549862], [769909.6423056691, 5755980.425061994]]}, "properties": {"id": "33147-33149-33151-33153", "from": "535081508", "to": "535081517", "length_m": 1033.2879417073773, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769909.6423056691, 5755980.425061994], [770450.1092428603, 5755461.012549862]]}, "properties": {"id": "33154-33152-33150-33148", "from": "535081517", "to": "535081508", "length_m": 1033.2879417073773, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772234.1120384098, 5756065.579201625], [771203.6717665002, 5756155.6330587985]]}, "properties": {"id": "33155-33157-33159-33161", "from": "535081543", "to": "535081546", "length_m": 1035.7319560457884, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771203.6717665002, 5756155.6330587985], [772234.1120384098, 5756065.579201625]]}, "properties": {"id": "33162-33160-33158-33156", "from": "535081546", "to": "535081543", "length_m": 1035.7319560457884, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838193.3512414579, 5803903.381407796], [838325.5126539186, 5803859.868524632]]}, "properties": {"id": "33169-33170-33171-34641-34642-34643-34644-34645-34646-34647-34648", "from": "1711589037", "to": "5635786618", "length_m": 140.4313881463536, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779641.4516332315, 5754326.173838642], [779631.4932314614, 5754235.101994658]]}, "properties": {"id": "33172", "from": "535081581", "to": "535081582", "length_m": 91.61468512550896, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779631.4932314614, 5754235.101994658], [779641.4516332315, 5754326.173838642]]}, "properties": {"id": "33173", "from": "535081582", "to": "535081581", "length_m": 91.61468512550896, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771788.2327713282, 5753599.46721347], [771038.7623960852, 5753731.363934128]]}, "properties": {"id": "33175-38148-29062-29064", "from": "534678095", "to": "6004713620", "length_m": 761.0682602337803, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771788.2327713282, 5753599.46721347], [772500.4409283365, 5753463.97921571]]}, "properties": {"id": "33176", "from": "534678095", "to": "535080685", "length_m": 724.9810030233053, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772500.4409283365, 5753463.97921571], [771788.2327713282, 5753599.46721347]]}, "properties": {"id": "33177", "from": "535080685", "to": "534678095", "length_m": 724.9810030233053, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838581.8910144609, 5803741.304854377], [838433.9332622738, 5803802.387447147]]}, "properties": {"id": "33183-33184", "from": "3189561086", "to": "1711589445", "length_m": 160.07565773717505, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782608.634691821, 5756602.5491587585], [782803.7102991539, 5757948.722327052]]}, "properties": {"id": "33185-33187-33189-33191-33193-33195", "from": "535081623", "to": "4593800823", "length_m": 1384.9047364935052, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782803.7102991539, 5757948.722327052], [782608.634691821, 5756602.5491587585]]}, "properties": {"id": "33196-33194-33192-33190-33188-33186", "from": "4593800823", "to": "535081623", "length_m": 1384.9047364935052, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782803.7102991539, 5757948.722327052], [782930.8013649513, 5758654.669704507]]}, "properties": {"id": "33197", "from": "4593800823", "to": "847813498", "length_m": 717.2961998243571, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782930.8013649513, 5758654.669704507], [782803.7102991539, 5757948.722327052]]}, "properties": {"id": "33198", "from": "847813498", "to": "4593800823", "length_m": 717.2961998243571, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782930.8013649513, 5758654.669704507], [783193.0975893779, 5760071.578623076]]}, "properties": {"id": "33199-33201-33203-33205-33207-33209-33211-33213-33215-33217", "from": "847813498", "to": "616997232", "length_m": 1627.8920761151605, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789100.0921634961, 5751778.395065518], [789097.3220635385, 5751774.626549953]]}, "properties": {"id": "332", "from": "516048311", "to": "848692434", "length_m": 4.677089189817964, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783193.0975893779, 5760071.578623076], [782930.8013649513, 5758654.669704507]]}, "properties": {"id": "33218-33216-33214-33212-33210-33208-33206-33204-33202-33200", "from": "616997232", "to": "847813498", "length_m": 1627.8920761151605, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773978.5319165817, 5754836.766327672], [773862.2863262774, 5754076.351988338]]}, "properties": {"id": "3323-3321-3319-3317-3315-3313-3311-3309-3307-3305", "from": "498837749", "to": "498837765", "length_m": 770.9375898592853, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838328.1701803391, 5803861.449173602], [838402.7715694334, 5804262.640864216]]}, "properties": {"id": "33239-33240-33241-33242-33243-33244-33245-33086-33087-33088-33089-40923-34849", "from": "1711589533", "to": "1711589579", "length_m": 408.16242141602015, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773978.5319165817, 5754836.766327672], [774391.2890252451, 5757099.161319833]]}, "properties": {"id": "3324-3326-31568-31566", "from": "498837749", "to": "535081548", "length_m": 2299.818664322298, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777216.7389708057, 5742622.015957273], [777320.6447480108, 5742684.344940602]]}, "properties": {"id": "33246", "from": "289884782", "to": "4763088568", "length_m": 121.1664665213057, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777320.6447480108, 5742684.344940602], [777216.7389708057, 5742622.015957273]]}, "properties": {"id": "33247", "from": "4763088568", "to": "289884782", "length_m": 121.1664665213057, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783924.7014810045, 5755187.181273488], [783628.2344681411, 5753580.831393677]]}, "properties": {"id": "33248", "from": "535081622", "to": "535081577", "length_m": 1633.4786878031787, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783628.2344681411, 5753580.831393677], [783924.7014810045, 5755187.181273488]]}, "properties": {"id": "33249", "from": "535081577", "to": "535081622", "length_m": 1633.4786878031787, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783628.2344681411, 5753580.831393677], [783513.464889158, 5752972.50156663]]}, "properties": {"id": "33250", "from": "535081577", "to": "4593718443", "length_m": 619.0615755757361, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783513.464889158, 5752972.50156663], [783628.2344681411, 5753580.831393677]]}, "properties": {"id": "33251", "from": "4593718443", "to": "535081577", "length_m": 619.0615755757361, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783513.464889158, 5752972.50156663], [783364.703923428, 5752183.94562066]]}, "properties": {"id": "33252", "from": "4593718443", "to": "535081576", "length_m": 802.4651420496248, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783364.703923428, 5752183.94562066], [783513.464889158, 5752972.50156663]]}, "properties": {"id": "33253", "from": "535081576", "to": "4593718443", "length_m": 802.4651420496248, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838320.0179013144, 5803839.7343668705], [838189.2669790476, 5803892.429771372]]}, "properties": {"id": "33254-33255-33256-33257-33258-33259-33260-33261-33262", "from": "1711589661", "to": "1711589514", "length_m": 141.27808442326423, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777428.4691040156, 5742198.370705603], [777313.9865997536, 5742051.29286794]]}, "properties": {"id": "33272-33270-33268-33266-33264-57590-57591-57592-57593-57594-57595-57596-57597-57598-57599-57321-57319-57317", "from": "289884762", "to": "289884735", "length_m": 506.49710368725084, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760288.3108581462, 5732008.959196769], [760120.1917413437, 5731582.033403377]]}, "properties": {"id": "33273-33274-33275-33276-33277-33278-33279-33280-4989-4987-4985-4983-4981-4979-4977-4908-4906-4904-4902-4900-4898-4896-4894", "from": "832507573", "to": "832508707", "length_m": 958.7612420289695, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759784.8992450116, 5731073.704960584], [759691.3045970309, 5731153.496450025]]}, "properties": {"id": "3328", "from": "832507842", "to": "832509645", "length_m": 122.99040581991667, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825413.6476699609, 5816370.127602361], [825968.5152439883, 5816281.424274581]]}, "properties": {"id": "33281-33282-33283-33284-33285-33286-33287-33288-33289-33290-33291-33292-33293-33294-33295-33296-33297-33298-33299-33300-33301-56726-56727-56728-56729-56730-10339-10340-10341-10342-10343-10344-10345-10346-10347-10348-10349-10350", "from": "36715197", "to": "3048590286", "length_m": 882.5989341758525, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759691.3045970309, 5731153.496450025], [759784.8992450116, 5731073.704960584]]}, "properties": {"id": "3329", "from": "832509645", "to": "832507842", "length_m": 122.99040581991667, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789097.3220635385, 5751774.626549953], [789100.0921634961, 5751778.395065518]]}, "properties": {"id": "333", "from": "848692434", "to": "516048311", "length_m": 4.677089189817964, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833927.9112242856, 5822175.192208612], [833829.0498413837, 5822056.54990803]]}, "properties": {"id": "3330-3331-3332", "from": "603452964", "to": "603452955", "length_m": 154.60156743148832, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763761.4522884302, 5757104.9873714065], [764399.458657058, 5760655.058588141]]}, "properties": {"id": "33302", "from": "535080913", "to": "614507351", "length_m": 3606.9457663779995, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764399.458657058, 5760655.058588141], [763761.4522884302, 5757104.9873714065]]}, "properties": {"id": "33303", "from": "614507351", "to": "535080913", "length_m": 3606.9457663779995, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764399.458657058, 5760655.058588141], [764541.8294021031, 5761436.809462007]]}, "properties": {"id": "33304", "from": "614507351", "to": "535080931", "length_m": 794.6092482450207, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764541.8294021031, 5761436.809462007], [764399.458657058, 5760655.058588141]]}, "properties": {"id": "33305", "from": "535080931", "to": "614507351", "length_m": 794.6092482450207, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770307.9777217791, 5753858.140695949], [771038.7623960852, 5753731.363934128]]}, "properties": {"id": "33309-33307-29069-29067", "from": "535080679", "to": "6004713620", "length_m": 741.9678716079447, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770307.9777217791, 5753858.140695949], [769559.5898783534, 5753995.882766052]]}, "properties": {"id": "33310-33312", "from": "535080679", "to": "535080677", "length_m": 761.1798757610683, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769559.5898783534, 5753995.882766052], [770307.9777217791, 5753858.140695949]]}, "properties": {"id": "33313-33311", "from": "535080677", "to": "535080679", "length_m": 761.1798757610683, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769559.5898783534, 5753995.882766052], [768572.9738724758, 5754163.430768842]]}, "properties": {"id": "33314-33316-33318-33320-33322-33324", "from": "535080677", "to": "535080609", "length_m": 1009.0854853970724, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768572.9738724758, 5754163.430768842], [769559.5898783534, 5753995.882766052]]}, "properties": {"id": "33325-33323-33321-33319-33317-33315", "from": "535080609", "to": "535080677", "length_m": 1009.0854853970724, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768572.9738724758, 5754163.430768842], [767775.2467952218, 5754296.499875322]]}, "properties": {"id": "33326-33328-33330", "from": "535080609", "to": "534678187", "length_m": 811.0793987293606, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773978.5319165817, 5754836.766327672], [773347.1213165191, 5754942.592458568]]}, "properties": {"id": "3333-3335-3337-3339", "from": "498837749", "to": "5934623101", "length_m": 641.497760774216, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767775.2467952218, 5754296.499875322], [768572.9738724758, 5754163.430768842]]}, "properties": {"id": "33331-33329-33327", "from": "534678187", "to": "535080609", "length_m": 811.0793987293606, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767775.2467952218, 5754296.499875322], [767383.0199005846, 5754367.751176539]]}, "properties": {"id": "33332", "from": "534678187", "to": "534678127", "length_m": 398.64606397567877, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767383.0199005846, 5754367.751176539], [767775.2467952218, 5754296.499875322]]}, "properties": {"id": "33333", "from": "534678127", "to": "534678187", "length_m": 398.64606397567877, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767383.0199005846, 5754367.751176539], [765783.706620808, 5754643.739214344]]}, "properties": {"id": "33334-33336", "from": "534678127", "to": "535080893", "length_m": 1622.969609252513, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765783.706620808, 5754643.739214344], [767383.0199005846, 5754367.751176539]]}, "properties": {"id": "33337-33335", "from": "535080893", "to": "534678127", "length_m": 1622.969609252513, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765783.706620808, 5754643.739214344], [764631.4589880127, 5754872.857825027]]}, "properties": {"id": "33338", "from": "535080893", "to": "535080866", "length_m": 1174.8063419840862, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764631.4589880127, 5754872.857825027], [765783.706620808, 5754643.739214344]]}, "properties": {"id": "33339", "from": "535080866", "to": "535080893", "length_m": 1174.8063419840862, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764631.4589880127, 5754872.857825027], [763409.6201246284, 5755095.800139948]]}, "properties": {"id": "33340-33342-33344", "from": "535080866", "to": "535080829", "length_m": 1242.7735194636919, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763409.6201246284, 5755095.800139948], [764631.4589880127, 5754872.857825027]]}, "properties": {"id": "33345-33343-33341", "from": "535080829", "to": "535080866", "length_m": 1242.7735194636919, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765210.2515810558, 5751474.193015142], [764635.0304624743, 5751577.42758899]]}, "properties": {"id": "33346", "from": "534677924", "to": "534677844", "length_m": 584.4114231171966, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764635.0304624743, 5751577.42758899], [765210.2515810558, 5751474.193015142]]}, "properties": {"id": "33347", "from": "534677844", "to": "534677924", "length_m": 584.4114231171966, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764635.0304624743, 5751577.42758899], [764059.9954661932, 5751748.648688864]]}, "properties": {"id": "33348-33350-33352-33354-33356-33358-33360-33362-33834", "from": "534677844", "to": "534677862", "length_m": 686.0149368360663, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762025.1334577856, 5752055.023750911], [760955.4631255917, 5752247.426727078]]}, "properties": {"id": "33366", "from": "535080583", "to": "5304194121", "length_m": 1086.836474152828, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760955.4631255917, 5752247.426727078], [762025.1334577856, 5752055.023750911]]}, "properties": {"id": "33367", "from": "5304194121", "to": "535080583", "length_m": 1086.836474152828, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760955.4631255917, 5752247.426727078], [760448.151010358, 5752529.709275585]]}, "properties": {"id": "33368-33370-33372-33374-33376-33378-33380", "from": "5304194121", "to": "535080576", "length_m": 646.2948263223616, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760448.151010358, 5752529.709275585], [760955.4631255917, 5752247.426727078]]}, "properties": {"id": "33381-33379-33377-33375-33373-33371-33369", "from": "535080576", "to": "5304194121", "length_m": 646.2948263223616, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760448.151010358, 5752529.709275585], [760549.4653991768, 5753057.294518398]]}, "properties": {"id": "33382", "from": "535080576", "to": "535080577", "length_m": 537.225086545525, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760549.4653991768, 5753057.294518398], [760448.151010358, 5752529.709275585]]}, "properties": {"id": "33383", "from": "535080577", "to": "535080576", "length_m": 537.225086545525, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760549.4653991768, 5753057.294518398], [759768.1568387621, 5753264.485672909]]}, "properties": {"id": "33384-33386-33388-33390-33392-33394", "from": "535080577", "to": "535080581", "length_m": 838.7127152774638, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759768.1568387621, 5753264.485672909], [760549.4653991768, 5753057.294518398]]}, "properties": {"id": "33395-33393-33391-33389-33387-33385", "from": "535080581", "to": "535080577", "length_m": 838.7127152774638, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773347.1213165191, 5754942.592458568], [773978.5319165817, 5754836.766327672]]}, "properties": {"id": "3340-3338-3336-3334", "from": "5934623101", "to": "498837749", "length_m": 641.497760774216, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762025.1334577856, 5752055.023750911], [762453.9813459455, 5754416.704450381]]}, "properties": {"id": "33408-33410-33412", "from": "535080583", "to": "535080587", "length_m": 2401.456424533147, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773347.1213165191, 5754942.592458568], [772791.2131143971, 5755040.549763375]]}, "properties": {"id": "3341-3343-3345", "from": "5934623101", "to": "4416311909", "length_m": 564.4809890741564, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762453.9813459455, 5754416.704450381], [762025.1334577856, 5752055.023750911]]}, "properties": {"id": "33413-33411-33409", "from": "535080587", "to": "535080583", "length_m": 2401.456424533147, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762453.9813459455, 5754416.704450381], [762745.7923965165, 5754812.666208867]]}, "properties": {"id": "33414-33416-33418-33420-33422-33424-33426", "from": "535080587", "to": "535080701", "length_m": 547.8818506083866, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762745.7923965165, 5754812.666208867], [762453.9813459455, 5754416.704450381]]}, "properties": {"id": "33427-33425-33423-33421-33419-33417-33415", "from": "535080701", "to": "535080587", "length_m": 547.8818506083866, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762745.7923965165, 5754812.666208867], [763409.6201246284, 5755095.800139948]]}, "properties": {"id": "33428-33430-33432-33434-33436-33438-33440-33442-33444-33446-33448", "from": "535080701", "to": "535080829", "length_m": 913.8648210669804, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763409.6201246284, 5755095.800139948], [762745.7923965165, 5754812.666208867]]}, "properties": {"id": "33449-33447-33445-33443-33441-33439-33437-33435-33433-33431-33429", "from": "535080829", "to": "535080701", "length_m": 913.8648210669804, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763409.6201246284, 5755095.800139948], [763761.4522884302, 5757104.9873714065]]}, "properties": {"id": "33450-33452", "from": "535080829", "to": "535080913", "length_m": 2040.618831268573, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763761.4522884302, 5757104.9873714065], [763409.6201246284, 5755095.800139948]]}, "properties": {"id": "33453-33451", "from": "535080913", "to": "535080829", "length_m": 2040.618831268573, "freespeed_mps": 22.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762025.1334577856, 5752055.023750911], [761640.2687302748, 5751484.554757345]]}, "properties": {"id": "33454-33456-33458-33460-33462", "from": "535080583", "to": "810092332", "length_m": 689.9907913447814, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772791.2131143971, 5755040.549763375], [773347.1213165191, 5754942.592458568]]}, "properties": {"id": "3346-3344-3342", "from": "4416311909", "to": "5934623101", "length_m": 564.4809890741564, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761640.2687302748, 5751484.554757345], [762025.1334577856, 5752055.023750911]]}, "properties": {"id": "33463-33461-33459-33457-33455", "from": "810092332", "to": "535080583", "length_m": 689.9907913447814, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772791.2131143971, 5755040.549763375], [772075.3867284593, 5755160.638232803]]}, "properties": {"id": "3347-3349-3351-3353", "from": "4416311909", "to": "498837751", "length_m": 725.95874731086, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772075.3867284593, 5755160.638232803], [772791.2131143971, 5755040.549763375]]}, "properties": {"id": "3354-3352-3350-3348", "from": "498837751", "to": "4416311909", "length_m": 725.95874731086, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772075.3867284593, 5755160.638232803], [770465.8966871428, 5755451.371848019]]}, "properties": {"id": "3355-3357-3359-3361-3363-3365-3367-3369", "from": "498837751", "to": "535081510", "length_m": 1635.805373889186, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773336.7645031011, 5760026.675889171], [773526.2780512404, 5760163.838162882]]}, "properties": {"id": "33560", "from": "535081568", "to": "535081570", "length_m": 233.94203121461453, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773526.2780512404, 5760163.838162882], [773336.7645031011, 5760026.675889171]]}, "properties": {"id": "33561", "from": "535081570", "to": "535081568", "length_m": 233.94203121461453, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773526.2780512404, 5760163.838162882], [774082.084823725, 5760243.673871553]]}, "properties": {"id": "33562-33564-33566-33568-33570-33572-33574-33576-33578-33580-33582-33584", "from": "535081570", "to": "3756753376", "length_m": 666.4416413384624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774082.084823725, 5760243.673871553], [773526.2780512404, 5760163.838162882]]}, "properties": {"id": "33585-33583-33581-33579-33577-33575-33573-33571-33569-33567-33565-33563", "from": "3756753376", "to": "535081570", "length_m": 666.4416413384624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773264.2376852534, 5760130.782217734], [773074.9648058151, 5759995.384107956]]}, "properties": {"id": "33594", "from": "535081573", "to": "535081565", "length_m": 232.71628804268906, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773074.9648058151, 5759995.384107956], [773264.2376852534, 5760130.782217734]]}, "properties": {"id": "33595", "from": "535081565", "to": "535081573", "length_m": 232.71628804268906, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772995.80534043, 5760106.301312452], [773074.9648058151, 5759995.384107956]]}, "properties": {"id": "33596-33598", "from": "535081566", "to": "535081565", "length_m": 136.2675575697067, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773074.9648058151, 5759995.384107956], [772995.80534043, 5760106.301312452]]}, "properties": {"id": "33599-33597", "from": "535081565", "to": "535081566", "length_m": 136.2675575697067, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773074.9648058151, 5759995.384107956], [773111.3790509243, 5759941.293297526]]}, "properties": {"id": "33600", "from": "535081565", "to": "535081567", "length_m": 65.20592782459495, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773111.3790509243, 5759941.293297526], [773074.9648058151, 5759995.384107956]]}, "properties": {"id": "33601", "from": "535081567", "to": "535081565", "length_m": 65.20592782459495, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772691.9473283164, 5759894.2880546115], [772223.3952502196, 5760050.300797992]]}, "properties": {"id": "33602-33604-33606", "from": "535081559", "to": "535081562", "length_m": 512.8873198809866, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772223.3952502196, 5760050.300797992], [772691.9473283164, 5759894.2880546115]]}, "properties": {"id": "33607-33605-33603", "from": "535081562", "to": "535081559", "length_m": 512.8873198809866, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770957.7124304329, 5756696.234711559], [770064.0185348087, 5756853.6636562925]]}, "properties": {"id": "33608-33610-33612-33614-33616-33618-33620-33622", "from": "535081558", "to": "535081518", "length_m": 909.9274551381427, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770064.0185348087, 5756853.6636562925], [770957.7124304329, 5756696.234711559]]}, "properties": {"id": "33623-33621-33619-33617-33615-33613-33611-33609", "from": "535081518", "to": "535081558", "length_m": 909.9274551381427, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836148.0631792687, 5806598.390258906], [836533.9934649337, 5806774.830407119]]}, "properties": {"id": "33624-2583-2584-2585-2586-2587-2588-2589-2590-2591", "from": "36020934", "to": "36021203", "length_m": 429.2381376337265, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770064.0185348087, 5756853.6636562925], [768529.0556297963, 5757126.550363662]]}, "properties": {"id": "33625-33627-33629", "from": "535081518", "to": "535081527", "length_m": 1559.1542778500461, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768529.0556297963, 5757126.550363662], [770064.0185348087, 5756853.6636562925]]}, "properties": {"id": "33630-33628-33626", "from": "535081527", "to": "535081518", "length_m": 1559.1542778500461, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768572.9738724758, 5754163.430768842], [768714.1205403237, 5754947.228052834]]}, "properties": {"id": "33633-33635-33637-33639", "from": "535080609", "to": "535081132", "length_m": 797.0597990261764, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768714.1205403237, 5754947.228052834], [768572.9738724758, 5754163.430768842]]}, "properties": {"id": "33640-33638-33636-33634", "from": "535081132", "to": "535080609", "length_m": 797.0597990261764, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768714.1205403237, 5754947.228052834], [769393.0682819746, 5754830.614468824]]}, "properties": {"id": "33641-33643-33645-33647", "from": "535081132", "to": "535081302", "length_m": 689.0014858505258, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769393.0682819746, 5754830.614468824], [768714.1205403237, 5754947.228052834]]}, "properties": {"id": "33648-33646-33644-33642", "from": "535081302", "to": "535081132", "length_m": 689.0014858505258, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770002.7876797016, 5758894.080523422], [770204.6781183309, 5758216.240315606]]}, "properties": {"id": "33656", "from": "535081533", "to": "535081534", "length_m": 707.2673449558506, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770204.6781183309, 5758216.240315606], [770002.7876797016, 5758894.080523422]]}, "properties": {"id": "33657", "from": "535081534", "to": "535081533", "length_m": 707.2673449558506, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770204.6781183309, 5758216.240315606], [770064.0185348087, 5756853.6636562925]]}, "properties": {"id": "33658-33660-33662-33664-33666-33668-33670", "from": "535081534", "to": "535081518", "length_m": 1384.514982384173, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770064.0185348087, 5756853.6636562925], [770204.6781183309, 5758216.240315606]]}, "properties": {"id": "33671-33669-33667-33665-33663-33661-33659", "from": "535081518", "to": "535081534", "length_m": 1384.514982384173, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770064.0185348087, 5756853.6636562925], [769909.6423056691, 5755980.425061994]]}, "properties": {"id": "33672", "from": "535081518", "to": "535081517", "length_m": 886.7793762341414, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769909.6423056691, 5755980.425061994], [770064.0185348087, 5756853.6636562925]]}, "properties": {"id": "33673", "from": "535081517", "to": "535081518", "length_m": 886.7793762341414, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769909.6423056691, 5755980.425061994], [769393.0682819746, 5754830.614468824]]}, "properties": {"id": "33674-33676-33678-33680-33682-33684-33686-33688-33690-33692-33694-33696-33698", "from": "535081517", "to": "535081302", "length_m": 1333.445853295863, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769393.0682819746, 5754830.614468824], [769909.6423056691, 5755980.425061994]]}, "properties": {"id": "33699-33697-33695-33693-33691-33689-33687-33685-33683-33681-33679-33677-33675", "from": "535081302", "to": "535081517", "length_m": 1333.445853295863, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770465.8966871428, 5755451.371848019], [772075.3867284593, 5755160.638232803]]}, "properties": {"id": "3370-3368-3366-3364-3362-3360-3358-3356", "from": "535081510", "to": "498837751", "length_m": 1635.805373889186, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769393.0682819746, 5754830.614468824], [769619.7578717474, 5754316.152643843]]}, "properties": {"id": "33700-33702-33704-33706", "from": "535081302", "to": "535081284", "length_m": 615.22775625181, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769619.7578717474, 5754316.152643843], [769393.0682819746, 5754830.614468824]]}, "properties": {"id": "33707-33705-33703-33701", "from": "535081284", "to": "535081302", "length_m": 615.22775625181, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769619.7578717474, 5754316.152643843], [769559.5898783534, 5753995.882766052]]}, "properties": {"id": "33708", "from": "535081284", "to": "535080677", "length_m": 325.8726468518552, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769559.5898783534, 5753995.882766052], [769619.7578717474, 5754316.152643843]]}, "properties": {"id": "33709", "from": "535080677", "to": "535081284", "length_m": 325.8726468518552, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770465.8966871428, 5755451.371848019], [770450.1092428603, 5755461.012549862]]}, "properties": {"id": "3371", "from": "535081510", "to": "535081508", "length_m": 18.49828446497286, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769619.7578717474, 5754316.152643843], [770285.5286865837, 5754205.132400904]]}, "properties": {"id": "33713-33715-33717", "from": "535081284", "to": "535081459", "length_m": 675.3928373936319, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770285.5286865837, 5754205.132400904], [769619.7578717474, 5754316.152643843]]}, "properties": {"id": "33718-33716-33714", "from": "535081459", "to": "535081284", "length_m": 675.3928373936319, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835930.4880820944, 5806387.926798664], [836148.0631792687, 5806598.390258906]]}, "properties": {"id": "33719-33712-39674-39675-39676-39677-39678", "from": "254225264", "to": "36020934", "length_m": 303.16178694472006, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770450.1092428603, 5755461.012549862], [770465.8966871428, 5755451.371848019]]}, "properties": {"id": "3372", "from": "535081508", "to": "535081510", "length_m": 18.49828446497286, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768714.1205403237, 5754947.228052834], [768394.7297313309, 5755359.466593894]]}, "properties": {"id": "33720-33722-33724-33726", "from": "535081132", "to": "535081203", "length_m": 725.6252423158184, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768394.7297313309, 5755359.466593894], [768714.1205403237, 5754947.228052834]]}, "properties": {"id": "33727-33725-33723-33721", "from": "535081203", "to": "535081132", "length_m": 725.6252423158184, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770450.1092428603, 5755461.012549862], [769999.8348859639, 5755537.754106986]]}, "properties": {"id": "3373-3375-3377-3379", "from": "535081508", "to": "535081509", "length_m": 457.43188048617725, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765543.7398998253, 5750504.247609872], [765480.1960257462, 5750282.043130319]]}, "properties": {"id": "33734-33732-33730-18145-18143-18141-18139-18137", "from": "2974219376", "to": "371398747", "length_m": 232.64264713342905, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765543.7398998253, 5750504.247609872], [765521.5417077604, 5750744.643616911]]}, "properties": {"id": "33735-33737-33739", "from": "2974219376", "to": "534677914", "length_m": 241.87353565256714, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765521.5417077604, 5750744.643616911], [765543.7398998253, 5750504.247609872]]}, "properties": {"id": "33740-33738-33736", "from": "534677914", "to": "2974219376", "length_m": 241.87353565256714, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765521.5417077604, 5750744.643616911], [765807.5036251117, 5751571.053625304]]}, "properties": {"id": "33741-33743-33745-33747-33749-33751-33753-33755", "from": "534677914", "to": "371399007", "length_m": 906.7208013865708, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765807.5036251117, 5751571.053625304], [765521.5417077604, 5750744.643616911]]}, "properties": {"id": "33756-33754-33752-33750-33748-33746-33744-33742", "from": "371399007", "to": "534677914", "length_m": 906.7208013865708, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765807.5036251117, 5751571.053625304], [765876.997269561, 5752381.294795198]]}, "properties": {"id": "33757-33759-33761-33763-33765-33767", "from": "371399007", "to": "534677934", "length_m": 818.4395464821068, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765876.997269561, 5752381.294795198], [765807.5036251117, 5751571.053625304]]}, "properties": {"id": "33768-33766-33764-33762-33760-33758", "from": "534677934", "to": "371399007", "length_m": 818.4395464821068, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765876.997269561, 5752381.294795198], [765518.7542511672, 5753198.390181198]]}, "properties": {"id": "33769-33771-33773-33775-33777-33779-33781-33783-33785-33787-33789-33791-33793-33795-33797", "from": "534677934", "to": "371398958", "length_m": 931.0054059768145, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765518.7542511672, 5753198.390181198], [765876.997269561, 5752381.294795198]]}, "properties": {"id": "33798-33796-33794-33792-33790-33788-33786-33784-33782-33780-33778-33776-33774-33772-33770", "from": "371398958", "to": "534677934", "length_m": 931.0054059768145, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765518.7542511672, 5753198.390181198], [765783.706620808, 5754643.739214344]]}, "properties": {"id": "33799-33801", "from": "371398958", "to": "535080893", "length_m": 1469.444718735926, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769999.8348859639, 5755537.754106986], [770450.1092428603, 5755461.012549862]]}, "properties": {"id": "3380-3378-3376-3374", "from": "535081509", "to": "535081508", "length_m": 457.43188048617725, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765783.706620808, 5754643.739214344], [765518.7542511672, 5753198.390181198]]}, "properties": {"id": "33802-33800", "from": "535080893", "to": "371398958", "length_m": 1469.444718735926, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765783.706620808, 5754643.739214344], [766068.5107815699, 5756342.327129366]]}, "properties": {"id": "33803", "from": "535080893", "to": "371398944", "length_m": 1722.2991358132724, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766068.5107815699, 5756342.327129366], [765783.706620808, 5754643.739214344]]}, "properties": {"id": "33804", "from": "371398944", "to": "535080893", "length_m": 1722.2991358132724, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835930.4880820944, 5806387.926798664], [836804.8518836317, 5806637.294221914]]}, "properties": {"id": "33805-33806-33728-1650-1651-1652-1653-1654-1655-33939-33940-33941-33942-33943", "from": "254225264", "to": "254226145", "length_m": 940.4139666453699, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759837.1866890787, 5729252.288428156], [759798.5934676919, 5729202.862220353]]}, "properties": {"id": "3381-3383", "from": "5328187033", "to": "832508286", "length_m": 62.9397503012185, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765210.2515810558, 5751474.193015142], [765521.5417077604, 5750744.643616911]]}, "properties": {"id": "33816-33814-33812-33810-29136-29134", "from": "534677924", "to": "534677914", "length_m": 1086.1753086372132, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765210.2515810558, 5751474.193015142], [765360.5978891184, 5752265.951806983]]}, "properties": {"id": "33817-33819-33821-33823", "from": "534677924", "to": "535080604", "length_m": 806.0169688649324, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765360.5978891184, 5752265.951806983], [765210.2515810558, 5751474.193015142]]}, "properties": {"id": "33824-33822-33820-33818", "from": "535080604", "to": "534677924", "length_m": 806.0169688649324, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764059.9954661932, 5751748.648688864], [764635.0304624743, 5751577.42758899]]}, "properties": {"id": "33835-33363-33361-33359-33357-33355-33353-33351-33349", "from": "534677862", "to": "534677844", "length_m": 686.0149368360663, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764059.9954661932, 5751748.648688864], [764236.0379516061, 5752750.948670022]]}, "properties": {"id": "33836-33838-33840-33842", "from": "534677862", "to": "535080591", "length_m": 1031.7466817811821, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759798.5934676919, 5729202.862220353], [759837.1866890787, 5729252.288428156]]}, "properties": {"id": "3384-3382", "from": "832508286", "to": "5328187033", "length_m": 62.9397503012185, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764236.0379516061, 5752750.948670022], [764059.9954661932, 5751748.648688864]]}, "properties": {"id": "33843-33841-33839-33837", "from": "535080591", "to": "534677862", "length_m": 1031.7466817811821, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764236.0379516061, 5752750.948670022], [764643.0580842819, 5753780.986630501]]}, "properties": {"id": "33844-33846-33848-33850-33852", "from": "535080591", "to": "5934622883", "length_m": 1186.656163051051, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759798.5934676919, 5729202.862220353], [759767.7980344546, 5729168.116444691]]}, "properties": {"id": "3385", "from": "832508286", "to": "832510052", "length_m": 46.42873707895624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764643.0580842819, 5753780.986630501], [764236.0379516061, 5752750.948670022]]}, "properties": {"id": "33853-33851-33849-33847-33845", "from": "5934622883", "to": "535080591", "length_m": 1186.656163051051, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764643.0580842819, 5753780.986630501], [764631.4589880127, 5754872.857825027]]}, "properties": {"id": "33854-33856-33858-33860-33862-33864", "from": "5934622883", "to": "535080866", "length_m": 1154.9276631998368, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759767.7980344546, 5729168.116444691], [759798.5934676919, 5729202.862220353]]}, "properties": {"id": "3386", "from": "832510052", "to": "832508286", "length_m": 46.42873707895624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764631.4589880127, 5754872.857825027], [764643.0580842819, 5753780.986630501]]}, "properties": {"id": "33865-33863-33861-33859-33857-33855", "from": "535080866", "to": "5934622883", "length_m": 1154.9276631998368, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835445.060777294, 5805963.847708598], [835797.2678321695, 5806328.471244406]]}, "properties": {"id": "33866-33867-33868-33869-33870-33871-33833-13756-13757-13758-13759-13760-13761-13762-13763", "from": "254224704", "to": "2100692687", "length_m": 512.6043648366347, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759767.7980344546, 5729168.116444691], [759608.9939780559, 5728978.342358621]]}, "properties": {"id": "3387-3389-3391-3393-3395-3397-3399-3401-3403-3405-3407-3409-3411-3413-3415", "from": "832510052", "to": "832509663", "length_m": 271.83730564864385, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835281.4469631999, 5818860.811457283], [835260.1650704375, 5818789.4909633305]]}, "properties": {"id": "339-340-341-342-343-344-345", "from": "30929320", "to": "30929314", "length_m": 78.83319146362152, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768815.1514621626, 5758508.785098783], [768181.2527652085, 5758910.875465117]]}, "properties": {"id": "33919-19694-19696-19698-19700-19702-19704-19706", "from": "849464226", "to": "849463752", "length_m": 750.9081743538034, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835483.3407112347, 5818190.167728373], [835442.4925537761, 5818239.67649271]]}, "properties": {"id": "33987-33988", "from": "268387502", "to": "2790078696", "length_m": 64.20552847526947, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835442.4925537761, 5818239.67649271], [835260.1650704375, 5818789.4909633305]]}, "properties": {"id": "33989-33990-33991-33992-33993-33994-33995-33996-33997-33998-33999-34000-34001-34002-34003-34004", "from": "2790078696", "to": "30929314", "length_m": 589.627086705254, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835260.1650704375, 5818789.4909633305], [835277.1113602282, 5818954.889644688]]}, "properties": {"id": "34005-34006-34007-34008-34009-34010-34011-34012", "from": "30929314", "to": "268387661", "length_m": 166.43607210815597, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793813.9630647713, 5772521.735361089], [793812.7329042836, 5772512.966030635]]}, "properties": {"id": "34027", "from": "1967591735", "to": "1838774363", "length_m": 8.85519346892392, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835377.7958358398, 5819565.020715471], [835330.4359698454, 5819179.43080884]]}, "properties": {"id": "34037-34038-34039-34040-34041-34042-34043-34044-34045-34046", "from": "2915467075", "to": "30929318", "length_m": 389.4467507672897, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835330.4359698454, 5819179.43080884], [835293.4663915492, 5818952.189674806]]}, "properties": {"id": "34047-34048", "from": "30929318", "to": "30929319", "length_m": 230.23175400022143, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779127.1245340216, 5744860.995804267], [778770.5315707204, 5744535.32556597]]}, "properties": {"id": "34095-34097-34099-34101-34103-34105-34107-34109-34111-34113-34115-34117-34119-34121-34123", "from": "289545881", "to": "294988706", "length_m": 495.8366864654383, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778770.5315707204, 5744535.32556597], [779127.1245340216, 5744860.995804267]]}, "properties": {"id": "34124-34122-34120-34118-34116-34114-34112-34110-34108-34106-34104-34102-34100-34098-34096", "from": "294988706", "to": "289545881", "length_m": 495.8366864654383, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778770.5315707204, 5744535.32556597], [778751.292807213, 5744472.47983847]]}, "properties": {"id": "34125-34127", "from": "294988706", "to": "37684654", "length_m": 65.75096005901008, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778751.292807213, 5744472.47983847], [778770.5315707204, 5744535.32556597]]}, "properties": {"id": "34128-34126", "from": "37684654", "to": "294988706", "length_m": 65.75096005901008, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804488.6887591239, 5786836.216263715], [804385.3094776159, 5786799.791307442]]}, "properties": {"id": "34143-34144-34145-34146-34147-34148-54182-54183-54184-54185-54186-54187-54188-54189", "from": "616936293", "to": "476313228", "length_m": 138.4435384119962, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837468.7907390723, 5818790.497182984], [837480.2609021611, 5818842.611981897]]}, "properties": {"id": "34149-34150", "from": "30928566", "to": "303682988", "length_m": 53.36218597748474, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837480.2609021611, 5818842.611981897], [837682.846559681, 5819128.640330331]]}, "properties": {"id": "34151-34152-34153-34154-34155-34156-34157-34158-34159-34160-34161-34162", "from": "303682988", "to": "169795563", "length_m": 355.14459435486447, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759608.9939780559, 5728978.342358621], [759767.7980344546, 5729168.116444691]]}, "properties": {"id": "3416-3414-3412-3410-3408-3406-3404-3402-3400-3398-3396-3394-3392-3390-3388", "from": "832509663", "to": "832510052", "length_m": 271.83730564864385, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837682.846559681, 5819128.640330331], [837760.8551220401, 5819234.483550636]]}, "properties": {"id": "34163-34164-2478-2479-2480-2481-2482-2483-2484-2485", "from": "169795563", "to": "169794583", "length_m": 135.43335548160348, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833879.1422700256, 5817626.970671378], [833363.232026481, 5817655.618515285]]}, "properties": {"id": "34165-34166-34167-34168-34169-34170-34171-34172-34173", "from": "601349706", "to": "309809262", "length_m": 519.1714113251526, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758762.867274205, 5730780.783919602], [758811.1866396962, 5730854.378697927]]}, "properties": {"id": "3417-3419-3421-3423", "from": "832507651", "to": "832509302", "length_m": 88.26015562724601, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828267.8892998332, 5822070.72425456], [828827.8641849381, 5821995.373466439]]}, "properties": {"id": "34175-13865-13863-13861-13859", "from": "1412723324", "to": "33086230", "length_m": 565.034127295279, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828267.8892998332, 5822070.72425456], [827609.6852180216, 5822158.46390195]]}, "properties": {"id": "34176-34178", "from": "1412723324", "to": "26118307", "length_m": 664.0283097603376, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[827609.6852180216, 5822158.46390195], [828267.8892998332, 5822070.72425456]]}, "properties": {"id": "34179-34177", "from": "26118307", "to": "1412723324", "length_m": 664.0283097603376, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[827609.6852180216, 5822158.46390195], [826859.971845802, 5822304.297151763]]}, "properties": {"id": "34180", "from": "26118307", "to": "26118308", "length_m": 763.7653261329929, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826859.971845802, 5822304.297151763], [827609.6852180216, 5822158.46390195]]}, "properties": {"id": "34181", "from": "26118308", "to": "26118307", "length_m": 763.7653261329929, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826859.971845802, 5822304.297151763], [826265.2068378299, 5822416.207898628]]}, "properties": {"id": "34182-34184", "from": "26118308", "to": "1080119539", "length_m": 605.2205414344726, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826265.2068378299, 5822416.207898628], [826859.971845802, 5822304.297151763]]}, "properties": {"id": "34185-34183", "from": "1080119539", "to": "26118308", "length_m": 605.2205414344726, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835277.1113602282, 5818954.889644688], [835313.248813444, 5819178.839997333]]}, "properties": {"id": "34186-34187-34188", "from": "268387661", "to": "3008938960", "length_m": 226.8487846604404, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835313.248813444, 5819178.839997333], [835314.3384839299, 5819185.433857445]]}, "properties": {"id": "34189", "from": "3008938960", "to": "5129696677", "length_m": 6.683290574661274, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835314.3384839299, 5819185.433857445], [835356.670875837, 5819465.239809204]]}, "properties": {"id": "34190-34191-34192-34193-34194", "from": "5129696677", "to": "583087209", "length_m": 283.01205164847994, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835356.670875837, 5819465.239809204], [835160.1145436995, 5820264.695368279]]}, "properties": {"id": "34195-34196-34197-34198-34199-36432-36433-36434-36435-36436-13445-13471-13472-12019-12020-12021-12022-12023-12024-12025-12026-12027-12028-12029-12030-12031-12032-12033-47765-47766-46770-46771-46772-46773", "from": "583087209", "to": "2787795144", "length_m": 834.8258868166123, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795314.9064504567, 5771392.550968155], [795318.9762711797, 5771402.617370644]]}, "properties": {"id": "34200", "from": "705055388", "to": "263727590", "length_m": 10.857987821676442, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793248.9229477945, 5832361.6665132325], [794357.6700260483, 5831660.905526037]]}, "properties": {"id": "34231-34232-34233-34234-34235-34236-34237-34238-34239-34240-34241-34242", "from": "3287411832", "to": "317108062", "length_m": 1314.4707616847436, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758811.1866396962, 5730854.378697927], [758762.867274205, 5730780.783919602]]}, "properties": {"id": "3424-3422-3420-3418", "from": "832509302", "to": "832507651", "length_m": 88.26015562724601, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794357.6700260483, 5831660.905526037], [794689.2449116737, 5831286.398290696]]}, "properties": {"id": "34243-34244-34245", "from": "317108062", "to": "317108047", "length_m": 501.3868319058981, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794689.2449116737, 5831286.398290696], [795269.2766238515, 5830117.388606153]]}, "properties": {"id": "34246-34247-34248-34249-34250-34251", "from": "317108047", "to": "317107981", "length_m": 1306.5081529645074, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760617.1767069539, 5732284.353483248], [760614.0709414796, 5732361.17835797]]}, "properties": {"id": "3425-3427-3429-3431-3433", "from": "36830004", "to": "832510164", "length_m": 88.16713591127035, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795269.2766238515, 5830117.388606153], [795799.6419004437, 5829658.921413327]]}, "properties": {"id": "34252-34253-34254-34255-34256-34257", "from": "317107981", "to": "35098376", "length_m": 712.2364733587624, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795799.6419004437, 5829658.921413327], [796445.2228348127, 5829380.872044306]]}, "properties": {"id": "34258-21876-21826-21827", "from": "35098376", "to": "317107819", "length_m": 702.9235245862267, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791175.7731788764, 5777262.284174896], [791158.1618979741, 5777257.27991096]]}, "properties": {"id": "34259-34260-34261", "from": "334409424", "to": "334409425", "length_m": 18.68677491986849, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791034.0164906543, 5777373.465152087], [791051.1992730225, 5777379.007397777]]}, "properties": {"id": "34263", "from": "334409503", "to": "318035139", "length_m": 18.054486858055483, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791043.5949965888, 5777271.8062144825], [791021.8563765882, 5777384.836605969]]}, "properties": {"id": "34264-34265-34266-34267-34268-34269-34270", "from": "334409508", "to": "334409510", "length_m": 123.47763568422954, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833035.6903000579, 5816088.170690347], [833045.6527647176, 5816140.860912975]]}, "properties": {"id": "34271-34272-34273", "from": "30918489", "to": "1536232002", "length_m": 53.624987191374586, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791195.6747421508, 5777390.350825264], [791196.4057598726, 5777243.018113513]]}, "properties": {"id": "34274-34275-34276-34277-34278-34279-34280-34281-34282-34283-34284-34285-34286", "from": "334409411", "to": "334409415", "length_m": 151.5046326565742, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833359.6141614747, 5817652.418059476], [833305.2758043294, 5817414.679795878]]}, "properties": {"id": "34287-34288-34289-34290-34291-34292", "from": "5492934278", "to": "30918462", "length_m": 244.43036716653884, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837394.491020328, 5815487.644071506], [837404.0879469231, 5815450.122474552]]}, "properties": {"id": "34295-34296", "from": "33302736", "to": "343862868", "length_m": 40.467478705689146, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832486.0428633252, 5812853.911937407], [832488.4078520985, 5812881.858380308]]}, "properties": {"id": "34297", "from": "36043667", "to": "1536091938", "length_m": 28.04633385603259, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781948.4040065769, 5762262.740355576], [782097.7264761489, 5763134.096675325]]}, "properties": {"id": "34301-34299-46969", "from": "6076265226", "to": "476151607", "length_m": 884.0821015043806, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781948.4040065769, 5762262.740355576], [781823.6062942988, 5761543.369332313]]}, "properties": {"id": "34302-34304-34306", "from": "6076265226", "to": "484264180", "length_m": 730.2012604222574, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781823.6062942988, 5761543.369332313], [781948.4040065769, 5762262.740355576]]}, "properties": {"id": "34307-34305-34303", "from": "484264180", "to": "6076265226", "length_m": 730.2012604222574, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781823.6062942988, 5761543.369332313], [781678.2278811798, 5760775.626823233]]}, "properties": {"id": "34308-34310", "from": "484264180", "to": "6076265230", "length_m": 781.3859668891151, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781678.2278811798, 5760775.626823233], [781823.6062942988, 5761543.369332313]]}, "properties": {"id": "34311-34309", "from": "6076265230", "to": "484264180", "length_m": 781.3859668891151, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781591.6387560795, 5760253.073125121], [781458.3391607425, 5759458.703045199]]}, "properties": {"id": "34336-34338-34340-34342-34344-34346-34348-34350-34352-34354-34356-34358-34360-34362", "from": "6076265234", "to": "6076265239", "length_m": 815.1087053550153, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760614.0709414796, 5732361.17835797], [760617.1767069539, 5732284.353483248]]}, "properties": {"id": "3434-3432-3430-3428-3426", "from": "832510164", "to": "36830004", "length_m": 88.16713591127035, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760614.0709414796, 5732361.17835797], [760548.2225177764, 5732309.818448138]]}, "properties": {"id": "3435-3437-3439", "from": "832510164", "to": "832509815", "length_m": 83.62079367448281, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781458.3391607425, 5759458.703045199], [781591.6387560795, 5760253.073125121]]}, "properties": {"id": "34363-34361-34359-34357-34355-34353-34351-34349-34347-34345-34343-34341-34339-34337", "from": "6076265239", "to": "6076265234", "length_m": 815.1087053550153, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781458.3391607425, 5759458.703045199], [781368.0598758573, 5758964.782236632]]}, "properties": {"id": "34364-34366-34368", "from": "6076265239", "to": "484264179", "length_m": 502.1103909245634, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781368.0598758573, 5758964.782236632], [781458.3391607425, 5759458.703045199]]}, "properties": {"id": "34369-34367-34365", "from": "484264179", "to": "6076265239", "length_m": 502.1103909245634, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781368.0598758573, 5758964.782236632], [781362.8942845099, 5758934.4227577755]]}, "properties": {"id": "34370", "from": "484264179", "to": "1078364895", "length_m": 30.795799868252708, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781362.8942845099, 5758934.4227577755], [781368.0598758573, 5758964.782236632]]}, "properties": {"id": "34371", "from": "1078364895", "to": "484264179", "length_m": 30.795799868252708, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781362.8942845099, 5758934.4227577755], [781255.1343747815, 5758365.406166038]]}, "properties": {"id": "34372-34374-34376-34378", "from": "1078364895", "to": "1835206995", "length_m": 579.2932434027136, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781255.1343747815, 5758365.406166038], [781362.8942845099, 5758934.4227577755]]}, "properties": {"id": "34379-34377-34375-34373", "from": "1835206995", "to": "1078364895", "length_m": 579.2932434027136, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837244.9692358018, 5812097.644514551], [837260.7239922171, 5812024.242568055]]}, "properties": {"id": "34381-34382-34383-34384", "from": "1387186631", "to": "268176011", "length_m": 75.90363301333973, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834721.5720899482, 5820622.093482037], [835192.8786402388, 5820477.230165234]]}, "properties": {"id": "34385-33073-33074-33075-33076-33077-33078-33079-33080-33081-33082-33083", "from": "26032514", "to": "36047972", "length_m": 498.4016197197493, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[821475.9648535864, 5796746.552351841], [823203.9804473044, 5797411.081314912]]}, "properties": {"id": "34386-34380-41073", "from": "204454011", "to": "282810962", "length_m": 1851.400215590635, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760548.2225177764, 5732309.818448138], [760614.0709414796, 5732361.17835797]]}, "properties": {"id": "3440-3438-3436", "from": "832509815", "to": "832510164", "length_m": 83.62079367448281, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833967.1450719287, 5820863.066601317], [834254.5508534326, 5820769.245227015]]}, "properties": {"id": "34407", "from": "1959669511", "to": "26032513", "length_m": 302.33182607871163, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834254.5508534326, 5820769.245227015], [834721.5720899482, 5820622.093482037]]}, "properties": {"id": "34408-34409-34410", "from": "26032513", "to": "26032514", "length_m": 489.65613901209406, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760548.2225177764, 5732309.818448138], [760496.7752574966, 5732247.35637946]]}, "properties": {"id": "3441-3443-3445", "from": "832509815", "to": "832509295", "length_m": 81.01424129970411, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779467.9543330567, 5758667.73407336], [779664.0815478092, 5758655.61603284]]}, "properties": {"id": "34411-34413-34415-34417-34419", "from": "186877160", "to": "484264178", "length_m": 205.00362391406753, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779664.0815478092, 5758655.61603284], [779467.9543330567, 5758667.73407336]]}, "properties": {"id": "34420-34418-34416-34414-34412", "from": "484264178", "to": "186877160", "length_m": 205.00362391406753, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779664.0815478092, 5758655.61603284], [781255.1343747815, 5758365.406166038]]}, "properties": {"id": "34421-34423", "from": "484264178", "to": "1835206995", "length_m": 1617.4888964895697, "freespeed_mps": 13.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781255.1343747815, 5758365.406166038], [779664.0815478092, 5758655.61603284]]}, "properties": {"id": "34424-34422", "from": "1835206995", "to": "484264178", "length_m": 1617.4888964895697, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786092.0549969081, 5758073.897508104], [785969.8740920565, 5758096.748816954]]}, "properties": {"id": "34426", "from": "148800320", "to": "5604780752", "length_m": 124.2994600360483, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785969.8740920565, 5758096.748816954], [786092.0549969081, 5758073.897508104]]}, "properties": {"id": "34427", "from": "5604780752", "to": "148800320", "length_m": 124.2994600360483, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785969.8740920565, 5758096.748816954], [785330.6322530536, 5758216.256150144]]}, "properties": {"id": "34428", "from": "5604780752", "to": "847814531", "length_m": 650.3169456284793, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785330.6322530536, 5758216.256150144], [785969.8740920565, 5758096.748816954]]}, "properties": {"id": "34429", "from": "847814531", "to": "5604780752", "length_m": 650.3169456284793, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785330.6322530536, 5758216.256150144], [784530.8128261552, 5758364.882796447]]}, "properties": {"id": "34430", "from": "847814531", "to": "976339303", "length_m": 813.5115199127728, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784530.8128261552, 5758364.882796447], [785330.6322530536, 5758216.256150144]]}, "properties": {"id": "34431", "from": "976339303", "to": "847814531", "length_m": 813.5115199127728, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784530.8128261552, 5758364.882796447], [783893.2673709223, 5758481.612708985]]}, "properties": {"id": "34432", "from": "976339303", "to": "976339305", "length_m": 648.1435630875014, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783893.2673709223, 5758481.612708985], [784530.8128261552, 5758364.882796447]]}, "properties": {"id": "34433", "from": "976339305", "to": "976339303", "length_m": 648.1435630875014, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783893.2673709223, 5758481.612708985], [782930.8013649513, 5758654.669704507]]}, "properties": {"id": "34434-34436", "from": "976339305", "to": "847813498", "length_m": 977.9010313883063, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782930.8013649513, 5758654.669704507], [783893.2673709223, 5758481.612708985]]}, "properties": {"id": "34437-34435", "from": "847813498", "to": "976339305", "length_m": 977.9010313883063, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833054.7157002913, 5816084.832900133], [833006.2012943117, 5815827.700463097]]}, "properties": {"id": "34441-34442-34443-34444-34445", "from": "30918488", "to": "30918490", "length_m": 261.6820887609063, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817987.1654747454, 5821857.558569857], [818596.3205186182, 5821648.5986647615]]}, "properties": {"id": "34449-34450-34451-34452-34453-34454-34455-34456-34457-34458-34459-34460-34461-34462-34463", "from": "1412779624", "to": "59961470", "length_m": 649.2854813714526, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760496.7752574966, 5732247.35637946], [760548.2225177764, 5732309.818448138]]}, "properties": {"id": "3446-3444-3442", "from": "832509295", "to": "832509815", "length_m": 81.01424129970411, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793942.7186398549, 5775426.518369449], [793959.1724226654, 5775422.133194294]]}, "properties": {"id": "34464", "from": "651255267", "to": "4704750615", "length_m": 17.028115826981256, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781479.6359374316, 5745318.132933385], [781447.2845789031, 5745796.136665994]]}, "properties": {"id": "34465-34467-34469-34471-34473-34475-34477-34479-34481-34483-34485-34487-34489-34491-34493-34495-34497-34499-34501-34503-34505-34507-34509", "from": "3506304438", "to": "3506304475", "length_m": 638.1405608355068, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727191.1139090688, 5826432.000568859], [728238.9168748879, 5826519.4050572505]]}, "properties": {"id": "3447-3449-3451-3453-3455-3457-3459-3461-3463-3465-3467-3469-3471-3473-3475-3477", "from": "2315437918", "to": "1969410839", "length_m": 1097.0210162929163, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781447.2845789031, 5745796.136665994], [781479.6359374316, 5745318.132933385]]}, "properties": {"id": "34510-34508-34506-34504-34502-34500-34498-34496-34494-34492-34490-34488-34486-34484-34482-34480-34478-34476-34474-34472-34470-34468-34466", "from": "3506304475", "to": "3506304438", "length_m": 638.1405608355068, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781447.2845789031, 5745796.136665994], [781447.8568103745, 5745831.013259125]]}, "properties": {"id": "34511", "from": "3506304475", "to": "3513952454", "length_m": 34.881287203830205, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781447.8568103745, 5745831.013259125], [781447.2845789031, 5745796.136665994]]}, "properties": {"id": "34512", "from": "3513952454", "to": "3506304475", "length_m": 34.881287203830205, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804579.9062351943, 5767091.056061543], [804207.8459576429, 5767237.564826526]]}, "properties": {"id": "34535-34574", "from": "482815257", "to": "435990856", "length_m": 399.86706278532876, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794014.0249331456, 5776875.471348298], [794051.8334845464, 5777073.453647568]]}, "properties": {"id": "34545", "from": "867695761", "to": "319170210", "length_m": 201.5601084902583, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788709.0735785139, 5754294.815039228], [788664.668480447, 5754076.929215426]]}, "properties": {"id": "34546-34548", "from": "510174776", "to": "515916009", "length_m": 222.3957399784066, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788664.668480447, 5754076.929215426], [788709.0735785139, 5754294.815039228]]}, "properties": {"id": "34549-34547", "from": "515916009", "to": "510174776", "length_m": 222.3957399784066, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788664.668480447, 5754076.929215426], [788640.788328313, 5753928.52936997]]}, "properties": {"id": "34550", "from": "515916009", "to": "509915218", "length_m": 150.3089344700573, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788640.788328313, 5753928.52936997], [788664.668480447, 5754076.929215426]]}, "properties": {"id": "34551", "from": "509915218", "to": "515916009", "length_m": 150.3089344700573, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788640.788328313, 5753928.52936997], [788600.3568690284, 5753735.0082977265]]}, "properties": {"id": "34552", "from": "509915218", "to": "509915214", "length_m": 197.69954033594775, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788600.3568690284, 5753735.0082977265], [788640.788328313, 5753928.52936997]]}, "properties": {"id": "34553", "from": "509915214", "to": "509915218", "length_m": 197.69954033594775, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799589.6516610412, 5825987.801158758], [800070.2288962405, 5825817.917191343]]}, "properties": {"id": "34563-34564-34565-34566-34567", "from": "2923307881", "to": "2923307879", "length_m": 510.13013216667525, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800070.2288962405, 5825817.917191343], [800844.880486223, 5825899.90769755]]}, "properties": {"id": "34568-34569-34570-34571-34572-34573-27992-27993", "from": "2923307879", "to": "2923307757", "length_m": 788.6324431446038, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770840.2294330322, 5739094.084943978], [771033.4457437398, 5739062.008262609]]}, "properties": {"id": "34575", "from": "831201638", "to": "831201521", "length_m": 195.86080791604704, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771033.4457437398, 5739062.008262609], [770840.2294330322, 5739094.084943978]]}, "properties": {"id": "34576", "from": "831201521", "to": "831201638", "length_m": 195.86080791604704, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770330.3013972063, 5738207.296464471], [770396.4766763995, 5738167.64165886]]}, "properties": {"id": "34577-34579", "from": "831201104", "to": "831202382", "length_m": 77.14826293344908, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770396.4766763995, 5738167.64165886], [770330.3013972063, 5738207.296464471]]}, "properties": {"id": "34580-34578", "from": "831202382", "to": "831201104", "length_m": 77.14826293344908, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766285.4979597239, 5737550.514705452], [766311.3599393351, 5737646.75258153]]}, "properties": {"id": "34581-34583-34585-34587-34589-34591-34593-34595-34597-34599-34601-34603", "from": "831202173", "to": "831201241", "length_m": 196.57469323870276, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835293.4663915492, 5818952.189674806], [835281.4469631999, 5818860.811457283]]}, "properties": {"id": "346-347-348", "from": "30929319", "to": "30929320", "length_m": 92.18539333634588, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766311.3599393351, 5737646.75258153], [766285.4979597239, 5737550.514705452]]}, "properties": {"id": "34604-34602-34600-34598-34596-34594-34592-34590-34588-34586-34584-34582", "from": "831201241", "to": "831202173", "length_m": 196.57469323870276, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804211.8371613395, 5767251.576879236], [804585.9475972201, 5767108.714845505]]}, "properties": {"id": "34605-34606", "from": "435990857", "to": "380240442", "length_m": 400.45995865679475, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771650.7268688307, 5738949.352684221], [771756.9271514891, 5738998.644273641]]}, "properties": {"id": "34607-34609-34611-34613-34615-34617", "from": "831201458", "to": "831202374", "length_m": 117.975094341242, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771756.9271514891, 5738998.644273641], [771650.7268688307, 5738949.352684221]]}, "properties": {"id": "34618-34616-34614-34612-34610-34608", "from": "831202374", "to": "831201458", "length_m": 117.975094341242, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771478.9102630571, 5738877.686223587], [771437.9768694575, 5738978.615516308]]}, "properties": {"id": "34619", "from": "831201678", "to": "831201713", "length_m": 108.91402509631989, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771437.9768694575, 5738978.615516308], [771478.9102630571, 5738877.686223587]]}, "properties": {"id": "34620", "from": "831201713", "to": "831201678", "length_m": 108.91402509631989, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769908.4063774934, 5738474.87309981], [769859.4952829501, 5738492.807662065]]}, "properties": {"id": "34621-34623-34625", "from": "831201626", "to": "831202438", "length_m": 52.261244289996654, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769859.4952829501, 5738492.807662065], [769908.4063774934, 5738474.87309981]]}, "properties": {"id": "34626-34624-34622", "from": "831202438", "to": "831201626", "length_m": 52.261244289996654, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767270.4603622777, 5737879.276523177], [767265.0603136197, 5737805.50585231]]}, "properties": {"id": "34627-34629-34631-42406", "from": "831202282", "to": "524150619", "length_m": 85.54628323723878, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769369.1560469969, 5738039.967720255], [769420.949847947, 5738086.912650478]]}, "properties": {"id": "34633-34635", "from": "831202415", "to": "831201941", "length_m": 70.38432809518439, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769420.949847947, 5738086.912650478], [769369.1560469969, 5738039.967720255]]}, "properties": {"id": "34636-34634", "from": "831201941", "to": "831202415", "length_m": 70.38432809518439, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769420.949847947, 5738086.912650478], [769811.428895737, 5738225.9495969275]]}, "properties": {"id": "34637-35315-35317-35319-35321-35323-35325", "from": "831201941", "to": "831201651", "length_m": 492.452603779146, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794014.0249331456, 5776875.471348298], [794033.8859067227, 5776871.240964768]]}, "properties": {"id": "34639", "from": "867695761", "to": "867695762", "length_m": 20.30651162919831, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794033.8859067227, 5776871.240964768], [794014.0249331456, 5776875.471348298]]}, "properties": {"id": "34640", "from": "867695762", "to": "867695761", "length_m": 20.30651162919831, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770844.5394627128, 5739631.869034954], [770700.1616987941, 5739521.700337776]]}, "properties": {"id": "34649-34651-34653-34655-34657-34659-34661-34663-34665-34667-34669", "from": "831201901", "to": "831201249", "length_m": 201.4649810193097, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770700.1616987941, 5739521.700337776], [770844.5394627128, 5739631.869034954]]}, "properties": {"id": "34670-34668-34666-34664-34662-34660-34658-34656-34654-34652-34650", "from": "831201249", "to": "831201901", "length_m": 201.4649810193097, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770700.1616987941, 5739521.700337776], [770679.0740289574, 5739486.640207838]]}, "properties": {"id": "34671-34673", "from": "831201249", "to": "831202362", "length_m": 41.52447844960423, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770679.0740289574, 5739486.640207838], [770700.1616987941, 5739521.700337776]]}, "properties": {"id": "34674-34672", "from": "831202362", "to": "831201249", "length_m": 41.52447844960423, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770679.0740289574, 5739486.640207838], [770515.063239076, 5739373.785364569]]}, "properties": {"id": "34675-34677-34679-34681", "from": "831202362", "to": "831201677", "length_m": 199.10630887190564, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770515.063239076, 5739373.785364569], [770679.0740289574, 5739486.640207838]]}, "properties": {"id": "34682-34680-34678-34676", "from": "831201677", "to": "831202362", "length_m": 199.10630887190564, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771849.5198043551, 5738787.361662902], [771807.9601368615, 5738894.681977838]]}, "properties": {"id": "34683-34685", "from": "831201802", "to": "831202443", "length_m": 115.78791927075225, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771807.9601368615, 5738894.681977838], [771849.5198043551, 5738787.361662902]]}, "properties": {"id": "34686-34684", "from": "831202443", "to": "831201802", "length_m": 115.78791927075225, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771807.9601368615, 5738894.681977838], [771765.3687517124, 5738992.724574802]]}, "properties": {"id": "34687-34689-34691", "from": "831202443", "to": "831201622", "length_m": 108.10642221493517, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771765.3687517124, 5738992.724574802], [771807.9601368615, 5738894.681977838]]}, "properties": {"id": "34692-34690-34688", "from": "831201622", "to": "831202443", "length_m": 108.10642221493517, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814080.1872104456, 5822629.305295948], [813471.1667842815, 5822731.35053493]]}, "properties": {"id": "34700-34701-34702", "from": "1834826158", "to": "34610833", "length_m": 617.5175057727423, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[813471.1667842815, 5822731.35053493], [812738.7735237367, 5822850.8530522585]]}, "properties": {"id": "34703", "from": "34610833", "to": "34610834", "length_m": 742.0786591620191, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812738.7735237367, 5822850.8530522585], [812076.2837931506, 5822960.920929071]]}, "properties": {"id": "34704", "from": "34610834", "to": "34610835", "length_m": 671.5709776153959, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812076.2837931506, 5822960.920929071], [811438.3442904174, 5823057.013492299]]}, "properties": {"id": "34705-34706-34707-34708-34709", "from": "34610835", "to": "786644176", "length_m": 645.4029482473478, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[811438.3442904174, 5823057.013492299], [810796.4405216333, 5822911.738501797]]}, "properties": {"id": "34710-34711-34712-34713-34714-34715-34716-34717-34718-34719-34720", "from": "786644176", "to": "716679944", "length_m": 663.99586455048, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810796.4405216333, 5822911.738501797], [810202.3515081999, 5822766.875549031]]}, "properties": {"id": "34721-34722-34723-34724-34725-34726-34727-34728-34729", "from": "716679944", "to": "716679886", "length_m": 615.8719398518052, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838413.9629350647, 5804261.178489683], [838347.5898898635, 5803857.9016512865]]}, "properties": {"id": "34731-27422-40902-40903-40904-40905-40906-33106-33107-33108-33109-33110-33111-33112", "from": "250287575", "to": "2100895685", "length_m": 410.52420477347874, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831234.8425004986, 5821536.964387072], [831240.3626103095, 5821562.226564094]]}, "properties": {"id": "34732", "from": "26118249", "to": "309587586", "length_m": 25.858252040202395, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831260.5546779471, 5821558.135930834], [831255.8714201404, 5821532.373182299]]}, "properties": {"id": "34733", "from": "26032502", "to": "309587595", "length_m": 26.184959705176066, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829485.5805364068, 5814671.241676876], [830219.3415682648, 5814275.9620828405]]}, "properties": {"id": "34735-34736-34737-34738-34739-34740-34741-34742-34743-34744-34745-34746-34747-55767-55755-55756", "from": "1764268037", "to": "981835755", "length_m": 834.7762655540394, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838431.2396279327, 5803816.176210807], [838586.6541171034, 5803752.028170675]]}, "properties": {"id": "34749-34750-34751", "from": "3189561084", "to": "3189561087", "length_m": 168.136826228053, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728238.9168748879, 5826519.4050572505], [727191.1139090688, 5826432.000568859]]}, "properties": {"id": "3478-3476-3474-3472-3470-3468-3466-3464-3462-3460-3458-3456-3454-3452-3450-3448", "from": "1969410839", "to": "2315437918", "length_m": 1097.0210162929163, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728238.9168748879, 5826519.4050572505], [729149.2382582708, 5826776.984307677]]}, "properties": {"id": "3479-3481-3483-3485-3487-3489-3491-3493-3495-3497-3499-3501-3503-3505-3507-3509-3511-3513-3515-3517-3519-3521", "from": "1969410839", "to": "5140367918", "length_m": 1107.6608770768157, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838433.9332622738, 5803802.387447147], [838346.0318723076, 5803833.379537059]]}, "properties": {"id": "34791-34915-34916-34917-34918-34919-34920-34921-34922-34923", "from": "1711589445", "to": "5706693368", "length_m": 94.74489212969634, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791034.0164906543, 5777373.465152087], [791021.8563765882, 5777384.836605969]]}, "properties": {"id": "34792", "from": "334409503", "to": "334409510", "length_m": 16.648673755187644, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791021.8563765882, 5777384.836605969], [790859.3594687667, 5777520.529304306]]}, "properties": {"id": "34793-34794-34795-34796", "from": "334409510", "to": "318035128", "length_m": 211.92079191923895, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830664.9905330553, 5821675.75418146], [830677.4684569819, 5821672.952594104]]}, "properties": {"id": "34797", "from": "26030574", "to": "605203942", "length_m": 12.788568187883493, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791051.1992730225, 5777379.007397777], [791175.7731788764, 5777262.284174896]]}, "properties": {"id": "34798-34799-34800-36296-30484-30485", "from": "318035139", "to": "334409424", "length_m": 170.7355130810206, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830677.4684569819, 5821672.952594104], [830988.5481941206, 5821612.147503382]]}, "properties": {"id": "34801-34802", "from": "605203942", "to": "605203301", "length_m": 316.9723733553516, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781194.6144185688, 5765726.031825997], [780540.4910855377, 5765772.959005691]]}, "properties": {"id": "34806-34807-34808-34809-34810", "from": "3160529770", "to": "2379162958", "length_m": 655.9144898345851, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780540.4910855377, 5765772.959005691], [780502.124038629, 5765774.287543627]]}, "properties": {"id": "34811", "from": "2379162958", "to": "2379162957", "length_m": 38.390041592422435, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780502.124038629, 5765774.287543627], [779305.4209919316, 5765776.828299727]]}, "properties": {"id": "34812-34813", "from": "2379162957", "to": "5365795891", "length_m": 1196.7218214177078, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779305.4209919316, 5765776.828299727], [779283.7886574792, 5765777.0295607485]]}, "properties": {"id": "34814-34815", "from": "5365795891", "to": "5365795894", "length_m": 21.633270962418614, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779283.7886574792, 5765777.0295607485], [778519.9418139562, 5765784.501642166]]}, "properties": {"id": "34816", "from": "5365795894", "to": "2379162979", "length_m": 763.8833874402346, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778519.9418139562, 5765784.501642166], [778481.4027670252, 5765785.904320066]]}, "properties": {"id": "34817", "from": "2379162979", "to": "2379162976", "length_m": 38.56456451516914, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778481.4027670252, 5765785.904320066], [777078.8383803753, 5765792.657572309]]}, "properties": {"id": "34818-34819-34820", "from": "2379162976", "to": "2373877409", "length_m": 1402.7175701182796, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777078.8383803753, 5765792.657572309], [776411.8507669428, 5765781.8606379675]]}, "properties": {"id": "34821-34822-34823-34824", "from": "2373877409", "to": "2373877414", "length_m": 667.2968832874817, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776411.8507669428, 5765781.8606379675], [775235.9676497293, 5765802.061080123]]}, "properties": {"id": "34825-34826", "from": "2373877414", "to": "3187946413", "length_m": 1176.0585108626321, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775235.9676497293, 5765802.061080123], [774395.4950495517, 5765795.657811601]]}, "properties": {"id": "34827", "from": "3187946413", "to": "2379273325", "length_m": 840.4969900658838, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838320.0179013144, 5803839.7343668705], [838325.5126539186, 5803859.868524632]]}, "properties": {"id": "34828-34829-34830-34831", "from": "1711589661", "to": "5635786618", "length_m": 22.43404479223372, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838325.5126539186, 5803859.868524632], [838328.1701803391, 5803861.449173602]]}, "properties": {"id": "34832", "from": "5635786618", "to": "1711589533", "length_m": 3.09207014514261, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838328.1701803391, 5803861.449173602], [838347.5898898635, 5803857.9016512865]]}, "properties": {"id": "34833-34834-34835-34836", "from": "1711589533", "to": "2100895685", "length_m": 21.00450206823726, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838347.5898898635, 5803857.9016512865], [838349.8489067254, 5803854.950639611]]}, "properties": {"id": "34837", "from": "2100895685", "to": "1711589481", "length_m": 3.7163997600281133, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838349.8489067254, 5803854.950639611], [838346.0318723076, 5803833.379537059]]}, "properties": {"id": "34838-34839-34840-34841", "from": "1711589481", "to": "5706693368", "length_m": 23.77490447098826, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838346.0318723076, 5803833.379537059], [838320.0179013144, 5803839.7343668705]]}, "properties": {"id": "34842-34843-34844-34845-34846-34847-34848", "from": "5706693368", "to": "1711589661", "length_m": 30.872011328795406, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774395.4950495517, 5765795.657811601], [774355.3057410555, 5765796.952314047]]}, "properties": {"id": "34850", "from": "2379273325", "to": "2379273324", "length_m": 40.210151025530564, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771909.4142032969, 5739288.9988198755], [771928.20276554, 5739411.634130408]]}, "properties": {"id": "34851-34853", "from": "831201575", "to": "831202033", "length_m": 124.36010145499891, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771928.20276554, 5739411.634130408], [771909.4142032969, 5739288.9988198755]]}, "properties": {"id": "34854-34852", "from": "831202033", "to": "831201575", "length_m": 124.36010145499891, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771463.7723573451, 5739372.648058003], [771580.680207738, 5739349.549231419]]}, "properties": {"id": "34855", "from": "831201551", "to": "831202192", "length_m": 119.16795385068836, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771580.680207738, 5739349.549231419], [771463.7723573451, 5739372.648058003]]}, "properties": {"id": "34856", "from": "831202192", "to": "831201551", "length_m": 119.16795385068836, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771580.680207738, 5739349.549231419], [771683.5837250552, 5739330.178323453]]}, "properties": {"id": "34857", "from": "831202192", "to": "831201121", "length_m": 104.71086819085996, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771683.5837250552, 5739330.178323453], [771580.680207738, 5739349.549231419]]}, "properties": {"id": "34858", "from": "831201121", "to": "831202192", "length_m": 104.71086819085996, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771683.5837250552, 5739330.178323453], [771797.7419430448, 5739309.258400632]]}, "properties": {"id": "34859", "from": "831201121", "to": "831201418", "length_m": 116.05921706665578, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771797.7419430448, 5739309.258400632], [771683.5837250552, 5739330.178323453]]}, "properties": {"id": "34860", "from": "831201418", "to": "831201121", "length_m": 116.05921706665578, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771797.7419430448, 5739309.258400632], [771909.4142032969, 5739288.9988198755]]}, "properties": {"id": "34861", "from": "831201418", "to": "831201575", "length_m": 113.49512886872701, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771909.4142032969, 5739288.9988198755], [771797.7419430448, 5739309.258400632]]}, "properties": {"id": "34862", "from": "831201575", "to": "831201418", "length_m": 113.49512886872701, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771909.4142032969, 5739288.9988198755], [772018.690070399, 5739267.140807345]]}, "properties": {"id": "34863", "from": "831201575", "to": "831202227", "length_m": 111.44051241794034, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772018.690070399, 5739267.140807345], [771909.4142032969, 5739288.9988198755]]}, "properties": {"id": "34864", "from": "831202227", "to": "831201575", "length_m": 111.44051241794034, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832531.1548389154, 5813045.480939448], [832514.647109267, 5813037.775481169]]}, "properties": {"id": "34865-34866-34867-34868-34869-34870", "from": "1536176345", "to": "1536176332", "length_m": 22.12575568245053, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765653.7230782392, 5737609.12763098], [765550.9759448606, 5737546.089674324]]}, "properties": {"id": "34871-34873-34875-34877-34879-34881-34883-34885-34887-34889", "from": "831201612", "to": "831201597", "length_m": 161.66563988546244, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765550.9759448606, 5737546.089674324], [765653.7230782392, 5737609.12763098]]}, "properties": {"id": "34890-34888-34886-34884-34882-34880-34878-34876-34874-34872", "from": "831201597", "to": "831201612", "length_m": 161.66563988546244, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771085.2506285853, 5738642.065099783], [771229.7307606558, 5738554.242965833]]}, "properties": {"id": "34891-34893-34895-34897", "from": "831202460", "to": "831201063", "length_m": 169.2488721673864, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771229.7307606558, 5738554.242965833], [771085.2506285853, 5738642.065099783]]}, "properties": {"id": "34898-34896-34894-34892", "from": "831201063", "to": "831202460", "length_m": 169.2488721673864, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771244.2003822093, 5738757.834740587], [771258.9814539903, 5738632.28682991]]}, "properties": {"id": "34899-35585-35587", "from": "831202466", "to": "831202178", "length_m": 177.0255433918822, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835281.4469631999, 5818860.811457283], [835414.993617984, 5818309.03449692]]}, "properties": {"id": "349-350-351-352-353-354-355-356-357-358-359-360", "from": "30929320", "to": "2790078690", "length_m": 578.4438615817987, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771330.0701404782, 5738819.25292888], [771303.582587481, 5738879.67732848]]}, "properties": {"id": "34901", "from": "831202236", "to": "831201849", "length_m": 65.97498417958278, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771303.582587481, 5738879.67732848], [771330.0701404782, 5738819.25292888]]}, "properties": {"id": "34902", "from": "831201849", "to": "831202236", "length_m": 65.97498417958278, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749464.082470932, 5836196.86241715], [749083.403949877, 5836133.356924178]]}, "properties": {"id": "34903-34905-34907-34909-34911", "from": "363996496", "to": "655405112", "length_m": 386.00700188403613, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749083.403949877, 5836133.356924178], [749464.082470932, 5836196.86241715]]}, "properties": {"id": "34912-34910-34908-34906-34904", "from": "655405112", "to": "363996496", "length_m": 386.00700188403613, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770876.0354529775, 5738995.565945908], [770943.9375094797, 5738991.9308482455]]}, "properties": {"id": "34913", "from": "831202093", "to": "831201948", "length_m": 67.99928821975767, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770943.9375094797, 5738991.9308482455], [770876.0354529775, 5738995.565945908]]}, "properties": {"id": "34914", "from": "831201948", "to": "831202093", "length_m": 67.99928821975767, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770939.0011851138, 5737916.024409447], [771057.1559954586, 5738105.937440089]]}, "properties": {"id": "34926-34928", "from": "831202141", "to": "831202105", "length_m": 223.71223518163785, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771057.1559954586, 5738105.937440089], [770939.0011851138, 5737916.024409447]]}, "properties": {"id": "34929-34927", "from": "831202105", "to": "831202141", "length_m": 223.71223518163785, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771057.1559954586, 5738105.937440089], [771222.8790438054, 5738357.861417017]]}, "properties": {"id": "34930-34932", "from": "831202105", "to": "831202067", "length_m": 301.5457156086223, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771222.8790438054, 5738357.861417017], [771057.1559954586, 5738105.937440089]]}, "properties": {"id": "34933-34931", "from": "831202067", "to": "831202105", "length_m": 301.5457156086223, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771222.8790438054, 5738357.861417017], [771379.1750798624, 5738595.299526331]]}, "properties": {"id": "34934-34936-34938-34940-34942", "from": "831202067", "to": "831201927", "length_m": 284.30981117733756, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771379.1750798624, 5738595.299526331], [771222.8790438054, 5738357.861417017]]}, "properties": {"id": "34943-34941-34939-34937-34935", "from": "831201927", "to": "831202067", "length_m": 284.30981117733756, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771379.1750798624, 5738595.299526331], [771538.4372605663, 5738662.046957762]]}, "properties": {"id": "34944-34946-34948", "from": "831201927", "to": "831202263", "length_m": 172.76176933042547, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771538.4372605663, 5738662.046957762], [771379.1750798624, 5738595.299526331]]}, "properties": {"id": "34949-34947-34945", "from": "831202263", "to": "831201927", "length_m": 172.76176933042547, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771538.4372605663, 5738662.046957762], [771650.3182456349, 5738707.113656174]]}, "properties": {"id": "34950-34952-34954", "from": "831202263", "to": "831202361", "length_m": 120.61946113949635, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771650.3182456349, 5738707.113656174], [771538.4372605663, 5738662.046957762]]}, "properties": {"id": "34955-34953-34951", "from": "831202361", "to": "831202263", "length_m": 120.61946113949635, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777296.025622624, 5754751.380748938], [776943.7714626468, 5752887.303813651]]}, "properties": {"id": "34960", "from": "480679221", "to": "498837780", "length_m": 1897.0676874140865, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776943.7714626468, 5752887.303813651], [777296.025622624, 5754751.380748938]]}, "properties": {"id": "34961", "from": "498837780", "to": "480679221", "length_m": 1897.0676874140865, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776943.7714626468, 5752887.303813651], [776641.1275233636, 5751299.483270261]]}, "properties": {"id": "34962", "from": "498837780", "to": "494901132", "length_m": 1616.4057131863215, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776641.1275233636, 5751299.483270261], [776943.7714626468, 5752887.303813651]]}, "properties": {"id": "34963", "from": "494901132", "to": "498837780", "length_m": 1616.4057131863215, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769805.0272252338, 5738244.744493627], [769889.7200091266, 5738683.179150278]]}, "properties": {"id": "34964-34966-34968-34970-34972-34974-34976", "from": "831201986", "to": "831201206", "length_m": 515.381012287952, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769889.7200091266, 5738683.179150278], [769805.0272252338, 5738244.744493627]]}, "properties": {"id": "34977-34975-34973-34971-34969-34967-34965", "from": "831201206", "to": "831201986", "length_m": 515.381012287952, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769889.7200091266, 5738683.179150278], [769966.4441085157, 5739459.395223146]]}, "properties": {"id": "34978-34980-34982-34984-34986-34988-34990-34992-34994-34996-34998-35000-35002-35004-35006-35008-35010-35012-35014", "from": "831201206", "to": "831201096", "length_m": 803.981965491326, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769966.4441085157, 5739459.395223146], [769889.7200091266, 5738683.179150278]]}, "properties": {"id": "35015-35013-35011-35009-35007-35005-35003-35001-34999-34997-34995-34993-34991-34989-34987-34985-34983-34981-34979", "from": "831201096", "to": "831201206", "length_m": 803.981965491326, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769966.4441085157, 5739459.395223146], [769722.9735297654, 5739915.9989586165]]}, "properties": {"id": "35016-35018-35020-35022-35024-35026-35028-35030-35032-35034-35036-35038", "from": "831201096", "to": "831202501", "length_m": 597.0183032963768, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769722.9735297654, 5739915.9989586165], [769966.4441085157, 5739459.395223146]]}, "properties": {"id": "35039-35037-35035-35033-35031-35029-35027-35025-35023-35021-35019-35017", "from": "831202501", "to": "831201096", "length_m": 597.0183032963768, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771519.7146413121, 5739054.684562726], [771561.264347478, 5739264.2838816345]]}, "properties": {"id": "35042-35044-35046-35048-35050-35052-35054-35056", "from": "831202146", "to": "831201069", "length_m": 216.62993077770017, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771561.264347478, 5739264.2838816345], [771519.7146413121, 5739054.684562726]]}, "properties": {"id": "35057-35055-35053-35051-35049-35047-35045-35043", "from": "831201069", "to": "831202146", "length_m": 216.62993077770017, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771561.264347478, 5739264.2838816345], [771580.680207738, 5739349.549231419]]}, "properties": {"id": "35058-35060", "from": "831201069", "to": "831202192", "length_m": 87.44809197436743, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771580.680207738, 5739349.549231419], [771561.264347478, 5739264.2838816345]]}, "properties": {"id": "35061-35059", "from": "831202192", "to": "831201069", "length_m": 87.44809197436743, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771580.680207738, 5739349.549231419], [771603.0730264154, 5739417.922911008]]}, "properties": {"id": "35062-35064-35066-35068-35070", "from": "831202192", "to": "831202234", "length_m": 73.20101557549005, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771603.0730264154, 5739417.922911008], [771580.680207738, 5739349.549231419]]}, "properties": {"id": "35071-35069-35067-35065-35063", "from": "831202234", "to": "831202192", "length_m": 73.20101557549005, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771683.5837250552, 5739330.178323453], [771641.9848817969, 5739153.329578004]]}, "properties": {"id": "35080-35082", "from": "831201121", "to": "831201197", "length_m": 182.5131939210523, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771641.9848817969, 5739153.329578004], [771683.5837250552, 5739330.178323453]]}, "properties": {"id": "35083-35081", "from": "831201197", "to": "831201121", "length_m": 182.5131939210523, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781433.693965662, 5753988.134363057], [779641.4516332315, 5754326.173838642]]}, "properties": {"id": "35090", "from": "535081583", "to": "535081581", "length_m": 1823.842990275045, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779641.4516332315, 5754326.173838642], [781433.693965662, 5753988.134363057]]}, "properties": {"id": "35091", "from": "535081581", "to": "535081583", "length_m": 1823.842990275045, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779641.4516332315, 5754326.173838642], [777296.025622624, 5754751.380748938]]}, "properties": {"id": "35092", "from": "535081581", "to": "480679221", "length_m": 2383.65770774544, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777296.025622624, 5754751.380748938], [779641.4516332315, 5754326.173838642]]}, "properties": {"id": "35093", "from": "480679221", "to": "535081581", "length_m": 2383.65770774544, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777296.025622624, 5754751.380748938], [775927.0407716862, 5753985.741295568]]}, "properties": {"id": "35094-35096-35098", "from": "480679221", "to": "480679224", "length_m": 1581.497194197118, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775927.0407716862, 5753985.741295568], [777296.025622624, 5754751.380748938]]}, "properties": {"id": "35099-35097-35095", "from": "480679224", "to": "480679221", "length_m": 1581.497194197118, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775927.0407716862, 5753985.741295568], [775501.6054058776, 5753681.920331543]]}, "properties": {"id": "35100", "from": "480679224", "to": "1835233324", "length_m": 522.783346218742, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775501.6054058776, 5753681.920331543], [775927.0407716862, 5753985.741295568]]}, "properties": {"id": "35101", "from": "1835233324", "to": "480679224", "length_m": 522.783346218742, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771379.1750798624, 5738595.299526331], [771244.2003822093, 5738757.834740587]]}, "properties": {"id": "35104-35106-35108", "from": "831201927", "to": "831202466", "length_m": 211.40693098026688, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771244.2003822093, 5738757.834740587], [771379.1750798624, 5738595.299526331]]}, "properties": {"id": "35109-35107-35105", "from": "831202466", "to": "831201927", "length_m": 211.40693098026688, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771244.2003822093, 5738757.834740587], [771232.7946281997, 5738775.077591057]]}, "properties": {"id": "35110", "from": "831202466", "to": "831201718", "length_m": 20.673826885953705, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771232.7946281997, 5738775.077591057], [771244.2003822093, 5738757.834740587]]}, "properties": {"id": "35111", "from": "831201718", "to": "831202466", "length_m": 20.673826885953705, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771232.7946281997, 5738775.077591057], [771132.6913502344, 5738886.504326693]]}, "properties": {"id": "35112-35114-35116", "from": "831201718", "to": "831202021", "length_m": 150.54281237898957, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771132.6913502344, 5738886.504326693], [771232.7946281997, 5738775.077591057]]}, "properties": {"id": "35117-35115-35113", "from": "831202021", "to": "831201718", "length_m": 150.54281237898957, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768748.5755326154, 5738298.909973041], [768636.0926792279, 5738144.714634462]]}, "properties": {"id": "35118-35120-35122-35124-35126-35128-35130", "from": "831201641", "to": "831201967", "length_m": 206.14867960806743, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768636.0926792279, 5738144.714634462], [768748.5755326154, 5738298.909973041]]}, "properties": {"id": "35131-35129-35127-35125-35123-35121-35119", "from": "831201967", "to": "831201641", "length_m": 206.14867960806743, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768636.0926792279, 5738144.714634462], [768528.1040299368, 5738111.4458164545]]}, "properties": {"id": "35132-35134", "from": "831201967", "to": "831201705", "length_m": 113.1064867917677, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768528.1040299368, 5738111.4458164545], [768636.0926792279, 5738144.714634462]]}, "properties": {"id": "35135-35133", "from": "831201705", "to": "831201967", "length_m": 113.1064867917677, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768528.1040299368, 5738111.4458164545], [768356.8187962349, 5738237.072666806]]}, "properties": {"id": "35136-35138-35140-35142-35144-35146-35148-35150-35152-35154-35156-35158-35160-35162", "from": "831201705", "to": "831201177", "length_m": 265.6301520226972, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768356.8187962349, 5738237.072666806], [768528.1040299368, 5738111.4458164545]]}, "properties": {"id": "35163-35161-35159-35157-35155-35153-35151-35149-35147-35145-35143-35141-35139-35137", "from": "831201177", "to": "831201705", "length_m": 265.6301520226972, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771742.2803692055, 5739010.985822204], [771773.8245600809, 5739181.929220309]]}, "properties": {"id": "35164", "from": "831201866", "to": "831202225", "length_m": 173.82946041021037, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771773.8245600809, 5739181.929220309], [771742.2803692055, 5739010.985822204]]}, "properties": {"id": "35165", "from": "831202225", "to": "831201866", "length_m": 173.82946041021037, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771773.8245600809, 5739181.929220309], [771797.7419430448, 5739309.258400632]]}, "properties": {"id": "35166", "from": "831202225", "to": "831201418", "length_m": 129.55601629352623, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771797.7419430448, 5739309.258400632], [771773.8245600809, 5739181.929220309]]}, "properties": {"id": "35167", "from": "831201418", "to": "831202225", "length_m": 129.55601629352623, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771797.7419430448, 5739309.258400632], [771854.9246106818, 5739601.2384136515]]}, "properties": {"id": "35168", "from": "831201418", "to": "831201524", "length_m": 297.5267809789906, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771854.9246106818, 5739601.2384136515], [771797.7419430448, 5739309.258400632]]}, "properties": {"id": "35169", "from": "831201524", "to": "831201418", "length_m": 297.5267809789906, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793226.6898956726, 5761074.257181655], [793216.972086132, 5761022.092319809]]}, "properties": {"id": "35170-35171-35172", "from": "317376782", "to": "1708355693", "length_m": 53.18878230656681, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770774.7995112956, 5738079.12726974], [770841.1073149384, 5738161.589704333]]}, "properties": {"id": "35177-35179-35181", "from": "60287160", "to": "831201765", "length_m": 105.98629660494876, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770841.1073149384, 5738161.589704333], [770774.7995112956, 5738079.12726974]]}, "properties": {"id": "35182-35180-35178", "from": "831201765", "to": "60287160", "length_m": 105.98629660494876, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770859.2655386633, 5737702.789035203], [770939.0011851138, 5737916.024409447]]}, "properties": {"id": "35197-35195-35193-35191-35189-11650", "from": "831201855", "to": "831202141", "length_m": 273.2530708548948, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771773.8245600809, 5739181.929220309], [771840.3952405169, 5739165.230053625]]}, "properties": {"id": "35198", "from": "831202225", "to": "831202410", "length_m": 68.63321100664037, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771840.3952405169, 5739165.230053625], [771773.8245600809, 5739181.929220309]]}, "properties": {"id": "35199", "from": "831202410", "to": "831202225", "length_m": 68.63321100664037, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767435.5944278131, 5737832.1182267945], [767522.920037467, 5737871.134439116]]}, "properties": {"id": "35200-35202-35204-35206", "from": "831201023", "to": "831202224", "length_m": 100.18639316467404, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767522.920037467, 5737871.134439116], [767435.5944278131, 5737832.1182267945]]}, "properties": {"id": "35207-35205-35203-35201", "from": "831202224", "to": "831201023", "length_m": 100.18639316467404, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768848.7144747736, 5737962.236191898], [768854.4334031848, 5737858.301176732]]}, "properties": {"id": "35208-35210-35212-35214", "from": "831201203", "to": "665717007", "length_m": 110.71535200289684, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768854.4334031848, 5737858.301176732], [768848.7144747736, 5737962.236191898]]}, "properties": {"id": "35215-35213-35211-35209", "from": "665717007", "to": "831201203", "length_m": 110.71535200289684, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771050.1340706132, 5739141.199033143], [771033.4457437398, 5739062.008262609]]}, "properties": {"id": "35216", "from": "831202075", "to": "831201521", "length_m": 80.93008331979404, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771033.4457437398, 5739062.008262609], [771050.1340706132, 5739141.199033143]]}, "properties": {"id": "35217", "from": "831201521", "to": "831202075", "length_m": 80.93008331979404, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771033.4457437398, 5739062.008262609], [771011.63668139, 5738933.862193953]]}, "properties": {"id": "35218-35220", "from": "831201521", "to": "831201315", "length_m": 130.02744661657704, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729149.2382582708, 5826776.984307677], [728238.9168748879, 5826519.4050572505]]}, "properties": {"id": "3522-3520-3518-3516-3514-3512-3510-3508-3506-3504-3502-3500-3498-3496-3494-3492-3490-3488-3486-3484-3482-3480", "from": "5140367918", "to": "1969410839", "length_m": 1107.6608770768157, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771011.63668139, 5738933.862193953], [771033.4457437398, 5739062.008262609]]}, "properties": {"id": "35221-35219", "from": "831201315", "to": "831201521", "length_m": 130.02744661657704, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729149.2382582708, 5826776.984307677], [729630.6909986511, 5826419.193138124]]}, "properties": {"id": "3523-3525-3527-3529-3531-3533-3535-3537-3539-3541-3543", "from": "5140367918", "to": "1969410855", "length_m": 619.4606759885422, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770689.8705105886, 5737929.162004812], [770814.8414153104, 5737846.815912286]]}, "properties": {"id": "35238", "from": "831202226", "to": "831202353", "length_m": 149.66163827694206, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770814.8414153104, 5737846.815912286], [770689.8705105886, 5737929.162004812]]}, "properties": {"id": "35239", "from": "831202353", "to": "831202226", "length_m": 149.66163827694206, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770681.478382991, 5738450.45043996], [770407.3456272758, 5738264.15333869]]}, "properties": {"id": "35240-35242-35244-35246-35248-35250-35252-35254", "from": "831202112", "to": "831202239", "length_m": 333.7831297851154, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770407.3456272758, 5738264.15333869], [770681.478382991, 5738450.45043996]]}, "properties": {"id": "35255-35253-35251-35249-35247-35245-35243-35241", "from": "831202239", "to": "831202112", "length_m": 333.7831297851154, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770407.3456272758, 5738264.15333869], [770538.1063429655, 5738178.11689186]]}, "properties": {"id": "35256", "from": "831202239", "to": "312996425", "length_m": 156.52678666677787, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770538.1063429655, 5738178.11689186], [770407.3456272758, 5738264.15333869]]}, "properties": {"id": "35257", "from": "312996425", "to": "831202239", "length_m": 156.52678666677787, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770538.1063429655, 5738178.11689186], [770606.5739219721, 5738119.147435802]]}, "properties": {"id": "35258-35260-35262", "from": "312996425", "to": "60287154", "length_m": 125.52933859431108, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770606.5739219721, 5738119.147435802], [770538.1063429655, 5738178.11689186]]}, "properties": {"id": "35263-35261-35259", "from": "60287154", "to": "312996425", "length_m": 125.52933859431108, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768495.9148227762, 5738274.893099774], [768528.1040299368, 5738111.4458164545]]}, "properties": {"id": "35264-35266-35268", "from": "831201823", "to": "831201705", "length_m": 167.02844476046, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768528.1040299368, 5738111.4458164545], [768495.9148227762, 5738274.893099774]]}, "properties": {"id": "35269-35267-35265", "from": "831201705", "to": "831201823", "length_m": 167.02844476046, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769420.949847947, 5738086.912650478], [769693.935175258, 5738081.870109353]]}, "properties": {"id": "35270-35272", "from": "831201941", "to": "831202035", "length_m": 276.733308006309, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769693.935175258, 5738081.870109353], [769420.949847947, 5738086.912650478]]}, "properties": {"id": "35273-35271", "from": "831202035", "to": "831201941", "length_m": 276.733308006309, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769693.935175258, 5738081.870109353], [769849.4643427337, 5738134.550499871]]}, "properties": {"id": "35274-35276-35278", "from": "831202035", "to": "831202016", "length_m": 164.7339228461614, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769849.4643427337, 5738134.550499871], [769693.935175258, 5738081.870109353]]}, "properties": {"id": "35279-35277-35275", "from": "831202016", "to": "831202035", "length_m": 164.7339228461614, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769849.4643427337, 5738134.550499871], [770089.0344932454, 5738330.028670295]]}, "properties": {"id": "35280-35282-35284-35286-35288-35290", "from": "831202016", "to": "831201785", "length_m": 312.4398454131801, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770089.0344932454, 5738330.028670295], [769849.4643427337, 5738134.550499871]]}, "properties": {"id": "35291-35289-35287-35285-35283-35281", "from": "831201785", "to": "831202016", "length_m": 312.4398454131801, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769692.2809761227, 5737992.571689066], [769693.935175258, 5738081.870109353]]}, "properties": {"id": "35292-35294-35296", "from": "831202502", "to": "831202035", "length_m": 91.42940633204833, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769693.935175258, 5738081.870109353], [769692.2809761227, 5737992.571689066]]}, "properties": {"id": "35297-35295-35293", "from": "831202035", "to": "831202502", "length_m": 91.42940633204833, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771639.9110689787, 5739030.784290969], [771742.2803692055, 5739010.985822204]]}, "properties": {"id": "35298-35300", "from": "831202026", "to": "831201866", "length_m": 104.26778545821631, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771742.2803692055, 5739010.985822204], [771639.9110689787, 5739030.784290969]]}, "properties": {"id": "35301-35299", "from": "831201866", "to": "831202026", "length_m": 104.26778545821631, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771742.2803692055, 5739010.985822204], [771756.9271514891, 5738998.644273641]]}, "properties": {"id": "35302", "from": "831201866", "to": "831202374", "length_m": 19.15312120829785, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771756.9271514891, 5738998.644273641], [771742.2803692055, 5739010.985822204]]}, "properties": {"id": "35303", "from": "831202374", "to": "831201866", "length_m": 19.15312120829785, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771756.9271514891, 5738998.644273641], [771765.3687517124, 5738992.724574802]]}, "properties": {"id": "35304", "from": "831202374", "to": "831201622", "length_m": 10.310356392888641, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771765.3687517124, 5738992.724574802], [771756.9271514891, 5738998.644273641]]}, "properties": {"id": "35305", "from": "831201622", "to": "831202374", "length_m": 10.310356392888641, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771765.3687517124, 5738992.724574802], [771960.7280858357, 5738970.620589868]]}, "properties": {"id": "35306-35308", "from": "831201622", "to": "831202444", "length_m": 198.95171441577872, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771960.7280858357, 5738970.620589868], [771765.3687517124, 5738992.724574802]]}, "properties": {"id": "35309-35307", "from": "831202444", "to": "831201622", "length_m": 198.95171441577872, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793791.817187117, 5772464.218633173], [793770.7557393255, 5772520.84245755]]}, "properties": {"id": "35310-35311-35312-35313-35314", "from": "880404478", "to": "3957457795", "length_m": 61.97331789410714, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769811.428895737, 5738225.9495969275], [769420.949847947, 5738086.912650478]]}, "properties": {"id": "35326-35324-35322-35320-35318-35316-34638", "from": "831201651", "to": "831201941", "length_m": 492.452603779146, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768829.6365569715, 5738056.506391225], [768256.3711274923, 5738120.6739400355]]}, "properties": {"id": "35327-35329-35331-35333-35335-35337-35339-35341-35343-35345-35347-35349-35351-35353", "from": "665717004", "to": "831201730", "length_m": 650.8575896909856, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768256.3711274923, 5738120.6739400355], [768829.6365569715, 5738056.506391225]]}, "properties": {"id": "35354-35352-35350-35348-35346-35344-35342-35340-35338-35336-35334-35332-35330-35328", "from": "831201730", "to": "665717004", "length_m": 650.8575896909856, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768256.3711274923, 5738120.6739400355], [768184.4690295539, 5738137.4217308285]]}, "properties": {"id": "35355-35357-35359-35361-35363", "from": "831201730", "to": "5605062466", "length_m": 75.26063602058368, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768184.4690295539, 5738137.4217308285], [768256.3711274923, 5738120.6739400355]]}, "properties": {"id": "35364-35362-35360-35358-35356", "from": "5605062466", "to": "831201730", "length_m": 75.26063602058368, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770721.2414230807, 5739117.59890074], [770903.6144158612, 5738930.350343593]]}, "properties": {"id": "35413-35415-35417-35419-35421", "from": "831201126", "to": "831201164", "length_m": 336.5446579247784, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770903.6144158612, 5738930.350343593], [770721.2414230807, 5739117.59890074]]}, "properties": {"id": "35422-35420-35418-35416-35414", "from": "831201164", "to": "831201126", "length_m": 336.5446579247784, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771491.8401651634, 5739059.594040107], [771526.0815152726, 5738976.537369901]]}, "properties": {"id": "35423", "from": "831201562", "to": "831201939", "length_m": 89.8380795523891, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771526.0815152726, 5738976.537369901], [771491.8401651634, 5739059.594040107]]}, "properties": {"id": "35424", "from": "831201939", "to": "831201562", "length_m": 89.8380795523891, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768951.842553857, 5737951.603579301], [768848.7144747736, 5737962.236191898]]}, "properties": {"id": "35427-35429-35431-35433-35435", "from": "831202171", "to": "831201203", "length_m": 116.59251213737267, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768848.7144747736, 5737962.236191898], [768951.842553857, 5737951.603579301]]}, "properties": {"id": "35436-35434-35432-35430-35428", "from": "831201203", "to": "831202171", "length_m": 116.59251213737267, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832586.4915825361, 5813503.54725668], [832616.2430994597, 5813498.4309458975]]}, "properties": {"id": "35437", "from": "243827566", "to": "369131560", "length_m": 30.18823259805841, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832616.2430994597, 5813498.4309458975], [832586.4915825361, 5813503.54725668]]}, "properties": {"id": "35438", "from": "369131560", "to": "243827566", "length_m": 30.18823259805841, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838445.8272574221, 5811804.25442709], [838840.8661496639, 5811733.024331492]]}, "properties": {"id": "35439-35440-35441-35442-35443-35444-35445-35446", "from": "289845474", "to": "289840430", "length_m": 401.4148975007743, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729630.6909986511, 5826419.193138124], [729149.2382582708, 5826776.984307677]]}, "properties": {"id": "3544-3542-3540-3538-3536-3534-3532-3530-3528-3526-3524", "from": "1969410855", "to": "5140367918", "length_m": 619.4606759885422, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769849.4643427337, 5738134.550499871], [769811.428895737, 5738225.9495969275]]}, "properties": {"id": "35447", "from": "831202016", "to": "831201651", "length_m": 98.99742514276562, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769811.428895737, 5738225.9495969275], [769849.4643427337, 5738134.550499871]]}, "properties": {"id": "35448", "from": "831201651", "to": "831202016", "length_m": 98.99742514276562, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769811.428895737, 5738225.9495969275], [769805.0272252338, 5738244.744493627]]}, "properties": {"id": "35449", "from": "831201651", "to": "831201986", "length_m": 19.855214124030727, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729630.6909986511, 5826419.193138124], [730219.4471630304, 5826230.359347225]]}, "properties": {"id": "3545-3547-3549-3551", "from": "1969410855", "to": "1969410905", "length_m": 619.1036046398917, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769805.0272252338, 5738244.744493627], [769811.428895737, 5738225.9495969275]]}, "properties": {"id": "35450", "from": "831201986", "to": "831201651", "length_m": 19.855214124030727, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749511.5096118377, 5836198.444844263], [749464.082470932, 5836196.86241715]]}, "properties": {"id": "35451-35452-35453", "from": "363996478", "to": "363996496", "length_m": 47.472218275698, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838848.4292209256, 5811711.796197753], [838442.2045730181, 5811785.0660664495]]}, "properties": {"id": "35454-35455-35456-35457", "from": "289840409", "to": "289845521", "length_m": 412.78487877512816, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770679.0740289574, 5739486.640207838], [770814.2314360295, 5739153.35733137]]}, "properties": {"id": "35458-35460-35462-35464-35466-35468-35470-35472", "from": "831202362", "to": "831201528", "length_m": 359.99687183051566, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770814.2314360295, 5739153.35733137], [770679.0740289574, 5739486.640207838]]}, "properties": {"id": "35473-35471-35469-35467-35465-35463-35461-35459", "from": "831201528", "to": "831202362", "length_m": 359.99687183051566, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770814.2314360295, 5739153.35733137], [770840.2294330322, 5739094.084943978]]}, "properties": {"id": "35474", "from": "831201528", "to": "831201638", "length_m": 64.72334788600942, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770840.2294330322, 5739094.084943978], [770814.2314360295, 5739153.35733137]]}, "properties": {"id": "35475", "from": "831201638", "to": "831201528", "length_m": 64.72334788600942, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770840.2294330322, 5739094.084943978], [770876.0354529775, 5738995.565945908]]}, "properties": {"id": "35476", "from": "831201638", "to": "831202093", "length_m": 104.82396700980016, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770876.0354529775, 5738995.565945908], [770840.2294330322, 5739094.084943978]]}, "properties": {"id": "35477", "from": "831202093", "to": "831201638", "length_m": 104.82396700980016, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770876.0354529775, 5738995.565945908], [770903.6144158612, 5738930.350343593]]}, "properties": {"id": "35478", "from": "831202093", "to": "831201164", "length_m": 70.80730180160766, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770903.6144158612, 5738930.350343593], [770876.0354529775, 5738995.565945908]]}, "properties": {"id": "35479", "from": "831201164", "to": "831202093", "length_m": 70.80730180160766, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770903.6144158612, 5738930.350343593], [771066.1765084842, 5738551.986933261]]}, "properties": {"id": "35480-35482-35484-35486-35488-35490-35492", "from": "831201164", "to": "831201968", "length_m": 413.1614987923882, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771066.1765084842, 5738551.986933261], [770903.6144158612, 5738930.350343593]]}, "properties": {"id": "35493-35491-35489-35487-35485-35483-35481", "from": "831201968", "to": "831201164", "length_m": 413.1614987923882, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835365.7110523591, 5807259.266851621], [835230.8084813419, 5808350.401875716]]}, "properties": {"id": "35494-35495-35496-35497-35498-35499-41007-41016-41017-41018-41019", "from": "75158541", "to": "75156943", "length_m": 1106.9279381778979, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793470.0323020095, 5768823.591613743], [793056.4069230945, 5768666.783958063]]}, "properties": {"id": "35500-35501-35502-35590-35591-7617-7618-7619-7620-7621-7622-7623-7624-7625-7626-7627-7628-29635-29636", "from": "880526853(2)", "to": "3530740191", "length_m": 516.8476322586678, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770700.1616987941, 5739521.700337776], [771236.330915794, 5739419.780898952]]}, "properties": {"id": "35503-35505-35507", "from": "831201249", "to": "831201768", "length_m": 545.8419429697674, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771236.330915794, 5739419.780898952], [770700.1616987941, 5739521.700337776]]}, "properties": {"id": "35508-35506-35504", "from": "831201768", "to": "831201249", "length_m": 545.8419429697674, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835224.1552090556, 5808929.874550314], [834749.3407957968, 5809444.398458657]]}, "properties": {"id": "35511-35512-35513-35514-35515-35516-35517-35518-35519-35520-35521-35522", "from": "291667123", "to": "26475881", "length_m": 750.1396417775782, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730219.4471630304, 5826230.359347225], [729630.6909986511, 5826419.193138124]]}, "properties": {"id": "3552-3550-3548-3546", "from": "1969410905", "to": "1969410855", "length_m": 619.1036046398917, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816032.781414786, 5758873.202964808], [816038.8652573813, 5758878.146056662]]}, "properties": {"id": "35524-35525-35526", "from": "5468655927", "to": "5468651817", "length_m": 8.042020847592664, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816038.8652573813, 5758878.146056662], [816051.2515505832, 5758868.7342161015]]}, "properties": {"id": "35527-35528-35529-35530-35531-35532-35533", "from": "5468651817", "to": "5468651818", "length_m": 17.943022576133718, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730219.4471630304, 5826230.359347225], [730958.009197306, 5826342.29341574]]}, "properties": {"id": "3553-3555-3557-3559-3561-3563-3565", "from": "1969410905", "to": "1969410867", "length_m": 760.5327701399378, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770870.985705472, 5738551.061525287], [770877.7264086872, 5738735.611579742]]}, "properties": {"id": "35534", "from": "831202145", "to": "831202435", "length_m": 184.67311575119302, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770877.7264086872, 5738735.611579742], [770870.985705472, 5738551.061525287]]}, "properties": {"id": "35535", "from": "831202435", "to": "831202145", "length_m": 184.67311575119302, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835252.6913528542, 5808307.499622606], [835381.710634989, 5807292.505771585]]}, "properties": {"id": "35536-35537-35538-35539-35540-41030-41031-41032-41033-41034-41035-41036", "from": "75156957", "to": "2100479247", "length_m": 1029.9038213574356, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789044.2928424953, 5750622.840409728], [789136.8711415018, 5750685.273689333]]}, "properties": {"id": "35542-35544-35546-35548-35550-35552-35554-35556-35558-35560-35562", "from": "4204514680", "to": "508067864", "length_m": 133.3366389002221, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789136.8711415018, 5750685.273689333], [789044.2928424953, 5750622.840409728]]}, "properties": {"id": "35563-35561-35559-35557-35555-35553-35551-35549-35547-35545-35543", "from": "508067864", "to": "4204514680", "length_m": 133.3366389002221, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789136.8711415018, 5750685.273689333], [788981.4930288255, 5750862.962340205]]}, "properties": {"id": "35564-35566-35568-35570-35572", "from": "508067864", "to": "510558714", "length_m": 244.21497833756453, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788981.4930288255, 5750862.962340205], [789136.8711415018, 5750685.273689333]]}, "properties": {"id": "35573-35571-35569-35567-35565", "from": "510558714", "to": "508067864", "length_m": 244.21497833756453, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770967.3339675097, 5738366.466962031], [771113.0335228161, 5738272.449097415]]}, "properties": {"id": "35574-35576", "from": "831201068", "to": "831201899", "length_m": 173.40045980503422, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771113.0335228161, 5738272.449097415], [770967.3339675097, 5738366.466962031]]}, "properties": {"id": "35577-35575", "from": "831201899", "to": "831201068", "length_m": 173.40045980503422, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836570.7577968261, 5806871.488283988], [836630.653760158, 5806840.633489327]]}, "properties": {"id": "35578-35579-35580-35581-35582", "from": "320854747", "to": "1833721396", "length_m": 70.36847590963711, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771258.9814539903, 5738632.28682991], [771244.2003822093, 5738757.834740587]]}, "properties": {"id": "35588-35586-34900", "from": "831202178", "to": "831202466", "length_m": 177.0255433918822, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832726.3018444455, 5814085.266564433], [832694.4143763791, 5814096.340189949]]}, "properties": {"id": "35589", "from": "310002366", "to": "36714309", "length_m": 33.755529855914716, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771230.0935949076, 5739111.131912395], [771372.1126294064, 5739082.131574833]]}, "properties": {"id": "35592", "from": "831202184", "to": "831202320", "length_m": 144.9497349724152, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771372.1126294064, 5739082.131574833], [771230.0935949076, 5739111.131912395]]}, "properties": {"id": "35593", "from": "831202320", "to": "831202184", "length_m": 144.9497349724152, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771372.1126294064, 5739082.131574833], [771491.8401651634, 5739059.594040107]]}, "properties": {"id": "35594", "from": "831202320", "to": "831201562", "length_m": 121.83030509528508, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771491.8401651634, 5739059.594040107], [771372.1126294064, 5739082.131574833]]}, "properties": {"id": "35595", "from": "831201562", "to": "831202320", "length_m": 121.83030509528508, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771491.8401651634, 5739059.594040107], [771519.7146413121, 5739054.684562726]]}, "properties": {"id": "35596", "from": "831201562", "to": "831202146", "length_m": 28.30352250962366, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771519.7146413121, 5739054.684562726], [771491.8401651634, 5739059.594040107]]}, "properties": {"id": "35597", "from": "831202146", "to": "831201562", "length_m": 28.30352250962366, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771519.7146413121, 5739054.684562726], [771585.086468407, 5739042.350747897]]}, "properties": {"id": "35598", "from": "831202146", "to": "831201257", "length_m": 66.52517385097633, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771585.086468407, 5739042.350747897], [771519.7146413121, 5739054.684562726]]}, "properties": {"id": "35599", "from": "831201257", "to": "831202146", "length_m": 66.52517385097633, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771232.7946281997, 5738775.077591057], [771330.0701404782, 5738819.25292888]]}, "properties": {"id": "35600", "from": "831201718", "to": "831202236", "length_m": 106.83625650345911, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771330.0701404782, 5738819.25292888], [771232.7946281997, 5738775.077591057]]}, "properties": {"id": "35601", "from": "831202236", "to": "831201718", "length_m": 106.83625650345911, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771330.0701404782, 5738819.25292888], [771478.9102630571, 5738877.686223587]]}, "properties": {"id": "35602", "from": "831202236", "to": "831201678", "length_m": 159.89944300844016, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771478.9102630571, 5738877.686223587], [771330.0701404782, 5738819.25292888]]}, "properties": {"id": "35603", "from": "831201678", "to": "831202236", "length_m": 159.89944300844016, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771478.9102630571, 5738877.686223587], [771603.4081036123, 5738927.827969481]]}, "properties": {"id": "35604-35606-35608", "from": "831201678", "to": "831202399", "length_m": 134.33098616746497, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771603.4081036123, 5738927.827969481], [771478.9102630571, 5738877.686223587]]}, "properties": {"id": "35609-35607-35605", "from": "831202399", "to": "831201678", "length_m": 134.33098616746497, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771442.691989839, 5739177.591897193], [771462.227493338, 5739148.028063383]]}, "properties": {"id": "35610", "from": "831201975", "to": "831202387", "length_m": 35.43523910033727, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771462.227493338, 5739148.028063383], [771442.691989839, 5739177.591897193]]}, "properties": {"id": "35611", "from": "831202387", "to": "831201975", "length_m": 35.43523910033727, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770873.9993888125, 5738221.331795187], [771057.1559954586, 5738105.937440089]]}, "properties": {"id": "35612-35614-35616-35618", "from": "1737115065", "to": "831202105", "length_m": 203.09145038518216, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771057.1559954586, 5738105.937440089], [770873.9993888125, 5738221.331795187]]}, "properties": {"id": "35619-35617-35615-35613", "from": "831202105", "to": "1737115065", "length_m": 203.09145038518216, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771742.385262417, 5738738.291993907], [771849.5198043551, 5738787.361662902]]}, "properties": {"id": "35628-35630", "from": "831202084", "to": "831201802", "length_m": 117.99394956105857, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771849.5198043551, 5738787.361662902], [771742.385262417, 5738738.291993907]]}, "properties": {"id": "35631-35629", "from": "831201802", "to": "831202084", "length_m": 117.99394956105857, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771849.5198043551, 5738787.361662902], [771960.7280858357, 5738970.620589868]]}, "properties": {"id": "35632-35634-35636-35638", "from": "831201802", "to": "831202444", "length_m": 238.74421404458167, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771960.7280858357, 5738970.620589868], [771849.5198043551, 5738787.361662902]]}, "properties": {"id": "35639-35637-35635-35633", "from": "831202444", "to": "831201802", "length_m": 238.74421404458167, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771960.7280858357, 5738970.620589868], [772018.690070399, 5739267.140807345]]}, "properties": {"id": "35640", "from": "831202444", "to": "831202227", "length_m": 302.1321415301788, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772018.690070399, 5739267.140807345], [771960.7280858357, 5738970.620589868]]}, "properties": {"id": "35641", "from": "831202227", "to": "831202444", "length_m": 302.1321415301788, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772018.690070399, 5739267.140807345], [771854.9246106818, 5739601.2384136515]]}, "properties": {"id": "35642-35644-35646-35648-35979-35981-35983", "from": "831202227", "to": "831201524", "length_m": 518.4510125207418, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781750.579010268, 5765752.52337172], [781792.0495648964, 5765751.925569585]]}, "properties": {"id": "35651", "from": "177784989", "to": "370245210", "length_m": 41.474862983931565, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781792.0495648964, 5765751.925569585], [782567.0082005314, 5765748.614704877]]}, "properties": {"id": "35652-35653-35654-35655", "from": "370245210", "to": "2373877391", "length_m": 774.9678283975421, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782567.0082005314, 5765748.614704877], [784178.1463224073, 5765737.712591191]]}, "properties": {"id": "35656", "from": "2373877391", "to": "2373877381", "length_m": 1611.1750030934045, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792670.9310835886, 5766985.008325792], [792556.996170047, 5766369.153607223]]}, "properties": {"id": "35658-35659-35660-35661", "from": "967743152", "to": "262918233", "length_m": 626.3051960915936, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730958.009197306, 5826342.29341574], [730219.4471630304, 5826230.359347225]]}, "properties": {"id": "3566-3564-3562-3560-3558-3556-3554", "from": "1969410867", "to": "1969410905", "length_m": 760.5327701399378, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792556.996170047, 5766369.153607223], [792447.3505685271, 5765766.858678045]]}, "properties": {"id": "35662-35663-35664-2644", "from": "262918233", "to": "291485820", "length_m": 612.1994202621819, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768605.0303018773, 5738302.613188001], [768636.0926792279, 5738144.714634462]]}, "properties": {"id": "35665-35667-35669-35671", "from": "831202326", "to": "831201967", "length_m": 161.25486646432563, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730958.009197306, 5826342.29341574], [731562.5808499246, 5826421.947091788]]}, "properties": {"id": "3567-3569-3571-3573-3575-3577-3579-3581-3583", "from": "1969410867", "to": "1969410841", "length_m": 613.7843427359217, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768636.0926792279, 5738144.714634462], [768605.0303018773, 5738302.613188001]]}, "properties": {"id": "35672-35670-35668-35666", "from": "831201967", "to": "831202326", "length_m": 161.25486646432563, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792672.4526754743, 5767049.006427979], [792799.0609463349, 5767741.71539737]]}, "properties": {"id": "35673-13521-13522-13523", "from": "341550505", "to": "270450185", "length_m": 704.1918838327903, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793874.3615073626, 5772845.328502895], [793865.3252693308, 5772793.794985903]]}, "properties": {"id": "35674-35675", "from": "262734731", "to": "3066144030", "length_m": 52.31975704435596, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784178.1463224073, 5765737.712591191], [784885.9023872514, 5765714.210614388]]}, "properties": {"id": "35676-35677-55535-55536-55537-55538-55539-55540-55541-55542-55543-55544", "from": "2373877381", "to": "3577738561", "length_m": 708.7926849422577, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793853.1507578699, 5772791.123493175], [793863.6398949777, 5772847.394812441]]}, "properties": {"id": "35678", "from": "250444530", "to": "1863863726", "length_m": 57.240574468948594, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833829.0498413837, 5822056.54990803], [833812.0593624666, 5822035.177219472]]}, "properties": {"id": "35679", "from": "603452955", "to": "1257432128", "length_m": 27.303263209674977, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833812.0593624666, 5822035.177219472], [833711.8881618675, 5821873.578815381]]}, "properties": {"id": "35680-35681-35682-35683-35684-35685-35686-35687-35688", "from": "1257432128", "to": "1534937583", "length_m": 191.60886129286928, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833711.8881618675, 5821873.578815381], [833679.6143073484, 5821737.542945661]]}, "properties": {"id": "35689-35690-35691-35692-35693", "from": "1534937583", "to": "2894998245", "length_m": 139.907398489797, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833679.6143073484, 5821737.542945661], [833648.1545986957, 5821632.985143606]]}, "properties": {"id": "35694-35695-35696-35697-35698-35699-35700-35701", "from": "2894998245", "to": "2894998239", "length_m": 109.32454911893853, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833820.3902594536, 5822064.627869295], [833927.9112242856, 5822175.192208612]]}, "properties": {"id": "35702-35703-35704", "from": "603452959", "to": "603452964", "length_m": 154.72877837328622, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[809665.8858409623, 5822740.81403926], [808856.1051750649, 5823128.952700757]]}, "properties": {"id": "35719-35720-35721-35722-35723-35724-35725-35726-35727-35728-35729", "from": "716679848", "to": "4244153703", "length_m": 905.6863097854587, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[808856.1051750649, 5823128.952700757], [808209.301141015, 5823328.029477196]]}, "properties": {"id": "35730-35731-35732-35733-35734-35735-35736-35737-35738-35739-35740", "from": "4244153703", "to": "4230275123", "length_m": 680.2819740513459, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[808209.301141015, 5823328.029477196], [807702.3892221837, 5823344.862167002]]}, "properties": {"id": "35741-35742-35743-35744-40706-49918-49919-49920-49921", "from": "4230275123", "to": "716679778", "length_m": 507.4351467568442, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770660.4445763592, 5737903.228706181], [770587.9531477527, 5737929.319495511]]}, "properties": {"id": "35745-35747-35749", "from": "831201420", "to": "831201471", "length_m": 88.07759314052244, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770587.9531477527, 5737929.319495511], [770660.4445763592, 5737903.228706181]]}, "properties": {"id": "35750-35748-35746", "from": "831201471", "to": "831201420", "length_m": 88.07759314052244, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780800.6648536266, 5783953.550577286], [780780.2396598329, 5783921.338643606]]}, "properties": {"id": "35753-35754-35755-35756", "from": "3520907464", "to": "3520907454", "length_m": 42.426922532543, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780780.2396598329, 5783921.338643606], [780748.5802042452, 5783948.699790745]]}, "properties": {"id": "35757-35758-35759-35760-35761", "from": "3520907454", "to": "5550653282", "length_m": 47.746864641584054, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780748.5802042452, 5783948.699790745], [780775.1210098121, 5783973.244485265]]}, "properties": {"id": "35762-35763-35764-35765", "from": "5550653282", "to": "476323627", "length_m": 39.32952976501315, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780775.1210098121, 5783973.244485265], [780800.6648536266, 5783953.550577286]]}, "properties": {"id": "35766-35767-35751-35752", "from": "476323627", "to": "3520907464", "length_m": 34.56180547056334, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780800.6648536266, 5783953.550577286], [780920.6759287129, 5783798.2484009955]]}, "properties": {"id": "35774-35775-35776-35777-35778-35779-35780", "from": "3520907464", "to": "945648289", "length_m": 197.2256742390594, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768386.1917089843, 5778640.03339154], [768916.9902448782, 5778716.505196447]]}, "properties": {"id": "35792-35426-43254-43252-43250-43248", "from": "364627912", "to": "1952250930", "length_m": 537.4305098088897, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771029.5553354865, 5739762.467050887], [770870.4325200019, 5739655.209880884]]}, "properties": {"id": "35793-35795-35797-35799", "from": "831201037", "to": "831201341", "length_m": 195.31734591276143, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770870.4325200019, 5739655.209880884], [771029.5553354865, 5739762.467050887]]}, "properties": {"id": "35800-35798-35796-35794", "from": "831201341", "to": "831201037", "length_m": 195.31734591276143, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771538.4372605663, 5738662.046957762], [771492.7991537943, 5738759.957635403]]}, "properties": {"id": "35801", "from": "831202263", "to": "831201611", "length_m": 108.02470830555002, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771492.7991537943, 5738759.957635403], [771538.4372605663, 5738662.046957762]]}, "properties": {"id": "35802", "from": "831201611", "to": "831202263", "length_m": 108.02470830555002, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767563.663143105, 5738308.846805094], [767054.2419975525, 5738871.004107783]]}, "properties": {"id": "35813-35815-35817-35819-35821-35823-35825-35827-35829-35831-35833-35835-35837-35839-35841-35843-35845-35847-35849-35851", "from": "524151618", "to": "524154222", "length_m": 901.6694270048566, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731562.5808499246, 5826421.947091788], [730958.009197306, 5826342.29341574]]}, "properties": {"id": "3584-3582-3580-3578-3576-3574-3572-3570-3568", "from": "1969410841", "to": "1969410867", "length_m": 613.7843427359217, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731562.5808499246, 5826421.947091788], [732245.2497332756, 5826384.666713352]]}, "properties": {"id": "3585-3587-3589-3591-3593-3595-3597-3599-3601-3603", "from": "1969410841", "to": "1969410847", "length_m": 690.8398484527354, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767054.2419975525, 5738871.004107783], [767563.663143105, 5738308.846805094]]}, "properties": {"id": "35852-35850-35848-35846-35844-35842-35840-35838-35836-35834-35832-35830-35828-35826-35824-35822-35820-35818-35816-35814", "from": "524154222", "to": "524151618", "length_m": 901.6694270048566, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768809.9358724051, 5738224.048891712], [768829.6365569715, 5738056.506391225]]}, "properties": {"id": "35854-35856", "from": "665717000", "to": "665717004", "length_m": 173.40919462177658, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768829.6365569715, 5738056.506391225], [768809.9358724051, 5738224.048891712]]}, "properties": {"id": "35857-35855", "from": "665717004", "to": "665717000", "length_m": 173.40919462177658, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768829.6365569715, 5738056.506391225], [768848.7144747736, 5737962.236191898]]}, "properties": {"id": "35858-35860-35862", "from": "665717004", "to": "831201203", "length_m": 96.73233289038811, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768848.7144747736, 5737962.236191898], [768829.6365569715, 5738056.506391225]]}, "properties": {"id": "35863-35861-35859", "from": "831201203", "to": "665717004", "length_m": 96.73233289038811, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771372.1126294064, 5739082.131574833], [771442.691989839, 5739177.591897193]]}, "properties": {"id": "35866-35868", "from": "831202320", "to": "831201975", "length_m": 119.7872648468336, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771442.691989839, 5739177.591897193], [771372.1126294064, 5739082.131574833]]}, "properties": {"id": "35869-35867", "from": "831201975", "to": "831202320", "length_m": 119.7872648468336, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771442.691989839, 5739177.591897193], [771561.264347478, 5739264.2838816345]]}, "properties": {"id": "35870-35872-35874-35876", "from": "831201975", "to": "831201069", "length_m": 158.163671064526, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771561.264347478, 5739264.2838816345], [771442.691989839, 5739177.591897193]]}, "properties": {"id": "35877-35875-35873-35871", "from": "831201069", "to": "831201975", "length_m": 158.163671064526, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769386.2058457285, 5737905.503273521], [769369.1560469969, 5738039.967720255]]}, "properties": {"id": "35887-35889-35891", "from": "831202195", "to": "831202415", "length_m": 228.9160791158776, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769369.1560469969, 5738039.967720255], [769386.2058457285, 5737905.503273521]]}, "properties": {"id": "35892-35890-35888", "from": "831202415", "to": "831202195", "length_m": 228.9160791158776, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769369.1560469969, 5738039.967720255], [769121.0769058897, 5738405.367441593]]}, "properties": {"id": "35893-35895-35897-35899-35901-35903-35905-35907-35909-35911-35913-35915-35917-35919", "from": "831202415", "to": "831202042", "length_m": 488.06462705459234, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769121.0769058897, 5738405.367441593], [769369.1560469969, 5738039.967720255]]}, "properties": {"id": "35920-35918-35916-35914-35912-35910-35908-35906-35904-35902-35900-35898-35896-35894", "from": "831202042", "to": "831202415", "length_m": 488.06462705459234, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769728.840752912, 5737892.056409039], [769692.2809761227, 5737992.571689066]]}, "properties": {"id": "35921-35923", "from": "37673595", "to": "831202502", "length_m": 59.068381687822395, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769692.2809761227, 5737992.571689066], [769728.840752912, 5737892.056409039]]}, "properties": {"id": "35924-35922", "from": "831202502", "to": "37673595", "length_m": 59.068381687822395, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769692.2809761227, 5737992.571689066], [769386.2058457285, 5737905.503273521]]}, "properties": {"id": "35925-35927-35929-35931-35933-35935-35937-35939-35941-35943-35945-35947-35949", "from": "831202502", "to": "831202195", "length_m": 366.69437404495466, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769386.2058457285, 5737905.503273521], [769692.2809761227, 5737992.571689066]]}, "properties": {"id": "35950-35948-35946-35944-35942-35940-35938-35936-35934-35932-35930-35928-35926", "from": "831202195", "to": "831202502", "length_m": 366.69437404495466, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769386.2058457285, 5737905.503273521], [768955.5144864673, 5738189.79300382]]}, "properties": {"id": "35951-35953-35955-35957-35959-35961-35963-35965-35967-35969-35971-35973", "from": "831202195", "to": "665716942", "length_m": 678.4910061238717, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768955.5144864673, 5738189.79300382], [769386.2058457285, 5737905.503273521]]}, "properties": {"id": "35974-35972-35970-35968-35966-35964-35962-35960-35958-35956-35954-35952", "from": "665716942", "to": "831202195", "length_m": 678.4910061238717, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768955.5144864673, 5738189.79300382], [768980.6169834638, 5738096.742959815]]}, "properties": {"id": "35975-35977", "from": "665716942", "to": "665716940", "length_m": 97.08271236667048, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768980.6169834638, 5738096.742959815], [768955.5144864673, 5738189.79300382]]}, "properties": {"id": "35978-35976", "from": "665716940", "to": "665716942", "length_m": 97.08271236667048, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771854.9246106818, 5739601.2384136515], [772018.690070399, 5739267.140807345]]}, "properties": {"id": "35984-35982-35980-35649-35647-35645-35643", "from": "831201524", "to": "831202227", "length_m": 518.4510125207418, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771854.9246106818, 5739601.2384136515], [771691.2887190755, 5739636.000595009]]}, "properties": {"id": "35985", "from": "831201524", "to": "37673837", "length_m": 167.28751950698395, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771691.2887190755, 5739636.000595009], [771854.9246106818, 5739601.2384136515]]}, "properties": {"id": "35986", "from": "37673837", "to": "831201524", "length_m": 167.28751950698395, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771691.2887190755, 5739636.000595009], [771290.6590676457, 5739709.870396704]]}, "properties": {"id": "35987-35989", "from": "37673837", "to": "527904275", "length_m": 407.3851128661506, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771290.6590676457, 5739709.870396704], [771691.2887190755, 5739636.000595009]]}, "properties": {"id": "35990-35988", "from": "527904275", "to": "37673837", "length_m": 407.3851128661506, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771290.6590676457, 5739709.870396704], [771029.5553354865, 5739762.467050887]]}, "properties": {"id": "35991-35993", "from": "527904275", "to": "831201037", "length_m": 266.3511264801942, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771029.5553354865, 5739762.467050887], [771290.6590676457, 5739709.870396704]]}, "properties": {"id": "35994-35992", "from": "831201037", "to": "527904275", "length_m": 266.3511264801942, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771029.5553354865, 5739762.467050887], [770683.4736237363, 5739831.9314613035]]}, "properties": {"id": "35995", "from": "831201037", "to": "831201767", "length_m": 352.98421375520286, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770683.4736237363, 5739831.9314613035], [771029.5553354865, 5739762.467050887]]}, "properties": {"id": "35996", "from": "831201767", "to": "831201037", "length_m": 352.98421375520286, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770683.4736237363, 5739831.9314613035], [770271.7081846476, 5739833.9051556755]]}, "properties": {"id": "35997-35999-36001-36003", "from": "831201767", "to": "831201962", "length_m": 442.75318530451506, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770271.7081846476, 5739833.9051556755], [770683.4736237363, 5739831.9314613035]]}, "properties": {"id": "36004-36002-36000-35998", "from": "831201962", "to": "831201767", "length_m": 442.75318530451506, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771222.8790438054, 5738357.861417017], [771036.0788890328, 5738476.226960222]]}, "properties": {"id": "36005-36007-36009-36011", "from": "831202067", "to": "831201154", "length_m": 221.37678885819344, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771036.0788890328, 5738476.226960222], [771222.8790438054, 5738357.861417017]]}, "properties": {"id": "36012-36010-36008-36006", "from": "831201154", "to": "831202067", "length_m": 221.37678885819344, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771036.0788890328, 5738476.226960222], [770870.985705472, 5738551.061525287]]}, "properties": {"id": "36013-36015-36017-36019", "from": "831201154", "to": "831202145", "length_m": 184.92832608085243, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770870.985705472, 5738551.061525287], [771036.0788890328, 5738476.226960222]]}, "properties": {"id": "36020-36018-36016-36014", "from": "831202145", "to": "831201154", "length_m": 184.92832608085243, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770870.985705472, 5738551.061525287], [770707.373388202, 5738556.123265072]]}, "properties": {"id": "36021-36023", "from": "831202145", "to": "831201852", "length_m": 163.69071050681129, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770707.373388202, 5738556.123265072], [770870.985705472, 5738551.061525287]]}, "properties": {"id": "36024-36022", "from": "831201852", "to": "831202145", "length_m": 163.69071050681129, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770683.4736237363, 5739831.9314613035], [770368.3251073878, 5739661.024100416]]}, "properties": {"id": "36025-36027-36029-36031-36033-36035", "from": "831201767", "to": "831201976", "length_m": 358.56531994170496, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770368.3251073878, 5739661.024100416], [770683.4736237363, 5739831.9314613035]]}, "properties": {"id": "36036-36034-36032-36030-36028-36026", "from": "831201976", "to": "831201767", "length_m": 358.56531994170496, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793812.532712182, 5774720.609031979], [793804.6603925639, 5774726.517639567]]}, "properties": {"id": "36037-36038", "from": "472534118", "to": "5468489801", "length_m": 9.84792031498571, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793804.6603925639, 5774726.517639567], [793797.7847930482, 5774755.864041773]]}, "properties": {"id": "36039-36040-36041-36042-36043", "from": "5468489801", "to": "3964004502", "length_m": 31.311741062280888, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732245.2497332756, 5826384.666713352], [731562.5808499246, 5826421.947091788]]}, "properties": {"id": "3604-3602-3600-3598-3596-3594-3592-3590-3588-3586", "from": "1969410847", "to": "1969410841", "length_m": 690.8398484527354, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830179.765437704, 5821771.446398949], [830174.9587201104, 5821746.266497003]]}, "properties": {"id": "36044", "from": "605208464", "to": "309586885", "length_m": 25.634585904076854, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769805.0272252338, 5738244.744493627], [769903.7116622825, 5738303.756783193]]}, "properties": {"id": "36045-36047-36049-36051-36053-36055", "from": "831201986", "to": "831201694", "length_m": 116.55217742248998, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732245.2497332756, 5826384.666713352], [732825.8525877103, 5826614.906554924]]}, "properties": {"id": "3605-3607-3609-3611-3613-3615-3617-3619-3621-3623-3625", "from": "1969410847", "to": "1969410820", "length_m": 627.0049400621687, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769903.7116622825, 5738303.756783193], [769805.0272252338, 5738244.744493627]]}, "properties": {"id": "36056-36054-36052-36050-36048-36046", "from": "831201694", "to": "831201986", "length_m": 116.55217742248998, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769903.7116622825, 5738303.756783193], [769908.4063774934, 5738474.87309981]]}, "properties": {"id": "36057-36059-36061-36063-36065-36067-36069-36071-36073-36075-36077-36079-36081", "from": "831201694", "to": "831201626", "length_m": 418.80674430699946, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769908.4063774934, 5738474.87309981], [769903.7116622825, 5738303.756783193]]}, "properties": {"id": "36082-36080-36078-36076-36074-36072-36070-36068-36066-36064-36062-36060-36058", "from": "831201626", "to": "831201694", "length_m": 418.80674430699946, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769908.4063774934, 5738474.87309981], [769903.7116622825, 5738303.756783193]]}, "properties": {"id": "36083-36085-36087-36089-36091-36093-36095-36097", "from": "831201626", "to": "831201694", "length_m": 189.65677195584416, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769903.7116622825, 5738303.756783193], [769908.4063774934, 5738474.87309981]]}, "properties": {"id": "36098-36096-36094-36092-36090-36088-36086-36084", "from": "831201694", "to": "831201626", "length_m": 189.65677195584416, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770407.3456272758, 5738264.15333869], [770330.3013972063, 5738207.296464471]]}, "properties": {"id": "36099-36101-36103", "from": "831202239", "to": "831201104", "length_m": 96.58523942390568, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794581.7424647457, 5779515.253454561], [794558.4232348467, 5779519.987633501]]}, "properties": {"id": "361", "from": "3955050488", "to": "318038046", "length_m": 23.794934998605136, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770330.3013972063, 5738207.296464471], [770407.3456272758, 5738264.15333869]]}, "properties": {"id": "36104-36102-36100", "from": "831201104", "to": "831202239", "length_m": 96.58523942390568, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770330.3013972063, 5738207.296464471], [770330.0834214296, 5738139.062731549]]}, "properties": {"id": "36105-36107-36109", "from": "831201104", "to": "831201302", "length_m": 70.48902394241308, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770330.0834214296, 5738139.062731549], [770330.3013972063, 5738207.296464471]]}, "properties": {"id": "36110-36108-36106", "from": "831201302", "to": "831201104", "length_m": 70.48902394241308, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770596.3968427272, 5737836.901920273], [770717.2849561748, 5737723.146721185]]}, "properties": {"id": "36111-36113-36115-36117-36119-36121", "from": "831202439", "to": "831201616", "length_m": 225.28822139164294, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770717.2849561748, 5737723.146721185], [770596.3968427272, 5737836.901920273]]}, "properties": {"id": "36122-36120-36118-36116-36114-36112", "from": "831201616", "to": "831202439", "length_m": 225.28822139164294, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771807.9601368615, 5738894.681977838], [771694.0095853779, 5738845.88671263]]}, "properties": {"id": "36123", "from": "831202443", "to": "831201431", "length_m": 123.95848501987109, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771694.0095853779, 5738845.88671263], [771807.9601368615, 5738894.681977838]]}, "properties": {"id": "36124", "from": "831201431", "to": "831202443", "length_m": 123.95848501987109, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767652.1211903878, 5738193.222395853], [767590.5888978016, 5738162.281725156]]}, "properties": {"id": "36125-36127-36129", "from": "524151559", "to": "831201109", "length_m": 68.97217519564816, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767590.5888978016, 5738162.281725156], [767652.1211903878, 5738193.222395853]]}, "properties": {"id": "36130-36128-36126", "from": "831201109", "to": "524151559", "length_m": 68.97217519564816, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770388.7272049753, 5738153.37875863], [770396.4766763995, 5738167.64165886]]}, "properties": {"id": "36131", "from": "831202469", "to": "831202382", "length_m": 16.232209613173602, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770396.4766763995, 5738167.64165886], [770388.7272049753, 5738153.37875863]]}, "properties": {"id": "36132", "from": "831202382", "to": "831202469", "length_m": 16.232209613173602, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770396.4766763995, 5738167.64165886], [770401.0359283362, 5738175.122318596]]}, "properties": {"id": "36133", "from": "831202382", "to": "831201978", "length_m": 8.760539259014266, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770401.0359283362, 5738175.122318596], [770396.4766763995, 5738167.64165886]]}, "properties": {"id": "36134", "from": "831201978", "to": "831202382", "length_m": 8.760539259014266, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793812.55501557, 5774169.18366148], [793804.4488836931, 5774164.24189342]]}, "properties": {"id": "36157", "from": "318039780", "to": "318039883", "length_m": 9.493705513134017, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794892.7612894985, 5771573.886768908], [794888.3700566895, 5771562.93158372]]}, "properties": {"id": "36159", "from": "317727076", "to": "705053897", "length_m": 11.802500057900518, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794888.3700566895, 5771562.93158372], [794892.7612894985, 5771573.886768908]]}, "properties": {"id": "36160", "from": "705053897", "to": "317727076", "length_m": 11.802500057900518, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793812.55501557, 5774169.18366148], [793772.4052406047, 5774083.87572917]]}, "properties": {"id": "36171-36172-36173-36174-36175-36176-36177-36178-36179-36180-55282-55283-55284-55285-55286", "from": "318039780", "to": "318039790", "length_m": 114.4336320876294, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803824.4709068425, 5786708.609813968], [804692.7289066319, 5787172.438725374]]}, "properties": {"id": "36181-36182-36183-36184-36185-36186-36187-36188-36189-36190-33972-33973-33974-33975-401-402-403-404-405-406-407-408-409-410-411-412-413", "from": "616948949", "to": "174828888", "length_m": 1116.101764748263, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793772.4052406047, 5774083.87572917], [793738.175447996, 5774032.864176403]]}, "properties": {"id": "36191-36192-36193-36194-36195-36196-36197-36198-36199-36200-36201-36202", "from": "318039790", "to": "318039799", "length_m": 70.78487369239235, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833377.627372259, 5820968.9917648425], [833371.8356359231, 5821028.556273157]]}, "properties": {"id": "36203-36204-36205-36206-36207-36208-36209", "from": "603462818", "to": "385825913", "length_m": 61.23496440188233, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793705.7936013009, 5774082.72770648], [793780.5063730853, 5774675.48625421]]}, "properties": {"id": "36212-36213-36214-36215-36216-36217-36218-36219-36220-36221-36222-36223-36224-36225", "from": "3996617764", "to": "3964004499", "length_m": 601.3901036115044, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793780.5063730853, 5774675.48625421], [793797.7847930482, 5774755.864041773]]}, "properties": {"id": "36226-36227", "from": "3964004499", "to": "3964004502", "length_m": 82.27128953913271, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833502.6933461423, 5821305.976741356], [833449.6883656697, 5821199.465232262]]}, "properties": {"id": "36228-36229-36230-36231-36232-36233-36234-36235-36236", "from": "1534937622", "to": "584248061", "length_m": 123.30468801620172, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833418.4656904615, 5821102.202518079], [833467.2827370819, 5821196.27457022]]}, "properties": {"id": "36237-36238-36239-36240-36241-36242-36243-36244-36245", "from": "603450883", "to": "584248057", "length_m": 109.56707824906887, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766441.140509706, 5764353.2150301235], [766382.1252331135, 5764404.557850281]]}, "properties": {"id": "36246-36247-36248-36249", "from": "2379163041", "to": "2379163043", "length_m": 79.19283222507023, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752017.1273399282, 5839865.846348586], [752214.4528520738, 5839486.40392042]]}, "properties": {"id": "36250-36251-36252-36253-36254-36255-36256", "from": "651421116", "to": "363999767", "length_m": 429.21698147472136, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751417.3636967632, 5843782.084194938], [751650.1642712386, 5843546.920538952]]}, "properties": {"id": "36257-36258-36259-36260-36261-36262-36263-36264", "from": "364001816", "to": "465240784", "length_m": 358.077518791771, "freespeed_mps": 30.555555555555554, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732825.8525877103, 5826614.906554924], [732245.2497332756, 5826384.666713352]]}, "properties": {"id": "3626-3624-3622-3620-3618-3616-3614-3612-3610-3608-3606", "from": "1969410820", "to": "1969410847", "length_m": 627.0049400621687, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732825.8525877103, 5826614.906554924], [733238.0532511875, 5826935.916972264]]}, "properties": {"id": "3627-29291", "from": "1969410820", "to": "3444578378", "length_m": 522.4529399081101, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787091.5556547717, 5754602.14275065], [785630.3517385108, 5754861.715084221]]}, "properties": {"id": "36278-36280", "from": "321710619", "to": "3413826115", "length_m": 1414.3114742738744, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785630.3517385108, 5754861.715084221], [787091.5556547717, 5754602.14275065]]}, "properties": {"id": "36281-36279", "from": "3413826115", "to": "321710619", "length_m": 1414.3114742738744, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837509.4760266603, 5815273.827522706], [837404.0879469231, 5815450.122474552]]}, "properties": {"id": "36282-36283", "from": "299199620", "to": "343862868", "length_m": 205.5592084091868, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837404.0879469231, 5815450.122474552], [837367.3230535418, 5815501.033172658]]}, "properties": {"id": "36284-36285-36286", "from": "343862868", "to": "1504829816", "length_m": 62.81727409491758, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790859.3594687667, 5777520.529304306], [791008.5323634036, 5777415.465955882]]}, "properties": {"id": "36288-36289-36290-36291-36292", "from": "318035128", "to": "334409520", "length_m": 182.75523023707686, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833510.0906357643, 5812752.756182551], [833019.7679315791, 5812849.0495325085]]}, "properties": {"id": "3629-3630-3631-3632", "from": "268170604", "to": "268220755", "length_m": 499.72597819328456, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791008.5323634036, 5777415.465955882], [791051.1992730225, 5777379.007397777]]}, "properties": {"id": "36293", "from": "334409520", "to": "318035139", "length_m": 56.12211363417169, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791828.0364982142, 5779127.523906785], [792224.8733195832, 5779764.51820777]]}, "properties": {"id": "36297-36298-23938-24018-24019-24020-24021-24022-24023-24024", "from": "318039175", "to": "318036361", "length_m": 756.6544933189689, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797412.1447375321, 5782442.94207557], [797009.3747870498, 5782066.954091974]]}, "properties": {"id": "36320-36321-36322-36323-36324-36299-36300-36301-36302-36303-36304-36305-36306-36307-36308-36309-36310-36311-36312-36313", "from": "318573686", "to": "1586646565", "length_m": 569.3616470955468, "freespeed_mps": 27.77777777777778, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824874.4905785678, 5822674.11113384], [824214.586865132, 5822786.987565253]]}, "properties": {"id": "36325-37145-37147", "from": "1412733100", "to": "1412733078", "length_m": 669.4888223828883, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824655.0368507528, 5822711.151722778], [824874.4905785678, 5822674.11113384]]}, "properties": {"id": "36326", "from": "1412733139", "to": "1412733100", "length_m": 222.55773079781397, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824214.586865132, 5822786.987565253], [824082.167231159, 5822810.298423283]]}, "properties": {"id": "36327", "from": "1412733078", "to": "26118323", "length_m": 134.45577507073023, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824082.167231159, 5822810.298423283], [824214.586865132, 5822786.987565253]]}, "properties": {"id": "36328", "from": "26118323", "to": "1412733078", "length_m": 134.45577507073023, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833019.7679315791, 5812849.0495325085], [832980.1064139144, 5812856.1141916625]]}, "properties": {"id": "3633", "from": "268220755", "to": "298347619", "length_m": 40.285796242499536, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[823572.3355577646, 5822904.620800364], [824082.167231159, 5822810.298423283]]}, "properties": {"id": "36330-22918-22916", "from": "1412733111", "to": "26118323", "length_m": 518.4834483857629, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[823572.3355577646, 5822904.620800364], [822533.0896834265, 5823101.426167605]]}, "properties": {"id": "36331-36333-36335-36337-36339-36341-36343-36345-36347-36349-36351-36353", "from": "1412733111", "to": "1412733125", "length_m": 1057.7886313809977, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832980.1064139144, 5812856.1141916625], [832897.6263883365, 5812872.060741429]]}, "properties": {"id": "3634", "from": "298347619", "to": "1536031891", "length_m": 84.00742242276077, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752049.0157286815, 5838384.778248543], [751723.2676403994, 5838038.822022971]]}, "properties": {"id": "3635-3636-3637-3638-3639-3640-3641-15007-10787-10788-23100", "from": "1840300860", "to": "1140763089", "length_m": 503.79200360873233, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[822533.0896834265, 5823101.426167605], [823572.3355577646, 5822904.620800364]]}, "properties": {"id": "36354-36352-36350-36348-36346-36344-36342-36340-36338-36336-36334-36332", "from": "1412733125", "to": "1412733111", "length_m": 1057.7886313809977, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[822533.0896834265, 5823101.426167605], [821735.5394246256, 5823293.1156922635]]}, "properties": {"id": "36355-36357-36359-36361-36363-36365-36367", "from": "1412733125", "to": "1412733133", "length_m": 820.3224665015917, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[821735.5394246256, 5823293.1156922635], [822533.0896834265, 5823101.426167605]]}, "properties": {"id": "36368-36366-36364-36362-36360-36358-36356", "from": "1412733133", "to": "1412733125", "length_m": 820.3224665015917, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[821735.5394246256, 5823293.1156922635], [821081.0079857123, 5823448.580450462]]}, "properties": {"id": "36369-36371-36373-36375-36377-36379-36381", "from": "1412733133", "to": "1412733142", "length_m": 673.0306277991438, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[821081.0079857123, 5823448.580450462], [821735.5394246256, 5823293.1156922635]]}, "properties": {"id": "36382-36380-36378-36376-36374-36372-36370", "from": "1412733142", "to": "1412733133", "length_m": 673.0306277991438, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[821081.0079857123, 5823448.580450462], [820063.383313525, 5823179.466816958]]}, "properties": {"id": "36383-36385-36387-36389-36391-36393-36395-36397-36399-36401-36403-36405-36407-35040-37101-37103-37105-37107-37109-37111-37113-37115-37117-37119-37121-37123-37125-37127-37129-37131-37133-37135-37137", "from": "1412733142", "to": "303685728", "length_m": 1133.1882535601633, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790300.2811341684, 5754815.329584787], [790305.6926432265, 5754827.560621257]]}, "properties": {"id": "36409", "from": "1580591273", "to": "270451603", "length_m": 13.12807962006246, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790305.6926432265, 5754827.560621257], [790529.4234757901, 5755573.720785346]]}, "properties": {"id": "36410-36411-36412-36413-36414-36415-36416-36417", "from": "270451603", "to": "512196786-33", "length_m": 809.7358620826731, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750882.6146735044, 5836851.828352263], [750965.2954997879, 5837030.143286274]]}, "properties": {"id": "3642-3643-11473", "from": "363997979", "to": "477076561", "length_m": 196.62838079654762, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837541.7940466346, 5815236.397343887], [837635.2119836821, 5815015.522819051]]}, "properties": {"id": "36423-36424-36425-36426-36427-36428-36429-36430-36431", "from": "299199702", "to": "33302748", "length_m": 239.87115908294518, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772255.4115641307, 5756186.206620464], [772878.2241404881, 5755896.757482118]]}, "properties": {"id": "36437-36439-36441-36443-36445-36447-36449-36451-36453-36455-36457-36459-36461-36463-36465-36467", "from": "5934622989", "to": "5934623126", "length_m": 809.9754146582561, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772878.2241404881, 5755896.757482118], [772255.4115641307, 5756186.206620464]]}, "properties": {"id": "36468-36466-36464-36462-36460-36458-36456-36454-36452-36450-36448-36446-36444-36442-36440-36438", "from": "5934623126", "to": "5934622989", "length_m": 809.9754146582561, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791127.3012321279, 5754720.972059381], [791139.5984392927, 5754800.420328737]]}, "properties": {"id": "36525", "from": "3577715442", "to": "2548347210", "length_m": 80.39433315212699, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791139.5984392927, 5754800.420328737], [791127.3012321279, 5754720.972059381]]}, "properties": {"id": "36526", "from": "2548347210", "to": "3577715442", "length_m": 80.39433315212699, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791139.5984392927, 5754800.420328737], [791137.1199180677, 5754879.1010419065]]}, "properties": {"id": "36527-36529", "from": "2548347210", "to": "2548347202", "length_m": 78.89244643688656, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760092.7379173358, 5729259.634735144], [760096.7287953434, 5728771.771984256]]}, "properties": {"id": "3653-3651-3649-3647-3645-44635-44633-44631-44629-44627-44625-44623-44621-44619-44617-44615-44613-44611-44609", "from": "832508688", "to": "832509749", "length_m": 562.2941429960797, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791137.1199180677, 5754879.1010419065], [791139.5984392927, 5754800.420328737]]}, "properties": {"id": "36530-36528", "from": "2548347202", "to": "2548347210", "length_m": 78.89244643688656, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791137.1199180677, 5754879.1010419065], [791138.4257256007, 5754899.282519855]]}, "properties": {"id": "36531-36533", "from": "2548347202", "to": "5421407218", "length_m": 20.224436629236205, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791138.4257256007, 5754899.282519855], [791137.1199180677, 5754879.1010419065]]}, "properties": {"id": "36534-36532", "from": "5421407218", "to": "2548347202", "length_m": 20.224436629236205, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791138.4257256007, 5754899.282519855], [791158.1858656845, 5754949.374736773]]}, "properties": {"id": "36535-36537-36539-36541-36543", "from": "5421407218", "to": "2548347197", "length_m": 54.35845096987727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760092.7379173358, 5729259.634735144], [759780.6812726057, 5729526.971653542]]}, "properties": {"id": "3654-3656-3658-3660-3662-3664", "from": "832508688", "to": "250291479", "length_m": 411.4299316320864, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791158.1858656845, 5754949.374736773], [791138.4257256007, 5754899.282519855]]}, "properties": {"id": "36544-36542-36540-36538-36536", "from": "2548347197", "to": "5421407218", "length_m": 54.35845096987727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791158.1858656845, 5754949.374736773], [791198.8950819613, 5755020.829408294]]}, "properties": {"id": "36545", "from": "2548347197", "to": "2548347192", "length_m": 82.2375239078977, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791198.8950819613, 5755020.829408294], [791158.1858656845, 5754949.374736773]]}, "properties": {"id": "36546", "from": "2548347192", "to": "2548347197", "length_m": 82.2375239078977, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791198.8950819613, 5755020.829408294], [791208.3060412647, 5755036.26158863]]}, "properties": {"id": "36547", "from": "2548347192", "to": "2548347189", "length_m": 18.07535182577088, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791208.3060412647, 5755036.26158863], [791198.8950819613, 5755020.829408294]]}, "properties": {"id": "36548", "from": "2548347189", "to": "2548347192", "length_m": 18.07535182577088, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791208.3060412647, 5755036.26158863], [791215.4627068308, 5755049.896705446]]}, "properties": {"id": "36549", "from": "2548347189", "to": "3230837562", "length_m": 15.399164654893498, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791215.4627068308, 5755049.896705446], [791208.3060412647, 5755036.26158863]]}, "properties": {"id": "36550", "from": "3230837562", "to": "2548347189", "length_m": 15.399164654893498, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767973.5145879319, 5757760.340935328], [767888.6366277209, 5757219.5169109]]}, "properties": {"id": "36551-36553-36555-36557-36559", "from": "5934622855", "to": "5934622851", "length_m": 549.4181914436998, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767888.6366277209, 5757219.5169109], [767973.5145879319, 5757760.340935328]]}, "properties": {"id": "36560-36558-36556-36554-36552", "from": "5934622851", "to": "5934622855", "length_m": 549.4181914436998, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790347.6468616365, 5754818.616605818], [790322.8617577101, 5754823.520503879]]}, "properties": {"id": "36561", "from": "1580591289", "to": "513382359", "length_m": 25.733987962154863, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790305.6926432265, 5754827.560621257], [790322.8617577101, 5754823.520503879]]}, "properties": {"id": "36562", "from": "270451603", "to": "513382359", "length_m": 18.68974248230659, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764643.0580842819, 5753780.986630501], [764568.3823490653, 5753415.438073496]]}, "properties": {"id": "36563-36565-36567-36569-36571-36573", "from": "5934622883", "to": "5934623002", "length_m": 374.20588024179455, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764568.3823490653, 5753415.438073496], [764643.0580842819, 5753780.986630501]]}, "properties": {"id": "36574-36572-36570-36568-36566-36564", "from": "5934623002", "to": "5934622883", "length_m": 374.20588024179455, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752006.9805551153, 5839860.211675536], [751783.1632370076, 5840285.350391282]]}, "properties": {"id": "36609-36610-36611-36612-36613-36614-36615-36616-36617", "from": "651421125", "to": "2282481505", "length_m": 482.0341833927259, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767874.9737372489, 5757761.719530386], [767973.5145879319, 5757760.340935328]]}, "properties": {"id": "36618", "from": "177786920", "to": "5934622855", "length_m": 98.550493329551, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767973.5145879319, 5757760.340935328], [767874.9737372489, 5757761.719530386]]}, "properties": {"id": "36619", "from": "5934622855", "to": "177786920", "length_m": 98.550493329551, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767973.5145879319, 5757760.340935328], [768034.5970556086, 5757824.396045349]]}, "properties": {"id": "36620", "from": "5934622855", "to": "5934623177", "length_m": 88.51059227339097, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768034.5970556086, 5757824.396045349], [767973.5145879319, 5757760.340935328]]}, "properties": {"id": "36621", "from": "5934623177", "to": "5934622855", "length_m": 88.51059227339097, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762231.6873823864, 5757250.035712574], [762046.2818711305, 5758015.332490007]]}, "properties": {"id": "36622-36624-36626-36628-36630-36632-36634-36636-36638-36640-36642-36644-36646-36648-36650-36652-36654-36656-36658-36660", "from": "849463920", "to": "5934623052", "length_m": 868.3768686211422, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759780.6812726057, 5729526.971653542], [760092.7379173358, 5729259.634735144]]}, "properties": {"id": "3665-3663-3661-3659-3657-3655", "from": "250291479", "to": "832508688", "length_m": 411.4299316320864, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759780.6812726057, 5729526.971653542], [759530.2587750885, 5729668.372993435]]}, "properties": {"id": "3666-3668-3670-3672-3674-3676", "from": "250291479", "to": "832508116", "length_m": 288.82633068875424, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762046.2818711305, 5758015.332490007], [762231.6873823864, 5757250.035712574]]}, "properties": {"id": "36661-36659-36657-36655-36653-36651-36649-36647-36645-36643-36641-36639-36637-36635-36633-36631-36629-36627-36625-36623", "from": "5934623052", "to": "849463920", "length_m": 868.3768686211422, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750838.9955275656, 5836222.941019166], [750852.0045498615, 5836223.135976218]]}, "properties": {"id": "36662", "from": "3205831997", "to": "3205832057", "length_m": 13.010483055139714, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750852.0045498615, 5836223.135976218], [750838.9955275656, 5836222.941019166]]}, "properties": {"id": "36663", "from": "3205832057", "to": "3205831997", "length_m": 13.010483055139714, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757192.6754406942, 5743549.981060576], [756342.3572822203, 5743642.58696683]]}, "properties": {"id": "36664-36666-36668-36670-36672-36674-36676-36678-36680-36682-36684-36686-36688", "from": "534672993", "to": "534672865", "length_m": 723.4410407711414, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756342.3572822203, 5743642.58696683], [757192.6754406942, 5743549.981060576]]}, "properties": {"id": "36689-36687-36685-36683-36681-36679-36677-36675-36673-36671-36669-36667-36665", "from": "534672865", "to": "534672993", "length_m": 723.4410407711414, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756342.3572822203, 5743642.58696683], [755905.0241002612, 5743953.5662510395]]}, "properties": {"id": "36690-36692-36694-36696-36698-36700-36702-36704", "from": "534672865", "to": "534672792", "length_m": 542.7120107277317, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755905.0241002612, 5743953.5662510395], [756342.3572822203, 5743642.58696683]]}, "properties": {"id": "36705-36703-36701-36699-36697-36695-36693-36691", "from": "534672792", "to": "534672865", "length_m": 542.7120107277317, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755905.0241002612, 5743953.5662510395], [755586.9249218681, 5744255.865005888]]}, "properties": {"id": "36706-36708-36710-36712-36714-36716-36718-36720-36722-36724-36726-36728-36730-36732", "from": "534672792", "to": "534672825", "length_m": 510.247785258249, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755586.9249218681, 5744255.865005888], [755905.0241002612, 5743953.5662510395]]}, "properties": {"id": "36733-36731-36729-36727-36725-36723-36721-36719-36717-36715-36713-36711-36709-36707", "from": "534672825", "to": "534672792", "length_m": 510.247785258249, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755586.9249218681, 5744255.865005888], [755235.3953250663, 5744610.673514243]]}, "properties": {"id": "36734-36736-36738-36740-36742-36744-36746", "from": "534672825", "to": "534672843", "length_m": 515.1273272798463, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755235.3953250663, 5744610.673514243], [755586.9249218681, 5744255.865005888]]}, "properties": {"id": "36747-36745-36743-36741-36739-36737-36735", "from": "534672843", "to": "534672825", "length_m": 515.1273272798463, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755235.3953250663, 5744610.673514243], [754743.1729964786, 5744823.073188045]]}, "properties": {"id": "36748-36750-36752-36754-36756", "from": "534672843", "to": "534672768", "length_m": 537.4574947032426, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754743.1729964786, 5744823.073188045], [755235.3953250663, 5744610.673514243]]}, "properties": {"id": "36757-36755-36753-36751-36749", "from": "534672768", "to": "534672843", "length_m": 537.4574947032426, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[802655.308729867, 5767789.168055306], [801509.6403514931, 5768158.901018862]]}, "properties": {"id": "36758-36759-36760-36761", "from": "277046787", "to": "380256734", "length_m": 1203.9035515067385, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801509.6403514931, 5768158.901018862], [800947.1096207768, 5768351.913158049]]}, "properties": {"id": "36762-36763-36764-36765", "from": "380256734", "to": "380256736", "length_m": 594.7239138526635, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800947.1096207768, 5768351.913158049], [800166.598014681, 5768623.649807684]]}, "properties": {"id": "36766-36767-36768", "from": "380256736", "to": "5008482107", "length_m": 826.4678401704327, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759530.2587750885, 5729668.372993435], [759780.6812726057, 5729526.971653542]]}, "properties": {"id": "3677-3675-3673-3671-3669-3667", "from": "832508116", "to": "250291479", "length_m": 288.82633068875424, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785790.3491579905, 5772961.921957494], [786146.1788021403, 5774293.737472678]]}, "properties": {"id": "36770-38964-38962-38960-38958-38956-38954-38952-38950-38948-38946", "from": "942276025", "to": "942275932", "length_m": 462.93255540015446, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785790.3491579905, 5772961.921957494], [785789.4717094986, 5772527.813814107]]}, "properties": {"id": "36771-36773-36775-36777-36779-36781-36783-36785-36787-36789", "from": "942276025", "to": "942275944", "length_m": 446.6143244338116, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759530.2587750885, 5729668.372993435], [759358.0466398863, 5729777.543526249]]}, "properties": {"id": "3678-3680-3682-3684-3686-3688", "from": "832508116", "to": "832508455", "length_m": 214.73792279898936, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785789.4717094986, 5772527.813814107], [785790.3491579905, 5772961.921957494]]}, "properties": {"id": "36790-36788-36786-36784-36782-36780-36778-36776-36774-36772", "from": "942275944", "to": "942276025", "length_m": 446.6143244338116, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785789.4717094986, 5772527.813814107], [785818.593090177, 5772452.09458899]]}, "properties": {"id": "36791-36793-36795-39221", "from": "942275944", "to": "942275950", "length_m": 81.17316014962009, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778177.1609284302, 5746329.269065791], [778192.7816913186, 5746408.4661554955]]}, "properties": {"id": "36797-36799-36801-36803-36805-36807-36809-36811", "from": "289545395", "to": "521373937", "length_m": 95.89226577789218, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778192.7816913186, 5746408.4661554955], [778177.1609284302, 5746329.269065791]]}, "properties": {"id": "36812-36810-36808-36806-36804-36802-36800-36798", "from": "521373937", "to": "289545395", "length_m": 95.89226577789218, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[802658.0023872496, 5767801.394946288], [803419.8951816013, 5767532.923814792]]}, "properties": {"id": "36813-36814-30205", "from": "380256731", "to": "380256730", "length_m": 807.8102358214068, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773347.1213165191, 5754942.592458568], [773424.5828656498, 5755385.24240302]]}, "properties": {"id": "36887", "from": "5934623101", "to": "5934623077", "length_m": 449.37652894201227, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773424.5828656498, 5755385.24240302], [773347.1213165191, 5754942.592458568]]}, "properties": {"id": "36888", "from": "5934623077", "to": "5934623101", "length_m": 449.37652894201227, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759358.0466398863, 5729777.543526249], [759530.2587750885, 5729668.372993435]]}, "properties": {"id": "3689-3687-3685-3683-3681-3679", "from": "832508455", "to": "832508116", "length_m": 214.73792279898936, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760288.3108581462, 5732008.959196769], [760220.6444136477, 5732058.7023031125]]}, "properties": {"id": "3690", "from": "832507573", "to": "832509236", "length_m": 83.98288119910835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750780.259518243, 5836412.056886036], [750784.872672224, 5836405.296861891]]}, "properties": {"id": "36905", "from": "3205832023", "to": "3205831189", "length_m": 8.184076990578687, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760220.6444136477, 5732058.7023031125], [760288.3108581462, 5732008.959196769]]}, "properties": {"id": "3691", "from": "832509236", "to": "832507573", "length_m": 83.98288119910835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759434.0920104748, 5731424.633762391], [759563.9003444725, 5731333.639050892]]}, "properties": {"id": "3693-4634-4636-4638-4640", "from": "832508485", "to": "832510043", "length_m": 199.5743064196661, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759434.0920104748, 5731424.633762391], [759146.3487117316, 5731592.736953822]]}, "properties": {"id": "3694-3696-3698-3700-3702-3704-3706-3708-3710-3712-3714-3716", "from": "832508485", "to": "832507897", "length_m": 500.1559077572323, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837598.1397840637, 5818694.387606069], [837902.3238265247, 5818491.290014842]]}, "properties": {"id": "36998-37000-37002-37004-37006-37008-37010", "from": "169812102", "to": "1511218706", "length_m": 365.75478943555765, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837902.3238265247, 5818491.290014842], [837598.1397840637, 5818694.387606069]]}, "properties": {"id": "37011-37009-37007-37005-37003-37001-36999", "from": "1511218706", "to": "169812102", "length_m": 365.75478943555765, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789863.7862293537, 5752092.365155314], [789861.9770138385, 5752082.460470992]]}, "properties": {"id": "37090", "from": "847653935", "to": "516044053", "length_m": 10.068566550047283, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789861.9770138385, 5752082.460470992], [789863.7862293537, 5752092.365155314]]}, "properties": {"id": "37091", "from": "516044053", "to": "847653935", "length_m": 10.068566550047283, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789861.9770138385, 5752082.460470992], [789816.3862493236, 5751840.3801570395]]}, "properties": {"id": "37092", "from": "516044053", "to": "516044355", "length_m": 246.33594164249934, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789816.3862493236, 5751840.3801570395], [789861.9770138385, 5752082.460470992]]}, "properties": {"id": "37093", "from": "516044355", "to": "516044053", "length_m": 246.33594164249934, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789816.3862493236, 5751840.3801570395], [789809.4473405638, 5751839.984857221]]}, "properties": {"id": "37094", "from": "516044355", "to": "846506211", "length_m": 6.950159469458493, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789809.4473405638, 5751839.984857221], [789816.3862493236, 5751840.3801570395]]}, "properties": {"id": "37095", "from": "846506211", "to": "516044355", "length_m": 6.950159469458493, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749991.8755220333, 5749256.635854158], [750830.3338326766, 5753906.709404595]]}, "properties": {"id": "37096-37098", "from": "984102795", "to": "849464268", "length_m": 4725.0648241259705, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750830.3338326766, 5753906.709404595], [749991.8755220333, 5749256.635854158]]}, "properties": {"id": "37099-37097", "from": "849464268", "to": "984102795", "length_m": 4725.0648241259705, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820063.383313525, 5823179.466816958], [821081.0079857123, 5823448.580450462]]}, "properties": {"id": "37138-37136-37134-37132-37130-37128-37126-37124-37122-37120-37118-37116-37114-37112-37110-37108-37106-37104-37102-35041-36408-36406-36404-36402-36400-36398-36396-36394-36392-36390-36388-36386-36384", "from": "303685728", "to": "1412733142", "length_m": 1133.1882535601633, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820063.383313525, 5823179.466816958], [818999.9041265707, 5823261.597998297]]}, "properties": {"id": "37139-37141-37143-40707-40709-40711-40713-40715", "from": "303685728", "to": "1412762837", "length_m": 1069.642057941133, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824214.586865132, 5822786.987565253], [824655.0368507528, 5822711.151722778]]}, "properties": {"id": "37148-37146", "from": "1412733078", "to": "1412733139", "length_m": 446.9310915850742, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789997.3308182416, 5754056.341331568], [790038.3258899674, 5753737.516536499]]}, "properties": {"id": "37149-37151-37153-37155-37157-37159-37161-37163-37165-37167-37169-37171-37173-37175-37177", "from": "617928941", "to": "849463697", "length_m": 390.7745036730713, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759146.3487117316, 5731592.736953822], [759434.0920104748, 5731424.633762391]]}, "properties": {"id": "3717-3715-3713-3711-3709-3707-3705-3703-3701-3699-3697-3695", "from": "832507897", "to": "832508485", "length_m": 500.1559077572323, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790038.3258899674, 5753737.516536499], [789997.3308182416, 5754056.341331568]]}, "properties": {"id": "37178-37176-37174-37172-37170-37168-37166-37164-37162-37160-37158-37156-37154-37152-37150", "from": "849463697", "to": "617928941", "length_m": 390.7745036730713, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789540.911154909, 5754140.303564074], [789516.0313606749, 5753954.729620934]]}, "properties": {"id": "37179-37181-37183-37185-37187-37189-37191-37193-37195-37197", "from": "617928940", "to": "510174583", "length_m": 195.21784074319393, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759714.1797208996, 5731440.725538207], [759819.6375292416, 5731506.740402478]]}, "properties": {"id": "3718-3720-3722-3724-3726-3728-3730", "from": "832510241", "to": "832510189", "length_m": 129.10658357683437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789516.0313606749, 5753954.729620934], [789540.911154909, 5754140.303564074]]}, "properties": {"id": "37198-37196-37194-37192-37190-37188-37186-37184-37182-37180", "from": "510174583", "to": "617928940", "length_m": 195.21784074319393, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790839.1903956288, 5757183.723916007], [787685.5348914354, 5757776.619198186]]}, "properties": {"id": "37199-37201", "from": "270450946", "to": "2574066808", "length_m": 3208.90462979277, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787685.5348914354, 5757776.619198186], [790839.1903956288, 5757183.723916007]]}, "properties": {"id": "37202-37200", "from": "2574066808", "to": "270450946", "length_m": 3208.90462979277, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789832.3427967031, 5754087.019678946], [789809.4926525045, 5753852.080536281]]}, "properties": {"id": "37205-37207-37209-37211-37213-37215-37217-37219-37221-37223-37225-37227", "from": "617928939", "to": "510174706", "length_m": 245.9845112847632, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789809.4926525045, 5753852.080536281], [789832.3427967031, 5754087.019678946]]}, "properties": {"id": "37228-37226-37224-37222-37220-37218-37216-37214-37212-37210-37208-37206", "from": "510174706", "to": "617928939", "length_m": 245.9845112847632, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740108.9155514057, 5784145.252833632], [740841.6152067501, 5783874.31830196]]}, "properties": {"id": "37234-37232-37230-46594-46592-46590-46588-46586-46584-46582-46580-46578-46576-46574-46572-46570-46568-46566-46564-46562", "from": "317721055", "to": "317721050", "length_m": 788.24708076173, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740108.9155514057, 5784145.252833632], [739573.9006860603, 5784482.95429692]]}, "properties": {"id": "37235-37237-37239-37241", "from": "317721055", "to": "317721057", "length_m": 632.6799446759699, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[739573.9006860603, 5784482.95429692], [740108.9155514057, 5784145.252833632]]}, "properties": {"id": "37242-37240-37238-37236", "from": "317721057", "to": "317721055", "length_m": 632.6799446759699, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[739573.9006860603, 5784482.95429692], [738962.2272570702, 5784723.927247646]]}, "properties": {"id": "37243-37245-37247-37249-37251", "from": "317721057", "to": "5705903930", "length_m": 657.8511462571687, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738962.2272570702, 5784723.927247646], [739573.9006860603, 5784482.95429692]]}, "properties": {"id": "37252-37250-37248-37246-37244", "from": "5705903930", "to": "317721057", "length_m": 657.8511462571687, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738962.2272570702, 5784723.927247646], [738446.0861086034, 5784920.169536022]]}, "properties": {"id": "37253-37255", "from": "5705903930", "to": "5705903932", "length_m": 552.1895088963479, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738446.0861086034, 5784920.169536022], [738962.2272570702, 5784723.927247646]]}, "properties": {"id": "37256-37254", "from": "5705903932", "to": "5705903930", "length_m": 552.1895088963479, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738446.0861086034, 5784920.169536022], [737835.2192917811, 5785152.853989152]]}, "properties": {"id": "37257-37259-37261", "from": "5705903932", "to": "5705903935", "length_m": 653.6822498038212, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737835.2192917811, 5785152.853989152], [738446.0861086034, 5784920.169536022]]}, "properties": {"id": "37262-37260-37258", "from": "5705903935", "to": "5705903932", "length_m": 653.6822498038212, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737835.2192917811, 5785152.853989152], [737025.4629824434, 5785459.743544687]]}, "properties": {"id": "37263-37265-37267-37269-37271-37273", "from": "5705903935", "to": "317721060", "length_m": 865.9615184798334, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737025.4629824434, 5785459.743544687], [737835.2192917811, 5785152.853989152]]}, "properties": {"id": "37274-37272-37270-37268-37266-37264", "from": "317721060", "to": "5705903935", "length_m": 865.9615184798334, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737025.4629824434, 5785459.743544687], [736545.7323021197, 5785868.321438773]]}, "properties": {"id": "37275-37277-37279-37281-37283-37285-37287-37289-37291-37293-37295-37297-37299-37301", "from": "317721060", "to": "317721064", "length_m": 641.5369880525786, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736545.7323021197, 5785868.321438773], [737025.4629824434, 5785459.743544687]]}, "properties": {"id": "37302-37300-37298-37296-37294-37292-37290-37288-37286-37284-37282-37280-37278-37276", "from": "317721064", "to": "317721060", "length_m": 641.5369880525786, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736545.7323021197, 5785868.321438773], [735965.6146613125, 5786373.354125549]]}, "properties": {"id": "37303-37305-37307-37309-37311-37313", "from": "317721064", "to": "5705903952", "length_m": 769.5620501943496, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759819.6375292416, 5731506.740402478], [759714.1797208996, 5731440.725538207]]}, "properties": {"id": "3731-3729-3727-3725-3723-3721-3719", "from": "832510189", "to": "832510241", "length_m": 129.10658357683437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735965.6146613125, 5786373.354125549], [736545.7323021197, 5785868.321438773]]}, "properties": {"id": "37314-37312-37310-37308-37306-37304", "from": "5705903952", "to": "317721064", "length_m": 769.5620501943496, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735965.6146613125, 5786373.354125549], [735578.3301826594, 5786702.560376483]]}, "properties": {"id": "37315", "from": "5705903952", "to": "5705903953", "length_m": 508.2971798771001, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735578.3301826594, 5786702.560376483], [735965.6146613125, 5786373.354125549]]}, "properties": {"id": "37316", "from": "5705903953", "to": "5705903952", "length_m": 508.2971798771001, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735578.3301826594, 5786702.560376483], [734499.6540881407, 5787578.322112429]]}, "properties": {"id": "37317-37319-37321-37323-11623-11625-11627", "from": "5705903953", "to": "177850254", "length_m": 1392.5993524706712, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759819.6375292416, 5731506.740402478], [759847.3518653095, 5731521.864010082]]}, "properties": {"id": "3732", "from": "832510189", "to": "832507978", "length_m": 31.5722651389817, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759847.3518653095, 5731521.864010082], [759819.6375292416, 5731506.740402478]]}, "properties": {"id": "3733", "from": "832507978", "to": "832510189", "length_m": 31.5722651389817, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759847.3518653095, 5731521.864010082], [759885.1576070142, 5731548.327027578]]}, "properties": {"id": "3734", "from": "832507978", "to": "832509813", "length_m": 46.147214346665045, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835208.8751803963, 5804284.149000556], [835208.2453158834, 5804300.242484202]]}, "properties": {"id": "37344", "from": "244892179", "to": "825571561", "length_m": 16.105804713780962, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759885.1576070142, 5731548.327027578], [759847.3518653095, 5731521.864010082]]}, "properties": {"id": "3735", "from": "832509813", "to": "832507978", "length_m": 46.147214346665045, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759885.1576070142, 5731548.327027578], [759958.7436531733, 5731601.484977735]]}, "properties": {"id": "3736", "from": "832509813", "to": "832508363", "length_m": 90.77815717944918, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759958.7436531733, 5731601.484977735], [759885.1576070142, 5731548.327027578]]}, "properties": {"id": "3737", "from": "832508363", "to": "832509813", "length_m": 90.77815717944918, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759688.8422857383, 5729230.923607685], [759671.4362326151, 5729225.877007348]]}, "properties": {"id": "3738", "from": "832509292", "to": "832509795", "length_m": 18.12288217217236, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759671.4362326151, 5729225.877007348], [759688.8422857383, 5729230.923607685]]}, "properties": {"id": "3739", "from": "832509795", "to": "832509292", "length_m": 18.12288217217236, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792593.3567091885, 5757702.230488126], [792591.7020099267, 5757693.309706474]]}, "properties": {"id": "37393", "from": "510175008", "to": "5604428846", "length_m": 9.072947417209319, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792591.7020099267, 5757693.309706474], [792593.3567091885, 5757702.230488126]]}, "properties": {"id": "37394", "from": "5604428846", "to": "510175008", "length_m": 9.072947417209319, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792591.7020099267, 5757693.309706474], [792463.5021032025, 5756883.05304563]]}, "properties": {"id": "37395-37397-37399-37401-37403-37405-37407-37409-37411-37413-37415", "from": "5604428846", "to": "331121470", "length_m": 822.7503234969489, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759671.4362326151, 5729225.877007348], [759677.1528061532, 5729241.514079198]]}, "properties": {"id": "3740", "from": "832509795", "to": "832508636", "length_m": 16.649241089217906, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759677.1528061532, 5729241.514079198], [759671.4362326151, 5729225.877007348]]}, "properties": {"id": "3741", "from": "832508636", "to": "832509795", "length_m": 16.649241089217906, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792463.5021032025, 5756883.05304563], [792591.7020099267, 5757693.309706474]]}, "properties": {"id": "37416-37414-37412-37410-37408-37406-37404-37402-37400-37398-37396", "from": "331121470", "to": "5604428846", "length_m": 822.7503234969489, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836124.1137030347, 5817583.718687852], [836129.2090424476, 5817598.644327477]]}, "properties": {"id": "37417", "from": "268387338", "to": "268387192", "length_m": 15.771404529907215, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836129.2090424476, 5817598.644327477], [836124.1137030347, 5817583.718687852]]}, "properties": {"id": "37418", "from": "268387192", "to": "268387338", "length_m": 15.771404529907215, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835781.930380203, 5820249.510491621], [835784.0964722001, 5820256.0605074875]]}, "properties": {"id": "37419", "from": "1505977560", "to": "1505977524", "length_m": 6.898888468899561, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775506.9502957624, 5774307.009829934], [775678.4288849374, 5775246.288397243]]}, "properties": {"id": "3742-3744-3746", "from": "916620018", "to": "5604422712", "length_m": 954.8193392498056, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835784.0964722001, 5820256.0605074875], [835781.930380203, 5820249.510491621]]}, "properties": {"id": "37420", "from": "1505977524", "to": "1505977560", "length_m": 6.898888468899561, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835293.071246315, 5820284.209438629], [835289.4749572028, 5820292.016763256]]}, "properties": {"id": "37421", "from": "303683164", "to": "303683157", "length_m": 8.595790462099876, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790342.0967081375, 5751724.619722359], [790350.6461092948, 5751742.02855161]]}, "properties": {"id": "37422", "from": "510558796", "to": "845901952", "length_m": 19.394834216657948, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835826.8789849044, 5820243.833127288], [835824.5059572747, 5820236.324168191]]}, "properties": {"id": "37423", "from": "1505977629", "to": "1505977547", "length_m": 7.875006465674676, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835824.5059572747, 5820236.324168191], [835826.8789849044, 5820243.833127288]]}, "properties": {"id": "37424", "from": "1505977547", "to": "1505977629", "length_m": 7.875006465674676, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790340.08845961, 5751683.91268234], [790337.8477525697, 5751703.377150056]]}, "properties": {"id": "37425", "from": "845902354", "to": "510558866", "length_m": 19.59301590016329, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835901.8565466432, 5820213.871171499], [835824.5059572747, 5820236.324168191]]}, "properties": {"id": "37426-37427", "from": "1505977546", "to": "1505977547", "length_m": 80.5980872752925, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835824.5059572747, 5820236.324168191], [835781.930380203, 5820249.510491621]]}, "properties": {"id": "37428", "from": "1505977547", "to": "1505977560", "length_m": 44.570829899877154, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835901.8565466432, 5820213.871171499], [836575.8925919636, 5819792.709718493]]}, "properties": {"id": "37452-37450-37448-37446-37444-37442-37440-37438-37436-37434-37432-37430-4371-4369", "from": "1505977546", "to": "303683073", "length_m": 815.8739034412024, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835762.5172204566, 5820259.618772296], [835433.11437055, 5820342.394978857]]}, "properties": {"id": "37453-37455-37457-37459-37461-37463-37465-37467-37469-37471-37473", "from": "1505977585", "to": "303683087", "length_m": 341.79321030969516, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775678.4288849374, 5775246.288397243], [775506.9502957624, 5774307.009829934]]}, "properties": {"id": "3747-3745-3743", "from": "5604422712", "to": "916620018", "length_m": 954.8193392498056, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835433.11437055, 5820342.394978857], [835762.5172204566, 5820259.618772296]]}, "properties": {"id": "37474-37472-37470-37468-37466-37464-37462-37460-37458-37456-37454", "from": "303683087", "to": "1505977585", "length_m": 341.79321030969516, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793539.8783754457, 5754570.106713269], [793462.0684162247, 5754543.459023193]]}, "properties": {"id": "37475-37477-37479", "from": "510169002", "to": "38411235", "length_m": 82.24713990178739, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775678.4288849374, 5775246.288397243], [775827.8820004985, 5776091.403075517]]}, "properties": {"id": "3748-3750-3752-3754-3756-3758-3760-3762", "from": "5604422712", "to": "5604422704", "length_m": 858.8567825630826, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793462.0684162247, 5754543.459023193], [793539.8783754457, 5754570.106713269]]}, "properties": {"id": "37480-37478-37476", "from": "38411235", "to": "510169002", "length_m": 82.24713990178739, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793462.0684162247, 5754543.459023193], [793226.8897242846, 5754337.165773493]]}, "properties": {"id": "37481-37483-37485-37487-37489-37491-37493-37495-37497-37499-37501-37503-37505-37507-37509-37511-37513", "from": "38411235", "to": "510170730", "length_m": 317.0629926890907, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793226.8897242846, 5754337.165773493], [793462.0684162247, 5754543.459023193]]}, "properties": {"id": "37514-37512-37510-37508-37506-37504-37502-37500-37498-37496-37494-37492-37490-37488-37486-37484-37482", "from": "510170730", "to": "38411235", "length_m": 317.0629926890907, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793226.8897242846, 5754337.165773493], [792984.0625494191, 5754281.472751603]]}, "properties": {"id": "37515-37517-37519-37521-37523-37525-37527-37529-37531-37533-37535-37537-37539-37541-37543-37545-37547-37549-37551-37553", "from": "510170730", "to": "38411231", "length_m": 283.71221844442925, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792984.0625494191, 5754281.472751603], [793226.8897242846, 5754337.165773493]]}, "properties": {"id": "37554-37552-37550-37548-37546-37544-37542-37540-37538-37536-37534-37532-37530-37528-37526-37524-37522-37520-37518-37516", "from": "38411231", "to": "510170730", "length_m": 283.71221844442925, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792984.0625494191, 5754281.472751603], [792773.6791785683, 5754292.963293256]]}, "properties": {"id": "37555-37557-37559-37561-37563-37565-37567-37569-37571-37573", "from": "38411231", "to": "510170094", "length_m": 215.7776837408144, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792773.6791785683, 5754292.963293256], [792984.0625494191, 5754281.472751603]]}, "properties": {"id": "37574-37572-37570-37568-37566-37564-37562-37560-37558-37556", "from": "510170094", "to": "38411231", "length_m": 215.7776837408144, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792773.6791785683, 5754292.963293256], [792584.4724732169, 5754141.171260091]]}, "properties": {"id": "37575-37577-37579-37581-37583-37585-37587-37589-37591", "from": "510170094", "to": "510170753", "length_m": 246.47724873797293, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792584.4724732169, 5754141.171260091], [792773.6791785683, 5754292.963293256]]}, "properties": {"id": "37592-37590-37588-37586-37584-37582-37580-37578-37576", "from": "510170753", "to": "510170094", "length_m": 246.47724873797293, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789974.396354984, 5751496.419157009], [790002.7345533876, 5751487.208724698]]}, "properties": {"id": "37621-37623", "from": "270452759", "to": "270452770", "length_m": 29.815034399414206, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790002.7345533876, 5751487.208724698], [789974.396354984, 5751496.419157009]]}, "properties": {"id": "37624-37622", "from": "270452770", "to": "270452759", "length_m": 29.815034399414206, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790002.7345533876, 5751487.208724698], [790103.3288178295, 5751517.43436344]]}, "properties": {"id": "37625-37627-37629", "from": "270452770", "to": "37693748", "length_m": 105.09259163686998, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775827.8820004985, 5776091.403075517], [775678.4288849374, 5775246.288397243]]}, "properties": {"id": "3763-3761-3759-3757-3755-3753-3751-3749", "from": "5604422704", "to": "5604422712", "length_m": 858.8567825630826, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790103.3288178295, 5751517.43436344], [790002.7345533876, 5751487.208724698]]}, "properties": {"id": "37630-37628-37626", "from": "37693748", "to": "270452770", "length_m": 105.09259163686998, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765543.7398998253, 5750504.247609872], [765691.1491078984, 5750525.32462744]]}, "properties": {"id": "37631", "from": "2974219376", "to": "2974219377", "length_m": 148.90841211142595, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765691.1491078984, 5750525.32462744], [765543.7398998253, 5750504.247609872]]}, "properties": {"id": "37632", "from": "2974219377", "to": "2974219376", "length_m": 148.90841211142595, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775827.8820004985, 5776091.403075517], [775657.1455740328, 5776507.080077954]]}, "properties": {"id": "3764-3766-3768-3770-3772-3774-3776-3778-3780-3782-3784-3786-3788", "from": "5604422704", "to": "5604422691", "length_m": 508.59017222060504, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787876.3282868057, 5764833.820746156], [788034.3366792393, 5764818.733751845]]}, "properties": {"id": "37649-37650-37651-37652-37653-37654-37655-37656-37657", "from": "1412037704", "to": "2936482100", "length_m": 170.71163382416506, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749536.0800349453, 5836217.710487518], [750058.0905419933, 5836302.136644589]]}, "properties": {"id": "37658-37659-37660-32443-32444-28546-25614-30744-30718", "from": "363996470", "to": "1140594080", "length_m": 528.947502981068, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835784.0964722001, 5820256.0605074875], [835826.8789849044, 5820243.833127288]]}, "properties": {"id": "37661", "from": "1505977524", "to": "1505977629", "length_m": 44.49553020395092, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835826.8789849044, 5820243.833127288], [835901.8565466432, 5820213.871171499]]}, "properties": {"id": "37662-37663", "from": "1505977629", "to": "1505977546", "length_m": 80.797661989979, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781792.0495648964, 5765751.925569585], [781799.3026895467, 5765719.711763629]]}, "properties": {"id": "37666-37668-37670-37672", "from": "370245210", "to": "2894787806", "length_m": 34.262717598168564, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781799.3026895467, 5765719.711763629], [781792.0495648964, 5765751.925569585]]}, "properties": {"id": "37673-37671-37669-37667", "from": "2894787806", "to": "370245210", "length_m": 34.262717598168564, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781754.6633009452, 5765652.640538543], [781576.1067095948, 5764900.208549793]]}, "properties": {"id": "37686-37688-37690-37692-37694-37696-37698", "from": "2373877365", "to": "177785793", "length_m": 777.69744599305, "freespeed_mps": 24.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781576.1067095948, 5764900.208549793], [781754.6633009452, 5765652.640538543]]}, "properties": {"id": "37699-37697-37695-37693-37691-37689-37687", "from": "177785793", "to": "2373877365", "length_m": 777.69744599305, "freespeed_mps": 24.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781576.1067095948, 5764900.208549793], [780539.5773407002, 5763473.266779754]]}, "properties": {"id": "37700-37702-37704", "from": "177785793", "to": "475483153", "length_m": 1764.319615215976, "freespeed_mps": 24.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780539.5773407002, 5763473.266779754], [781576.1067095948, 5764900.208549793]]}, "properties": {"id": "37705-37703-37701", "from": "475483153", "to": "177785793", "length_m": 1764.319615215976, "freespeed_mps": 24.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780539.5773407002, 5763473.266779754], [780074.0918219553, 5763220.760836806]]}, "properties": {"id": "37706-37708-37710", "from": "475483153", "to": "177785797", "length_m": 530.8965509649672, "freespeed_mps": 24.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780074.0918219553, 5763220.760836806], [780539.5773407002, 5763473.266779754]]}, "properties": {"id": "37711-37709-37707", "from": "177785797", "to": "475483153", "length_m": 530.8965509649672, "freespeed_mps": 24.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780074.0918219553, 5763220.760836806], [778764.9344869708, 5762789.28797593]]}, "properties": {"id": "37712-37714-37716", "from": "177785797", "to": "2854230059", "length_m": 1398.517036170456, "freespeed_mps": 24.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778764.9344869708, 5762789.28797593], [780074.0918219553, 5763220.760836806]]}, "properties": {"id": "37717-37715-37713", "from": "2854230059", "to": "177785797", "length_m": 1398.517036170456, "freespeed_mps": 24.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778764.9344869708, 5762789.28797593], [777914.2313082339, 5762715.18469935]]}, "properties": {"id": "37718-37720-37722", "from": "2854230059", "to": "177785803", "length_m": 854.0356116907137, "freespeed_mps": 16.666666666666668, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777914.2313082339, 5762715.18469935], [778764.9344869708, 5762789.28797593]]}, "properties": {"id": "37723-37721-37719", "from": "177785803", "to": "2854230059", "length_m": 854.0356116907137, "freespeed_mps": 16.666666666666668, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777914.2313082339, 5762715.18469935], [777861.8993602337, 5762696.311845656]]}, "properties": {"id": "37724-37726", "from": "177785803", "to": "475575492", "length_m": 55.63134532977429, "freespeed_mps": 16.666666666666668, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777861.8993602337, 5762696.311845656], [777914.2313082339, 5762715.18469935]]}, "properties": {"id": "37727-37725", "from": "475575492", "to": "177785803", "length_m": 55.63134532977429, "freespeed_mps": 16.666666666666668, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781799.3026895467, 5765719.711763629], [781754.6633009452, 5765652.640538543]]}, "properties": {"id": "37739-37740-37741", "from": "2894787806", "to": "2373877365", "length_m": 80.86386118127615, "freespeed_mps": 12.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835215.2099520916, 5804299.135102371], [835429.7400494481, 5804257.531599678]]}, "properties": {"id": "37748-37749-37750-37751", "from": "293664305", "to": "825562052", "length_m": 218.64940538286928, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836473.8111014753, 5804208.199092578], [836397.2296372915, 5804080.2154254755]]}, "properties": {"id": "37754-37755-37756-37757-37758", "from": "3040323344", "to": "1712176732", "length_m": 154.92848923078796, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784220.831245782, 5765705.708645124], [784197.9169948344, 5765636.164176198]]}, "properties": {"id": "37759-37760-37761", "from": "1669796596", "to": "2373877380", "length_m": 73.40932879620797, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784197.9169948344, 5765636.164176198], [784178.6780367118, 5765706.376149778]]}, "properties": {"id": "37762-37763-37764-37765-37766-37767", "from": "2373877380", "to": "2373877387", "length_m": 73.08562253778618, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784178.6780367118, 5765706.376149778], [784178.1463224073, 5765737.712591191]]}, "properties": {"id": "37772-37773-37774-37775-37776", "from": "2373877387", "to": "2373877381", "length_m": 32.712882899950024, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837005.4092225533, 5806388.089117462], [837025.4692230518, 5806421.047594052]]}, "properties": {"id": "37851-37852-37853-37854-37855", "from": "254238270", "to": "3989374887", "length_m": 39.306208782678695, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837617.9454296485, 5815006.779131224], [837606.959552682, 5815035.362322088]]}, "properties": {"id": "37859-37860", "from": "33302747", "to": "33302745", "length_m": 30.622049267003536, "freespeed_mps": 16.666666666666668, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837617.9454296485, 5815006.779131224], [837635.2119836821, 5815015.522819051]]}, "properties": {"id": "37863", "from": "33302747", "to": "33302748", "length_m": 19.354223292293483, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784220.831245782, 5765705.708645124], [784178.6780367118, 5765706.376149778]]}, "properties": {"id": "37873", "from": "1669796596", "to": "2373877387", "length_m": 42.15849366526316, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784178.6780367118, 5765706.376149778], [783220.5136637674, 5765719.681984783]]}, "properties": {"id": "37874", "from": "2373877387", "to": "1699442595", "length_m": 958.2567537719905, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783220.5136637674, 5765719.681984783], [782572.3936058001, 5765722.266208435]]}, "properties": {"id": "37875", "from": "1699442595", "to": "2373877390", "length_m": 648.1252146189219, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782572.3936058001, 5765722.266208435], [781799.3026895467, 5765719.711763629]]}, "properties": {"id": "37876-37877-37878-37879-37880-37881-37882-37883", "from": "2373877390", "to": "2894787806", "length_m": 773.2223531958462, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781799.3026895467, 5765719.711763629], [781755.0807545127, 5765719.349550952]]}, "properties": {"id": "37884-37885", "from": "2894787806", "to": "1699442592", "length_m": 44.22576655513956, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781755.0807545127, 5765719.349550952], [781194.6144185688, 5765726.031825997]]}, "properties": {"id": "37886-37887-34803-34804-34805", "from": "1699442592", "to": "3160529770", "length_m": 560.6595870854027, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775657.1455740328, 5776507.080077954], [775827.8820004985, 5776091.403075517]]}, "properties": {"id": "3789-3787-3785-3783-3781-3779-3777-3775-3773-3771-3769-3767-3765", "from": "5604422691", "to": "5604422704", "length_m": 508.59017222060504, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775657.1455740328, 5776507.080077954], [776131.5676266602, 5776678.809256586]]}, "properties": {"id": "3790-3792-3794-3796-3798-3800-3802-3804-3806-3808-3810-3812-3814-3816-3818-3820-3822-3824-3826-3828-3830-3832-3834", "from": "5604422691", "to": "5604422668", "length_m": 706.1943259318833, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795478.4382415619, 5759098.606187948], [795655.7814084766, 5759850.571255836]]}, "properties": {"id": "37900-37898-37896-37894-37892-37890-37977-37975-37973", "from": "331120858", "to": "331120848", "length_m": 794.6027748922438, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795478.4382415619, 5759098.606187948], [794524.1598704611, 5759167.995600637]]}, "properties": {"id": "37901-37903-37905-37907-37909-37911-37913-37915-37917-37919-37921-37923-37925-37927-37929-37931-37933-37935", "from": "331120858", "to": "331120847", "length_m": 992.9231735644586, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794524.1598704611, 5759167.995600637], [795478.4382415619, 5759098.606187948]]}, "properties": {"id": "37936-37934-37932-37930-37928-37926-37924-37922-37920-37918-37916-37914-37912-37910-37908-37906-37904-37902", "from": "331120847", "to": "331120858", "length_m": 992.9231735644586, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794524.1598704611, 5759167.995600637], [792929.599178941, 5759465.496066408]]}, "properties": {"id": "37937-12121", "from": "331120847", "to": "331120875", "length_m": 1622.0759281875069, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797226.1006051643, 5759560.071764734], [797217.2579825046, 5759556.495348353]]}, "properties": {"id": "37962", "from": "52494595", "to": "916567954", "length_m": 9.538486737775843, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797217.2579825046, 5759556.495348353], [797226.1006051643, 5759560.071764734]]}, "properties": {"id": "37963", "from": "916567954", "to": "52494595", "length_m": 9.538486737775843, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797217.2579825046, 5759556.495348353], [796725.026223979, 5759644.588963718]]}, "properties": {"id": "37964-37966", "from": "916567954", "to": "616942601", "length_m": 500.05405650847086, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796725.026223979, 5759644.588963718], [797217.2579825046, 5759556.495348353]]}, "properties": {"id": "37967-37965", "from": "616942601", "to": "916567954", "length_m": 500.05405650847086, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796725.026223979, 5759644.588963718], [796293.358038041, 5759727.765103431]]}, "properties": {"id": "37968", "from": "616942601", "to": "469629209", "length_m": 439.60856688898974, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796293.358038041, 5759727.765103431], [796725.026223979, 5759644.588963718]]}, "properties": {"id": "37969", "from": "469629209", "to": "616942601", "length_m": 439.60856688898974, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796293.358038041, 5759727.765103431], [795655.7814084766, 5759850.571255836]]}, "properties": {"id": "37970", "from": "469629209", "to": "331120848", "length_m": 649.2960093458653, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795655.7814084766, 5759850.571255836], [796293.358038041, 5759727.765103431]]}, "properties": {"id": "37971", "from": "331120848", "to": "469629209", "length_m": 649.2960093458653, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795655.7814084766, 5759850.571255836], [795478.4382415619, 5759098.606187948]]}, "properties": {"id": "37972-37974-37976-37889-37891-37893-37895-37897-37899", "from": "331120848", "to": "331120858", "length_m": 794.6027748922438, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789506.7843826052, 5753054.871199646], [789535.9956832503, 5753047.6211406095]]}, "properties": {"id": "37978", "from": "2332735794", "to": "2332735795", "length_m": 30.097565318534127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789535.9956832503, 5753047.6211406095], [789506.7843826052, 5753054.871199646]]}, "properties": {"id": "37979", "from": "2332735795", "to": "2332735794", "length_m": 30.097565318534127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789385.1274983779, 5752920.1942179045], [789215.3154215685, 5753056.243884803]]}, "properties": {"id": "37980-37982-37984-38033", "from": "2332735818", "to": "5421457455", "length_m": 276.7068987575074, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790118.226569819, 5754037.32541556], [789997.3308182416, 5754056.341331568]]}, "properties": {"id": "37994", "from": "270451591", "to": "617928941", "length_m": 122.3821381921098, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789997.3308182416, 5754056.341331568], [790118.226569819, 5754037.32541556]]}, "properties": {"id": "37995", "from": "617928941", "to": "270451591", "length_m": 122.3821381921098, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789997.3308182416, 5754056.341331568], [789832.3427967031, 5754087.019678946]]}, "properties": {"id": "37996-37998", "from": "617928941", "to": "617928939", "length_m": 167.81599535546917, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789832.3427967031, 5754087.019678946], [789997.3308182416, 5754056.341331568]]}, "properties": {"id": "37999-37997", "from": "617928939", "to": "617928941", "length_m": 167.81599535546917, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789832.3427967031, 5754087.019678946], [789540.911154909, 5754140.303564074]]}, "properties": {"id": "38000", "from": "617928939", "to": "617928940", "length_m": 296.26267717834463, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789540.911154909, 5754140.303564074], [789832.3427967031, 5754087.019678946]]}, "properties": {"id": "38001", "from": "617928940", "to": "617928939", "length_m": 296.26267717834463, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789540.911154909, 5754140.303564074], [789145.8689644154, 5754215.905559341]]}, "properties": {"id": "38002", "from": "617928940", "to": "3577715593", "length_m": 402.21137889251156, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789145.8689644154, 5754215.905559341], [789540.911154909, 5754140.303564074]]}, "properties": {"id": "38003", "from": "3577715593", "to": "617928940", "length_m": 402.21137889251156, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789145.8689644154, 5754215.905559341], [788709.0735785139, 5754294.815039228]]}, "properties": {"id": "38004", "from": "3577715593", "to": "510174776", "length_m": 443.86587428976384, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788709.0735785139, 5754294.815039228], [789145.8689644154, 5754215.905559341]]}, "properties": {"id": "38005", "from": "510174776", "to": "3577715593", "length_m": 443.86587428976384, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789215.3154215685, 5753056.243884803], [789385.1274983779, 5752920.1942179045]]}, "properties": {"id": "38032-37985-37983-37981", "from": "5421457455", "to": "2332735818", "length_m": 276.7068987575074, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761105.39280436, 5762777.578381436], [761107.5258339306, 5762631.59177534]]}, "properties": {"id": "38061-38063-38065-38067-38069-38071-38073", "from": "5857617037", "to": "1852765697", "length_m": 148.64459889378702, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761107.5258339306, 5762631.59177534], [761105.39280436, 5762777.578381436]]}, "properties": {"id": "38074-38072-38070-38068-38066-38064-38062", "from": "1852765697", "to": "5857617037", "length_m": 148.64459889378702, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761107.5258339306, 5762631.59177534], [761091.8827881867, 5762542.165897077]]}, "properties": {"id": "38075", "from": "1852765697", "to": "1852765705", "length_m": 90.78376826045847, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761091.8827881867, 5762542.165897077], [761107.5258339306, 5762631.59177534]]}, "properties": {"id": "38076", "from": "1852765705", "to": "1852765697", "length_m": 90.78376826045847, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761091.8827881867, 5762542.165897077], [761063.836425334, 5762388.753239561]]}, "properties": {"id": "38077", "from": "1852765705", "to": "5052362456", "length_m": 155.95525620229466, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761063.836425334, 5762388.753239561], [761091.8827881867, 5762542.165897077]]}, "properties": {"id": "38078", "from": "5052362456", "to": "1852765705", "length_m": 155.95525620229466, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761063.836425334, 5762388.753239561], [760997.0623634779, 5762067.706113052]]}, "properties": {"id": "38079-38081-38083", "from": "5052362456", "to": "1852765711", "length_m": 328.56167343149866, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760997.0623634779, 5762067.706113052], [761063.836425334, 5762388.753239561]]}, "properties": {"id": "38084-38082-38080", "from": "1852765711", "to": "5052362456", "length_m": 328.56167343149866, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781755.0807545127, 5765719.349550952], [781750.579010268, 5765752.52337172]]}, "properties": {"id": "38100-38102-38104-38106", "from": "1699442592", "to": "177784989", "length_m": 34.518905804290235, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781750.579010268, 5765752.52337172], [781755.0807545127, 5765719.349550952]]}, "properties": {"id": "38107-38105-38103-38101", "from": "177784989", "to": "1699442592", "length_m": 34.518905804290235, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791195.6747421508, 5777390.350825264], [791175.7731788764, 5777262.284174896]]}, "properties": {"id": "38108-38109-38110-38111-38112-38113-38114-38115-38116-38117", "from": "334409411", "to": "334409424", "length_m": 134.2018200258612, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781754.6633009452, 5765652.640538543], [781755.0807545127, 5765719.349550952]]}, "properties": {"id": "38120-38121-38122-38123", "from": "2373877365", "to": "1699442592", "length_m": 67.91877225118077, "freespeed_mps": 12.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791169.0304555253, 5777530.4202126255], [791195.6747421508, 5777390.350825264]]}, "properties": {"id": "38124-38125-38126-38127", "from": "334409408", "to": "334409411", "length_m": 142.7656137043213, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793633.4342806912, 5772550.3840073915], [793802.0574451623, 5772524.300171909]]}, "properties": {"id": "38132-38133-38134-38135-38136", "from": "3957457789", "to": "3957457792", "length_m": 170.86895944855155, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793633.4342806912, 5772550.3840073915], [793062.2179200517, 5772656.691665424]]}, "properties": {"id": "38137-38139-38141-4156-4158", "from": "3957457789", "to": "2054201371", "length_m": 581.0246733721513, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837034.3184199426, 5806413.378670441], [837025.4692230518, 5806421.047594052]]}, "properties": {"id": "38143-38144", "from": "254230220", "to": "3989374887", "length_m": 11.830996375285181, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769024.4096519477, 5753010.559696184], [768880.1133631067, 5752901.651169845]]}, "properties": {"id": "38145", "from": "534678033", "to": "534677994", "length_m": 180.78298013913542, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768880.1133631067, 5752901.651169845], [769024.4096519477, 5753010.559696184]]}, "properties": {"id": "38146", "from": "534677994", "to": "534678033", "length_m": 180.78298013913542, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771788.2327713282, 5753599.46721347], [771925.7164243925, 5754363.179173369]]}, "properties": {"id": "38153", "from": "534678095", "to": "534678110", "length_m": 775.9882164666242, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771925.7164243925, 5754363.179173369], [771788.2327713282, 5753599.46721347]]}, "properties": {"id": "38154", "from": "534678110", "to": "534678095", "length_m": 775.9882164666242, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771925.7164243925, 5754363.179173369], [772075.3867284593, 5755160.638232803]]}, "properties": {"id": "38155", "from": "534678110", "to": "498837751", "length_m": 811.3828632885135, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772075.3867284593, 5755160.638232803], [771925.7164243925, 5754363.179173369]]}, "properties": {"id": "38156", "from": "498837751", "to": "534678110", "length_m": 811.3828632885135, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772075.3867284593, 5755160.638232803], [772234.1120384098, 5756065.579201625]]}, "properties": {"id": "38157", "from": "498837751", "to": "535081543", "length_m": 918.7556152032952, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772234.1120384098, 5756065.579201625], [772075.3867284593, 5755160.638232803]]}, "properties": {"id": "38158", "from": "535081543", "to": "498837751", "length_m": 918.7556152032952, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772234.1120384098, 5756065.579201625], [772255.4115641307, 5756186.206620464]]}, "properties": {"id": "38159", "from": "535081543", "to": "5934622989", "length_m": 122.49344455313978, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772255.4115641307, 5756186.206620464], [772234.1120384098, 5756065.579201625]]}, "properties": {"id": "38160", "from": "5934622989", "to": "535081543", "length_m": 122.49344455313978, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772255.4115641307, 5756186.206620464], [772400.8173494594, 5756671.76402872]]}, "properties": {"id": "38161-38163-38165", "from": "5934622989", "to": "498837753", "length_m": 510.5789357078063, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772400.8173494594, 5756671.76402872], [772255.4115641307, 5756186.206620464]]}, "properties": {"id": "38166-38164-38162", "from": "498837753", "to": "5934622989", "length_m": 510.5789357078063, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772400.8173494594, 5756671.76402872], [772899.7226517766, 5757786.20844412]]}, "properties": {"id": "38167", "from": "498837753", "to": "474126236", "length_m": 1221.0212332061735, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772899.7226517766, 5757786.20844412], [772400.8173494594, 5756671.76402872]]}, "properties": {"id": "38168", "from": "474126236", "to": "498837753", "length_m": 1221.0212332061735, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772899.7226517766, 5757786.20844412], [773197.4193059874, 5759424.589043875]]}, "properties": {"id": "38169", "from": "474126236", "to": "474125993", "length_m": 1665.2069797500412, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773197.4193059874, 5759424.589043875], [772899.7226517766, 5757786.20844412]]}, "properties": {"id": "38170", "from": "474125993", "to": "474126236", "length_m": 1665.2069797500412, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773197.4193059874, 5759424.589043875], [773464.0218241708, 5759817.762523119]]}, "properties": {"id": "38171-38173-38175-38177-38179", "from": "474125993", "to": "474126198", "length_m": 616.5428133624777, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773464.0218241708, 5759817.762523119], [773197.4193059874, 5759424.589043875]]}, "properties": {"id": "38180-38178-38176-38174-38172", "from": "474126198", "to": "474125993", "length_m": 616.5428133624777, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836962.9087554938, 5806287.798497807], [836919.9044745833, 5806236.032809185]]}, "properties": {"id": "38184", "from": "254230084", "to": "254230076", "length_m": 67.29825142699903, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835188.9749676437, 5807835.598630518], [835169.5955657114, 5807838.212970499]]}, "properties": {"id": "38185", "from": "75158828", "to": "298327986", "length_m": 19.554947964267132, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835192.5650532093, 5807857.212934155], [835307.821926892, 5807842.045648806]]}, "properties": {"id": "38186-52812", "from": "75156602", "to": "75157210", "length_m": 116.25076295096146, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832856.7593978657, 5805010.19639413], [832861.485748704, 5805025.849548473]]}, "properties": {"id": "38190-38191-38192-38193", "from": "288433642", "to": "2097822450", "length_m": 17.364301567115756, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832861.485748704, 5805025.849548473], [832881.8055630717, 5805022.456842042]]}, "properties": {"id": "38194-38195-38196-38197-38198", "from": "2097822450", "to": "5642368851", "length_m": 23.165124458725067, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832881.8055630717, 5805022.456842042], [832875.5330422572, 5805001.729341293]]}, "properties": {"id": "38199-38200-38201-38202-38203-38204-38205", "from": "5642368851", "to": "5642368852", "length_m": 25.1258488337632, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832875.5330422572, 5805001.729341293], [832856.7593978657, 5805010.19639413]]}, "properties": {"id": "38206-38207-38187-38188-38189", "from": "5642368852", "to": "288433642", "length_m": 23.07582392106786, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836919.9044745833, 5806236.032809185], [836820.0955865036, 5805979.247643378]]}, "properties": {"id": "38208-38209-38210-38211-38212-38213-38214-38215-38216-38217-38218-38219", "from": "254230076", "to": "254237434", "length_m": 284.8271962776478, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789948.6469485157, 5754454.287562376], [790122.8204510574, 5754380.008723521]]}, "properties": {"id": "38220-38222", "from": "4574367345", "to": "4574367354", "length_m": 189.35094798746664, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790122.8204510574, 5754380.008723521], [789948.6469485157, 5754454.287562376]]}, "properties": {"id": "38223-38221", "from": "4574367354", "to": "4574367345", "length_m": 189.35094798746664, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790138.7239008485, 5754333.245311685], [790123.0825017961, 5754374.386492898]]}, "properties": {"id": "38224-38225-38226-38227-38228-38229-38230", "from": "4574367346", "to": "4574367353", "length_m": 46.40969886764152, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753195.6211679574, 5748688.066780674], [753180.9832508912, 5748690.671107409]]}, "properties": {"id": "38231", "from": "984102858", "to": "3710491144", "length_m": 14.867788416778428, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753180.9832508912, 5748690.671107409], [753195.6211679574, 5748688.066780674]]}, "properties": {"id": "38232", "from": "3710491144", "to": "984102858", "length_m": 14.867788416778428, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753180.9832508912, 5748690.671107409], [749991.8755220333, 5749256.635854158]]}, "properties": {"id": "38233", "from": "3710491144", "to": "984102795", "length_m": 3238.9387423016547, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749991.8755220333, 5749256.635854158], [753180.9832508912, 5748690.671107409]]}, "properties": {"id": "38234", "from": "984102795", "to": "3710491144", "length_m": 3238.9387423016547, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757577.8667403902, 5839049.254725181], [757557.977728913, 5839047.8282806985]]}, "properties": {"id": "38235", "from": "364000819", "to": "1556440079", "length_m": 19.940098273687653, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757557.977728913, 5839047.8282806985], [756937.8617915732, 5838991.94234752]]}, "properties": {"id": "38236-38237-38238-38239-38240-38241-38242-38243-38244-38245-38246-38247-38248-38249-38250-38251-38252-38253", "from": "1556440079", "to": "2303505756", "length_m": 627.7264527007435, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833095.4302577311, 5806001.486793896], [832969.4418486184, 5805438.807318656]]}, "properties": {"id": "38271-38272-10945-10946", "from": "1763048099", "to": "1763048114", "length_m": 576.9053421991772, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837056.2993839174, 5811038.891372072], [837057.3526929957, 5811045.6423141435]]}, "properties": {"id": "38273-38274", "from": "1843397354", "to": "2384163600", "length_m": 6.832619868608115, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837061.9228350432, 5806573.181982636], [837053.0857991101, 5806517.334295152]]}, "properties": {"id": "38275", "from": "254228085", "to": "254257349", "length_m": 56.54252733079783, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837053.0857991101, 5806517.334295152], [837036.3665570645, 5806421.5899469815]]}, "properties": {"id": "38276-55648-55649-55650", "from": "254257349", "to": "254230219", "length_m": 97.19954740019895, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832989.0679593838, 5815830.650373744], [833006.2012943117, 5815827.700463097]]}, "properties": {"id": "38277", "from": "30918593", "to": "30918490", "length_m": 17.38542887671295, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833006.2012943117, 5815827.700463097], [832989.0679593838, 5815830.650373744]]}, "properties": {"id": "38278", "from": "30918490", "to": "30918593", "length_m": 17.38542887671295, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756835.1049876831, 5839041.148093397], [757546.5833345, 5839074.187757807]]}, "properties": {"id": "38279-38280-38281-38282-38283-38284-38285-38286-38287-38288-38289-38290-38291-38292-38293-38294-38295-38296", "from": "1034557512", "to": "1556440055", "length_m": 724.4877017851157, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757546.5833345, 5839074.187757807], [757553.9508426122, 5839075.925263555]]}, "properties": {"id": "38297", "from": "1556440055", "to": "364000820", "length_m": 7.569617025637774, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786886.4772480339, 5762227.491616901], [786755.7447048641, 5762256.283853861]]}, "properties": {"id": "38298-38299-38300-38301-38302-38303-38304", "from": "5640190001", "to": "1708361647", "length_m": 135.43578956029114, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833113.7507135049, 5816512.771890383], [833128.4809128074, 5816510.408292405]]}, "properties": {"id": "38305", "from": "356253653", "to": "356253646", "length_m": 14.918624789518665, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833128.4809128074, 5816510.408292405], [833113.7507135049, 5816512.771890383]]}, "properties": {"id": "38306", "from": "356253646", "to": "356253653", "length_m": 14.918624789518665, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837106.7717734664, 5807005.656899456], [837124.4923575546, 5806988.894764103]]}, "properties": {"id": "38307-38308", "from": "2971220963", "to": "4006753156", "length_m": 24.959440548862986, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787093.8635539471, 5762192.093153381], [786985.6258445341, 5762209.724880399]]}, "properties": {"id": "38309-38310-38311", "from": "669264562", "to": "669264537", "length_m": 109.86862865317336, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786926.6040848747, 5762205.105058991], [786896.7098340003, 5762130.546006676]]}, "properties": {"id": "38312-38313-38314-38315-38316", "from": "5640190002", "to": "669264547", "length_m": 80.40979345468662, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786837.8026915225, 5761910.812089421], [786889.5301628981, 5762157.462800517]]}, "properties": {"id": "38329-38330-38331-38332-38333-38334", "from": "669240092", "to": "836930522", "length_m": 252.2786115248784, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785818.593090177, 5772452.09458899], [788201.1926814767, 5770329.244345059]]}, "properties": {"id": "38335-38337-38339-38341-38343-38345-38347-38349-38351-38353-38355-38357-38359-38361-38363-38365-38367-38369-38371-38373-38375-38377-38379-38381-38383-38385-38387-38389-38391-38393-38395-38397-38399", "from": "942275950", "to": "421192905", "length_m": 1017.9894225405221, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776131.5676266602, 5776678.809256586], [775657.1455740328, 5776507.080077954]]}, "properties": {"id": "3835-3833-3831-3829-3827-3825-3823-3821-3819-3817-3815-3813-3811-3809-3807-3805-3803-3801-3799-3797-3795-3793-3791", "from": "5604422668", "to": "5604422691", "length_m": 706.1943259318833, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788201.1926814767, 5770329.244345059], [785818.593090177, 5772452.09458899]]}, "properties": {"id": "38400-38398-38396-38394-38392-38390-38388-38386-38384-38382-38380-38378-38376-38374-38372-38370-38368-38366-38364-38362-38360-38358-38356-38354-38352-38350-38348-38346-38344-38342-38340-38338-38336", "from": "421192905", "to": "942275950", "length_m": 1017.9894225405221, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838840.8661496639, 5811733.024331492], [838852.9582295616, 5811730.680266859]]}, "properties": {"id": "38443", "from": "289840430", "to": "289840426", "length_m": 12.317184462317377, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787472.1138135018, 5779225.61564566], [788269.674793946, 5778906.930755566]]}, "properties": {"id": "38447-46650-46652-46654-46656-46658-46660-46662-46664-46666", "from": "4181465676", "to": "318039461", "length_m": 871.6522143300026, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759378.8996451363, 5730992.9607191635], [759505.1759391589, 5731070.638380203]]}, "properties": {"id": "3851", "from": "832509607", "to": "832509557", "length_m": 148.2549201846102, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759505.1759391589, 5731070.638380203], [759378.8996451363, 5730992.9607191635]]}, "properties": {"id": "3852", "from": "832509557", "to": "832509607", "length_m": 148.2549201846102, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759505.1759391589, 5731070.638380203], [759508.3599332672, 5730999.734353021]]}, "properties": {"id": "3853-3855", "from": "832509557", "to": "832508297", "length_m": 71.7359823346386, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759508.3599332672, 5730999.734353021], [759505.1759391589, 5731070.638380203]]}, "properties": {"id": "3856-3854", "from": "832508297", "to": "832509557", "length_m": 71.7359823346386, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756937.8617915732, 5838991.94234752], [756835.1049876831, 5839041.148093397]]}, "properties": {"id": "3857-3858-3859-3860-3861-3862", "from": "2303505756", "to": "1034557512", "length_m": 117.12438341125194, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825395.6243962484, 5822579.160054384], [824874.4905785678, 5822674.11113384]]}, "properties": {"id": "38661-38663-38665", "from": "1412723425", "to": "1412733100", "length_m": 529.7181931944154, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824874.4905785678, 5822674.11113384], [825395.6243962484, 5822579.160054384]]}, "properties": {"id": "38666-38664-38662", "from": "1412733100", "to": "1412723425", "length_m": 529.7181931944154, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837063.5921137227, 5811085.261689321], [837075.3946010486, 5811109.674841624]]}, "properties": {"id": "38667-38668-30043", "from": "1843397352", "to": "3678283680", "length_m": 27.206172643994606, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826122.2700997626, 5822436.132655673], [826049.3914966527, 5822442.047322022]]}, "properties": {"id": "38669-38670-38671-38672-38673", "from": "1080119546", "to": "5642245566", "length_m": 74.20451622227067, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753060.7490037613, 5733306.204889637], [752545.1500492208, 5733155.954033845]]}, "properties": {"id": "38690-38692-38694-38696-38698-38700-38702-38704-38706-38708-38710-38712", "from": "551613602", "to": "312994049", "length_m": 624.2101867595862, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752545.1500492208, 5733155.954033845], [753060.7490037613, 5733306.204889637]]}, "properties": {"id": "38713-38711-38709-38707-38705-38703-38701-38699-38697-38695-38693-38691", "from": "312994049", "to": "551613602", "length_m": 624.2101867595862, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752545.1500492208, 5733155.954033845], [751446.6082075895, 5732801.2194028245]]}, "properties": {"id": "38714-38716-38718-38720-38722-38724-38726-38728-38730-38732-38734-38736-38738-38740-38742-38744-38746-38748-38750-38752-38754-38756-38758-38760-38762-38764-38766", "from": "312994049", "to": "312994052", "length_m": 1168.9141042903782, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751446.6082075895, 5732801.2194028245], [752545.1500492208, 5733155.954033845]]}, "properties": {"id": "38767-38765-38763-38761-38759-38757-38755-38753-38751-38749-38747-38745-38743-38741-38739-38737-38735-38733-38731-38729-38727-38725-38723-38721-38719-38717-38715", "from": "312994052", "to": "312994049", "length_m": 1168.9141042903782, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751446.6082075895, 5732801.2194028245], [749974.6899584153, 5732911.002808829]]}, "properties": {"id": "38768-38770-38772-38774-38776-38778-38780-38782-38784-38786-38788-38790-38792", "from": "312994052", "to": "313077148", "length_m": 1492.5523256670563, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749974.6899584153, 5732911.002808829], [751446.6082075895, 5732801.2194028245]]}, "properties": {"id": "38793-38791-38789-38787-38785-38783-38781-38779-38777-38775-38773-38771-38769", "from": "313077148", "to": "312994052", "length_m": 1492.5523256670563, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749974.6899584153, 5732911.002808829], [749488.0292888, 5733157.656183757]]}, "properties": {"id": "38794", "from": "313077148", "to": "312994063", "length_m": 545.5973739331247, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749488.0292888, 5733157.656183757], [749974.6899584153, 5732911.002808829]]}, "properties": {"id": "38795", "from": "312994063", "to": "313077148", "length_m": 545.5973739331247, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825944.586511422, 5822481.408331982], [826021.4571833925, 5822471.645819817]]}, "properties": {"id": "38818-38819-38820-38821-38822", "from": "1080119490", "to": "5642245569", "length_m": 78.1418564214398, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759885.1576070142, 5731548.327027578], [759913.7752364664, 5731674.422845286]]}, "properties": {"id": "3887-3889-3891-3893-3895", "from": "832509813", "to": "832510107", "length_m": 136.20973114790274, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835447.7408729428, 5818259.255187286], [835483.3407112347, 5818190.167728373]]}, "properties": {"id": "389-390-391-392-393", "from": "268387503", "to": "268387502", "length_m": 80.06814492334576, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825989.4181534853, 5822459.514425036], [825806.7437776839, 5822504.617258871]]}, "properties": {"id": "38937-38938-38939", "from": "1080119513", "to": "1080119487", "length_m": 188.16849994758115, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828932.5107488041, 5821972.357395974], [828827.8641849381, 5821995.373466439]]}, "properties": {"id": "38940-38941-38942-38943-38944", "from": "3289276809", "to": "33086230", "length_m": 107.33709050271885, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786146.1788021403, 5774293.737472678], [785790.3491579905, 5772961.921957494]]}, "properties": {"id": "38945-38947-38949-38951-38953-38955-38957-38959-38961-38963-36769", "from": "942275932", "to": "942276025", "length_m": 462.93255540015446, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759913.7752364664, 5731674.422845286], [759885.1576070142, 5731548.327027578]]}, "properties": {"id": "3896-3894-3892-3890-3888", "from": "832510107", "to": "832509813", "length_m": 136.20973114790274, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826053.234954, 5822465.531963494], [826122.3991558035, 5822449.013120173]]}, "properties": {"id": "38965-38966-38967-38968", "from": "5642245570", "to": "1412723341", "length_m": 71.34140206619338, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759524.1978543864, 5729051.526437631], [759671.4362326151, 5729225.877007348]]}, "properties": {"id": "3897-3899", "from": "832508974", "to": "832509795", "length_m": 228.2751706631767, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785636.0792538242, 5774859.0767807225], [786146.1788021403, 5774293.737472678]]}, "properties": {"id": "38980-38978-39186-39184-39182-39180-39178-39176", "from": "334409621", "to": "942275932", "length_m": 637.7817184046463, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785636.0792538242, 5774859.0767807225], [784206.0612592084, 5775226.617277111]]}, "properties": {"id": "38981-38983-38985-38987-38989-38991-38993-38995", "from": "334409621", "to": "334409623", "length_m": 1479.9568385052776, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784206.0612592084, 5775226.617277111], [785636.0792538242, 5774859.0767807225]]}, "properties": {"id": "38996-38994-38992-38990-38988-38986-38984-38982", "from": "334409623", "to": "334409621", "length_m": 1479.9568385052776, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784206.0612592084, 5775226.617277111], [783523.0156859977, 5775453.0821815245]]}, "properties": {"id": "38997-38999-39001", "from": "334409623", "to": "177845334", "length_m": 719.9846898159345, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759671.4362326151, 5729225.877007348], [759524.1978543864, 5729051.526437631]]}, "properties": {"id": "3900-3898", "from": "832509795", "to": "832508974", "length_m": 228.2751706631767, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783523.0156859977, 5775453.0821815245], [784206.0612592084, 5775226.617277111]]}, "properties": {"id": "39002-39000-38998", "from": "177845334", "to": "334409623", "length_m": 719.9846898159345, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783523.0156859977, 5775453.0821815245], [782894.5886236847, 5775577.156223996]]}, "properties": {"id": "39003-39005-39007-39009-39011", "from": "177845334", "to": "334409625", "length_m": 642.3625649477051, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759344.9946651093, 5729796.488753505], [759358.0466398863, 5729777.543526249]]}, "properties": {"id": "3901-3902-3903-3904-3905-3906-3907-3908-3909", "from": "250291483", "to": "832508455", "length_m": 35.44270047117852, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782894.5886236847, 5775577.156223996], [783523.0156859977, 5775453.0821815245]]}, "properties": {"id": "39012-39010-39008-39006-39004", "from": "334409625", "to": "177845334", "length_m": 642.3625649477051, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782894.5886236847, 5775577.156223996], [781104.3847171569, 5775816.613641934]]}, "properties": {"id": "39013-39015-39017-39019-39021", "from": "334409625", "to": "364643614", "length_m": 1808.7839631291713, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781104.3847171569, 5775816.613641934], [782894.5886236847, 5775577.156223996]]}, "properties": {"id": "39022-39020-39018-39016-39014", "from": "364643614", "to": "334409625", "length_m": 1808.7839631291713, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781104.3847171569, 5775816.613641934], [780465.1858178764, 5775896.616051965]]}, "properties": {"id": "39023-39025-39027", "from": "364643614", "to": "334409629", "length_m": 644.4572683217838, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780465.1858178764, 5775896.616051965], [781104.3847171569, 5775816.613641934]]}, "properties": {"id": "39028-39026-39024", "from": "334409629", "to": "364643614", "length_m": 644.4572683217838, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780465.1858178764, 5775896.616051965], [779610.1293891629, 5776217.451310864]]}, "properties": {"id": "39029-39031", "from": "334409629", "to": "177845339", "length_m": 913.2746281121563, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779610.1293891629, 5776217.451310864], [780465.1858178764, 5775896.616051965]]}, "properties": {"id": "39032-39030", "from": "177845339", "to": "334409629", "length_m": 913.2746281121563, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779610.1293891629, 5776217.451310864], [779038.6492350816, 5776405.934328744]]}, "properties": {"id": "39033-39035", "from": "177845339", "to": "334409631", "length_m": 601.9759504271383, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779038.6492350816, 5776405.934328744], [779610.1293891629, 5776217.451310864]]}, "properties": {"id": "39036-39034", "from": "334409631", "to": "177845339", "length_m": 601.9759504271383, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779038.6492350816, 5776405.934328744], [778451.3701664637, 5776573.902245652]]}, "properties": {"id": "39037", "from": "334409631", "to": "177845341", "length_m": 610.8272460689502, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778451.3701664637, 5776573.902245652], [779038.6492350816, 5776405.934328744]]}, "properties": {"id": "39038", "from": "177845341", "to": "334409631", "length_m": 610.8272460689502, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778451.3701664637, 5776573.902245652], [777518.8301855145, 5776809.114155767]]}, "properties": {"id": "39039-39041-39043-39045-39047-39049-39051", "from": "177845341", "to": "941364961", "length_m": 964.0127147054008, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777518.8301855145, 5776809.114155767], [778451.3701664637, 5776573.902245652]]}, "properties": {"id": "39052-39050-39048-39046-39044-39042-39040", "from": "941364961", "to": "177845341", "length_m": 964.0127147054008, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777518.8301855145, 5776809.114155767], [776877.5921589253, 5776804.230045623]]}, "properties": {"id": "39053-39055-39057-39059-39061-39063", "from": "941364961", "to": "941365239", "length_m": 641.415291004137, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776877.5921589253, 5776804.230045623], [777518.8301855145, 5776809.114155767]]}, "properties": {"id": "39064-39062-39060-39058-39056-39054", "from": "941365239", "to": "941364961", "length_m": 641.415291004137, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776877.5921589253, 5776804.230045623], [776467.2974100194, 5777156.517551648]]}, "properties": {"id": "39065-39067-39069-39071-39073-39075-39077-39079-39081-39083-39085-39087-39089-39091", "from": "941365239", "to": "334409633", "length_m": 556.438649577887, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776467.2974100194, 5777156.517551648], [776877.5921589253, 5776804.230045623]]}, "properties": {"id": "39092-39090-39088-39086-39084-39082-39080-39078-39076-39074-39072-39070-39068-39066", "from": "334409633", "to": "941365239", "length_m": 556.438649577887, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776467.2974100194, 5777156.517551648], [776082.6455701777, 5777545.403158704]]}, "properties": {"id": "39093-39095-39097-39099-39101-39103-39105-39107", "from": "334409633", "to": "177845353", "length_m": 560.1737672929445, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759358.0466398863, 5729777.543526249], [759343.7810998985, 5729778.150043574]]}, "properties": {"id": "3910-3911-3912-3913", "from": "832508455", "to": "832509807", "length_m": 15.319028493440268, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776082.6455701777, 5777545.403158704], [776467.2974100194, 5777156.517551648]]}, "properties": {"id": "39108-39106-39104-39102-39100-39098-39096-39094", "from": "177845353", "to": "334409633", "length_m": 560.1737672929445, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776082.6455701777, 5777545.403158704], [775468.3789459642, 5777657.098640085]]}, "properties": {"id": "39109", "from": "177845353", "to": "177845354", "length_m": 624.3391425223384, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775468.3789459642, 5777657.098640085], [776082.6455701777, 5777545.403158704]]}, "properties": {"id": "39110", "from": "177845354", "to": "177845353", "length_m": 624.3391425223384, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775468.3789459642, 5777657.098640085], [774634.9940357993, 5777925.161601207]]}, "properties": {"id": "39111-39113-39115-39117-39119-39121-39123-39125", "from": "177845354", "to": "941365138", "length_m": 890.1137736011075, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774634.9940357993, 5777925.161601207], [775468.3789459642, 5777657.098640085]]}, "properties": {"id": "39126-39124-39122-39120-39118-39116-39114-39112", "from": "941365138", "to": "177845354", "length_m": 890.1137736011075, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774634.9940357993, 5777925.161601207], [774106.2613491325, 5778313.161184276]]}, "properties": {"id": "39127-39129-39131-39133-39135-39137-39139-39141-39143-39145-39147-39149-39151", "from": "941365138", "to": "334409635", "length_m": 660.7722158742201, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759343.7810998985, 5729778.150043574], [759344.9946651093, 5729796.488753505]]}, "properties": {"id": "3914-3915-3916-3917-3918", "from": "832509807", "to": "250291483", "length_m": 21.18350880125922, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774106.2613491325, 5778313.161184276], [774634.9940357993, 5777925.161601207]]}, "properties": {"id": "39152-39150-39148-39146-39144-39142-39140-39138-39136-39134-39132-39130-39128", "from": "334409635", "to": "941365138", "length_m": 660.7722158742201, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774106.2613491325, 5778313.161184276], [773634.775772284, 5778510.304958284]]}, "properties": {"id": "39153-39155-39157-39159-39161-39163", "from": "334409635", "to": "334409637", "length_m": 514.0772889943776, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773634.775772284, 5778510.304958284], [774106.2613491325, 5778313.161184276]]}, "properties": {"id": "39164-39162-39160-39158-39156-39154", "from": "334409637", "to": "334409635", "length_m": 514.0772889943776, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773634.775772284, 5778510.304958284], [772644.1412263517, 5779098.736049196]]}, "properties": {"id": "39165-39167-39169-39171-8466-8468-8470-8472-8474-8476-8478", "from": "334409637", "to": "177850204", "length_m": 1155.9561365711997, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817212.0551399023, 5757767.58152093], [817208.5943720257, 5757760.246037305]]}, "properties": {"id": "39173", "from": "631418011", "to": "631418012", "length_m": 8.110871329148756, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817208.5943720257, 5757760.246037305], [817206.7780716445, 5757768.011007187]]}, "properties": {"id": "39174", "from": "631418012", "to": "631418013", "length_m": 7.974566113736604, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786146.1788021403, 5774293.737472678], [785636.0792538242, 5774859.0767807225]]}, "properties": {"id": "39175-39177-39179-39181-39183-39185-38977-38979", "from": "942275932", "to": "334409621", "length_m": 637.7817184046463, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817311.5069183436, 5757764.622414809], [817208.5943720257, 5757760.246037305]]}, "properties": {"id": "39187-39188-39189-39190-39191", "from": "143570153", "to": "631418012", "length_m": 103.44187812692624, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750843.322599295, 5836746.4797047125], [750882.6146735044, 5836851.828352263]]}, "properties": {"id": "3919-3920-3921-3922", "from": "363993828", "to": "363997979", "length_m": 112.57923413447706, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817208.5943720257, 5757760.246037305], [817106.6928442648, 5757772.917096118]]}, "properties": {"id": "39192-39193-39194-39195-39196-39197-39198", "from": "631418012", "to": "631416523", "length_m": 103.14917623641104, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817043.4525203974, 5757828.93145531], [817045.9714475803, 5757836.615247862]]}, "properties": {"id": "39199", "from": "631418007", "to": "631416318", "length_m": 8.08614010901395, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817050.5516043326, 5757833.389236211], [817043.4525203974, 5757828.93145531]]}, "properties": {"id": "39220", "from": "631416323", "to": "631418007", "length_m": 8.382648872743218, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785818.593090177, 5772452.09458899], [785789.4717094986, 5772527.813814107]]}, "properties": {"id": "39222-36796-36794-36792", "from": "942275950", "to": "942275944", "length_m": 81.17316014962009, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793812.7329042836, 5772512.966030635], [793725.8281757724, 5772044.697678714]]}, "properties": {"id": "39223-39224-39225-39226-39227", "from": "1838774363", "to": "143215349", "length_m": 476.26729985178196, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793725.8281757724, 5772044.697678714], [793724.1303478049, 5772035.856346935]]}, "properties": {"id": "39228", "from": "143215349", "to": "705048771", "length_m": 9.002875499799181, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793724.1303478049, 5772035.856346935], [793665.622148505, 5771721.8417653125]]}, "properties": {"id": "39229-39230-39231", "from": "705048771", "to": "317730498", "length_m": 319.4188133634608, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759359.0415477799, 5729430.851058569], [759336.0289227102, 5729449.1078763995]]}, "properties": {"id": "3923", "from": "832509701", "to": "832509819", "length_m": 29.37502867181258, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793665.622148505, 5771721.8417653125], [793559.4288710514, 5771151.627494126]]}, "properties": {"id": "39232-39233-39234", "from": "317730498", "to": "347433294", "length_m": 580.0183885494207, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793559.4288710514, 5771151.627494126], [793647.5793819162, 5770275.69963745]]}, "properties": {"id": "39235-39236-22794-22795-22796-22797-22798-22799-22800-27754-27755-27756-27757-27758-27759-27760-27761-27762-27763-27764-27765", "from": "347433294", "to": "880499702", "length_m": 905.2629571344881, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752712.422325917, 5766399.578115652], [749007.021560133, 5767072.129410734]]}, "properties": {"id": "39237", "from": "1012039835", "to": "2106853716", "length_m": 3765.942119451405, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749007.021560133, 5767072.129410734], [752712.422325917, 5766399.578115652]]}, "properties": {"id": "39238", "from": "2106853716", "to": "1012039835", "length_m": 3765.942119451405, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749007.021560133, 5767072.129410734], [748161.2640284628, 5767225.285661259]]}, "properties": {"id": "39239-39241-39243-39245-39247-39249-39251", "from": "2106853716", "to": "2106853698", "length_m": 861.0038447822136, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759336.0289227102, 5729449.1078763995], [759359.0415477799, 5729430.851058569]]}, "properties": {"id": "3924", "from": "832509819", "to": "832509701", "length_m": 29.37502867181258, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748161.2640284628, 5767225.285661259], [749007.021560133, 5767072.129410734]]}, "properties": {"id": "39252-39250-39248-39246-39244-39242-39240", "from": "2106853698", "to": "2106853716", "length_m": 861.0038447822136, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825806.7437776839, 5822504.617258871], [825395.6243962484, 5822579.160054384]]}, "properties": {"id": "39253-39255", "from": "1080119487", "to": "1412723425", "length_m": 417.8259233928418, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825395.6243962484, 5822579.160054384], [825806.7437776839, 5822504.617258871]]}, "properties": {"id": "39256-39254", "from": "1412723425", "to": "1080119487", "length_m": 417.8259233928418, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766824.9386151689, 5813961.8811822655], [766868.8430699075, 5812929.002526077]]}, "properties": {"id": "39257-39259-39261-39263-39265-39267-39269", "from": "2744567838", "to": "1450589649", "length_m": 1034.9425431011591, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759320.484622174, 5729383.277149947], [759220.9201439332, 5729468.146984148]]}, "properties": {"id": "3926-5260", "from": "832507894", "to": "5109912586", "length_m": 130.8283496587182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760348.0305075253, 5732469.083285891], [760356.229567593, 5732523.962380998]]}, "properties": {"id": "3927-3929-3931-3933", "from": "832510473", "to": "832508123", "length_m": 55.993400234581095, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766868.8430699075, 5812929.002526077], [766824.9386151689, 5813961.8811822655]]}, "properties": {"id": "39270-39268-39266-39264-39262-39260-39258", "from": "1450589649", "to": "2744567838", "length_m": 1034.9425431011591, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766868.8430699075, 5812929.002526077], [767092.7274485875, 5811868.366574381]]}, "properties": {"id": "39271-39273-39275-39277-39279-39281-39283-39285-39287-39289", "from": "1450589649", "to": "476356127", "length_m": 1094.849924244432, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767092.7274485875, 5811868.366574381], [766868.8430699075, 5812929.002526077]]}, "properties": {"id": "39290-39288-39286-39284-39282-39280-39278-39276-39274-39272", "from": "476356127", "to": "1450589649", "length_m": 1094.849924244432, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767092.7274485875, 5811868.366574381], [767409.0204418761, 5811414.955662515]]}, "properties": {"id": "39291", "from": "476356127", "to": "60303816", "length_m": 552.8315411759041, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767409.0204418761, 5811414.955662515], [767092.7274485875, 5811868.366574381]]}, "properties": {"id": "39292", "from": "60303816", "to": "476356127", "length_m": 552.8315411759041, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767409.0204418761, 5811414.955662515], [767787.5553209658, 5810861.740124112]]}, "properties": {"id": "39293", "from": "60303816", "to": "1013273062", "length_m": 670.3253591561997, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767787.5553209658, 5810861.740124112], [767409.0204418761, 5811414.955662515]]}, "properties": {"id": "39294", "from": "1013273062", "to": "60303816", "length_m": 670.3253591561997, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767787.5553209658, 5810861.740124112], [768102.4083189693, 5810400.686860565]]}, "properties": {"id": "39295-39297", "from": "1013273062", "to": "1013273076", "length_m": 558.3165339249373, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768102.4083189693, 5810400.686860565], [767787.5553209658, 5810861.740124112]]}, "properties": {"id": "39298-39296", "from": "1013273076", "to": "1013273062", "length_m": 558.3165339249373, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768102.4083189693, 5810400.686860565], [768464.5771012413, 5809227.935186738]]}, "properties": {"id": "39299-39301-39303-39305-39307-39309-39311-39313", "from": "1013273076", "to": "476356264", "length_m": 1229.1729161757548, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768464.5771012413, 5809227.935186738], [768102.4083189693, 5810400.686860565]]}, "properties": {"id": "39314-39312-39310-39308-39306-39304-39302-39300", "from": "476356264", "to": "1013273076", "length_m": 1229.1729161757548, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768464.5771012413, 5809227.935186738], [768849.7524513744, 5808569.784926187]]}, "properties": {"id": "39315-39317-39319-39321-39323", "from": "476356264", "to": "1450543585", "length_m": 783.9880660504117, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768849.7524513744, 5808569.784926187], [768464.5771012413, 5809227.935186738]]}, "properties": {"id": "39324-39322-39320-39318-39316", "from": "1450543585", "to": "476356264", "length_m": 783.9880660504117, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768849.7524513744, 5808569.784926187], [769289.8952542042, 5808202.777229126]]}, "properties": {"id": "39325-39327", "from": "1450543585", "to": "476356329", "length_m": 573.1960935111856, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769289.8952542042, 5808202.777229126], [768849.7524513744, 5808569.784926187]]}, "properties": {"id": "39328-39326", "from": "476356329", "to": "1450543585", "length_m": 573.1960935111856, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769289.8952542042, 5808202.777229126], [769677.2861483851, 5807878.918313818]]}, "properties": {"id": "39329", "from": "476356329", "to": "60303822", "length_m": 504.93197752761887, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769677.2861483851, 5807878.918313818], [769289.8952542042, 5808202.777229126]]}, "properties": {"id": "39330", "from": "60303822", "to": "476356329", "length_m": 504.93197752761887, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769677.2861483851, 5807878.918313818], [770070.9965719448, 5807545.030693991]]}, "properties": {"id": "39331-39333-39335", "from": "60303822", "to": "2744554272", "length_m": 516.2572704442605, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770070.9965719448, 5807545.030693991], [769677.2861483851, 5807878.918313818]]}, "properties": {"id": "39336-39334-39332", "from": "2744554272", "to": "60303822", "length_m": 516.2572704442605, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782545.3306179636, 5747835.754034548], [782396.196449911, 5747030.671076858]]}, "properties": {"id": "39337-39339-39341-39343-42818-42816-42814-42812-42810-42808", "from": "513380037", "to": "5404632016", "length_m": 842.3173879343396, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760356.229567593, 5732523.962380998], [760348.0305075253, 5732469.083285891]]}, "properties": {"id": "3934-3932-3930-3928", "from": "832508123", "to": "832510473", "length_m": 55.993400234581095, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782545.3306179636, 5747835.754034548], [782663.205056092, 5748448.576807019]]}, "properties": {"id": "39354-54177", "from": "513380037", "to": "292878976", "length_m": 610.3809138655338, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781056.3879117694, 5748540.235123575], [780865.5886795744, 5747479.4647507565]]}, "properties": {"id": "39358-39356-32698", "from": "292878983", "to": "513379380", "length_m": 1077.7982421602817, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781056.3879117694, 5748540.235123575], [781246.5554179384, 5749597.002328377]]}, "properties": {"id": "39359-39361-39363", "from": "292878983", "to": "292878984", "length_m": 1073.95483270179, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781246.5554179384, 5749597.002328377], [781056.3879117694, 5748540.235123575]]}, "properties": {"id": "39364-39362-39360", "from": "292878984", "to": "292878983", "length_m": 1073.95483270179, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781115.8887225776, 5750403.98600034], [781498.6271327976, 5751052.340781235]]}, "properties": {"id": "39369-39371-39373-39375-39377-39379-39574", "from": "292878985", "to": "292878995", "length_m": 1109.4576909679702, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752191.9848537799, 5839229.932151066], [752194.2541334952, 5839242.037749799]]}, "properties": {"id": "39389", "from": "60303501", "to": "363999803", "length_m": 12.31645854367553, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752194.2541334952, 5839242.037749799], [752200.1910103111, 5839449.247355119]]}, "properties": {"id": "39390-39391-49824-49825-49826-49827-49828-49829", "from": "363999803", "to": "476915653", "length_m": 212.85777577275442, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785395.1992481574, 5752811.476544057], [785404.6446404471, 5752655.7921041455]]}, "properties": {"id": "39392-39394-39396-39398-39400-39402-39404", "from": "513379642", "to": "513379691", "length_m": 161.6859961957094, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797418.1344841227, 5782479.179956847], [796805.0767079096, 5782310.356399772]]}, "properties": {"id": "394-334-335-388-29577", "from": "317889697", "to": "318024803", "length_m": 635.9996264839072, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785404.6446404471, 5752655.7921041455], [785395.1992481574, 5752811.476544057]]}, "properties": {"id": "39405-39403-39401-39399-39397-39395-39393", "from": "513379691", "to": "513379642", "length_m": 161.6859961957094, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748677.5739071849, 5763426.756166052], [752071.8064087746, 5762822.998821889]]}, "properties": {"id": "39406-39408-39410-39412-39414-39416", "from": "2106853857", "to": "2106853864", "length_m": 3448.5660629827344, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752071.8064087746, 5762822.998821889], [748677.5739071849, 5763426.756166052]]}, "properties": {"id": "39417-39415-39413-39411-39409-39407", "from": "2106853864", "to": "2106853857", "length_m": 3448.5660629827344, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766466.0104929679, 5815035.614673423], [766719.6380085844, 5814592.341201094]]}, "properties": {"id": "39418-39420-39422-39424-39426-39428-39430-39432-39434-39436-39438-39440-39442-39444", "from": "2744567837", "to": "494769558", "length_m": 516.7573859355593, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759240.2684713962, 5729289.562688972], [759278.8284548235, 5729335.103454582]]}, "properties": {"id": "3943", "from": "832508177", "to": "832510112", "length_m": 59.67272109554184, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759278.8284548235, 5729335.103454582], [759240.2684713962, 5729289.562688972]]}, "properties": {"id": "3944", "from": "832510112", "to": "832508177", "length_m": 59.67272109554184, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766719.6380085844, 5814592.341201094], [766466.0104929679, 5815035.614673423]]}, "properties": {"id": "39445-39443-39441-39439-39437-39435-39433-39431-39429-39427-39425-39423-39421-39419", "from": "494769558", "to": "2744567837", "length_m": 516.7573859355593, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766719.6380085844, 5814592.341201094], [766824.9386151689, 5813961.8811822655]]}, "properties": {"id": "39446-39448-39450-39452-39454-39456", "from": "494769558", "to": "2744567838", "length_m": 639.930435332133, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759278.8284548235, 5729335.103454582], [759290.7796184183, 5729353.049968338]]}, "properties": {"id": "3945", "from": "832510112", "to": "832508660", "length_m": 21.561717584521023, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766824.9386151689, 5813961.8811822655], [766719.6380085844, 5814592.341201094]]}, "properties": {"id": "39457-39455-39453-39451-39449-39447", "from": "2744567838", "to": "494769558", "length_m": 639.930435332133, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749342.6049574406, 5769766.844215729], [749275.7224759888, 5768828.51944819]]}, "properties": {"id": "39458-39460-39462-39464-39466-39468-39470-39472-39474-39476-39478-39480-39482-39484-39486", "from": "2106853665", "to": "2106853691", "length_m": 1002.6794448998465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759290.7796184183, 5729353.049968338], [759278.8284548235, 5729335.103454582]]}, "properties": {"id": "3946", "from": "832508660", "to": "832510112", "length_m": 21.561717584521023, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759290.7796184183, 5729353.049968338], [759300.169122386, 5729362.490433647]]}, "properties": {"id": "3947", "from": "832508660", "to": "832509022", "length_m": 13.314847713005301, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759300.169122386, 5729362.490433647], [759290.7796184183, 5729353.049968338]]}, "properties": {"id": "3948", "from": "832509022", "to": "832508660", "length_m": 13.314847713005301, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749275.7224759888, 5768828.51944819], [749342.6049574406, 5769766.844215729]]}, "properties": {"id": "39487-39485-39483-39481-39479-39477-39475-39473-39471-39469-39467-39465-39463-39461-39459", "from": "2106853691", "to": "2106853665", "length_m": 1002.6794448998465, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749275.7224759888, 5768828.51944819], [749206.2350789763, 5768178.6163836345]]}, "properties": {"id": "39488-39490-39492", "from": "2106853691", "to": "2106853694", "length_m": 653.9242002117539, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759300.169122386, 5729362.490433647], [759320.484622174, 5729383.277149947]]}, "properties": {"id": "3949", "from": "832509022", "to": "832507894", "length_m": 29.065565576687675, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749206.2350789763, 5768178.6163836345], [749275.7224759888, 5768828.51944819]]}, "properties": {"id": "39493-39491-39489", "from": "2106853694", "to": "2106853691", "length_m": 653.9242002117539, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749206.2350789763, 5768178.6163836345], [749007.021560133, 5767072.129410734]]}, "properties": {"id": "39494-39496", "from": "2106853694", "to": "2106853716", "length_m": 1124.3128145159528, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749007.021560133, 5767072.129410734], [749206.2350789763, 5768178.6163836345]]}, "properties": {"id": "39497-39495", "from": "2106853716", "to": "2106853694", "length_m": 1124.3128145159528, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749007.021560133, 5767072.129410734], [748589.1210327805, 5764758.616771474]]}, "properties": {"id": "39498-39500", "from": "2106853716", "to": "2106853817", "length_m": 2350.956220933378, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794569.0347441917, 5779535.019348324], [794588.0445752422, 5779524.083644773]]}, "properties": {"id": "395", "from": "3955050483", "to": "3955050486", "length_m": 21.93087520117677, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759320.484622174, 5729383.277149947], [759300.169122386, 5729362.490433647]]}, "properties": {"id": "3950", "from": "832507894", "to": "832509022", "length_m": 29.065565576687675, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748589.1210327805, 5764758.616771474], [749007.021560133, 5767072.129410734]]}, "properties": {"id": "39501-39499", "from": "2106853817", "to": "2106853716", "length_m": 2350.956220933378, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748589.1210327805, 5764758.616771474], [748643.0533555496, 5763848.327953739]]}, "properties": {"id": "39502-39504-39506-39508-39510-39512-39514-39516-39518-39520", "from": "2106853817", "to": "2106853852", "length_m": 914.0825758699283, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759320.484622174, 5729383.277149947], [759359.0415477799, 5729430.851058569]]}, "properties": {"id": "3951", "from": "832507894", "to": "832509701", "length_m": 61.23653551177037, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759359.0415477799, 5729430.851058569], [759320.484622174, 5729383.277149947]]}, "properties": {"id": "3952", "from": "832509701", "to": "832507894", "length_m": 61.23653551177037, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748643.0533555496, 5763848.327953739], [748589.1210327805, 5764758.616771474]]}, "properties": {"id": "39521-39519-39517-39515-39513-39511-39509-39507-39505-39503", "from": "2106853852", "to": "2106853817", "length_m": 914.0825758699283, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748643.0533555496, 5763848.327953739], [748677.5739071849, 5763426.756166052]]}, "properties": {"id": "39522-39524-39526", "from": "2106853852", "to": "2106853857", "length_m": 423.06829146420756, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748677.5739071849, 5763426.756166052], [748643.0533555496, 5763848.327953739]]}, "properties": {"id": "39527-39525-39523", "from": "2106853857", "to": "2106853852", "length_m": 423.06829146420756, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748677.5739071849, 5763426.756166052], [747890.072658058, 5758991.475959797]]}, "properties": {"id": "39528-39530-39532-39534-39536-39538", "from": "2106853857", "to": "2106853867", "length_m": 4505.551774162923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759359.0415477799, 5729430.851058569], [759401.359438407, 5729478.680744281]]}, "properties": {"id": "3953-3955", "from": "832509701", "to": "832508355", "length_m": 63.8629993752134, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747890.072658058, 5758991.475959797], [748677.5739071849, 5763426.756166052]]}, "properties": {"id": "39539-39537-39535-39533-39531-39529", "from": "2106853867", "to": "2106853857", "length_m": 4505.551774162923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747890.072658058, 5758991.475959797], [747863.732174803, 5758077.926866322]]}, "properties": {"id": "39540-39542-39544-39546-39548-39550-39552-39554-39556-39558-39560-39562-39564-39566-39568-39570-39572", "from": "2106853867", "to": "2106853884", "length_m": 944.9971956362632, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759401.359438407, 5729478.680744281], [759359.0415477799, 5729430.851058569]]}, "properties": {"id": "3956-3954", "from": "832508355", "to": "832509701", "length_m": 63.8629993752134, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759401.359438407, 5729478.680744281], [759451.5161729873, 5729541.3897784045]]}, "properties": {"id": "3957-3959", "from": "832508355", "to": "832508625", "length_m": 80.48049603913859, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747863.732174803, 5758077.926866322], [747890.072658058, 5758991.475959797]]}, "properties": {"id": "39573-39571-39569-39567-39565-39563-39561-39559-39557-39555-39553-39551-39549-39547-39545-39543-39541", "from": "2106853884", "to": "2106853867", "length_m": 944.9971956362632, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781498.6271327976, 5751052.340781235], [781115.8887225776, 5750403.98600034]]}, "properties": {"id": "39575-39380-39378-39376-39374-39372-39370", "from": "292878995", "to": "292878985", "length_m": 1109.4576909679702, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748643.0533555496, 5763848.327953739], [748119.5100205716, 5763947.500432504]]}, "properties": {"id": "39576-39578-39580-39582-39584-39586", "from": "2106853852", "to": "2106853846", "length_m": 533.3428785891344, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748119.5100205716, 5763947.500432504], [748643.0533555496, 5763848.327953739]]}, "properties": {"id": "39587-39585-39583-39581-39579-39577", "from": "2106853846", "to": "2106853852", "length_m": 533.3428785891344, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748119.5100205716, 5763947.500432504], [747077.0368977732, 5764133.980051945]]}, "properties": {"id": "39588-39590-39592-39594-39596", "from": "2106853846", "to": "2106853839", "length_m": 1059.0742043017651, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747077.0368977732, 5764133.980051945], [748119.5100205716, 5763947.500432504]]}, "properties": {"id": "39597-39595-39593-39591-39589", "from": "2106853839", "to": "2106853846", "length_m": 1059.0742043017651, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747077.0368977732, 5764133.980051945], [746488.4707362487, 5764238.949997508]]}, "properties": {"id": "39598-39600-39602", "from": "2106853839", "to": "2106853834", "length_m": 598.0572913913315, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759451.5161729873, 5729541.3897784045], [759401.359438407, 5729478.680744281]]}, "properties": {"id": "3960-3958", "from": "832508625", "to": "832508355", "length_m": 80.48049603913859, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746488.4707362487, 5764238.949997508], [747077.0368977732, 5764133.980051945]]}, "properties": {"id": "39603-39601-39599", "from": "2106853834", "to": "2106853839", "length_m": 598.0572913913315, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746488.4707362487, 5764238.949997508], [745569.7710602619, 5764404.86425054]]}, "properties": {"id": "39604-39606", "from": "2106853834", "to": "2106853830", "length_m": 933.5613650665788, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745569.7710602619, 5764404.86425054], [746488.4707362487, 5764238.949997508]]}, "properties": {"id": "39607-39605", "from": "2106853830", "to": "2106853834", "length_m": 933.5613650665788, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780419.5282353486, 5751274.59675417], [781440.0117030784, 5751165.760703]]}, "properties": {"id": "39609-54117-54115-54113-54111", "from": "527905894", "to": "498837785", "length_m": 1048.3279618056172, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749464.082470932, 5836196.86241715], [749509.6621827424, 5836213.4184738565]]}, "properties": {"id": "3961-3962-3963", "from": "363996496", "to": "672690933", "length_m": 48.51055849011914, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780419.5282353486, 5751274.59675417], [779864.9181575151, 5750976.181707224]]}, "properties": {"id": "39610-39612-39614-39616", "from": "527905894", "to": "292879003", "length_m": 637.1507822681626, "freespeed_mps": 8.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779864.9181575151, 5750976.181707224], [780419.5282353486, 5751274.59675417]]}, "properties": {"id": "39617-39615-39613-39611", "from": "292879003", "to": "527905894", "length_m": 637.1507822681626, "freespeed_mps": 8.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779864.9181575151, 5750976.181707224], [779547.87100731, 5750331.966973313]]}, "properties": {"id": "39618-39620", "from": "292879003", "to": "292879005", "length_m": 718.1854941126655, "freespeed_mps": 8.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779547.87100731, 5750331.966973313], [779864.9181575151, 5750976.181707224]]}, "properties": {"id": "39621-39619", "from": "292879005", "to": "292879003", "length_m": 718.1854941126655, "freespeed_mps": 8.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779547.87100731, 5750331.966973313], [779267.672624354, 5749469.781276995]]}, "properties": {"id": "39622-39624-39626", "from": "292879005", "to": "1851088582", "length_m": 906.7894240169661, "freespeed_mps": 8.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779267.672624354, 5749469.781276995], [779547.87100731, 5750331.966973313]]}, "properties": {"id": "39627-39625-39623", "from": "1851088582", "to": "292879005", "length_m": 906.7894240169661, "freespeed_mps": 8.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793712.9605337498, 5772045.396643253], [793725.8281757724, 5772044.697678714]]}, "properties": {"id": "39628", "from": "143215342", "to": "143215349", "length_m": 12.886611710486893, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826265.2068378299, 5822416.207898628], [826122.2700997626, 5822436.132655673]]}, "properties": {"id": "39629-39630", "from": "1080119539", "to": "1080119546", "length_m": 144.42127253071354, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830722.2027006436, 5813936.189330667], [830623.2556110325, 5813998.904566133]]}, "properties": {"id": "39633-39634-39635-39636", "from": "256040868", "to": "981838880", "length_m": 117.1566704920484, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825806.7437776839, 5822504.617258871], [825944.586511422, 5822481.408331982]]}, "properties": {"id": "39639-39640", "from": "1080119487", "to": "1080119490", "length_m": 139.8436318007225, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759007.5877634776, 5730156.957815283], [759067.2394963877, 5730218.584374098]]}, "properties": {"id": "3964", "from": "832508641", "to": "832509332", "length_m": 85.76807075655339, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833095.4302577311, 5806001.486793896], [833074.6555765241, 5806005.031653911]]}, "properties": {"id": "39641-39642-39643-39644", "from": "1763048099", "to": "1763048091", "length_m": 23.029610237395495, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833074.6555765241, 5806005.031653911], [833081.6154428171, 5806028.766751358]]}, "properties": {"id": "39645-39646-39647-39648-39649", "from": "1763048091", "to": "1763048090", "length_m": 28.584927002767657, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759067.2394963877, 5730218.584374098], [759007.5877634776, 5730156.957815283]]}, "properties": {"id": "3965", "from": "832509332", "to": "832508641", "length_m": 85.76807075655339, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833081.6154428171, 5806028.766751358], [833100.3774562611, 5806021.9121865695]]}, "properties": {"id": "39650-39651-39652-39653", "from": "1763048090", "to": "1763048089", "length_m": 21.584787137081705, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833100.3774562611, 5806021.9121865695], [833095.4302577311, 5806001.486793896]]}, "properties": {"id": "39654-39655-39656-39657", "from": "1763048089", "to": "1763048099", "length_m": 23.008622843147585, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826018.6957472928, 5822444.460669479], [825989.4181534853, 5822459.514425036]]}, "properties": {"id": "39658-39659-39660", "from": "5642245568", "to": "1080119513", "length_m": 33.090225640990155, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759067.2394963877, 5730218.584374098], [759226.0210698659, 5730221.957302473]]}, "properties": {"id": "3966-3968-3970-3972-3974-3976-3978-3980-3982-3984-3986-3988", "from": "832509332", "to": "5927118214", "length_m": 338.9409188035719, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786981.3059913993, 5750157.81370845], [786906.548261402, 5749763.276912094]]}, "properties": {"id": "39661", "from": "976342888", "to": "976342870", "length_m": 401.55697192810266, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786906.548261402, 5749763.276912094], [786981.3059913993, 5750157.81370845]]}, "properties": {"id": "39662", "from": "976342870", "to": "976342888", "length_m": 401.55697192810266, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786906.548261402, 5749763.276912094], [786825.942054317, 5749335.82774009]]}, "properties": {"id": "39663-39665", "from": "976342870", "to": "976342882", "length_m": 434.98469088839033, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786825.942054317, 5749335.82774009], [786906.548261402, 5749763.276912094]]}, "properties": {"id": "39666-39664", "from": "976342882", "to": "976342870", "length_m": 434.98469088839033, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838431.2396279327, 5803816.176210807], [838433.9332622738, 5803802.387447147]]}, "properties": {"id": "39679", "from": "3189561084", "to": "1711589445", "length_m": 14.049401053512609, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838433.9332622738, 5803802.387447147], [838431.2396279327, 5803816.176210807]]}, "properties": {"id": "39680", "from": "1711589445", "to": "3189561084", "length_m": 14.049401053512609, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838581.8910144609, 5803741.304854377], [838586.6541171034, 5803752.028170675]]}, "properties": {"id": "39681", "from": "3189561086", "to": "3189561087", "length_m": 11.73356972305606, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838586.6541171034, 5803752.028170675], [838581.8910144609, 5803741.304854377]]}, "properties": {"id": "39682", "from": "3189561087", "to": "3189561086", "length_m": 11.73356972305606, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778357.9095258834, 5744742.314507653], [778565.7835385317, 5744694.379431638]]}, "properties": {"id": "39683-39685-39687", "from": "289545365", "to": "289545952", "length_m": 213.35179032738245, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778565.7835385317, 5744694.379431638], [778357.9095258834, 5744742.314507653]]}, "properties": {"id": "39688-39686-39684", "from": "289545952", "to": "289545365", "length_m": 213.35179032738245, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778565.7835385317, 5744694.379431638], [778655.1332835364, 5744673.44882411]]}, "properties": {"id": "39689", "from": "289545952", "to": "289545932", "length_m": 91.76855254953867, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778655.1332835364, 5744673.44882411], [778565.7835385317, 5744694.379431638]]}, "properties": {"id": "39690", "from": "289545932", "to": "289545952", "length_m": 91.76855254953867, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778655.1332835364, 5744673.44882411], [778742.9683744332, 5744655.759163614]]}, "properties": {"id": "39691", "from": "289545932", "to": "289545865", "length_m": 89.59870117463613, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778742.9683744332, 5744655.759163614], [778655.1332835364, 5744673.44882411]]}, "properties": {"id": "39692", "from": "289545865", "to": "289545932", "length_m": 89.59870117463613, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778742.9683744332, 5744655.759163614], [778975.338024934, 5744799.6354956515]]}, "properties": {"id": "39693-55916-55914-55912-55910-55908-55906-55904", "from": "289545865", "to": "289545959", "length_m": 303.3653114617432, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755422.5452783246, 5828782.644563265], [756003.9376011745, 5828632.477634373]]}, "properties": {"id": "39695-39697-39699-39701-39703-39705-39707-39709-39711-39713-39715", "from": "1019519149", "to": "186780279", "length_m": 604.8736723458553, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756003.9376011745, 5828632.477634373], [755422.5452783246, 5828782.644563265]]}, "properties": {"id": "39716-39714-39712-39710-39708-39706-39704-39702-39700-39698-39696", "from": "186780279", "to": "1019519149", "length_m": 604.8736723458553, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756003.9376011745, 5828632.477634373], [756589.5341871651, 5828263.481052361]]}, "properties": {"id": "39717-39719-39721-39723", "from": "186780279", "to": "476357648", "length_m": 692.2285764977939, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756589.5341871651, 5828263.481052361], [756003.9376011745, 5828632.477634373]]}, "properties": {"id": "39724-39722-39720-39718", "from": "476357648", "to": "186780279", "length_m": 692.2285764977939, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756589.5341871651, 5828263.481052361], [757034.3221473898, 5827883.055165072]]}, "properties": {"id": "39725-39727-39729-39731-39733-39735-39737-23384-23386-23388-23390-23392-23394-23396", "from": "476357648", "to": "186779446", "length_m": 588.2770366872483, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787304.5387106524, 5764792.842501673], [788254.4111639413, 5765313.568393441]]}, "properties": {"id": "39750-39751-39752-39753-39754-39755-39756-39757-39758-39759-39760-39761-39762-39763-39764-39765-39766", "from": "1270758456", "to": "1270758492", "length_m": 1103.7802823129755, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754974.8742231375, 5828907.828358665], [755422.5452783246, 5828782.644563265]]}, "properties": {"id": "39772-39774-39776-39778-39780-39782-39784", "from": "476372081", "to": "1019519149", "length_m": 465.2258277248982, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755422.5452783246, 5828782.644563265], [754974.8742231375, 5828907.828358665]]}, "properties": {"id": "39785-39783-39781-39779-39777-39775-39773", "from": "1019519149", "to": "476372081", "length_m": 465.2258277248982, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792400.7763091829, 5754815.8146834], [792408.1182865256, 5754857.240233722]]}, "properties": {"id": "39787", "from": "5253399268", "to": "5670261058", "length_m": 42.071140338008625, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792408.1182865256, 5754857.240233722], [792400.7763091829, 5754815.8146834]]}, "properties": {"id": "39788", "from": "5670261058", "to": "5253399268", "length_m": 42.071140338008625, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792408.1182865256, 5754857.240233722], [792425.5762459014, 5754955.740467566]]}, "properties": {"id": "39789", "from": "5670261058", "to": "5253399269", "length_m": 100.03537575721722, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792425.5762459014, 5754955.740467566], [792408.1182865256, 5754857.240233722]]}, "properties": {"id": "39790", "from": "5253399269", "to": "5670261058", "length_m": 100.03537575721722, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786400.2462653454, 5764895.843825157], [785802.0339875701, 5765338.306950789]]}, "properties": {"id": "39793-39794-39795-39796-39797-39798-39799-39800-39801-39802-39803-39804-39805-39806-39807", "from": "1270758465", "to": "1270758476", "length_m": 748.3038777443494, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837686.2732675767, 5814836.025613962], [837644.4538351796, 5814818.681623589]]}, "properties": {"id": "398-399", "from": "5430685148", "to": "33302853", "length_m": 45.34497081086377, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785802.0339875701, 5765338.306950789], [785261.3215090496, 5765607.567801999]]}, "properties": {"id": "39808-39809-39810-39811-39812-39813-39814-39815-39816-39817", "from": "1270758476", "to": "3577738576", "length_m": 607.3094844807832, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785261.3215090496, 5765607.567801999], [784220.831245782, 5765705.708645124]]}, "properties": {"id": "39818-39819-39820-39821-39822-39823-37864-37865-37866-37867-37868-37869-37870-37871-37872", "from": "3577738576", "to": "1669796596", "length_m": 1047.8920503331258, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792319.2227666234, 5754834.206477193], [792326.3672276869, 5754872.849411511]]}, "properties": {"id": "39824", "from": "5253399266", "to": "5670261059", "length_m": 39.29783320846454, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792326.3672276869, 5754872.849411511], [792319.2227666234, 5754834.206477193]]}, "properties": {"id": "39825", "from": "5670261059", "to": "5253399266", "length_m": 39.29783320846454, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792326.3672276869, 5754872.849411511], [792344.923413077, 5754973.166124058]]}, "properties": {"id": "39826", "from": "5670261059", "to": "5253399270", "length_m": 102.01850234303308, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792344.923413077, 5754973.166124058], [792326.3672276869, 5754872.849411511]]}, "properties": {"id": "39827", "from": "5253399270", "to": "5670261059", "length_m": 102.01850234303308, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792243.1809718012, 5754868.414237121], [792260.8548957636, 5754986.9689264055]]}, "properties": {"id": "39828-39830", "from": "5253399271", "to": "5253399273", "length_m": 119.98353329006717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792260.8548957636, 5754986.9689264055], [792243.1809718012, 5754868.414237121]]}, "properties": {"id": "39831-39829", "from": "5253399273", "to": "5253399271", "length_m": 119.98353329006717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792294.6521698959, 5754765.38441226], [792280.1046037512, 5754682.394898157]]}, "properties": {"id": "39832", "from": "5253399252", "to": "5253399275", "length_m": 84.2549175057399, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792280.1046037512, 5754682.394898157], [792294.6521698959, 5754765.38441226]]}, "properties": {"id": "39833", "from": "5253399275", "to": "5253399252", "length_m": 84.2549175057399, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792507.0633423857, 5754935.48282685], [792490.4507973897, 5754841.731398375]]}, "properties": {"id": "39834", "from": "5253399264", "to": "5670261057", "length_m": 95.21190567973721, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792490.4507973897, 5754841.731398375], [792507.0633423857, 5754935.48282685]]}, "properties": {"id": "39835", "from": "5670261057", "to": "5253399264", "length_m": 95.21190567973721, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792490.4507973897, 5754841.731398375], [792482.8437875458, 5754798.803875889]]}, "properties": {"id": "39836", "from": "5670261057", "to": "5253399265", "length_m": 43.59631617380992, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792482.8437875458, 5754798.803875889], [792490.4507973897, 5754841.731398375]]}, "properties": {"id": "39837", "from": "5253399265", "to": "5670261057", "length_m": 43.59631617380992, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834480.587836775, 5805398.815317488], [833657.2207092715, 5804958.110704516]]}, "properties": {"id": "39838-39839-39840-39841-39842", "from": "571400150", "to": "253337672", "length_m": 933.9315352027503, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834658.2692955739, 5805536.737065484], [835445.060777294, 5805963.847708598]]}, "properties": {"id": "39843-39844-39845-39846", "from": "571400149", "to": "254224704", "length_m": 895.2693010045075, "freespeed_mps": 27.77777777777778, "capacity_vph": 10000.0, "lanes": 5.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792333.2314565347, 5754671.8128174525], [792316.8226846037, 5754583.144404354]]}, "properties": {"id": "39847", "from": "5253399276", "to": "5253399277", "length_m": 90.17391678791489, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792316.8226846037, 5754583.144404354], [792333.2314565347, 5754671.8128174525]]}, "properties": {"id": "39848", "from": "5253399277", "to": "5253399276", "length_m": 90.17391678791489, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835445.060777294, 5805963.847708598], [835930.4880820944, 5806387.926798664]]}, "properties": {"id": "39849-39850-33807-33808-33655", "from": "254224704", "to": "254225264", "length_m": 646.4370685674794, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759980.9717830395, 5760600.912240503], [761169.5863025773, 5760382.773145459]]}, "properties": {"id": "39851-39853-39855-39857", "from": "1882041560", "to": "1882041564", "length_m": 1209.2133226605993, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761169.5863025773, 5760382.773145459], [759980.9717830395, 5760600.912240503]]}, "properties": {"id": "39858-39856-39854-39852", "from": "1882041564", "to": "1882041560", "length_m": 1209.2133226605993, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818798.9650909746, 5823256.042617123], [818792.9002168502, 5823255.70987962]]}, "properties": {"id": "39859", "from": "1412762872", "to": "1412762949", "length_m": 6.073994726532123, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818794.7420014301, 5823266.110763626], [818969.6970822226, 5823261.83143555]]}, "properties": {"id": "39860", "from": "772690766", "to": "303685798", "length_m": 175.0074075489343, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759226.0210698659, 5730221.957302473], [759067.2394963877, 5730218.584374098]]}, "properties": {"id": "3989-3987-3985-3983-3981-3979-3977-3975-3973-3971-3969-3967", "from": "5927118214", "to": "832509332", "length_m": 338.9409188035719, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759226.0210698659, 5730221.957302473], [759230.0208466598, 5730193.738627574]]}, "properties": {"id": "3990-3992", "from": "5927118214", "to": "832510004", "length_m": 28.529672792636912, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759230.0208466598, 5730193.738627574], [759226.0210698659, 5730221.957302473]]}, "properties": {"id": "3993-3991", "from": "832510004", "to": "5927118214", "length_m": 28.529672792636912, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759230.0208466598, 5730193.738627574], [759203.9686264835, 5729959.379337189]]}, "properties": {"id": "3994-3996-3998-4000-4002-4004", "from": "832510004", "to": "832510422", "length_m": 237.54657394902446, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797138.5935902605, 5782407.621511888], [798193.625207793, 5783073.863043103]]}, "properties": {"id": "400-396-397-362-363-364-365-366-367-368-369-370-371-372-373-374-375-376-377-378-379-380-381-382-383-384-385-386-387", "from": "317889816", "to": "26756204", "length_m": 1277.870759200337, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786942.5182324187, 5762225.509085664], [786926.6040848747, 5762205.105058991]]}, "properties": {"id": "40012", "from": "669261482", "to": "5640190002", "length_m": 4.261541423974512, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786926.6040848747, 5762205.105058991], [786885.952749665, 5762205.3905064445]]}, "properties": {"id": "40013-40014-40015-40016-40017-40018", "from": "5640190002", "to": "669261487", "length_m": 44.63772697746381, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786885.952749665, 5762205.3905064445], [786886.4772480339, 5762227.491616901]]}, "properties": {"id": "40019", "from": "669261487", "to": "5640190001", "length_m": 5.557687462146055, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786886.4772480339, 5762227.491616901], [786942.5182324187, 5762225.509085664]]}, "properties": {"id": "40020-40021-40022-40023-40024-39999-40000-40001-40002-40003-40004-40005-40006-40007-40008-40009-40010-40011", "from": "5640190001", "to": "669261482", "length_m": 131.08725960273608, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752114.888834157, 5838745.736568157], [752112.066513093, 5838746.266686805]]}, "properties": {"id": "40025", "from": "4963796495", "to": "363998721", "length_m": 2.8716758123557242, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752112.066513093, 5838746.266686805], [752114.888834157, 5838745.736568157]]}, "properties": {"id": "40026", "from": "363998721", "to": "4963796495", "length_m": 2.8716758123557242, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789590.5748713661, 5752984.833025364], [789587.216792705, 5753043.0042751115]]}, "properties": {"id": "40049-40051-40053-40055", "from": "2332735811", "to": "2332735797", "length_m": 59.830738558828024, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759203.9686264835, 5729959.379337189], [759230.0208466598, 5730193.738627574]]}, "properties": {"id": "4005-4003-4001-3999-3997-3995", "from": "832510422", "to": "832510004", "length_m": 237.54657394902446, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789587.216792705, 5753043.0042751115], [789590.5748713661, 5752984.833025364]]}, "properties": {"id": "40056-40054-40052-40050", "from": "2332735797", "to": "2332735811", "length_m": 59.830738558828024, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835322.1850841271, 5807804.498172692], [835305.3141757246, 5807751.868917359]]}, "properties": {"id": "40057-40058-40059", "from": "291667013", "to": "298326708", "length_m": 55.92034864121183, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759203.9686264835, 5729959.379337189], [759211.8414582743, 5729853.212165034]]}, "properties": {"id": "4006-4008-4010", "from": "832510422", "to": "832510187", "length_m": 106.50007659015989, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789422.1498447459, 5753106.544280384], [789426.9187328254, 5753118.910278276]]}, "properties": {"id": "40060-40061-40062", "from": "2332735787", "to": "2332735781", "length_m": 13.306550242859132, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786837.8026915225, 5761910.812089421], [786768.125065655, 5761542.6779855015]]}, "properties": {"id": "40065", "from": "669240092", "to": "976339273", "length_m": 374.67010805318563, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786768.125065655, 5761542.6779855015], [786837.8026915225, 5761910.812089421]]}, "properties": {"id": "40066", "from": "976339273", "to": "669240092", "length_m": 374.67010805318563, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786768.125065655, 5761542.6779855015], [786724.5812655629, 5761314.119245183]]}, "properties": {"id": "40067", "from": "976339273", "to": "1708406368", "length_m": 232.6696375706286, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786724.5812655629, 5761314.119245183], [786768.125065655, 5761542.6779855015]]}, "properties": {"id": "40068", "from": "1708406368", "to": "976339273", "length_m": 232.6696375706286, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789426.9187328254, 5753118.910278276], [789431.1796055003, 5753105.397904726]]}, "properties": {"id": "40069-40070-40071", "from": "2332735781", "to": "1058352938", "length_m": 14.21155106721636, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759211.8414582743, 5729853.212165034], [759203.9686264835, 5729959.379337189]]}, "properties": {"id": "4011-4009-4007", "from": "832510187", "to": "832510422", "length_m": 106.50007659015989, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759211.8414582743, 5729853.212165034], [759234.6855601566, 5729710.570922316]]}, "properties": {"id": "4012-4014-4016-4018", "from": "832510187", "to": "832507907", "length_m": 145.7974321897479, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791968.6545613535, 5754389.477781549], [791988.8897717462, 5754527.146286353]]}, "properties": {"id": "40163-40164-40165", "from": "3599593678", "to": "5421408739", "length_m": 139.4571950447979, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791988.8897717462, 5754527.146286353], [792010.8974187679, 5754642.865779366]]}, "properties": {"id": "40166", "from": "5421408739", "to": "3577715473", "length_m": 117.7936228073471, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792010.8974187679, 5754642.865779366], [792016.1681169888, 5754672.362526701]]}, "properties": {"id": "40167", "from": "3577715473", "to": "5421408744", "length_m": 29.963951039122055, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792016.1681169888, 5754672.362526701], [792047.2621080825, 5754833.946047532]]}, "properties": {"id": "40168-40169", "from": "5421408744", "to": "5253402458", "length_m": 164.55599164811144, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792047.2621080825, 5754833.946047532], [792063.8474714148, 5754905.302730303]]}, "properties": {"id": "40170-40171", "from": "5253402458", "to": "5253402457", "length_m": 73.25879111504092, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792063.8474714148, 5754905.302730303], [792105.0584143718, 5755136.120508486]]}, "properties": {"id": "40172", "from": "5253402457", "to": "5253402953", "length_m": 234.46788370058837, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792105.0584143718, 5755136.120508486], [792138.426204025, 5755286.651380573]]}, "properties": {"id": "40173-40174-40175", "from": "5253402953", "to": "5421428360", "length_m": 155.29823097994984, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792151.0622165652, 5755284.649235929], [792136.4392649594, 5755244.565143622]]}, "properties": {"id": "40176-40177-40178", "from": "5421428361", "to": "5421415346", "length_m": 42.72627391102849, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792136.4392649594, 5755244.565143622], [792100.9212803831, 5755051.787216717]]}, "properties": {"id": "40179", "from": "5421415346", "to": "5421415344", "length_m": 196.02259127920132, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792100.9212803831, 5755051.787216717], [792073.8211250468, 5754903.31916207]]}, "properties": {"id": "40180", "from": "5421415344", "to": "3577715487", "length_m": 150.92111065990065, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792073.8211250468, 5754903.31916207], [792057.2441066825, 5754832.1955987215]]}, "properties": {"id": "40181", "from": "3577715487", "to": "5253402462", "length_m": 73.02984864800784, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792057.2441066825, 5754832.1955987215], [792037.4464304976, 5754726.2660862245]]}, "properties": {"id": "40182", "from": "5253402462", "to": "3577715469", "length_m": 107.76367470389222, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792037.4464304976, 5754726.2660862245], [792021.0807455822, 5754641.119185043]]}, "properties": {"id": "40183", "from": "3577715469", "to": "5253402463", "length_m": 86.70542322049246, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792021.0807455822, 5754641.119185043], [791968.6545613535, 5754389.477781549]]}, "properties": {"id": "40184-40185-40186", "from": "5253402463", "to": "3599593678", "length_m": 257.70754062494666, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759234.6855601566, 5729710.570922316], [759211.8414582743, 5729853.212165034]]}, "properties": {"id": "4019-4017-4015-4013", "from": "832507907", "to": "832510187", "length_m": 145.7974321897479, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759234.6855601566, 5729710.570922316], [759451.5161729873, 5729541.3897784045]]}, "properties": {"id": "4020-4022-4024-4026-4028-4030-4032-4034-4036-4038", "from": "832507907", "to": "832508625", "length_m": 289.04621598581974, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746483.7925584012, 5774579.005773719], [747144.1906338868, 5774456.082153794]]}, "properties": {"id": "40262", "from": "1436219892", "to": "1369826922", "length_m": 671.7408975836335, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747144.1906338868, 5774456.082153794], [746483.7925584012, 5774579.005773719]]}, "properties": {"id": "40263", "from": "1369826922", "to": "1436219892", "length_m": 671.7408975836335, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747144.1906338868, 5774456.082153794], [747050.2736303483, 5772648.197992036]]}, "properties": {"id": "40264-40266-40268-40270-40272-40274-40276-40278-40280", "from": "1369826922", "to": "1369826944", "length_m": 1920.546297396039, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747050.2736303483, 5772648.197992036], [747144.1906338868, 5774456.082153794]]}, "properties": {"id": "40281-40279-40277-40275-40273-40271-40269-40267-40265", "from": "1369826944", "to": "1369826922", "length_m": 1920.546297396039, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747050.2736303483, 5772648.197992036], [747627.9927882053, 5771882.256087959]]}, "properties": {"id": "40282-40284-40286-40288-40290-40292-40294-40296-40298-40300-40302", "from": "1369826944", "to": "1436219937", "length_m": 1005.2961854524668, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747627.9927882053, 5771882.256087959], [747050.2736303483, 5772648.197992036]]}, "properties": {"id": "40303-40301-40299-40297-40295-40293-40291-40289-40287-40285-40283", "from": "1436219937", "to": "1369826944", "length_m": 1005.2961854524668, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747627.9927882053, 5771882.256087959], [748757.1838676509, 5770118.21989809]]}, "properties": {"id": "40304-40306-40308-40310-40312", "from": "1436219937", "to": "1369826889", "length_m": 2094.8974212776666, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748757.1838676509, 5770118.21989809], [747627.9927882053, 5771882.256087959]]}, "properties": {"id": "40313-40311-40309-40307-40305", "from": "1369826889", "to": "1436219937", "length_m": 2094.8974212776666, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748757.1838676509, 5770118.21989809], [749209.7838668805, 5769844.26995865]]}, "properties": {"id": "40314-40316", "from": "1369826889", "to": "1372490768", "length_m": 529.6517231710818, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749209.7838668805, 5769844.26995865], [748757.1838676509, 5770118.21989809]]}, "properties": {"id": "40317-40315", "from": "1372490768", "to": "1369826889", "length_m": 529.6517231710818, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749209.7838668805, 5769844.26995865], [749342.6049574406, 5769766.844215729]]}, "properties": {"id": "40318", "from": "1372490768", "to": "2106853665", "length_m": 153.74065095949817, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749342.6049574406, 5769766.844215729], [749209.7838668805, 5769844.26995865]]}, "properties": {"id": "40319", "from": "2106853665", "to": "1372490768", "length_m": 153.74065095949817, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749342.6049574406, 5769766.844215729], [752227.1968749044, 5768084.605018137]]}, "properties": {"id": "40320", "from": "2106853665", "to": "1369826943", "length_m": 3339.281246163467, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752227.1968749044, 5768084.605018137], [749342.6049574406, 5769766.844215729]]}, "properties": {"id": "40321", "from": "1369826943", "to": "2106853665", "length_m": 3339.281246163467, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752227.1968749044, 5768084.605018137], [752950.3375940288, 5767662.765761363]]}, "properties": {"id": "40322-40324-40326", "from": "1369826943", "to": "1012039836", "length_m": 837.5392438894064, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752950.3375940288, 5767662.765761363], [752227.1968749044, 5768084.605018137]]}, "properties": {"id": "40327-40325-40323", "from": "1012039836", "to": "1369826943", "length_m": 837.5392438894064, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752950.3375940288, 5767662.765761363], [753495.6089601967, 5767144.98881856]]}, "properties": {"id": "40328-40330-40332-40334-40336-40338-40340", "from": "1012039836", "to": "916681416", "length_m": 754.7170239488894, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753495.6089601967, 5767144.98881856], [752950.3375940288, 5767662.765761363]]}, "properties": {"id": "40341-40339-40337-40335-40333-40331-40329", "from": "916681416", "to": "1012039836", "length_m": 754.7170239488894, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753495.6089601967, 5767144.98881856], [754743.176613266, 5766595.43144713]]}, "properties": {"id": "40342", "from": "916681416", "to": "916681520", "length_m": 1363.245521278644, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754743.176613266, 5766595.43144713], [753495.6089601967, 5767144.98881856]]}, "properties": {"id": "40343", "from": "916681520", "to": "916681416", "length_m": 1363.245521278644, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754743.176613266, 5766595.43144713], [755559.8553528162, 5766243.466592105]]}, "properties": {"id": "40344", "from": "916681520", "to": "916681381", "length_m": 889.2937769634564, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755559.8553528162, 5766243.466592105], [754743.176613266, 5766595.43144713]]}, "properties": {"id": "40345", "from": "916681381", "to": "916681520", "length_m": 889.2937769634564, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755559.8553528162, 5766243.466592105], [756484.5333724311, 5765841.0321551375]]}, "properties": {"id": "40346", "from": "916681381", "to": "916681437", "length_m": 1008.4557078682922, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756484.5333724311, 5765841.0321551375], [755559.8553528162, 5766243.466592105]]}, "properties": {"id": "40347", "from": "916681437", "to": "916681381", "length_m": 1008.4557078682922, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756484.5333724311, 5765841.0321551375], [757391.9423633706, 5765045.617903435]]}, "properties": {"id": "40348-40350-40352-40354-40356-40358-40360", "from": "916681437", "to": "916681366", "length_m": 1211.7425587424648, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757391.9423633706, 5765045.617903435], [756484.5333724311, 5765841.0321551375]]}, "properties": {"id": "40361-40359-40357-40355-40353-40351-40349", "from": "916681366", "to": "916681437", "length_m": 1211.7425587424648, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757391.9423633706, 5765045.617903435], [758517.335876317, 5764771.15280911]]}, "properties": {"id": "40362-40364-40366-40368-40370-40372-40374", "from": "916681366", "to": "916681351", "length_m": 1171.3744267394818, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758517.335876317, 5764771.15280911], [757391.9423633706, 5765045.617903435]]}, "properties": {"id": "40375-40373-40371-40369-40367-40365-40363", "from": "916681351", "to": "916681366", "length_m": 1171.3744267394818, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758517.335876317, 5764771.15280911], [759301.0805032105, 5764453.842995132]]}, "properties": {"id": "40376-40378-40380-40382-40384-40386-40388-40390-40392-40394-40396", "from": "916681351", "to": "916681362", "length_m": 890.3325395845775, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759451.5161729873, 5729541.3897784045], [759234.6855601566, 5729710.570922316]]}, "properties": {"id": "4039-4037-4035-4033-4031-4029-4027-4025-4023-4021", "from": "832508625", "to": "832507907", "length_m": 289.04621598581974, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759301.0805032105, 5764453.842995132], [758517.335876317, 5764771.15280911]]}, "properties": {"id": "40397-40395-40393-40391-40389-40387-40385-40383-40381-40379-40377", "from": "916681362", "to": "916681351", "length_m": 890.3325395845775, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759301.0805032105, 5764453.842995132], [759330.0993331124, 5764358.94073809]]}, "properties": {"id": "40398", "from": "916681362", "to": "1012039850", "length_m": 99.23976466354995, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759330.0993331124, 5764358.94073809], [759301.0805032105, 5764453.842995132]]}, "properties": {"id": "40399", "from": "1012039850", "to": "916681362", "length_m": 99.23976466354995, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759451.5161729873, 5729541.3897784045], [759466.9223676092, 5729534.257083323]]}, "properties": {"id": "4040", "from": "832508625", "to": "832510311", "length_m": 16.977225106650536, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759330.0993331124, 5764358.94073809], [760874.9910373404, 5763146.574596284]]}, "properties": {"id": "40400-40402-40404-40406-40408-40410-40412-40414-40416-40418-40420", "from": "1012039850", "to": "2982813927", "length_m": 2007.6535339093198, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759466.9223676092, 5729534.257083323], [759451.5161729873, 5729541.3897784045]]}, "properties": {"id": "4041", "from": "832510311", "to": "832508625", "length_m": 16.977225106650536, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759466.9223676092, 5729534.257083323], [759678.6187314291, 5729408.0360867875]]}, "properties": {"id": "4042-4044-4046-4048-4050", "from": "832510311", "to": "832509430", "length_m": 263.93422135376835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760874.9910373404, 5763146.574596284], [759330.0993331124, 5764358.94073809]]}, "properties": {"id": "40421-40419-40417-40415-40413-40411-40409-40407-40405-40403-40401", "from": "2982813927", "to": "1012039850", "length_m": 2007.6535339093198, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795519.9331009754, 5780444.652706167], [795126.1369852042, 5780062.694064946]]}, "properties": {"id": "40422-40423-40424-40425-40426-40427-40428", "from": "619754853", "to": "867731693", "length_m": 548.6304993323507, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795126.1369852042, 5780062.694064946], [794588.0445752422, 5779524.083644773]]}, "properties": {"id": "40429-40430-40431-40432-40433-40434-40435-40436-40437", "from": "867731693", "to": "3955050486", "length_m": 761.8627807194221, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794588.0445752422, 5779524.083644773], [794581.7424647457, 5779515.253454561]]}, "properties": {"id": "40438-30777", "from": "3955050486", "to": "3955050488", "length_m": 10.854043729532858, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791853.6385190834, 5755141.278116712], [791862.9814992711, 5755193.3127795085]]}, "properties": {"id": "40439", "from": "5253402960", "to": "5253402961", "length_m": 52.86678927876514, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791862.9814992711, 5755193.3127795085], [791853.6385190834, 5755141.278116712]]}, "properties": {"id": "40440", "from": "5253402961", "to": "5253402960", "length_m": 52.86678927876514, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791937.846296855, 5755143.146439668], [791957.0578634955, 5755248.39704971]]}, "properties": {"id": "40442", "from": "5253402962", "to": "5253402963", "length_m": 106.98960320850756, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791957.0578634955, 5755248.39704971], [791937.846296855, 5755143.146439668]]}, "properties": {"id": "40443", "from": "5253402963", "to": "5253402962", "length_m": 106.98960320850756, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792039.292282776, 5755248.701919631], [792020.1262867865, 5755144.983585129]]}, "properties": {"id": "40444", "from": "5253402964", "to": "5253402965", "length_m": 105.47430161919333, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792020.1262867865, 5755144.983585129], [792039.292282776, 5755248.701919631]]}, "properties": {"id": "40445", "from": "5253402965", "to": "5253402964", "length_m": 105.47430161919333, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792105.0584143718, 5755136.120508486], [792020.1262867865, 5755144.983585129]]}, "properties": {"id": "40451-40453", "from": "5253402953", "to": "5253402965", "length_m": 85.82583210217697, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792020.1262867865, 5755144.983585129], [792105.0584143718, 5755136.120508486]]}, "properties": {"id": "40454-40452", "from": "5253402965", "to": "5253402953", "length_m": 85.82583210217697, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792020.1262867865, 5755144.983585129], [791937.846296855, 5755143.146439668]]}, "properties": {"id": "40455", "from": "5253402965", "to": "5253402962", "length_m": 82.30049696112313, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791937.846296855, 5755143.146439668], [792020.1262867865, 5755144.983585129]]}, "properties": {"id": "40456", "from": "5253402962", "to": "5253402965", "length_m": 82.30049696112313, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791937.846296855, 5755143.146439668], [791853.6385190834, 5755141.278116712]]}, "properties": {"id": "40457", "from": "5253402962", "to": "5253402960", "length_m": 84.22850128743292, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791853.6385190834, 5755141.278116712], [791937.846296855, 5755143.146439668]]}, "properties": {"id": "40458", "from": "5253402960", "to": "5253402962", "length_m": 84.22850128743292, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791853.6385190834, 5755141.278116712], [791772.4748851041, 5755150.935978856]]}, "properties": {"id": "40459-40461", "from": "5253402960", "to": "5253402958", "length_m": 82.08163735085313, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791772.4748851041, 5755150.935978856], [791853.6385190834, 5755141.278116712]]}, "properties": {"id": "40462-40460", "from": "5253402958", "to": "5253402960", "length_m": 82.08163735085313, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791772.4748851041, 5755150.935978856], [791683.7577927606, 5755167.034532786]]}, "properties": {"id": "40463", "from": "5253402958", "to": "5621360607", "length_m": 90.16587977228751, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791683.7577927606, 5755167.034532786], [791772.4748851041, 5755150.935978856]]}, "properties": {"id": "40464", "from": "5621360607", "to": "5253402958", "length_m": 90.16587977228751, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791683.7577927606, 5755167.034532786], [791598.3121449344, 5755183.025047364]]}, "properties": {"id": "40465", "from": "5621360607", "to": "5621360606", "length_m": 86.92902422503491, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791598.3121449344, 5755183.025047364], [791683.7577927606, 5755167.034532786]]}, "properties": {"id": "40466", "from": "5621360606", "to": "5621360607", "length_m": 86.92902422503491, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791598.3121449344, 5755183.025047364], [791528.9175427015, 5755186.331245102]]}, "properties": {"id": "40467-40469", "from": "5621360606", "to": "5253402956", "length_m": 69.69978577888213, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791528.9175427015, 5755186.331245102], [791598.3121449344, 5755183.025047364]]}, "properties": {"id": "40470-40468", "from": "5253402956", "to": "5621360606", "length_m": 69.69978577888213, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791813.7582722332, 5755361.445335072], [791772.4748851041, 5755150.935978856]]}, "properties": {"id": "40471", "from": "5253402957", "to": "5253402958", "length_m": 214.51924634173474, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791772.4748851041, 5755150.935978856], [791813.7582722332, 5755361.445335072]]}, "properties": {"id": "40472", "from": "5253402958", "to": "5253402957", "length_m": 214.51924634173474, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791772.4748851041, 5755150.935978856], [791750.940543944, 5755031.2644462865]]}, "properties": {"id": "40473-40475", "from": "5253402958", "to": "5253402959", "length_m": 121.62683005880108, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791750.940543944, 5755031.2644462865], [791772.4748851041, 5755150.935978856]]}, "properties": {"id": "40476-40474", "from": "5253402959", "to": "5253402958", "length_m": 121.62683005880108, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795524.7179802222, 5780478.92316887], [796089.6721652728, 5781025.019849798]]}, "properties": {"id": "40480-40481-40482-40483-40484", "from": "502709226", "to": "880404462", "length_m": 785.7478162580051, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796089.6721652728, 5781025.019849798], [796649.5484200488, 5781567.623501042]]}, "properties": {"id": "40485-40486-40487-40479-40446-40447-40448-49817-49818-49819-49820-49821", "from": "880404462", "to": "2069599529", "length_m": 779.7291842893216, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795583.4251748833, 5780507.21237991], [795530.4005544446, 5780453.942405894]]}, "properties": {"id": "40489-40490", "from": "619754860", "to": "1941528972", "length_m": 75.16183086543617, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795499.1104092493, 5780456.5121036945], [795507.722100867, 5780463.812994269]]}, "properties": {"id": "40491", "from": "267115807", "to": "3484099740", "length_m": 11.29000598803259, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776837.0775131152, 5751202.665974728], [775849.9526072468, 5751098.132351233]]}, "properties": {"id": "40496-40498-40500-40502-40504-40506-40508-40510-40512-40514-40516-40518-40520-40522-40524-40526-40528-40530", "from": "1835233349", "to": "2558469913", "length_m": 1039.71003965396, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759678.6187314291, 5729408.0360867875], [759466.9223676092, 5729534.257083323]]}, "properties": {"id": "4051-4049-4047-4045-4043", "from": "832509430", "to": "832510311", "length_m": 263.93422135376835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759678.6187314291, 5729408.0360867875], [759825.7579506637, 5729289.460059825]]}, "properties": {"id": "4052-4054", "from": "832509430", "to": "5328187032", "length_m": 188.97549058299177, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775849.9526072468, 5751098.132351233], [776837.0775131152, 5751202.665974728]]}, "properties": {"id": "40531-40529-40527-40525-40523-40521-40519-40517-40515-40513-40511-40509-40507-40505-40503-40501-40499-40497", "from": "2558469913", "to": "1835233349", "length_m": 1039.71003965396, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775849.9526072468, 5751098.132351233], [774881.2925211997, 5751110.222899667]]}, "properties": {"id": "40532-40534-40536-40538-40540-40542-40544-40546-15314-15316-15318", "from": "2558469913", "to": "494901169", "length_m": 982.4589145167068, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825042.7179577721, 5798204.811473183], [824188.5948311382, 5797759.8034957815]]}, "properties": {"id": "40548-40717-40718-40719-40720-40721-40722-40723-40724", "from": "267093718", "to": "282810947", "length_m": 973.1421459599238, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776020.8761033611, 5756658.958526211], [777587.5546580016, 5756357.729744183]]}, "properties": {"id": "40549-40551", "from": "1835233311", "to": "4551292138", "length_m": 1599.943846706975, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759825.7579506637, 5729289.460059825], [759678.6187314291, 5729408.0360867875]]}, "properties": {"id": "4055-4053", "from": "5328187032", "to": "832509430", "length_m": 188.97549058299177, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777587.5546580016, 5756357.729744183], [776020.8761033611, 5756658.958526211]]}, "properties": {"id": "40552-40550", "from": "4551292138", "to": "1835233311", "length_m": 1599.943846706975, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777587.5546580016, 5756357.729744183], [779280.527416292, 5756044.464346213]]}, "properties": {"id": "40553", "from": "4551292138", "to": "1708444873", "length_m": 1721.7119269507236, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779280.527416292, 5756044.464346213], [777587.5546580016, 5756357.729744183]]}, "properties": {"id": "40554", "from": "1708444873", "to": "4551292138", "length_m": 1721.7119269507236, "freespeed_mps": 27.77777777777778, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826053.5623519429, 5799160.50555791], [826212.2526759431, 5799636.290533798]]}, "properties": {"id": "40557-40558-40559", "from": "204503695", "to": "204503698", "length_m": 501.5637338962529, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759825.7579506637, 5729289.460059825], [759850.0950308421, 5729270.114249188]]}, "properties": {"id": "4056", "from": "5328187032", "to": "5328187034", "length_m": 31.089449345607637, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826212.2526759431, 5799636.290533798], [826228.5769566986, 5800198.084696901]]}, "properties": {"id": "40560-40561-40562-40563-40564-40565-40566", "from": "204503698", "to": "125289616", "length_m": 571.1581320538526, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776447.8327060825, 5759249.816206499], [776020.8761033611, 5756658.958526211]]}, "properties": {"id": "40567", "from": "1835233310", "to": "1835233311", "length_m": 2613.4800165766756, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776020.8761033611, 5756658.958526211], [776447.8327060825, 5759249.816206499]]}, "properties": {"id": "40568", "from": "1835233311", "to": "1835233310", "length_m": 2613.4800165766756, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776020.8761033611, 5756658.958526211], [775699.5228751493, 5754929.293152728]]}, "properties": {"id": "40569-40571", "from": "1835233311", "to": "4936427875", "length_m": 1759.2790729730916, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759850.0950308421, 5729270.114249188], [759825.7579506637, 5729289.460059825]]}, "properties": {"id": "4057", "from": "5328187034", "to": "5328187032", "length_m": 31.089449345607637, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775699.5228751493, 5754929.293152728], [776020.8761033611, 5756658.958526211]]}, "properties": {"id": "40572-40570", "from": "4936427875", "to": "1835233311", "length_m": 1759.2790729730916, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775699.5228751493, 5754929.293152728], [775625.7449357805, 5754427.175424639]]}, "properties": {"id": "40573-40575-40577-40579", "from": "4936427875", "to": "1835233316", "length_m": 508.27265327668744, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759850.0950308421, 5729270.114249188], [759876.8751207879, 5729242.700004943]]}, "properties": {"id": "4058", "from": "5328187034", "to": "832508957", "length_m": 38.32380468499921, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775625.7449357805, 5754427.175424639], [775699.5228751493, 5754929.293152728]]}, "properties": {"id": "40580-40578-40576-40574", "from": "1835233316", "to": "4936427875", "length_m": 508.27265327668744, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775625.7449357805, 5754427.175424639], [775463.6511048349, 5753839.526736439]]}, "properties": {"id": "40581-40583-40585-40587-40589", "from": "1835233316", "to": "494902936", "length_m": 612.5147737420998, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759876.8751207879, 5729242.700004943], [759850.0950308421, 5729270.114249188]]}, "properties": {"id": "4059", "from": "832508957", "to": "5328187034", "length_m": 38.32380468499921, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775463.6511048349, 5753839.526736439], [775625.7449357805, 5754427.175424639]]}, "properties": {"id": "40590-40588-40586-40584-40582", "from": "494902936", "to": "1835233316", "length_m": 612.5147737420998, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775463.6511048349, 5753839.526736439], [775501.6054058776, 5753681.920331543]]}, "properties": {"id": "40591-40593-40595-40597", "from": "494902936", "to": "1835233324", "length_m": 163.42640107347955, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775501.6054058776, 5753681.920331543], [775463.6511048349, 5753839.526736439]]}, "properties": {"id": "40598-40596-40594-40592", "from": "1835233324", "to": "494902936", "length_m": 163.42640107347955, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775501.6054058776, 5753681.920331543], [775527.174860089, 5753169.641980711]]}, "properties": {"id": "40599-40601-40603-40605-40607-40609-40611-40613", "from": "1835233324", "to": "648849091", "length_m": 533.1106740538065, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759876.8751207879, 5729242.700004943], [760060.2734079295, 5729095.663611386]]}, "properties": {"id": "4060-4062-4064-4066-4068", "from": "832508957", "to": "832509157", "length_m": 236.18765051864068, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775527.174860089, 5753169.641980711], [775501.6054058776, 5753681.920331543]]}, "properties": {"id": "40614-40612-40610-40608-40606-40604-40602-40600", "from": "648849091", "to": "1835233324", "length_m": 533.1106740538065, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775527.174860089, 5753169.641980711], [775278.2808448728, 5752625.383224198]]}, "properties": {"id": "40615-40617-40619-40621-40623-40625-40627-40629-40631-40633-40635", "from": "648849091", "to": "2830985586", "length_m": 607.3141238390294, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775278.2808448728, 5752625.383224198], [775527.174860089, 5753169.641980711]]}, "properties": {"id": "40636-40634-40632-40630-40628-40626-40624-40622-40620-40618-40616", "from": "2830985586", "to": "648849091", "length_m": 607.3141238390294, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800166.598014681, 5768623.649807684], [799600.7794668928, 5768842.383132759]]}, "properties": {"id": "40645", "from": "5008482107", "to": "277046788(1)", "length_m": 606.625828304173, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799600.7794668928, 5768842.383132759], [798960.9266223626, 5769093.070051848]]}, "properties": {"id": "40646-40647", "from": "277046788(1)", "to": "3598503099", "length_m": 687.2119245158267, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[806493.1759024439, 5823491.017805701], [805820.4741874371, 5824023.522394769]]}, "properties": {"id": "40660-40661-40662-40663-40664-40665-40666-40667-40668-40669", "from": "316884367", "to": "316884400", "length_m": 877.5148577833712, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[805820.4741874371, 5824023.522394769], [805733.746389298, 5824599.356429143]]}, "properties": {"id": "40670-40671-40672-40673-40674-40675-40676-40677-40678-40679", "from": "316884400", "to": "1340916957", "length_m": 590.0961659238974, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[805733.746389298, 5824599.356429143], [805584.5529634096, 5825126.914893802]]}, "properties": {"id": "40680-40681-40682-40683-40684-40685-40686-50097-50098-50099-49938-49939-49940-49941-49942-49943", "from": "1340916957", "to": "317106663", "length_m": 559.5301391248631, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837521.6541717965, 5806617.057891537], [838285.8362063044, 5806632.993111454]]}, "properties": {"id": "40689-40690-40691-40692-40693-40694-40695", "from": "3323284480", "to": "250290129", "length_m": 764.8729653980046, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760060.2734079295, 5729095.663611386], [759876.8751207879, 5729242.700004943]]}, "properties": {"id": "4069-4067-4065-4063-4061", "from": "832509157", "to": "832508957", "length_m": 236.18765051864068, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818999.9041265707, 5823261.597998297], [820063.383313525, 5823179.466816958]]}, "properties": {"id": "40716-40714-40712-40710-40708-37144-37142-37140", "from": "1412762837", "to": "303685728", "length_m": 1069.642057941133, "freespeed_mps": 25.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824188.5948311382, 5797759.8034957815], [823568.8159819173, 5797526.027284245]]}, "properties": {"id": "40725-40726-40727-40728-43140", "from": "282810947", "to": "4780179492", "length_m": 662.4460074901228, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836804.8518836317, 5806637.294221914], [837521.6541717965, 5806617.057891537]]}, "properties": {"id": "40729-33958-33959-33960-33956-33957-40687-40688", "from": "254226145", "to": "3323284480", "length_m": 717.1359806717504, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803419.8951816013, 5767532.923814792], [803814.2921034298, 5767392.819871391]]}, "properties": {"id": "40730-40731-40732-40733-40734", "from": "380256730", "to": "957930684", "length_m": 418.54528138625886, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835651.1506349065, 5806078.1953985905], [835333.8402531213, 5805858.897459114]]}, "properties": {"id": "40735-40736-40737-40738-40739-40740-40741", "from": "29321163", "to": "29321158", "length_m": 386.2488103769759, "freespeed_mps": 27.77777777777778, "capacity_vph": 10000.0, "lanes": 5.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752202.803787681, 5839228.025863818], [752191.9848537799, 5839229.932151066]]}, "properties": {"id": "4074", "from": "363999779", "to": "60303501", "length_m": 10.98559333006396, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835333.8402531213, 5805858.897459114], [834480.587836775, 5805398.815317488]]}, "properties": {"id": "40742-40743-40744-40745-40746", "from": "29321158", "to": "571400150", "length_m": 969.4109661452217, "freespeed_mps": 27.77777777777778, "capacity_vph": 10000.0, "lanes": 5.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790262.6954585994, 5754834.630956954], [790305.6926432265, 5754827.560621257]]}, "properties": {"id": "40749-40750", "from": "1580591326", "to": "270451603", "length_m": 42.0530724465026, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759127.7754681422, 5729536.551882249], [759211.5721493613, 5729635.451663593]]}, "properties": {"id": "4075-4077-4079", "from": "832508282", "to": "832508460", "length_m": 130.1703700703701, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790083.3024822309, 5754687.632664302], [790208.6965395354, 5754644.880818688]]}, "properties": {"id": "40771-40773-40775-40777-40779-40781", "from": "513382348", "to": "513382353", "length_m": 135.3497176253656, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790208.6965395354, 5754644.880818688], [790083.3024822309, 5754687.632664302]]}, "properties": {"id": "40782-40780-40778-40776-40774-40772", "from": "513382353", "to": "513382348", "length_m": 135.3497176253656, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790208.6965395354, 5754644.880818688], [790122.8204510574, 5754380.008723521]]}, "properties": {"id": "40783-40785-15328-15330", "from": "513382353", "to": "4574367354", "length_m": 278.9401753105293, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790208.6965395354, 5754644.880818688], [790253.6588722416, 5754674.39597428]]}, "properties": {"id": "40796-40797-40798", "from": "513382353", "to": "513382358", "length_m": 54.21952143208732, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836600.5509090135, 5806818.927509493], [836531.9459929895, 5806742.733939532]]}, "properties": {"id": "40799-40800-40801-40802-40803-40804", "from": "36021205", "to": "36021210", "length_m": 104.50422972607475, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759211.5721493613, 5729635.451663593], [759127.7754681422, 5729536.551882249]]}, "properties": {"id": "4080-4078-4076", "from": "832508460", "to": "832508282", "length_m": 130.1703700703701, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790099.2886785661, 5754764.503812419], [789881.5290732472, 5754803.67994977]]}, "properties": {"id": "40805", "from": "513382253", "to": "513382291", "length_m": 221.25554281148806, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789881.5290732472, 5754803.67994977], [790099.2886785661, 5754764.503812419]]}, "properties": {"id": "40806", "from": "513382291", "to": "513382253", "length_m": 221.25554281148806, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789881.5290732472, 5754803.67994977], [789823.4234619933, 5754815.168997514]]}, "properties": {"id": "40807", "from": "513382291", "to": "513382274", "length_m": 59.230568653980704, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789823.4234619933, 5754815.168997514], [789881.5290732472, 5754803.67994977]]}, "properties": {"id": "40808", "from": "513382274", "to": "513382291", "length_m": 59.230568653980704, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789881.5290732472, 5754803.67994977], [789926.4779207555, 5754653.610151052]]}, "properties": {"id": "40809-40811-40813-40822-40820", "from": "513382291", "to": "2548347252", "length_m": 239.97027557450053, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830675.4097929297, 5821649.141448221], [830669.8166731339, 5821650.232840616]]}, "properties": {"id": "4081", "from": "605203941", "to": "26118248", "length_m": 5.698607413812887, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790063.8238021135, 5754629.325895508], [789926.4779207555, 5754653.610151052]]}, "properties": {"id": "40815-40817", "from": "513382319", "to": "2548347252", "length_m": 139.48308693303227, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789926.4779207555, 5754653.610151052], [790063.8238021135, 5754629.325895508]]}, "properties": {"id": "40818-40816", "from": "2548347252", "to": "513382319", "length_m": 139.48308693303227, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789926.4779207555, 5754653.610151052], [789881.5290732472, 5754803.67994977]]}, "properties": {"id": "40819-40821-40814-40812-40810", "from": "2548347252", "to": "513382291", "length_m": 239.97027557450053, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830669.8166731339, 5821650.232840616], [830640.4560746527, 5821655.934658539]]}, "properties": {"id": "4082", "from": "26118248", "to": "2868271434", "length_m": 29.90912006993403, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790476.6997569152, 5754800.847897258], [790347.6468616365, 5754818.616605818]]}, "properties": {"id": "40823-40824-40825-40826-40827-40828", "from": "1580591524", "to": "1580591289", "length_m": 130.35009772423564, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785418.2585006749, 5751639.286186104], [785213.3467672473, 5751577.396121989]]}, "properties": {"id": "40829-40830-40831-40832-40833", "from": "2085414782", "to": "846619476", "length_m": 215.1697616469171, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830640.4560746527, 5821655.934658539], [830174.9587201104, 5821746.266497003]]}, "properties": {"id": "4083-4084-4085-9207-9208", "from": "2868271434", "to": "309586885", "length_m": 474.1812969056425, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785213.3467672473, 5751577.396121989], [785178.305516382, 5751545.182483313]]}, "properties": {"id": "40834-40835-40836", "from": "846619476", "to": "324204850", "length_m": 47.89493395196894, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783350.4515928947, 5747800.844739193], [783330.7658290137, 5747883.071184028]]}, "properties": {"id": "40837-40839-40841-40843", "from": "513381373", "to": "37685128", "length_m": 110.79630552701681, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783330.7658290137, 5747883.071184028], [783350.4515928947, 5747800.844739193]]}, "properties": {"id": "40844-40842-40840-40838", "from": "37685128", "to": "513381373", "length_m": 110.79630552701681, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836598.102318455, 5812124.228128023], [836500.1905911047, 5812143.31211786]]}, "properties": {"id": "40857", "from": "3451762885", "to": "268179535", "length_m": 99.75422271401466, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836602.3280739557, 5812138.632975656], [836938.3869195732, 5812070.922369523]]}, "properties": {"id": "40858-49381-2684-2685", "from": "3451762884", "to": "268175967", "length_m": 342.8148792064617, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759876.8751207879, 5729242.700004943], [759837.1866890787, 5729252.288428156]]}, "properties": {"id": "4086", "from": "832508957", "to": "5328187033", "length_m": 40.83025183059855, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837309.4363355136, 5814634.429093782], [836831.610992794, 5814202.583160253]]}, "properties": {"id": "40860-40861-40862-40863-40864-40865", "from": "26475390", "to": "268385358", "length_m": 645.1965450678636, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836831.610992794, 5814202.583160253], [836481.9359139875, 5813572.752982128]]}, "properties": {"id": "40866-40867-40868-40869-40870-40871-40872-56485-56506-56507-56508", "from": "268385358", "to": "268385264", "length_m": 722.4787786901849, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759837.1866890787, 5729252.288428156], [759876.8751207879, 5729242.700004943]]}, "properties": {"id": "4087", "from": "5328187033", "to": "832508957", "length_m": 40.83025183059855, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781750.579010268, 5765752.52337172], [781940.8445564387, 5766480.150215832]]}, "properties": {"id": "40873-40874-40875-40876", "from": "177784989", "to": "370245206", "length_m": 81.07316080767302, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837065.9453036231, 5811035.237926805], [837047.5995407479, 5810929.341182457]]}, "properties": {"id": "40877-14688-27795", "from": "1843397347", "to": "1843397346", "length_m": 107.48619296511261, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837038.7703398518, 5810930.525936924], [837056.2993839174, 5811038.891372072]]}, "properties": {"id": "40878-40879", "from": "1843397349", "to": "1843397354", "length_m": 109.77974226637022, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759837.1866890787, 5729252.288428156], [759825.7579506637, 5729289.460059825]]}, "properties": {"id": "4088", "from": "5328187033", "to": "5328187032", "length_m": 38.88889642314215, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837061.5805383045, 5811072.356371882], [837063.5921137227, 5811085.261689321]]}, "properties": {"id": "40880", "from": "2384163598", "to": "1843397352", "length_m": 13.061150550734565, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778409.4297901895, 5744882.670017422], [778523.8600874896, 5744858.36168991]]}, "properties": {"id": "40881", "from": "289545367", "to": "289545926", "length_m": 116.98370690543827, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778523.8600874896, 5744858.36168991], [778409.4297901895, 5744882.670017422]]}, "properties": {"id": "40882", "from": "289545926", "to": "289545367", "length_m": 116.98370690543827, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778523.8600874896, 5744858.36168991], [778606.2180631792, 5744840.029817846]]}, "properties": {"id": "40883", "from": "289545926", "to": "289545925", "length_m": 84.37353653171637, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778606.2180631792, 5744840.029817846], [778523.8600874896, 5744858.36168991]]}, "properties": {"id": "40884", "from": "289545925", "to": "289545926", "length_m": 84.37353653171637, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778606.2180631792, 5744840.029817846], [778655.1332835364, 5744673.44882411]]}, "properties": {"id": "40885-40887-40895", "from": "289545925", "to": "289545932", "length_m": 229.37701975651964, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778811.4479859836, 5744969.892223936], [778642.1119046968, 5745006.052301213]]}, "properties": {"id": "40889", "from": "297395420", "to": "297395422", "length_m": 173.1538607875557, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759825.7579506637, 5729289.460059825], [759837.1866890787, 5729252.288428156]]}, "properties": {"id": "4089", "from": "5328187032", "to": "5328187033", "length_m": 38.88889642314215, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778642.1119046968, 5745006.052301213], [778811.4479859836, 5744969.892223936]]}, "properties": {"id": "40890", "from": "297395422", "to": "297395420", "length_m": 173.1538607875557, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778655.1332835364, 5744673.44882411], [778606.2180631792, 5744840.029817846]]}, "properties": {"id": "40896-40888-40886", "from": "289545932", "to": "289545925", "length_m": 229.37701975651964, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778312.1078451297, 5744595.070837347], [778314.1167829346, 5744547.725769978]]}, "properties": {"id": "40897", "from": "297395416", "to": "297395417", "length_m": 47.387669672742675, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778314.1167829346, 5744547.725769978], [778312.1078451297, 5744595.070837347]]}, "properties": {"id": "40898", "from": "297395417", "to": "297395416", "length_m": 47.387669672742675, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834881.7161307106, 5807904.650492538], [835137.7417712088, 5807864.798266573]]}, "properties": {"id": "40899-40900-40901", "from": "75156599", "to": "298326590", "length_m": 259.6671634121803, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837158.7892247571, 5807022.6808523275], [838039.1167908828, 5807292.27795906]]}, "properties": {"id": "4090-4091-4092-1584-1585-1586-1587-1588", "from": "36022318", "to": "322527304", "length_m": 920.6992310630137, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835342.2184219875, 5807837.783835185], [836000.6533167539, 5807734.586406769]]}, "properties": {"id": "40907-40908-40909-40910-40911-40912-40913-40914-40915", "from": "2100470530", "to": "75148599", "length_m": 667.5927135383201, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835169.5955657114, 5807838.212970499], [834885.0533737645, 5807882.864931686]]}, "properties": {"id": "40916-40917-40918-40919-40920-40921", "from": "298327986", "to": "5642272361", "length_m": 288.51544801263685, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794225.4825959142, 5777901.727007394], [794219.4370305487, 5777862.8004460875]]}, "properties": {"id": "40922", "from": "252359243", "to": "857118603", "length_m": 39.39322320601038, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795507.722100867, 5780463.812994269], [795524.7179802222, 5780478.92316887]]}, "properties": {"id": "40924", "from": "3484099740", "to": "502709226", "length_m": 22.741532220236323, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837118.4725222269, 5811370.021831397], [837075.3946010486, 5811109.674841624]]}, "properties": {"id": "40925-40927-40929-40931-40933-40935-40937-40939", "from": "268175236", "to": "3678283680", "length_m": 263.8959012337449, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759343.7810998985, 5729778.150043574], [759234.6855601566, 5729710.570922316]]}, "properties": {"id": "4093-4095", "from": "832509807", "to": "832507907", "length_m": 128.46237751919716, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837075.3946010486, 5811109.674841624], [837118.4725222269, 5811370.021831397]]}, "properties": {"id": "40940-40938-40936-40934-40932-40930-40928-40926", "from": "3678283680", "to": "268175236", "length_m": 263.8959012337449, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795530.4005544446, 5780453.942405894], [795519.9331009754, 5780444.652706167]]}, "properties": {"id": "40941-40942", "from": "1941528972", "to": "619754853", "length_m": 14.011786992194251, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835137.7417712088, 5807864.798266573], [835193.1039661735, 5807884.255725236]]}, "properties": {"id": "40943-40944-40945", "from": "298326590", "to": "298326673", "length_m": 59.254080744062534, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803860.4947824073, 5767376.292743529], [803856.1102343771, 5767363.473614904]]}, "properties": {"id": "40947", "from": "974358037", "to": "974357971", "length_m": 13.548221999412005, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803856.1102343771, 5767363.473614904], [803860.4947824073, 5767376.292743529]]}, "properties": {"id": "40948", "from": "974357971", "to": "974358037", "length_m": 13.548221999412005, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818516.0758945646, 5795497.933732825], [817979.5919346064, 5795160.037140358]]}, "properties": {"id": "40958", "from": "661569043", "to": "661569207", "length_m": 634.0261367736621, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817979.5919346064, 5795160.037140358], [816969.8193084957, 5794520.1126709]]}, "properties": {"id": "40959", "from": "661569207", "to": "38734871", "length_m": 1195.4681374289949, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759234.6855601566, 5729710.570922316], [759343.7810998985, 5729778.150043574]]}, "properties": {"id": "4096-4094", "from": "832507907", "to": "832509807", "length_m": 128.46237751919716, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818765.1176318325, 5795770.8603415415], [819327.2979666578, 5795930.130631617]]}, "properties": {"id": "40964-40965-40966-40967-40968-40969-40970-40971-40972", "from": "3317644263", "to": "3317644271", "length_m": 590.2459577895488, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759234.6855601566, 5729710.570922316], [759181.6230032607, 5729669.3993653115]]}, "properties": {"id": "4097", "from": "832507907", "to": "832509710", "length_m": 67.16198350988226, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[819327.2979666578, 5795930.130631617], [820474.2316237655, 5796361.8009912735]]}, "properties": {"id": "40973-40974-55652-55638-55639-55640", "from": "3317644271", "to": "253367488", "length_m": 1225.6983528370251, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789519.4158031279, 5766550.359705338], [789181.2949635691, 5766412.837050422]]}, "properties": {"id": "40975-40976-40977-40978-40979-40980-40981-40946-40949-58645-58646-58647-58648-58649-58650-58651-58652", "from": "266584658", "to": "318558980", "length_m": 368.44938530305416, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759181.6230032607, 5729669.3993653115], [759234.6855601566, 5729710.570922316]]}, "properties": {"id": "4098", "from": "832509710", "to": "832507907", "length_m": 67.16198350988226, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820613.0900420233, 5819646.649657404], [820618.3060718633, 5819676.996676713]]}, "properties": {"id": "40982", "from": "4920069075", "to": "1412737863", "length_m": 30.79202083760672, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820639.233972399, 5819656.483342645], [820613.0900420233, 5819646.649657404]]}, "properties": {"id": "40983-40984-40985", "from": "4920069072", "to": "4920069075", "length_m": 30.115839070079844, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759181.6230032607, 5729669.3993653115], [759132.2780027397, 5729640.618432348]]}, "properties": {"id": "4099", "from": "832509710", "to": "832508581", "length_m": 57.125048465428456, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838556.9677269123, 5805137.653784006], [838568.4734273204, 5805135.444441798]]}, "properties": {"id": "40993", "from": "615241055", "to": "250287616", "length_m": 11.715900901021168, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838566.3795566997, 5805122.097826294], [838554.5267566089, 5805124.443805709]]}, "properties": {"id": "40994", "from": "250287615", "to": "615241058", "length_m": 12.082735139820409, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838554.5267566089, 5805124.443805709], [838556.9677269123, 5805137.653784006]]}, "properties": {"id": "40995", "from": "615241058", "to": "615241055", "length_m": 13.433609428776647, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764399.458657058, 5760655.058588141], [769769.452788624, 5759676.934805469]]}, "properties": {"id": "40996", "from": "614507351", "to": "614507406", "length_m": 5458.348011842427, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769769.452788624, 5759676.934805469], [764399.458657058, 5760655.058588141]]}, "properties": {"id": "40997", "from": "614507406", "to": "614507351", "length_m": 5458.348011842427, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789147.3264427567, 5766443.245944245], [789514.2420407564, 5766567.315781208]]}, "properties": {"id": "40999-41000-41001-41002-58659-58775-58776-6565-6566-6567", "from": "332192105", "to": "266584657", "length_m": 389.1992882855847, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759132.2780027397, 5729640.618432348], [759181.6230032607, 5729669.3993653115]]}, "properties": {"id": "4100", "from": "832508581", "to": "832509710", "length_m": 57.125048465428456, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757553.9508426122, 5839075.925263555], [757921.6434022676, 5839061.045738755]]}, "properties": {"id": "41003-41004-41005-41006-40986-40987-40988-40989-40990-40991-40992-41008-41009-41010-41011-41012-41013-41014-41015", "from": "364000820", "to": "364000848", "length_m": 380.431543929177, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759132.2780027397, 5729640.618432348], [759052.8978619105, 5729582.175424744]]}, "properties": {"id": "4101", "from": "832508581", "to": "832510259", "length_m": 98.57378889340028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759052.8978619105, 5729582.175424744], [759132.2780027397, 5729640.618432348]]}, "properties": {"id": "4102", "from": "832510259", "to": "832508581", "length_m": 98.57378889340028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835230.8084813419, 5808350.401875716], [835224.1552090556, 5808929.874550314]]}, "properties": {"id": "41020-41021-35509-35510", "from": "75156943", "to": "291667123", "length_m": 579.6167946832506, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759052.8978619105, 5729582.175424744], [758966.9638247823, 5729525.565952098]]}, "properties": {"id": "4103", "from": "832510259", "to": "832510337", "length_m": 102.90428116395232, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835381.710634989, 5807292.505771585], [835510.4447702856, 5806902.489860088]]}, "properties": {"id": "41037-41038-39740-39767-39768-39769-39770", "from": "2100479247", "to": "26476043", "length_m": 412.17991312932816, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837339.5680556255, 5803889.470863191], [837347.0363320836, 5803903.408333317]]}, "properties": {"id": "41039", "from": "1712171768", "to": "1712171695", "length_m": 15.812280813782515, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758966.9638247823, 5729525.565952098], [759052.8978619105, 5729582.175424744]]}, "properties": {"id": "4104", "from": "832510337", "to": "832510259", "length_m": 102.90428116395232, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837347.0363320836, 5803903.408333317], [837348.9161513284, 5803887.79657206]]}, "properties": {"id": "41040", "from": "1712171695", "to": "1712171666", "length_m": 15.72452894293625, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759847.3518653095, 5731521.864010082], [759809.9448591829, 5731415.642285015]]}, "properties": {"id": "4105-4107-4109", "from": "832507978", "to": "832509499", "length_m": 131.5955876892127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837348.9161513284, 5803887.79657206], [837339.5680556255, 5803889.470863191]]}, "properties": {"id": "41052", "from": "1712171666", "to": "1712171768", "length_m": 9.496849121861189, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837339.5680556255, 5803889.470863191], [836371.7493535085, 5804066.070566557]]}, "properties": {"id": "41053-41054-41055-41056-41057-41058-41059-48977-48809-48810-48811-48812-48813-48814-48815-48816-48817-48818-48819-48820-48821-48822", "from": "1712171768", "to": "1669910704", "length_m": 985.6298317476643, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788662.5242517102, 5764746.721825061], [788935.6908142897, 5764716.608727037]]}, "properties": {"id": "41060-41061-41062-41063-41064", "from": "3726903738", "to": "3527871426", "length_m": 274.97325306600806, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788935.6908142897, 5764716.608727037], [789190.7069619686, 5764718.920837702]]}, "properties": {"id": "41065-41066-41067-41068-41069-41070-41071", "from": "3527871426", "to": "3713166048", "length_m": 255.56241029648365, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[823203.9804473044, 5797411.081314912], [824155.348343109, 5797773.316452252]]}, "properties": {"id": "41074-41075-41076-43119-42919", "from": "282810962", "to": "38715669", "length_m": 1018.1867669822964, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835361.1018146137, 5807812.216463687], [835322.1850841271, 5807804.498172692]]}, "properties": {"id": "41077-41078", "from": "298326676", "to": "291667013", "length_m": 39.98220368291901, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834854.3759625152, 5807881.202217793], [834127.2466022039, 5807996.328858124]]}, "properties": {"id": "41080-41081-41082-41083-41084-41085-41086", "from": "298328160", "to": "347849258", "length_m": 736.5734464991393, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834127.2466022039, 5807996.328858124], [833446.6177636764, 5808088.99820365]]}, "properties": {"id": "41087-41088-41089-41090", "from": "347849258", "to": "36045778", "length_m": 688.4240834900917, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835187.9381282185, 5807804.784417812], [835169.5955657114, 5807838.212970499]]}, "properties": {"id": "41091-41092", "from": "75158826", "to": "298327986", "length_m": 38.25095449810909, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759809.9448591829, 5731415.642285015], [759847.3518653095, 5731521.864010082]]}, "properties": {"id": "4110-4108-4106", "from": "832509499", "to": "832507978", "length_m": 131.5955876892127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793903.4414557556, 5773006.604223182], [793874.3615073626, 5772845.328502895]]}, "properties": {"id": "4111-4112", "from": "263576234", "to": "262734731", "length_m": 163.87652023377848, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834377.0103457607, 5809495.6260815915], [833746.5540779198, 5809609.793736878]]}, "properties": {"id": "41116-41117-13821-13822-13823-13824", "from": "661586444", "to": "661586136", "length_m": 641.6534382523485, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755653.5305353481, 5737389.6836353475], [755612.5722696183, 5737210.761875825]]}, "properties": {"id": "41118-41120-41122", "from": "75320557", "to": "75293589", "length_m": 184.21860450241078, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755612.5722696183, 5737210.761875825], [755653.5305353481, 5737389.6836353475]]}, "properties": {"id": "41123-41121-41119", "from": "75293589", "to": "75320557", "length_m": 184.21860450241078, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755612.5722696183, 5737210.761875825], [755995.8295951879, 5736721.696717789]]}, "properties": {"id": "41124-41126-41128-41130-41132", "from": "75293589", "to": "75320521", "length_m": 639.89406828079, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747885.8449196324, 5835936.3799949], [747805.3967015118, 5835917.014955288]]}, "properties": {"id": "4113-4114", "from": "363996581", "to": "363996591", "length_m": 82.77981631671159, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755995.8295951879, 5736721.696717789], [755612.5722696183, 5737210.761875825]]}, "properties": {"id": "41133-41131-41129-41127-41125", "from": "75320521", "to": "75293589", "length_m": 639.89406828079, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755995.8295951879, 5736721.696717789], [756480.818907001, 5735674.973259285]]}, "properties": {"id": "41134-41136-41138-41140-41142-41144-41146-41148-41150-41152-41154-41156-41158-41160-41162-41164-41166-41168-41170-41172-41174-41176-41178", "from": "75320521", "to": "75320455", "length_m": 1323.110607873697, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793863.6398949777, 5772847.394812441], [793876.8288475091, 5772919.084344889]]}, "properties": {"id": "4115-4116-4117", "from": "1863863726", "to": "263575954", "length_m": 72.89277478692142, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756480.818907001, 5735674.973259285], [755995.8295951879, 5736721.696717789]]}, "properties": {"id": "41179-41177-41175-41173-41171-41169-41167-41165-41163-41161-41159-41157-41155-41153-41151-41149-41147-41145-41143-41141-41139-41137-41135", "from": "75320455", "to": "75320521", "length_m": 1323.110607873697, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807311.0375258485, 5765177.426427915], [807321.8805039361, 5765159.20643137]]}, "properties": {"id": "4118", "from": "380240436", "to": "790928383", "length_m": 21.202321787382804, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756480.818907001, 5735674.973259285], [757202.4831336167, 5735496.037586524]]}, "properties": {"id": "41180-41182-41184-41186-41188-41190-41192-41194-41196-41198-41200-41202-41204-41206-41208-41210-41212-41214", "from": "75320455", "to": "75320351", "length_m": 867.9186738040007, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807321.8805039361, 5765159.20643137], [807324.8365055594, 5765150.423409362]]}, "properties": {"id": "4119", "from": "790928383", "to": "262915785", "length_m": 9.267115052345286, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747778.1898523712, 5835917.884090126], [747683.0918849929, 5835924.992592691]]}, "properties": {"id": "4120-4121", "from": "363996598", "to": "363996626", "length_m": 95.40858005879437, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757202.4831336167, 5735496.037586524], [756480.818907001, 5735674.973259285]]}, "properties": {"id": "41215-41213-41211-41209-41207-41205-41203-41201-41199-41197-41195-41193-41191-41189-41187-41185-41183-41181", "from": "75320351", "to": "75320455", "length_m": 867.9186738040007, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757202.4831336167, 5735496.037586524], [757470.5927753245, 5734930.734622694]]}, "properties": {"id": "41216-41218-41220-41222-41224-41226-41228-41230-41232-41234-41236", "from": "75320351", "to": "75294338", "length_m": 654.6115580594101, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758818.9599778918, 5730080.067088445], [758876.3798758667, 5730058.955299486]]}, "properties": {"id": "4122-4124-4126", "from": "832507840", "to": "832508130", "length_m": 62.20349811149972, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757470.5927753245, 5734930.734622694], [757202.4831336167, 5735496.037586524]]}, "properties": {"id": "41237-41235-41233-41231-41229-41227-41225-41223-41221-41219-41217", "from": "75294338", "to": "75320351", "length_m": 654.6115580594101, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757470.5927753245, 5734930.734622694], [757769.4678194375, 5734561.361057846]]}, "properties": {"id": "41238-41240-41242-41244-41246-41248-41250-41252-41254", "from": "75294338", "to": "75320329", "length_m": 518.2639513815676, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757769.4678194375, 5734561.361057846], [757470.5927753245, 5734930.734622694]]}, "properties": {"id": "41255-41253-41251-41249-41247-41245-41243-41241-41239", "from": "75320329", "to": "75294338", "length_m": 518.2639513815676, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757769.4678194375, 5734561.361057846], [758070.6016716196, 5734359.621951665]]}, "properties": {"id": "41256-41258-41260-41262-41264-41266-41268-41270-41272-41274-41276-41278", "from": "75320329", "to": "75294613", "length_m": 614.0427379749224, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758876.3798758667, 5730058.955299486], [758818.9599778918, 5730080.067088445]]}, "properties": {"id": "4127-4125-4123", "from": "832508130", "to": "832507840", "length_m": 62.20349811149972, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758070.6016716196, 5734359.621951665], [757769.4678194375, 5734561.361057846]]}, "properties": {"id": "41279-41277-41275-41273-41271-41269-41267-41265-41263-41261-41259-41257", "from": "75294613", "to": "75320329", "length_m": 614.0427379749224, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793802.0574451623, 5772524.300171909], [793813.9630647713, 5772521.735361089]]}, "properties": {"id": "4128", "from": "3957457792", "to": "1967591735", "length_m": 12.178753298301485, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758070.6016716196, 5734359.621951665], [758328.9199921184, 5733715.063234553]]}, "properties": {"id": "41280-41282-41284-41286-41288-41290-41292-41294-41296-41298-41300-41302-41304", "from": "75294613", "to": "75320275", "length_m": 761.2609602216174, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758328.9199921184, 5733715.063234553], [758070.6016716196, 5734359.621951665]]}, "properties": {"id": "41305-41303-41301-41299-41297-41295-41293-41291-41289-41287-41285-41283-41281", "from": "75320275", "to": "75294613", "length_m": 761.2609602216174, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758328.9199921184, 5733715.063234553], [758983.1924678019, 5733178.364179375]]}, "properties": {"id": "41306-41308-41310-41312-41314-41316-41318-41320-41322-41324", "from": "75320275", "to": "75294857", "length_m": 865.6359940091386, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758983.1924678019, 5733178.364179375], [758328.9199921184, 5733715.063234553]]}, "properties": {"id": "41325-41323-41321-41319-41317-41315-41313-41311-41309-41307", "from": "75294857", "to": "75320275", "length_m": 865.6359940091386, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758983.1924678019, 5733178.364179375], [759256.3165512201, 5732461.663824005]]}, "properties": {"id": "41326-41328-41330-41332-41334-41336-41338-41340-41342-41344-41346-41348-41350-41352-41354-41356-41358-41360-41362-41364", "from": "75294857", "to": "75320210", "length_m": 1184.633488139316, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759031.6163597114, 5730226.947904871], [759025.7332564977, 5730526.951891276]]}, "properties": {"id": "4134-4132-4130-4748-4746-4744", "from": "832507607", "to": "832510077", "length_m": 344.3421426811942, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759031.6163597114, 5730226.947904871], [759067.2394963877, 5730218.584374098]]}, "properties": {"id": "4135", "from": "832507607", "to": "832509332", "length_m": 36.59175468727146, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759067.2394963877, 5730218.584374098], [759031.6163597114, 5730226.947904871]]}, "properties": {"id": "4136", "from": "832509332", "to": "832507607", "length_m": 36.59175468727146, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759256.3165512201, 5732461.663824005], [758983.1924678019, 5733178.364179375]]}, "properties": {"id": "41365-41363-41361-41359-41357-41355-41353-41351-41349-41347-41345-41343-41341-41339-41337-41335-41333-41331-41329-41327", "from": "75320210", "to": "75294857", "length_m": 1184.633488139316, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759256.3165512201, 5732461.663824005], [759097.8757321688, 5732436.17668412]]}, "properties": {"id": "41366-41368-41370-41372-41374-41376-41378-41380-41382-41384", "from": "75320210", "to": "75295164", "length_m": 561.9274846155351, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759067.2394963877, 5730218.584374098], [759230.0208466598, 5730193.738627574]]}, "properties": {"id": "4137-4139-4141", "from": "832509332", "to": "832510004", "length_m": 165.67251136490933, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759097.8757321688, 5732436.17668412], [759256.3165512201, 5732461.663824005]]}, "properties": {"id": "41385-41383-41381-41379-41377-41375-41373-41371-41369-41367", "from": "75295164", "to": "75320210", "length_m": 561.9274846155351, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759097.8757321688, 5732436.17668412], [759553.601056823, 5732142.759853261]]}, "properties": {"id": "41386-41388-41390-41392-41394-41396", "from": "75295164", "to": "75295233", "length_m": 584.4394382207059, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759553.601056823, 5732142.759853261], [759097.8757321688, 5732436.17668412]]}, "properties": {"id": "41397-41395-41393-41391-41389-41387", "from": "75295233", "to": "75295164", "length_m": 584.4394382207059, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759553.601056823, 5732142.759853261], [759807.7046978637, 5731692.963402761]]}, "properties": {"id": "41398-41400-41402-41404-41406-41408-41410-41412-27264-27266-27268-27270-27272", "from": "75295233", "to": "832509461", "length_m": 652.0015810767728, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759230.0208466598, 5730193.738627574], [759067.2394963877, 5730218.584374098]]}, "properties": {"id": "4142-4140-4138", "from": "832510004", "to": "832509332", "length_m": 165.67251136490933, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759230.0208466598, 5730193.738627574], [759328.2573820859, 5730176.968927004]]}, "properties": {"id": "4143-4145-4147-4149", "from": "832510004", "to": "832508848", "length_m": 99.92290636081027, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732072.1405797028, 5706548.412548565], [731932.912737311, 5707256.270641802]]}, "properties": {"id": "41437-41435-41433-41431-41429-41427-41425-41423-41421-41419-41417-41415-7607-7605-7603-7601-7599", "from": "861264206", "to": "249074021", "length_m": 731.8316227973843, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732072.1405797028, 5706548.412548565], [731943.3017647101, 5706145.972115315]]}, "properties": {"id": "41438-41440-9076-9078-9080-9082-9084-9086-9088-9090-9092-9094-9096-9098-9100-9102", "from": "861264206", "to": "364228817", "length_m": 553.3956955616363, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760556.8196751565, 5761424.307094015], [758926.2829776981, 5762006.436173584]]}, "properties": {"id": "41443-41445-41447", "from": "1096015558", "to": "1096015556", "length_m": 1731.3786204386722, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758926.2829776981, 5762006.436173584], [760556.8196751565, 5761424.307094015]]}, "properties": {"id": "41448-41446-41444", "from": "1096015556", "to": "1096015558", "length_m": 1731.3786204386722, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838065.3999783618, 5818874.502504079], [837582.3161923954, 5819266.414248854]]}, "properties": {"id": "41449-41450-41451-41452-41453-41454-49880-49796-49797", "from": "30928585", "to": "1511360297", "length_m": 625.0666333614579, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767557.5235520978, 5737824.188519207], [767522.920037467, 5737871.134439116]]}, "properties": {"id": "41455-41457", "from": "524150941", "to": "831202224", "length_m": 59.7590380827115, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767522.920037467, 5737871.134439116], [767557.5235520978, 5737824.188519207]]}, "properties": {"id": "41458-41456", "from": "831202224", "to": "524150941", "length_m": 59.7590380827115, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767522.920037467, 5737871.134439116], [767468.3660201045, 5738213.21371885]]}, "properties": {"id": "41459-41461-41463-41465-41467-41469-41485", "from": "831202224", "to": "524151403", "length_m": 391.55665297489446, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790616.3565627448, 5767146.464161009], [790626.159767611, 5767153.236900155]]}, "properties": {"id": "41471", "from": "490759589", "to": "267124456", "length_m": 11.915234812051466, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767715.8620476086, 5738284.883062502], [767563.663143105, 5738308.846805094]]}, "properties": {"id": "41472-41474-41476-41478-41480", "from": "524151537", "to": "524151618", "length_m": 158.12726890689729, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767563.663143105, 5738308.846805094], [767715.8620476086, 5738284.883062502]]}, "properties": {"id": "41481-41479-41477-41475-41473", "from": "524151618", "to": "524151537", "length_m": 158.12726890689729, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767563.663143105, 5738308.846805094], [767468.3660201045, 5738213.21371885]]}, "properties": {"id": "41482", "from": "524151618", "to": "524151403", "length_m": 135.0082544032458, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767468.3660201045, 5738213.21371885], [767563.663143105, 5738308.846805094]]}, "properties": {"id": "41483", "from": "524151403", "to": "524151618", "length_m": 135.0082544032458, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767468.3660201045, 5738213.21371885], [767522.920037467, 5737871.134439116]]}, "properties": {"id": "41484-41470-41468-41466-41464-41462-41460", "from": "524151403", "to": "831202224", "length_m": 391.55665297489446, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767283.4006808023, 5737718.488206133], [767513.420775737, 5737779.431412622]]}, "properties": {"id": "41491-41489-41487-42679-50177-50175", "from": "524149978", "to": "524150774", "length_m": 241.6042544653962, "freespeed_mps": 14.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767283.4006808023, 5737718.488206133], [766285.4979597239, 5737550.514705452]]}, "properties": {"id": "41492-41494-41496-41498-41500-41502-41504-41506-41508-41510-41512-41514-41516-41518-41520-41522-41524-41526", "from": "524149978", "to": "831202173", "length_m": 1014.184439345843, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759328.2573820859, 5730176.968927004], [759230.0208466598, 5730193.738627574]]}, "properties": {"id": "4150-4148-4146-4144", "from": "832508848", "to": "832510004", "length_m": 99.92290636081027, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766285.4979597239, 5737550.514705452], [767283.4006808023, 5737718.488206133]]}, "properties": {"id": "41527-41525-41523-41521-41519-41517-41515-41513-41511-41509-41507-41505-41503-41501-41499-41497-41495-41493", "from": "831202173", "to": "524149978", "length_m": 1014.184439345843, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766285.4979597239, 5737550.514705452], [765550.5100141437, 5737404.729427745]]}, "properties": {"id": "41528-41530-41532-41534-41536-41538-41540-41542-41544-41546-41548-41550-41552", "from": "831202173", "to": "524144995", "length_m": 754.0459438116093, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831691.2321595168, 5821451.428663112], [831255.8714201404, 5821532.373182299]]}, "properties": {"id": "4153-4154-4155-54055-54056", "from": "26118250", "to": "309587595", "length_m": 442.8338468985173, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765550.5100141437, 5737404.729427745], [766285.4979597239, 5737550.514705452]]}, "properties": {"id": "41553-41551-41549-41547-41545-41543-41541-41539-41537-41535-41533-41531-41529", "from": "524144995", "to": "831202173", "length_m": 754.0459438116093, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765550.5100141437, 5737404.729427745], [764668.8000886005, 5736895.920756024]]}, "properties": {"id": "41554-41556-41558-41560-41562-41564-41566-41568-41570-41572-41574-41576-41578-41580-41582-41584-41586-41588-41590-41592-41594-41596", "from": "524144995", "to": "37665230", "length_m": 1026.9542866115894, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793062.2179200517, 5772656.691665424], [793633.4342806912, 5772550.3840073915]]}, "properties": {"id": "4159-4157-38142-38140-38138", "from": "2054201371", "to": "3957457789", "length_m": 581.0246733721513, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764668.8000886005, 5736895.920756024], [765550.5100141437, 5737404.729427745]]}, "properties": {"id": "41597-41595-41593-41591-41589-41587-41585-41583-41581-41579-41577-41575-41573-41571-41569-41567-41565-41563-41561-41559-41557-41555", "from": "37665230", "to": "524144995", "length_m": 1026.9542866115894, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764668.8000886005, 5736895.920756024], [764610.3310984208, 5736432.411954627]]}, "properties": {"id": "41598-41600-41602-41604-41606-41608-41610-41612-41614-41616-41618-41620-41622-41624-41626-41628-41630", "from": "37665230", "to": "37665030", "length_m": 515.202668645892, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793062.2179200517, 5772656.691665424], [792559.2166237669, 5772749.819499749]]}, "properties": {"id": "4160-4162-4164-4166-4168-4170", "from": "2054201371", "to": "317728407", "length_m": 511.5497018843521, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764610.3310984208, 5736432.411954627], [764668.8000886005, 5736895.920756024]]}, "properties": {"id": "41631-41629-41627-41625-41623-41621-41619-41617-41615-41613-41611-41609-41607-41605-41603-41601-41599", "from": "37665030", "to": "37665230", "length_m": 515.202668645892, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764610.3310984208, 5736432.411954627], [764029.0805268975, 5736404.767006965]]}, "properties": {"id": "41632-41634-41636-41638-41640-41642-41644-41646-41648-41650-41652-41654-41656-41658-41660-41662-41664-41666-41668-41670-41672-41674-41676-41678-41680-41682-41684-41686-41688-41690-41692-41694", "from": "37665030", "to": "37664838", "length_m": 677.7673391482698, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764029.0805268975, 5736404.767006965], [764610.3310984208, 5736432.411954627]]}, "properties": {"id": "41695-41693-41691-41689-41687-41685-41683-41681-41679-41677-41675-41673-41671-41669-41667-41665-41663-41661-41659-41657-41655-41653-41651-41649-41647-41645-41643-41641-41639-41637-41635-41633", "from": "37664838", "to": "37665030", "length_m": 677.7673391482698, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764029.0805268975, 5736404.767006965], [763861.3993075772, 5736203.383818016]]}, "properties": {"id": "41696-41698-41700-41702-41704-41706-41708-41710-41712-41714-41716-41718-41720-41722-41724-41726-41728-41730-41732-41734-41736-41738-41740-41742-41744-41746-41748-41750-41752", "from": "37664838", "to": "37023947", "length_m": 575.1960780844988, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792559.2166237669, 5772749.819499749], [793062.2179200517, 5772656.691665424]]}, "properties": {"id": "4171-4169-4167-4165-4163-4161", "from": "317728407", "to": "2054201371", "length_m": 511.5497018843521, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792559.2166237669, 5772749.819499749], [791275.5474336584, 5773001.15882421]]}, "properties": {"id": "4172-4174-4176-4178-4180-4182-5919-5921-5923-5925-5927-5929-5931-5933-5935-5937-5939-36210-41093-41095-41097-41099-41101-41103-41105-41022-41024-41026-41028-25756-25758-25760-25762", "from": "317728407", "to": "880227919", "length_m": 1309.240015039898, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763861.3993075772, 5736203.383818016], [764029.0805268975, 5736404.767006965]]}, "properties": {"id": "41753-41751-41749-41747-41745-41743-41741-41739-41737-41735-41733-41731-41729-41727-41725-41723-41721-41719-41717-41715-41713-41711-41709-41707-41705-41703-41701-41699-41697", "from": "37023947", "to": "37664838", "length_m": 575.1960780844988, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763861.3993075772, 5736203.383818016], [763666.6790975935, 5736140.237217732]]}, "properties": {"id": "41754-41756-41758-41760-41762-41764-41766-41768-41770-41772-41774-41776-41778-41780-41782-41784-41786-41788-41790", "from": "37023947", "to": "234773261", "length_m": 518.570454033031, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763666.6790975935, 5736140.237217732], [763861.3993075772, 5736203.383818016]]}, "properties": {"id": "41791-41789-41787-41785-41783-41781-41779-41777-41775-41773-41771-41769-41767-41765-41763-41761-41759-41757-41755", "from": "234773261", "to": "37023947", "length_m": 518.570454033031, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763666.6790975935, 5736140.237217732], [764082.0970717319, 5735819.381693549]]}, "properties": {"id": "41792-41794-41796-41798-41800-41802-41804-41806-41808-41810-41812-41814-41816-41818-41820-41822-41824-41826-41828-41830-41832-41834-41836-41838-41840", "from": "234773261", "to": "37023495", "length_m": 784.653687372662, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752194.2541334952, 5839242.037749799], [752205.0927773556, 5839240.197510859]]}, "properties": {"id": "4184", "from": "363999803", "to": "363999807", "length_m": 10.993756367837237, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764082.0970717319, 5735819.381693549], [763666.6790975935, 5736140.237217732]]}, "properties": {"id": "41841-41839-41837-41835-41833-41831-41829-41827-41825-41823-41821-41819-41817-41815-41813-41811-41809-41807-41805-41803-41801-41799-41797-41795-41793", "from": "37023495", "to": "234773261", "length_m": 784.653687372662, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764082.0970717319, 5735819.381693549], [763625.8814297747, 5735565.02884995]]}, "properties": {"id": "41842-41844-41846-41848-41850-41852-41854-41856-41858-41860-41862-41864-41866-41868-41870-41872-41874-41876-41878-41880-41882-41884-41886", "from": "37023495", "to": "37023362", "length_m": 536.3167192333009, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747801.8519458524, 5835941.535893239], [747806.2953546045, 5835937.015433069]]}, "properties": {"id": "4185", "from": "363996586", "to": "363996588", "length_m": 6.338646662840578, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750814.1073099952, 5834893.38510967], [750813.7902036872, 5834916.1886133645]]}, "properties": {"id": "4186-4187-4188-4189-4190-4191", "from": "363994892", "to": "363994894", "length_m": 25.212619705846564, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763625.8814297747, 5735565.02884995], [764082.0970717319, 5735819.381693549]]}, "properties": {"id": "41887-41885-41883-41881-41879-41877-41875-41873-41871-41869-41867-41865-41863-41861-41859-41857-41855-41853-41851-41849-41847-41845-41843", "from": "37023362", "to": "37023495", "length_m": 536.3167192333009, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763625.8814297747, 5735565.02884995], [763214.20548805, 5735345.165451918]]}, "properties": {"id": "41888-41890-41892-41894-41896-41898-41900-41902-41904-41906-41908-41910-41912-41914-41916-41918-41920-41922-41924-41926-41928-41930", "from": "37023362", "to": "37023225", "length_m": 552.8868880853847, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750813.7902036872, 5834916.1886133645], [750836.9374729095, 5834916.476346573]]}, "properties": {"id": "4192-4193-4194", "from": "363994894", "to": "363996317", "length_m": 25.439875142016486, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763214.20548805, 5735345.165451918], [763625.8814297747, 5735565.02884995]]}, "properties": {"id": "41931-41929-41927-41925-41923-41921-41919-41917-41915-41913-41911-41909-41907-41905-41903-41901-41899-41897-41895-41893-41891-41889", "from": "37023225", "to": "37023362", "length_m": 552.8868880853847, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750836.9374729095, 5834916.476346573], [750833.7790568407, 5834890.978827732]]}, "properties": {"id": "4195-4196-4197-4198-4199", "from": "363996317", "to": "363996325", "length_m": 29.611015692090653, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750833.7790568407, 5834890.978827732], [750814.1073099952, 5834893.38510967]]}, "properties": {"id": "4200-4201-4202", "from": "363996325", "to": "363994892", "length_m": 21.117527322280846, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750813.7902036872, 5834916.1886133645], [750823.8810063575, 5835035.784328992]]}, "properties": {"id": "4203-4204-4205", "from": "363994894", "to": "363994897", "length_m": 121.35722756861908, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762458.9643433231, 5734665.084002238], [762149.572275344, 5734326.099745584]]}, "properties": {"id": "42054-42056-42058-42060-42062-42064-42066-42068-42070-42072-42074-42076-42078-42080-42082-42084-42086-42088-42090-42092-42094-42096-42098-42100-42102-42104", "from": "37022739", "to": "37022535", "length_m": 538.1678628354011, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777419.1040315313, 5759106.8715537945], [777368.1311746584, 5759696.864241728]]}, "properties": {"id": "4206-4208-4210-4212-4214-4216-4218", "from": "186877171", "to": "186877177", "length_m": 626.1323282526874, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762149.572275344, 5734326.099745584], [762458.9643433231, 5734665.084002238]]}, "properties": {"id": "42105-42103-42101-42099-42097-42095-42093-42091-42089-42087-42085-42083-42081-42079-42077-42075-42073-42071-42069-42067-42065-42063-42061-42059-42057-42055", "from": "37022535", "to": "37022739", "length_m": 538.1678628354011, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762149.572275344, 5734326.099745584], [761999.9147039462, 5733864.4757361915]]}, "properties": {"id": "42106-42108-42110-42112-42114-42116-42118-42120-42122-42124-42126-42128-42130-42132-42134-42136-42138-42140-42142", "from": "37022535", "to": "36830081", "length_m": 510.79294193971435, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761999.9147039462, 5733864.4757361915], [762149.572275344, 5734326.099745584]]}, "properties": {"id": "42143-42141-42139-42137-42135-42133-42131-42129-42127-42125-42123-42121-42119-42117-42115-42113-42111-42109-42107", "from": "36830081", "to": "37022535", "length_m": 510.79294193971435, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761999.9147039462, 5733864.4757361915], [761368.0370003209, 5733055.410174123]]}, "properties": {"id": "42144-42146-42148-42150-42152-42154-42156-42158-42160-42162-42164-42166-42168-42170-42172-42174-42176-42178-42180-42182-42184-42186-42188-42190-42192-42194-42196-42198-42200-42202-42204-42206-42208-42210-42212-42214-42216-42218-42220", "from": "36830081", "to": "36830026", "length_m": 1110.1350066897876, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777368.1311746584, 5759696.864241728], [777419.1040315313, 5759106.8715537945]]}, "properties": {"id": "4219-4217-4215-4213-4211-4209-4207", "from": "186877177", "to": "186877171", "length_m": 626.1323282526874, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777368.1311746584, 5759696.864241728], [777590.539280391, 5760897.2351447875]]}, "properties": {"id": "4220-4222", "from": "186877177", "to": "474069825", "length_m": 1220.9769926891481, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761368.0370003209, 5733055.410174123], [761999.9147039462, 5733864.4757361915]]}, "properties": {"id": "42221-42219-42217-42215-42213-42211-42209-42207-42205-42203-42201-42199-42197-42195-42193-42191-42189-42187-42185-42183-42181-42179-42177-42175-42173-42171-42169-42167-42165-42163-42161-42159-42157-42155-42153-42151-42149-42147-42145", "from": "36830026", "to": "36830081", "length_m": 1110.1350066897876, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761368.0370003209, 5733055.410174123], [760999.9383741852, 5732644.249831578]]}, "properties": {"id": "42222-42224-42226-42228-42230-42232-42234-42236-42238-42240", "from": "36830026", "to": "36830016", "length_m": 552.9726482510553, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777590.539280391, 5760897.2351447875], [777368.1311746584, 5759696.864241728]]}, "properties": {"id": "4223-4221", "from": "474069825", "to": "186877177", "length_m": 1220.9769926891481, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777590.539280391, 5760897.2351447875], [777651.4914916893, 5761230.393175072]]}, "properties": {"id": "4224", "from": "474069825", "to": "475483146", "length_m": 338.68782840764607, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760999.9383741852, 5732644.249831578], [761368.0370003209, 5733055.410174123]]}, "properties": {"id": "42241-42239-42237-42235-42233-42231-42229-42227-42225-42223", "from": "36830016", "to": "36830026", "length_m": 552.9726482510553, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760999.9383741852, 5732644.249831578], [760617.1767069539, 5732284.353483248]]}, "properties": {"id": "42242-42244-42246-42248-42250-42252-42254-42256-42258-42260-42262-42264-42266-42268-42270-42272-42274-42276-42278", "from": "36830016", "to": "36830004", "length_m": 535.847717409441, "freespeed_mps": 15.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777651.4914916893, 5761230.393175072], [777590.539280391, 5760897.2351447875]]}, "properties": {"id": "4225", "from": "475483146", "to": "474069825", "length_m": 338.68782840764607, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777651.4914916893, 5761230.393175072], [777717.4524470258, 5761588.104956909]]}, "properties": {"id": "4226", "from": "475483146", "to": "1534281124", "length_m": 363.7424451181607, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777717.4524470258, 5761588.104956909], [777651.4914916893, 5761230.393175072]]}, "properties": {"id": "4227", "from": "1534281124", "to": "475483146", "length_m": 363.7424451181607, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760617.1767069539, 5732284.353483248], [760999.9383741852, 5732644.249831578]]}, "properties": {"id": "42279-42277-42275-42273-42271-42269-42267-42265-42263-42261-42259-42257-42255-42253-42251-42249-42247-42245-42243", "from": "36830004", "to": "36830016", "length_m": 535.847717409441, "freespeed_mps": 15.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777717.4524470258, 5761588.104956909], [777786.8573952655, 5761963.823166685]]}, "properties": {"id": "4228", "from": "1534281124", "to": "475483090", "length_m": 382.0748877744986, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760617.1767069539, 5732284.353483248], [760033.0093039388, 5731423.571928438]]}, "properties": {"id": "42280-42282-42284-42286-42288-42290-42292-42294-42296-42298-42300-42302-42304-42306-42308-42310-42312-42314-42316-42318-42320-42322-42324-42326-42328-42330-42332-42334-42336-42338-42340-42342", "from": "36830004", "to": "832509045", "length_m": 1051.2052704609584, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777786.8573952655, 5761963.823166685], [777717.4524470258, 5761588.104956909]]}, "properties": {"id": "4229", "from": "475483090", "to": "1534281124", "length_m": 382.0748877744986, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777786.8573952655, 5761963.823166685], [777862.2408625397, 5762418.836563621]]}, "properties": {"id": "4230-4232", "from": "475483090", "to": "475483063", "length_m": 461.21563110271944, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777862.2408625397, 5762418.836563621], [777786.8573952655, 5761963.823166685]]}, "properties": {"id": "4233-4231", "from": "475483063", "to": "475483090", "length_m": 461.21563110271944, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777862.2408625397, 5762418.836563621], [777861.8993602337, 5762696.311845656]]}, "properties": {"id": "4234-4236-4238-4240-4242-4244-4246", "from": "475483063", "to": "475575492", "length_m": 301.08170057475945, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760033.0093039388, 5731423.571928438], [760617.1767069539, 5732284.353483248]]}, "properties": {"id": "42343-42341-42339-42337-42335-42333-42331-42329-42327-42325-42323-42321-42319-42317-42315-42313-42311-42309-42307-42305-42303-42301-42299-42297-42295-42293-42291-42289-42287-42285-42283-42281", "from": "832509045", "to": "36830004", "length_m": 1051.2052704609584, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760033.0093039388, 5731423.571928438], [759993.6614624998, 5731391.5484504895]]}, "properties": {"id": "42344-42346", "from": "832509045", "to": "36829980", "length_m": 50.750791678219706, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759993.6614624998, 5731391.5484504895], [760033.0093039388, 5731423.571928438]]}, "properties": {"id": "42347-42345", "from": "36829980", "to": "832509045", "length_m": 50.750791678219706, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759993.6614624998, 5731391.5484504895], [759919.0437680618, 5731253.823045738]]}, "properties": {"id": "42348-42350-42352-42354-42356-42358-42360-42362-42364", "from": "36829980", "to": "36829975", "length_m": 157.25606973141961, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759919.0437680618, 5731253.823045738], [759993.6614624998, 5731391.5484504895]]}, "properties": {"id": "42365-42363-42361-42359-42357-42355-42353-42351-42349", "from": "36829975", "to": "36829980", "length_m": 157.25606973141961, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759919.0437680618, 5731253.823045738], [759784.8992450116, 5731073.704960584]]}, "properties": {"id": "42366-42368-42370", "from": "36829975", "to": "832507842", "length_m": 224.6158339622222, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759784.8992450116, 5731073.704960584], [759919.0437680618, 5731253.823045738]]}, "properties": {"id": "42371-42369-42367", "from": "832507842", "to": "36829975", "length_m": 224.6158339622222, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759784.8992450116, 5731073.704960584], [759407.3884553902, 5730715.706256325]]}, "properties": {"id": "42372-42374-42376-42378-42380-42382-42384-42386-42388", "from": "832507842", "to": "2932565813", "length_m": 529.4188821571092, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759407.3884553902, 5730715.706256325], [759784.8992450116, 5731073.704960584]]}, "properties": {"id": "42389-42387-42385-42383-42381-42379-42377-42375-42373", "from": "2932565813", "to": "832507842", "length_m": 529.4188821571092, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767655.7109572659, 5737964.149962402], [767468.3660201045, 5738213.21371885]]}, "properties": {"id": "42390-42392-42394-42396-42398-42400-42402-42404", "from": "524151100", "to": "524151403", "length_m": 337.961394564004, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767468.3660201045, 5738213.21371885], [767655.7109572659, 5737964.149962402]]}, "properties": {"id": "42405-42403-42401-42399-42397-42395-42393-42391", "from": "524151403", "to": "524151100", "length_m": 337.961394564004, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767265.0603136197, 5737805.50585231], [767270.4603622777, 5737879.276523177]]}, "properties": {"id": "42407-34632-34630-34628", "from": "524150619", "to": "831202282", "length_m": 85.54628323723878, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767265.0603136197, 5737805.50585231], [767152.8939166949, 5737783.626122977]]}, "properties": {"id": "42408", "from": "524150619", "to": "524150646", "length_m": 114.2804580522926, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767152.8939166949, 5737783.626122977], [767265.0603136197, 5737805.50585231]]}, "properties": {"id": "42409", "from": "524150646", "to": "524150619", "length_m": 114.2804580522926, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767152.8939166949, 5737783.626122977], [766964.347306869, 5737769.3189822985]]}, "properties": {"id": "42410-42412", "from": "524150646", "to": "524150585", "length_m": 190.47779312003604, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766964.347306869, 5737769.3189822985], [767152.8939166949, 5737783.626122977]]}, "properties": {"id": "42413-42411", "from": "524150585", "to": "524150646", "length_m": 190.47779312003604, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[821478.1218261286, 5796720.074078675], [820595.548566944, 5796383.731440799]]}, "properties": {"id": "42414", "from": "3924946378", "to": "4780179491", "length_m": 944.4902951700815, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820116.1238164975, 5796200.982299904], [819287.432388958, 5795884.303737854]]}, "properties": {"id": "42415-42416-55656", "from": "38714412", "to": "661569593", "length_m": 887.1412345642126, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767283.4006808023, 5737718.488206133], [767265.0603136197, 5737805.50585231]]}, "properties": {"id": "42417", "from": "524149978", "to": "524150619", "length_m": 88.92940920856108, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767265.0603136197, 5737805.50585231], [767283.4006808023, 5737718.488206133]]}, "properties": {"id": "42418", "from": "524150619", "to": "524149978", "length_m": 88.92940920856108, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760459.7272321177, 5762545.416161255], [759517.4450120347, 5762206.78535575]]}, "properties": {"id": "42419-42420-42421-42422", "from": "3755251459", "to": "5817935499", "length_m": 1001.3131686282995, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759517.4450120347, 5762206.78535575], [758926.2829776981, 5762006.436173584]]}, "properties": {"id": "42423-42424", "from": "5817935499", "to": "1096015556", "length_m": 624.1969389724472, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758926.2829776981, 5762006.436173584], [758155.8839296892, 5761677.46461806]]}, "properties": {"id": "42425-42426-42427-42428", "from": "1096015556", "to": "5817935504", "length_m": 838.9538144408765, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758155.8839296892, 5761677.46461806], [757163.5127674282, 5761358.062636559]]}, "properties": {"id": "42429-42430-42431-42432-42433-42434-42435", "from": "5817935504", "to": "5817935511", "length_m": 1051.9099334088844, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757163.5127674282, 5761358.062636559], [756657.0935501745, 5761289.442142382]]}, "properties": {"id": "42436", "from": "5817935511", "to": "5817935512", "length_m": 511.0471552058264, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756657.0935501745, 5761289.442142382], [755726.2438217893, 5761158.404815419]]}, "properties": {"id": "42437-42438", "from": "5817935512", "to": "5817935514", "length_m": 940.0279112776402, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755726.2438217893, 5761158.404815419], [754820.8352246886, 5761033.916551041]]}, "properties": {"id": "42439-42440", "from": "5817935514", "to": "5857617066", "length_m": 913.9268437015166, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754820.8352246886, 5761033.916551041], [754571.403238252, 5760999.664243276]]}, "properties": {"id": "42441-42442", "from": "5857617066", "to": "917801313", "length_m": 251.77278986344697, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836781.3263190612, 5805958.20948418], [836710.2592961313, 5805984.0200977735]]}, "properties": {"id": "42443-42444-42445", "from": "254237440", "to": "254237557", "length_m": 75.6278869176197, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767165.4545739577, 5737728.18148085], [767152.8939166949, 5737783.626122977]]}, "properties": {"id": "42446-42448-42450", "from": "831202233", "to": "524150646", "length_m": 56.965014867355166, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767152.8939166949, 5737783.626122977], [767165.4545739577, 5737728.18148085]]}, "properties": {"id": "42451-42449-42447", "from": "524150646", "to": "831202233", "length_m": 56.965014867355166, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767152.8939166949, 5737783.626122977], [767120.4283738285, 5737920.617263763]]}, "properties": {"id": "42452-42454", "from": "524150646", "to": "524150681", "length_m": 140.9031934958654, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767120.4283738285, 5737920.617263763], [767152.8939166949, 5737783.626122977]]}, "properties": {"id": "42455-42453", "from": "524150681", "to": "524150646", "length_m": 140.9031934958654, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746346.6726443688, 5757840.936954881], [747435.497749371, 5757935.0659528235]]}, "properties": {"id": "42461-42459-42457-53506", "from": "5817973355", "to": "917801348", "length_m": 1094.4072551505833, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746346.6726443688, 5757840.936954881], [745591.5732513149, 5757717.895747365]]}, "properties": {"id": "42462-42464-42466-42468-42470-42472", "from": "5817973355", "to": "5817972249", "length_m": 776.5352786559179, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777861.8993602337, 5762696.311845656], [777862.2408625397, 5762418.836563621]]}, "properties": {"id": "4247-4245-4243-4241-4239-4237-4235", "from": "475575492", "to": "475483063", "length_m": 301.08170057475945, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745591.5732513149, 5757717.895747365], [746346.6726443688, 5757840.936954881]]}, "properties": {"id": "42473-42471-42469-42467-42465-42463", "from": "5817972249", "to": "5817973355", "length_m": 776.5352786559179, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745591.5732513149, 5757717.895747365], [744903.2775491704, 5757555.890105748]]}, "properties": {"id": "42474-42476", "from": "5817972249", "to": "5817972248", "length_m": 707.1045186365697, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744903.2775491704, 5757555.890105748], [745591.5732513149, 5757717.895747365]]}, "properties": {"id": "42477-42475", "from": "5817972248", "to": "5817972249", "length_m": 707.1045186365697, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744903.2775491704, 5757555.890105748], [743889.5292104622, 5757317.1884183055]]}, "properties": {"id": "42478-42480-42482", "from": "5817972248", "to": "5817972245", "length_m": 1041.5989879682324, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758860.2912084355, 5729660.372267379], [758855.4237767936, 5729683.640933417]]}, "properties": {"id": "4248", "from": "832509099", "to": "832509672", "length_m": 23.77230972725366, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743889.5292104622, 5757317.1884183055], [744903.2775491704, 5757555.890105748]]}, "properties": {"id": "42483-42481-42479", "from": "5817972245", "to": "5817972248", "length_m": 1041.5989879682324, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743889.5292104622, 5757317.1884183055], [743005.832982553, 5757102.647225298]]}, "properties": {"id": "42484-42486-42488", "from": "5817972245", "to": "52483812", "length_m": 909.851154332722, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743005.832982553, 5757102.647225298], [743889.5292104622, 5757317.1884183055]]}, "properties": {"id": "42489-42487-42485", "from": "52483812", "to": "5817972245", "length_m": 909.851154332722, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758650.4612396864, 5730884.403896867], [758724.0584125813, 5730985.927433611]]}, "properties": {"id": "4249-4251-4253-4255-4257-4259", "from": "832508748", "to": "832507762", "length_m": 125.6812884292638, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743005.832982553, 5757102.647225298], [741985.6277864338, 5757158.39262689]]}, "properties": {"id": "42490-42492-42494-42496-42498-42500-42502-42504", "from": "52483812", "to": "849464123", "length_m": 1029.690852679058, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741985.6277864338, 5757158.39262689], [743005.832982553, 5757102.647225298]]}, "properties": {"id": "42505-42503-42501-42499-42497-42495-42493-42491", "from": "849464123", "to": "52483812", "length_m": 1029.690852679058, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741985.6277864338, 5757158.39262689], [741469.4340837556, 5757089.836376441]]}, "properties": {"id": "42506-42508-42510-42512-42514-42516", "from": "849464123", "to": "2406598028", "length_m": 525.3471585425625, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741469.4340837556, 5757089.836376441], [741985.6277864338, 5757158.39262689]]}, "properties": {"id": "42517-42515-42513-42511-42509-42507", "from": "2406598028", "to": "849464123", "length_m": 525.3471585425625, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741469.4340837556, 5757089.836376441], [738199.9323100393, 5756095.983260862]]}, "properties": {"id": "42518-42520-42522-42524-42526", "from": "2406598028", "to": "5527572140", "length_m": 3512.4787039758303, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738199.9323100393, 5756095.983260862], [741469.4340837556, 5757089.836376441]]}, "properties": {"id": "42527-42525-42523-42521-42519", "from": "5527572140", "to": "2406598028", "length_m": 3512.4787039758303, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738199.9323100393, 5756095.983260862], [737540.9369966188, 5756098.058499587]]}, "properties": {"id": "42528-42530-42532-42534", "from": "5527572140", "to": "5527572150", "length_m": 554.8618326965161, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737540.9369966188, 5756098.058499587], [738199.9323100393, 5756095.983260862]]}, "properties": {"id": "42535-42533-42531-42529", "from": "5527572150", "to": "5527572140", "length_m": 554.8618326965161, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737540.9369966188, 5756098.058499587], [736887.33429344, 5756088.156553067]]}, "properties": {"id": "42536-42538", "from": "5527572150", "to": "52483802", "length_m": 653.901524402184, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736887.33429344, 5756088.156553067], [737540.9369966188, 5756098.058499587]]}, "properties": {"id": "42539-42537", "from": "52483802", "to": "5527572150", "length_m": 653.901524402184, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736887.33429344, 5756088.156553067], [735875.4761824238, 5756103.582691009]]}, "properties": {"id": "42540", "from": "52483802", "to": "632016249", "length_m": 1011.9756914976965, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735875.4761824238, 5756103.582691009], [736887.33429344, 5756088.156553067]]}, "properties": {"id": "42541", "from": "632016249", "to": "52483802", "length_m": 1011.9756914976965, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735875.4761824238, 5756103.582691009], [734614.534308923, 5756162.291124753]]}, "properties": {"id": "42542-42544-42546-42548-42550", "from": "632016249", "to": "52483800", "length_m": 1263.1292265497407, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734614.534308923, 5756162.291124753], [735875.4761824238, 5756103.582691009]]}, "properties": {"id": "42551-42549-42547-42545-42543", "from": "52483800", "to": "632016249", "length_m": 1263.1292265497407, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734614.534308923, 5756162.291124753], [733809.9409300298, 5756194.726653259]]}, "properties": {"id": "42552", "from": "52483800", "to": "52483799", "length_m": 805.2468984437115, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733809.9409300298, 5756194.726653259], [734614.534308923, 5756162.291124753]]}, "properties": {"id": "42553", "from": "52483799", "to": "52483800", "length_m": 805.2468984437115, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733809.9409300298, 5756194.726653259], [733079.5822071233, 5756329.608552338]]}, "properties": {"id": "42554-42556-42558-42560-42562-42564-42566", "from": "52483799", "to": "632016247", "length_m": 747.6005943403082, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733079.5822071233, 5756329.608552338], [733809.9409300298, 5756194.726653259]]}, "properties": {"id": "42567-42565-42563-42561-42559-42557-42555", "from": "632016247", "to": "52483799", "length_m": 747.6005943403082, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733079.5822071233, 5756329.608552338], [732180.6411031487, 5756144.913985684]]}, "properties": {"id": "42568-42570-42572-42574-42576-42578-42580", "from": "632016247", "to": "1907999050", "length_m": 927.727348862306, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732180.6411031487, 5756144.913985684], [733079.5822071233, 5756329.608552338]]}, "properties": {"id": "42581-42579-42577-42575-42573-42571-42569", "from": "1907999050", "to": "632016247", "length_m": 927.727348862306, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732180.6411031487, 5756144.913985684], [731363.1611096284, 5755750.263921547]]}, "properties": {"id": "42582-42584-42586-42588-42590-42592-42594", "from": "1907999050", "to": "632016244", "length_m": 908.3321922764254, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731363.1611096284, 5755750.263921547], [732180.6411031487, 5756144.913985684]]}, "properties": {"id": "42595-42593-42591-42589-42587-42585-42583", "from": "632016244", "to": "1907999050", "length_m": 908.3321922764254, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731363.1611096284, 5755750.263921547], [730733.5794099404, 5755547.117734688]]}, "properties": {"id": "42596-42598", "from": "632016244", "to": "632016243", "length_m": 661.5738582589975, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730733.5794099404, 5755547.117734688], [731363.1611096284, 5755750.263921547]]}, "properties": {"id": "42599-42597", "from": "632016243", "to": "632016244", "length_m": 661.5738582589975, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758724.0584125813, 5730985.927433611], [758650.4612396864, 5730884.403896867]]}, "properties": {"id": "4260-4258-4256-4254-4252-4250", "from": "832507762", "to": "832508748", "length_m": 125.6812884292638, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730733.5794099404, 5755547.117734688], [730093.1107155936, 5755152.640818503]]}, "properties": {"id": "42600-42602-42604-42606-42608-42610-42612", "from": "632016243", "to": "52483789", "length_m": 755.3586650125981, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758724.0584125813, 5730985.927433611], [758650.4612396864, 5730884.403896867]]}, "properties": {"id": "4261-4263-4265-4267-4269-4271-4273-4275-4277", "from": "832507762", "to": "832508748", "length_m": 177.37447971068013, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730093.1107155936, 5755152.640818503], [730733.5794099404, 5755547.117734688]]}, "properties": {"id": "42613-42611-42609-42607-42605-42603-42601", "from": "52483789", "to": "632016243", "length_m": 755.3586650125981, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730093.1107155936, 5755152.640818503], [729606.6773100153, 5754820.493076938]]}, "properties": {"id": "42614-42616-42618", "from": "52483789", "to": "1228824820", "length_m": 589.0284561310989, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729606.6773100153, 5754820.493076938], [730093.1107155936, 5755152.640818503]]}, "properties": {"id": "42619-42617-42615", "from": "1228824820", "to": "52483789", "length_m": 589.0284561310989, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729606.6773100153, 5754820.493076938], [728921.9208323327, 5754134.809457954]]}, "properties": {"id": "42620-42622-42624-42626-42628-42630-42632-42634-42636-42638-42640-42642-42644-42646", "from": "1228824820", "to": "632016240", "length_m": 984.6868700094395, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728921.9208323327, 5754134.809457954], [729606.6773100153, 5754820.493076938]]}, "properties": {"id": "42647-42645-42643-42641-42639-42637-42635-42633-42631-42629-42627-42625-42623-42621", "from": "632016240", "to": "1228824820", "length_m": 984.6868700094395, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728921.9208323327, 5754134.809457954], [728643.7497330616, 5753886.588303092]]}, "properties": {"id": "42648-42650-42652-42654-42656-42658-42660-42662-42664-42666-42668-42670", "from": "632016240", "to": "632016237", "length_m": 621.6013782750094, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728643.7497330616, 5753886.588303092], [728921.9208323327, 5754134.809457954]]}, "properties": {"id": "42671-42669-42667-42665-42663-42661-42659-42657-42655-42653-42651-42649", "from": "632016237", "to": "632016240", "length_m": 621.6013782750094, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728643.7497330616, 5753886.588303092], [727909.4322011643, 5753671.369045679]]}, "properties": {"id": "42672-42674-42676-54927", "from": "632016237", "to": "632016236", "length_m": 687.4861186585008, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783128.2125461942, 5781344.609063601], [783896.9249654983, 5780492.493044929]]}, "properties": {"id": "42680-42682-22051-22017-22019-22021-22023-22025", "from": "60303861", "to": "318039525", "length_m": 1147.6637183168166, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836600.5509090135, 5806818.927509493], [836576.9454973427, 5806844.269422089]]}, "properties": {"id": "42684-42685", "from": "36021205", "to": "288441250", "length_m": 35.1762358415892, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836576.9454973427, 5806844.269422089], [836191.3958440882, 5807406.581360677]]}, "properties": {"id": "42686-42687-42688-42689-42690", "from": "288441250", "to": "462039241", "length_m": 681.8122622253765, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836710.2592961313, 5805984.0200977735], [836783.0939073141, 5805978.508341422]]}, "properties": {"id": "42691-42692-42693-42694-42695", "from": "254237557", "to": "254237430", "length_m": 73.72189229909486, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820474.2316237655, 5796361.8009912735], [820998.2427599189, 5796566.418514031]]}, "properties": {"id": "42696-42697", "from": "253367488", "to": "253367484", "length_m": 562.5557622795102, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820998.2427599189, 5796566.418514031], [821475.9648535864, 5796746.552351841]]}, "properties": {"id": "42698", "from": "253367484", "to": "204454011", "length_m": 510.5551834119446, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[732578.6967159661, 5708556.366793395], [733243.2513206275, 5709167.415690361]]}, "properties": {"id": "42720-42718-42716-42714-42712-42710-42708-42706-42704-42702-42700-46683", "from": "2882838082", "to": "863352664", "length_m": 905.6167357348372, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753356.5491437541, 5829531.423721744], [752446.6511977168, 5830083.313400341]]}, "properties": {"id": "42730-42728-21510-21508-21506-21504-43139-43137-43135-43133-43131", "from": "2744576182", "to": "1417428774", "length_m": 1100.438246776467, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781447.8568103745, 5745831.013259125], [781917.1993076918, 5746566.624991521]]}, "properties": {"id": "42731-42733-42735-42737-42739-42741-42743-42745-42747-42749-42751-42753-42755-42757-42759-42761-42763-42765-42767-42769-42771-42773", "from": "3513952454", "to": "3506304542", "length_m": 1020.4586295133076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781917.1993076918, 5746566.624991521], [781447.8568103745, 5745831.013259125]]}, "properties": {"id": "42774-42772-42770-42768-42766-42764-42762-42760-42758-42756-42754-42752-42750-42748-42746-42744-42742-42740-42738-42736-42734-42732", "from": "3506304542", "to": "3513952454", "length_m": 1020.4586295133076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781917.1993076918, 5746566.624991521], [782396.196449911, 5747030.671076858]]}, "properties": {"id": "42775-42777-42779-42781-42783-42785-42787-42789-42791-42793-42795-42797-42799-42801-42803-42805", "from": "3506304542", "to": "5404632016", "length_m": 770.6811395748608, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758650.4612396864, 5730884.403896867], [758724.0584125813, 5730985.927433611]]}, "properties": {"id": "4278-4276-4274-4272-4270-4268-4266-4264-4262", "from": "832508748", "to": "832507762", "length_m": 177.37447971068013, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759230.5628637318, 5730424.545810781], [759221.9790320438, 5730417.379132754]]}, "properties": {"id": "4279-4280-4281-4282", "from": "832507845", "to": "2220026250", "length_m": 11.896780610567228, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782396.196449911, 5747030.671076858], [781917.1993076918, 5746566.624991521]]}, "properties": {"id": "42806-42804-42802-42800-42798-42796-42794-42792-42790-42788-42786-42784-42782-42780-42778-42776", "from": "5404632016", "to": "3506304542", "length_m": 770.6811395748608, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782396.196449911, 5747030.671076858], [782545.3306179636, 5747835.754034548]]}, "properties": {"id": "42807-42809-42811-42813-42815-42817-39344-39342-39340-39338", "from": "5404632016", "to": "513380037", "length_m": 842.3173879343396, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750252.0501551501, 5832001.604038926], [750426.0009828111, 5831462.572699441]]}, "properties": {"id": "42819-42821-42823-42825", "from": "2744576173", "to": "1416648943", "length_m": 567.459099688439, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750426.0009828111, 5831462.572699441], [750252.0501551501, 5832001.604038926]]}, "properties": {"id": "42826-42824-42822-42820", "from": "1416648943", "to": "2744576173", "length_m": 567.459099688439, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750426.0009828111, 5831462.572699441], [750727.6214979319, 5830841.065325098]]}, "properties": {"id": "42827-42829-42831-42833-42835-42837-42839", "from": "1416648943", "to": "1416377831", "length_m": 691.0085752462762, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759221.9790320438, 5730417.379132754], [759216.131323684, 5730417.901745824]]}, "properties": {"id": "4283-4284", "from": "2220026250", "to": "1724462873", "length_m": 5.987804827635797, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750727.6214979319, 5830841.065325098], [750426.0009828111, 5831462.572699441]]}, "properties": {"id": "42840-42838-42836-42834-42832-42830-42828", "from": "1416377831", "to": "1416648943", "length_m": 691.0085752462762, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750727.6214979319, 5830841.065325098], [751196.2012842455, 5830519.351297021]]}, "properties": {"id": "42841-42843-42845-42847-42849-42851", "from": "1416377831", "to": "1416644873", "length_m": 574.4345011899792, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759216.131323684, 5730417.901745824], [759209.8687168894, 5730427.7156579355]]}, "properties": {"id": "4285-4286-4287", "from": "1724462873", "to": "1724462893", "length_m": 12.25410391065879, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751196.2012842455, 5830519.351297021], [750727.6214979319, 5830841.065325098]]}, "properties": {"id": "42852-42850-42848-42846-42844-42842", "from": "1416644873", "to": "1416377831", "length_m": 574.4345011899792, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751196.2012842455, 5830519.351297021], [751951.695056011, 5830337.313603379]]}, "properties": {"id": "42853-42855-42857-42859-42861-42863-42865-42867-42869-42871-42873-42875-42877", "from": "1416644873", "to": "2744577931", "length_m": 790.3017447878873, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751951.695056011, 5830337.313603379], [751196.2012842455, 5830519.351297021]]}, "properties": {"id": "42878-42876-42874-42872-42870-42868-42866-42864-42862-42860-42858-42856-42854", "from": "2744577931", "to": "1416644873", "length_m": 790.3017447878873, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754170.3684243638, 5829152.739896544], [754382.7155687191, 5829089.422095619]]}, "properties": {"id": "42879-42881-42883-42885", "from": "2744576180", "to": "3455069872", "length_m": 221.59565417209504, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759209.8687168894, 5730427.7156579355], [759210.6545088034, 5730431.501375545]]}, "properties": {"id": "4288", "from": "1724462893", "to": "832509387", "length_m": 3.866410054537667, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754382.7155687191, 5829089.422095619], [754170.3684243638, 5829152.739896544]]}, "properties": {"id": "42886-42884-42882-42880", "from": "3455069872", "to": "2744576180", "length_m": 221.59565417209504, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759210.6545088034, 5730431.501375545], [759221.1452632047, 5730437.995225998]]}, "properties": {"id": "4289-4290-4291", "from": "832509387", "to": "832508970", "length_m": 13.075081002366833, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790557.5196795283, 5751429.06014986], [790603.097072388, 5751295.56526532]]}, "properties": {"id": "42907-42909-42911-42913-42915-42917", "from": "234686648", "to": "509915708", "length_m": 142.99563717391595, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790603.097072388, 5751295.56526532], [790557.5196795283, 5751429.06014986]]}, "properties": {"id": "42918-42916-42914-42912-42910-42908", "from": "509915708", "to": "234686648", "length_m": 142.99563717391595, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759221.1452632047, 5730437.995225998], [759230.5628637318, 5730424.545810781]]}, "properties": {"id": "4292-4293-4294-4295-4296-4297-4298", "from": "832508970", "to": "832507845", "length_m": 18.748256909934746, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824155.348343109, 5797773.316452252], [824965.4302682714, 5798176.314459909]]}, "properties": {"id": "42920-30463-30464-30465-30466", "from": "38715669", "to": "29319691", "length_m": 912.1760207576962, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740918.161686868, 5712265.072002549], [741421.8253068452, 5712610.399467063]]}, "properties": {"id": "42930-42928-42926-42924-42922-43258-45334-45332-45330-45328-45326-45324-45322-45320-45318-45316-45314-45312-45310-45308-45306-45304-45302-45300-45298-45296-45294-45292-45290-45288-45286-45284-45282-45280", "from": "2880981766", "to": "2880981761", "length_m": 734.2703500351295, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740918.161686868, 5712265.072002549], [740443.1082219232, 5712342.713186973]]}, "properties": {"id": "42931-42933-42935-42937-42939-42941-42943-42945-42947-42949-42951-42953-42955-42957-42959-42961-42963-42965-42967-42969-42971-42973-42975", "from": "2880981766", "to": "2880988263", "length_m": 528.3666762031746, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740443.1082219232, 5712342.713186973], [740918.161686868, 5712265.072002549]]}, "properties": {"id": "42976-42974-42972-42970-42968-42966-42964-42962-42960-42958-42956-42954-42952-42950-42948-42946-42944-42942-42940-42938-42936-42934-42932", "from": "2880988263", "to": "2880981766", "length_m": 528.3666762031746, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740443.1082219232, 5712342.713186973], [739983.0077384823, 5712195.507973968]]}, "properties": {"id": "42977-42979-42981-42983-42985-42987-42989-42991-42993-42995-42997-42999-43001-43003-43005-46595-46597-46599-45152-45154-45156-45158-45160-45162-45164-45166-45168-45170-45172", "from": "2880988263", "to": "2881089034", "length_m": 584.3582370880772, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759780.6812726057, 5729526.971653542], [759678.6187314291, 5729408.0360867875]]}, "properties": {"id": "4299-4301-4303", "from": "250291479", "to": "832509430", "length_m": 156.88501173089833, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781447.8568103745, 5745831.013259125], [781447.2845789031, 5745796.136665994]]}, "properties": {"id": "43007-43009-43011-43013-43015", "from": "3513952454", "to": "3506304475", "length_m": 97.74930072251811, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781447.2845789031, 5745796.136665994], [781447.8568103745, 5745831.013259125]]}, "properties": {"id": "43016-43014-43012-43010-43008", "from": "3506304475", "to": "3513952454", "length_m": 97.74930072251811, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753356.5491437541, 5829531.423721744], [754170.3684243638, 5829152.739896544]]}, "properties": {"id": "43017-43019-43021-43023-43025-43027-43029-43031-43033-25619-25621-25623-25625-25627-25629-25631", "from": "2744576182", "to": "2744576180", "length_m": 915.2824757367221, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[805757.2233619791, 5824772.925791279], [806057.9580069083, 5823771.403118204]]}, "properties": {"id": "43039-43040-43041-43042-43043-43044-43045-43046-43047-43048-43049-43050-43051-43052-43053-43054-43055-43056-43057-43058-43059-43060-43061-43062-43063", "from": "1340916883", "to": "316884389", "length_m": 1090.97588363279, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759678.6187314291, 5729408.0360867875], [759780.6812726057, 5729526.971653542]]}, "properties": {"id": "4304-4302-4300", "from": "832509430", "to": "250291479", "length_m": 156.88501173089833, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759678.6187314291, 5729408.0360867875], [759598.3366802657, 5729316.204781777]]}, "properties": {"id": "4305", "from": "832509430", "to": "4873863339", "length_m": 121.97621190240152, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759598.3366802657, 5729316.204781777], [759678.6187314291, 5729408.0360867875]]}, "properties": {"id": "4306", "from": "4873863339", "to": "832509430", "length_m": 121.97621190240152, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[806057.9580069083, 5823771.403118204], [806549.8341492647, 5823494.115878223]]}, "properties": {"id": "43064-43065-43066-43067-43068-43069-43070-43071-43072", "from": "316884389", "to": "316884374", "length_m": 567.0368638870683, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[806549.8341492647, 5823494.115878223], [807236.0581496053, 5823371.602056822]]}, "properties": {"id": "43073-43074-43075-43076-43077-43078-43079-49931-49932-49909-49910", "from": "316884374", "to": "716679984", "length_m": 700.3985788767819, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804371.1235121388, 5825616.445402962], [803815.8327129863, 5825842.897954297]]}, "properties": {"id": "43082-43083-43084-43085-43086-43087-43088-43089-43090-43091-43092-43093-43094", "from": "317106766", "to": "317106800", "length_m": 603.4809655848402, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760396.3773019981, 5732564.547661101], [760480.2739244185, 5732530.865092494]]}, "properties": {"id": "431-433-435", "from": "810035228", "to": "832508805", "length_m": 90.97543383094839, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759714.1797208996, 5731440.725538207], [759665.0329835998, 5731500.308312076]]}, "properties": {"id": "4311-4313-4315", "from": "832510241", "to": "832508908", "length_m": 79.02711553754696, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751951.695056011, 5830337.313603379], [752446.6511977168, 5830083.313400341]]}, "properties": {"id": "43120-43122-43124-43126-43128", "from": "2744577931", "to": "1417428774", "length_m": 556.4781134268037, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752446.6511977168, 5830083.313400341], [751951.695056011, 5830337.313603379]]}, "properties": {"id": "43129-43127-43125-43123-43121", "from": "1417428774", "to": "2744577931", "length_m": 556.4781134268037, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752446.6511977168, 5830083.313400341], [753356.5491437541, 5829531.423721744]]}, "properties": {"id": "43130-43132-43134-43136-43138-21503-21505-21507-21509-42727-42729", "from": "1417428774", "to": "2744576182", "length_m": 1100.438246776467, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[822630.8794209249, 5817932.580765789], [822321.1745488556, 5818180.866706373]]}, "properties": {"id": "43141-43142-43143", "from": "36715542", "to": "786576629", "length_m": 396.95386862729424, "freespeed_mps": 25.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[823568.8159819173, 5797526.027284245], [821478.1218261286, 5796720.074078675]]}, "properties": {"id": "43144-41072-34425-41442", "from": "4780179492", "to": "3924946378", "length_m": 2240.664438321433, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766371.1918535376, 5764434.551501552], [766400.7768500876, 5764446.122915753]]}, "properties": {"id": "43150", "from": "2379163053", "to": "2379163057", "length_m": 31.767430523263734, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766400.7768500876, 5764446.122915753], [767600.8126764486, 5764915.614154843]]}, "properties": {"id": "43151", "from": "2379163057", "to": "4908350451", "length_m": 1288.6069997039847, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767600.8126764486, 5764915.614154843], [768163.6544033239, 5765174.785136898]]}, "properties": {"id": "43152-43153-43154-43155-43156", "from": "4908350451", "to": "2373877430", "length_m": 619.8405409536399, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768163.6544033239, 5765174.785136898], [768196.8886301962, 5765188.640831276]]}, "properties": {"id": "43157", "from": "2373877430", "to": "4908350449", "length_m": 36.00686175122711, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768196.8886301962, 5765188.640831276], [768768.7134820923, 5765426.408016327]]}, "properties": {"id": "43158-43159", "from": "4908350449", "to": "2373877428", "length_m": 619.2880336212882, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759665.0329835998, 5731500.308312076], [759714.1797208996, 5731440.725538207]]}, "properties": {"id": "4316-4314-4312", "from": "832508908", "to": "832510241", "length_m": 79.02711553754696, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768768.7134820923, 5765426.408016327], [769341.1527695141, 5765664.128467548]]}, "properties": {"id": "43160", "from": "2373877428", "to": "2379163023", "length_m": 619.8368726471697, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769341.1527695141, 5765664.128467548], [769381.2412552368, 5765679.396279756]]}, "properties": {"id": "43161", "from": "2379163023", "to": "3187977321", "length_m": 42.89746809931338, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769381.2412552368, 5765679.396279756], [770134.5849876702, 5765884.900392742]]}, "properties": {"id": "43162-43163-43164-43165-43166-43167", "from": "3187977321", "to": "3187977322", "length_m": 782.6351851476629, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770134.5849876702, 5765884.900392742], [771073.8436922983, 5765912.907853914]]}, "properties": {"id": "43168-43169-43170-43171-43172-43173", "from": "3187977322", "to": "2379163081", "length_m": 940.8686241293968, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771073.8436922983, 5765912.907853914], [771104.1563538245, 5765912.538000349]]}, "properties": {"id": "43174", "from": "2379163081", "to": "2379163082", "length_m": 30.31491773129263, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771104.1563538245, 5765912.538000349], [772745.6031197396, 5765877.620695917]]}, "properties": {"id": "43175", "from": "2379163082", "to": "888208920", "length_m": 1641.8181057039383, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772745.6031197396, 5765877.620695917], [773303.9555081286, 5765849.924608632]]}, "properties": {"id": "43176-43177-43178-43179-43180", "from": "888208920", "to": "3187946128", "length_m": 559.1467058627773, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773303.9555081286, 5765849.924608632], [774351.6914062819, 5765833.389618133]]}, "properties": {"id": "43181", "from": "3187946128", "to": "2379273323", "length_m": 1047.8663623928437, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774351.6914062819, 5765833.389618133], [774390.9996591997, 5765834.291885143]]}, "properties": {"id": "43182", "from": "2379273323", "to": "2379273322", "length_m": 39.318606594565786, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774390.9996591997, 5765834.291885143], [775238.2100691521, 5765829.354679465]]}, "properties": {"id": "43183", "from": "2379273322", "to": "3187946412", "length_m": 847.2247940025964, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775238.2100691521, 5765829.354679465], [776409.7207889357, 5765809.114538183]]}, "properties": {"id": "43184-43185", "from": "3187946412", "to": "2373877401", "length_m": 1171.6875703381322, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776409.7207889357, 5765809.114538183], [777294.8701693972, 5765825.593597874]]}, "properties": {"id": "43186-43187-43188-43189-43190-43191", "from": "2373877401", "to": "3187949067", "length_m": 885.8209299632855, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750853.7968742773, 5836403.544162882], [750852.0045498615, 5836223.135976218]]}, "properties": {"id": "4319-4320-4321-4322-4323-4324-4325-4326", "from": "363993770", "to": "3205832057", "length_m": 180.65130060678428, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777294.8701693972, 5765825.593597874], [777901.2876068528, 5765814.4597937055]]}, "properties": {"id": "43192", "from": "3187949067", "to": "4908350431", "length_m": 606.5196355813083, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777901.2876068528, 5765814.4597937055], [778479.6260310685, 5765821.959668274]]}, "properties": {"id": "43193-43194-43195-43196-43197", "from": "4908350431", "to": "2379162971", "length_m": 578.6031070677743, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778479.6260310685, 5765821.959668274], [778516.1721591211, 5765823.281483502]]}, "properties": {"id": "43198", "from": "2379162971", "to": "2379162969", "length_m": 36.57002410261693, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778516.1721591211, 5765823.281483502], [780087.2302282434, 5765802.511455245]]}, "properties": {"id": "43199-43200-43201-43202-43203-43204-43205-43206", "from": "2379162969", "to": "3248775629", "length_m": 1571.5768335028424, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780087.2302282434, 5765802.511455245], [780495.8443364865, 5765805.132461635]]}, "properties": {"id": "43207", "from": "3248775629", "to": "2379162951", "length_m": 408.62251321743423, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780495.8443364865, 5765805.132461635], [780538.4343577591, 5765805.224667833]]}, "properties": {"id": "43208", "from": "2379162951", "to": "2379162950", "length_m": 42.59012097423826, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780538.4343577591, 5765805.224667833], [781750.579010268, 5765752.52337172]]}, "properties": {"id": "43209-43210-43211-43212-43213-35650", "from": "2379162950", "to": "177784989", "length_m": 1213.9493649670117, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820595.548566944, 5796383.731440799], [820116.1238164975, 5796200.982299904]]}, "properties": {"id": "43214", "from": "4780179491", "to": "38714412", "length_m": 513.0743969814469, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772036.196866162, 5779218.647217362], [772644.1412263517, 5779098.736049196]]}, "properties": {"id": "43220-43218-43216-8487-8485-8483-8481", "from": "177850205", "to": "177850204", "length_m": 621.1996801634087, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772036.196866162, 5779218.647217362], [771532.6934100472, 5779121.938700316]]}, "properties": {"id": "43221-43223-43225", "from": "177850205", "to": "177850208", "length_m": 513.288777007263, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771532.6934100472, 5779121.938700316], [772036.196866162, 5779218.647217362]]}, "properties": {"id": "43226-43224-43222", "from": "177850208", "to": "177850205", "length_m": 513.288777007263, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771532.6934100472, 5779121.938700316], [770413.4662941794, 5778941.907341943]]}, "properties": {"id": "43227-43229-43231-43233", "from": "177850208", "to": "559373260", "length_m": 1133.6465050263314, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770413.4662941794, 5778941.907341943], [771532.6934100472, 5779121.938700316]]}, "properties": {"id": "43234-43232-43230-43228", "from": "559373260", "to": "177850208", "length_m": 1133.6465050263314, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770413.4662941794, 5778941.907341943], [769423.341876501, 5778782.430530506]]}, "properties": {"id": "43235", "from": "559373260", "to": "265711394", "length_m": 1002.8854426160553, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769423.341876501, 5778782.430530506], [770413.4662941794, 5778941.907341943]]}, "properties": {"id": "43236", "from": "265711394", "to": "559373260", "length_m": 1002.8854426160553, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769423.341876501, 5778782.430530506], [768916.9902448782, 5778716.505196447]]}, "properties": {"id": "43237-43239-43241-43243-43245", "from": "265711394", "to": "1952250930", "length_m": 510.96177757078965, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768916.9902448782, 5778716.505196447], [769423.341876501, 5778782.430530506]]}, "properties": {"id": "43246-43244-43242-43240-43238", "from": "1952250930", "to": "265711394", "length_m": 510.96177757078965, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768916.9902448782, 5778716.505196447], [768386.1917089843, 5778640.03339154]]}, "properties": {"id": "43247-43249-43251-43253-35425-35791", "from": "1952250930", "to": "364627912", "length_m": 537.4305098088897, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791118.7090190952, 5758670.261534957], [791315.1280038175, 5759752.953185669]]}, "properties": {"id": "43255-44414-44415-44416", "from": "539387489", "to": "469074032", "length_m": 1100.366495487927, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791137.8856331302, 5758683.3083900465], [790857.7921194003, 5757180.175598641]]}, "properties": {"id": "43269", "from": "539387491", "to": "270450949", "length_m": 1529.0063971371046, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750852.0045498615, 5836223.135976218], [750833.1974461966, 5835036.102077282]]}, "properties": {"id": "4327-4328-4329-4330-4331-4332-4333-4334", "from": "3205832057", "to": "363996457", "length_m": 1187.1925729447048, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790857.7921194003, 5757180.175598641], [790761.2899501999, 5756670.79257568]]}, "properties": {"id": "43270", "from": "270450949", "to": "3184022802", "length_m": 518.4435672662441, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790761.2899501999, 5756670.79257568], [790566.8349170256, 5755609.992154668]]}, "properties": {"id": "43271-43272-43273", "from": "3184022802", "to": "512196735", "length_m": 1090.2150604967514, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834526.9389714438, 5812825.268657781], [834515.9064260232, 5812805.091000039]]}, "properties": {"id": "43278", "from": "268172128", "to": "321682639", "length_m": 22.996846015942612, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834515.9064260232, 5812805.091000039], [834526.9389714438, 5812825.268657781]]}, "properties": {"id": "43279", "from": "321682639", "to": "268172128", "length_m": 22.996846015942612, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835104.65113266, 5812439.157621052], [835101.3743438013, 5812421.333348315]]}, "properties": {"id": "43280", "from": "2044984878", "to": "36026387", "length_m": 18.122970042192364, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835101.3743438013, 5812421.333348315], [835104.65113266, 5812439.157621052]]}, "properties": {"id": "43281", "from": "36026387", "to": "2044984878", "length_m": 18.122970042192364, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766601.1106787845, 5744654.099732644], [766357.5762480549, 5745273.167884062]]}, "properties": {"id": "43298-43300-43302-43304-43306-43308-43310", "from": "371470633", "to": "371470799", "length_m": 750.7321062724916, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766357.5762480549, 5745273.167884062], [766601.1106787845, 5744654.099732644]]}, "properties": {"id": "43311-43309-43307-43305-43303-43301-43299", "from": "371470799", "to": "371470633", "length_m": 750.7321062724916, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766357.5762480549, 5745273.167884062], [766826.8812192783, 5745781.875319836]]}, "properties": {"id": "43312-43314-43316-43318-43320-43322-43324", "from": "371470799", "to": "371470949", "length_m": 724.582898410348, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766826.8812192783, 5745781.875319836], [766357.5762480549, 5745273.167884062]]}, "properties": {"id": "43325-43323-43321-43319-43317-43315-43313", "from": "371470949", "to": "371470799", "length_m": 724.582898410348, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766826.8812192783, 5745781.875319836], [767268.9061113277, 5746259.219318061]]}, "properties": {"id": "43326-43328-43330-43332-43334-43336-43338-43340", "from": "371470949", "to": "371471061", "length_m": 668.5617755370636, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767268.9061113277, 5746259.219318061], [766826.8812192783, 5745781.875319836]]}, "properties": {"id": "43341-43339-43337-43335-43333-43331-43329-43327", "from": "371471061", "to": "371470949", "length_m": 668.5617755370636, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767268.9061113277, 5746259.219318061], [767750.7466917423, 5746512.670335305]]}, "properties": {"id": "43342-43344-43346-43348-43350", "from": "371471061", "to": "371471126", "length_m": 547.439056302555, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767750.7466917423, 5746512.670335305], [767268.9061113277, 5746259.219318061]]}, "properties": {"id": "43351-43349-43347-43345-43343", "from": "371471126", "to": "371471061", "length_m": 547.439056302555, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767750.7466917423, 5746512.670335305], [767535.6475317214, 5746941.394146034]]}, "properties": {"id": "43352-43354-43356-43358-43360-43362-43364-43366-43368-43370-43372", "from": "371471126", "to": "371471334", "length_m": 564.8452011090338, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767535.6475317214, 5746941.394146034], [767750.7466917423, 5746512.670335305]]}, "properties": {"id": "43373-43371-43369-43367-43365-43363-43361-43359-43357-43355-43353", "from": "371471334", "to": "371471126", "length_m": 564.8452011090338, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767535.6475317214, 5746941.394146034], [767367.893270281, 5747762.3632522775]]}, "properties": {"id": "43374-43376-43378-43380-43382-43384-43386-43388-43390-43392-43394-43396-43398-43400-43402-43404-43406-43408-43410-43412-43414-43416", "from": "371471334", "to": "371471856", "length_m": 944.0492150232722, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767367.893270281, 5747762.3632522775], [767535.6475317214, 5746941.394146034]]}, "properties": {"id": "43417-43415-43413-43411-43409-43407-43405-43403-43401-43399-43397-43395-43393-43391-43389-43387-43385-43383-43381-43379-43377-43375", "from": "371471856", "to": "371471334", "length_m": 944.0492150232722, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767367.893270281, 5747762.3632522775], [767392.0672799479, 5748225.490048987]]}, "properties": {"id": "43418-43420-43422-43424-43426-43428-43430-43432", "from": "371471856", "to": "371472146", "length_m": 509.8302428918233, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835307.821926892, 5807842.045648806], [835302.7427748259, 5807820.481024984]]}, "properties": {"id": "4343", "from": "75157210", "to": "75157621", "length_m": 22.15470119477469, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767392.0672799479, 5748225.490048987], [767367.893270281, 5747762.3632522775]]}, "properties": {"id": "43433-43431-43429-43427-43425-43423-43421-43419", "from": "371472146", "to": "371471856", "length_m": 509.8302428918233, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767392.0672799479, 5748225.490048987], [766753.7754181683, 5748914.11253934]]}, "properties": {"id": "43434-43436-43438-43440-43442-43444-43446-43448-43450-43452-43454-43456-43458-43460-43462-43464-43466-43468-43470-43472-43474", "from": "371472146", "to": "371472876", "length_m": 1023.9500764680496, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835188.9749676437, 5807835.598630518], [835192.5650532093, 5807857.212934155]]}, "properties": {"id": "4344", "from": "75158828", "to": "75156602", "length_m": 21.910427542648556, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837016.5401234665, 5810807.141476365], [837038.7703398518, 5810930.525936924]]}, "properties": {"id": "4345", "from": "1843397353", "to": "1843397349", "length_m": 125.37107959818545, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766753.7754181683, 5748914.11253934], [767392.0672799479, 5748225.490048987]]}, "properties": {"id": "43475-43473-43471-43469-43467-43465-43463-43461-43459-43457-43455-43453-43451-43449-43447-43445-43443-43441-43439-43437-43435", "from": "371472876", "to": "371472146", "length_m": 1023.9500764680496, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766753.7754181683, 5748914.11253934], [766244.6997100187, 5749302.0439616265]]}, "properties": {"id": "43476-43478-43480-43482-43484-43486-43488-43490-43492-43494-43496-43498-43500-43502-43504-43506-43508-43510-43512-43514-43516-43518-43520-43522-43524-43526-43528", "from": "371472876", "to": "371473404", "length_m": 949.4876451880131, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766244.6997100187, 5749302.0439616265], [766753.7754181683, 5748914.11253934]]}, "properties": {"id": "43529-43527-43525-43523-43521-43519-43517-43515-43513-43511-43509-43507-43505-43503-43501-43499-43497-43495-43493-43491-43489-43487-43485-43483-43481-43479-43477", "from": "371473404", "to": "371472876", "length_m": 949.4876451880131, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766244.6997100187, 5749302.0439616265], [765708.1550355873, 5749730.14793715]]}, "properties": {"id": "43530-43532-43534-43536-43538-43540-43542-43544-43546", "from": "371473404", "to": "371473550", "length_m": 790.8354306344727, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765708.1550355873, 5749730.14793715], [766244.6997100187, 5749302.0439616265]]}, "properties": {"id": "43547-43545-43543-43541-43539-43537-43535-43533-43531", "from": "371473550", "to": "371473404", "length_m": 790.8354306344727, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765708.1550355873, 5749730.14793715], [765730.4151733072, 5750028.985118815]]}, "properties": {"id": "43548-43550-43552", "from": "371473550", "to": "4434119092", "length_m": 184.89832417385287, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765730.4151733072, 5750028.985118815], [765708.1550355873, 5749730.14793715]]}, "properties": {"id": "43553-43551-43549", "from": "4434119092", "to": "371473550", "length_m": 184.89832417385287, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765730.4151733072, 5750028.985118815], [765480.1960257462, 5750282.043130319]]}, "properties": {"id": "43554-43556-43558-43560-43562-43564-43566-18134", "from": "4434119092", "to": "371398747", "length_m": 377.7827333533667, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833403.5818033325, 5804644.247466371], [833401.5423666255, 5804627.907152027]]}, "properties": {"id": "43568", "from": "253337728", "to": "253337733", "length_m": 16.467093692719207, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[827460.6062905826, 5815467.503595196], [826797.1077799702, 5815652.8507165]]}, "properties": {"id": "43571-43572-43573-43574-43575-19850", "from": "582319452", "to": "582320697", "length_m": 688.9442233532848, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833204.5996059399, 5806490.849760583], [833100.3774562611, 5806021.9121865695]]}, "properties": {"id": "43579-43580-43581-10915-10916-10942-10943-10944", "from": "976462468", "to": "1763048089", "length_m": 481.60141310221184, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770457.4236053466, 5740342.43425895], [769547.6240616455, 5740712.130750874]]}, "properties": {"id": "43582-43584-43586-43588-43590-43592-43594-43596-43598-43600-43602-43604-43606", "from": "371469354", "to": "524155778", "length_m": 1026.5972564030053, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760480.2739244185, 5732530.865092494], [760396.3773019981, 5732564.547661101]]}, "properties": {"id": "436-434-432", "from": "832508805", "to": "810035228", "length_m": 90.97543383094839, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769547.6240616455, 5740712.130750874], [770457.4236053466, 5740342.43425895]]}, "properties": {"id": "43607-43605-43603-43601-43599-43597-43595-43593-43591-43589-43587-43585-43583", "from": "524155778", "to": "371469354", "length_m": 1026.5972564030053, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769547.6240616455, 5740712.130750874], [768854.8663736314, 5741009.675375287]]}, "properties": {"id": "43608-43610-43612-43614-43616-43618", "from": "524155778", "to": "371469543", "length_m": 765.7759501329336, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768854.8663736314, 5741009.675375287], [769547.6240616455, 5740712.130750874]]}, "properties": {"id": "43619-43617-43615-43613-43611-43609", "from": "371469543", "to": "524155778", "length_m": 765.7759501329336, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768854.8663736314, 5741009.675375287], [768376.6877796019, 5741544.459015079]]}, "properties": {"id": "43620-43622-43624-43626-43628-43630-43632-43634-43636", "from": "371469543", "to": "845974518", "length_m": 763.8232028762902, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837047.5995407479, 5810929.341182457], [837026.8393172221, 5810804.36196441]]}, "properties": {"id": "4363", "from": "1843397346", "to": "309595876", "length_m": 126.69171953304419, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768376.6877796019, 5741544.459015079], [768854.8663736314, 5741009.675375287]]}, "properties": {"id": "43637-43635-43633-43631-43629-43627-43625-43623-43621", "from": "845974518", "to": "371469543", "length_m": 763.8232028762902, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768376.6877796019, 5741544.459015079], [767875.7539795326, 5741736.428001705]]}, "properties": {"id": "43638-43640-43642-43644-43646-43648-43650-43652-43654-43656-43658", "from": "845974518", "to": "527903968", "length_m": 601.7298204991254, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791330.7860614425, 5759750.232831925], [791137.8856331302, 5758683.3083900465]]}, "properties": {"id": "4365-43256", "from": "469074552", "to": "539387491", "length_m": 1084.2290664309473, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767875.7539795326, 5741736.428001705], [768376.6877796019, 5741544.459015079]]}, "properties": {"id": "43659-43657-43655-43653-43651-43649-43647-43645-43643-43641-43639", "from": "527903968", "to": "845974518", "length_m": 601.7298204991254, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836956.9326793435, 5819321.306757279], [836961.9521470134, 5819325.460453972]]}, "properties": {"id": "4366", "from": "1510910487", "to": "1510910441", "length_m": 6.515232239054311, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767875.7539795326, 5741736.428001705], [767176.9845237958, 5742104.942760522]]}, "properties": {"id": "43660-43662-43664-43666-43668-43670-43672-43674-43676", "from": "527903968", "to": "527904157", "length_m": 824.9736381664607, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836961.9521470134, 5819325.460453972], [836956.9326793435, 5819321.306757279]]}, "properties": {"id": "4367", "from": "1510910441", "to": "1510910487", "length_m": 6.515232239054311, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767176.9845237958, 5742104.942760522], [767875.7539795326, 5741736.428001705]]}, "properties": {"id": "43677-43675-43673-43671-43669-43667-43665-43663-43661", "from": "527904157", "to": "527903968", "length_m": 824.9736381664607, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767176.9845237958, 5742104.942760522], [767061.5308504617, 5742637.916249419]]}, "properties": {"id": "43678-43680-43682-43684", "from": "527904157", "to": "371470150", "length_m": 550.2492797485967, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836575.8925919636, 5819792.709718493], [835901.8565466432, 5820213.871171499]]}, "properties": {"id": "4368-4370-37429-37431-37433-37435-37437-37439-37441-37443-37445-37447-37449-37451", "from": "303683073", "to": "1505977546", "length_m": 815.8739034412024, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767061.5308504617, 5742637.916249419], [767176.9845237958, 5742104.942760522]]}, "properties": {"id": "43685-43683-43681-43679", "from": "371470150", "to": "527904157", "length_m": 550.2492797485967, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767061.5308504617, 5742637.916249419], [766910.8222148098, 5743411.728063121]]}, "properties": {"id": "43686-43688-43690-43692-43694", "from": "371470150", "to": "526897787", "length_m": 790.9108946391316, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766910.8222148098, 5743411.728063121], [767061.5308504617, 5742637.916249419]]}, "properties": {"id": "43695-43693-43691-43689-43687", "from": "526897787", "to": "371470150", "length_m": 790.9108946391316, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766910.8222148098, 5743411.728063121], [766772.3849310647, 5744036.016965693]]}, "properties": {"id": "43696-43698-43700-43702-43704-43706-43708", "from": "526897787", "to": "371470403", "length_m": 663.6060923347545, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772518.6030641566, 5838632.931273608], [773550.3132142747, 5837948.551903311]]}, "properties": {"id": "437-438", "from": "35098321", "to": "474050246", "length_m": 1238.6906541411379, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766772.3849310647, 5744036.016965693], [766910.8222148098, 5743411.728063121]]}, "properties": {"id": "43709-43707-43705-43703-43701-43699-43697", "from": "371470403", "to": "526897787", "length_m": 663.6060923347545, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766772.3849310647, 5744036.016965693], [766601.1106787845, 5744654.099732644]]}, "properties": {"id": "43710-43712-43714-43716-43718-43720-43722-43724-43726", "from": "371470403", "to": "371470633", "length_m": 671.5260378387002, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836716.67863132, 5819612.821178509], [836575.8925919636, 5819792.709718493]]}, "properties": {"id": "4372-4373-4374-4375-4376", "from": "716027910", "to": "303683073", "length_m": 229.4276796583276, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766601.1106787845, 5744654.099732644], [766772.3849310647, 5744036.016965693]]}, "properties": {"id": "43727-43725-43723-43721-43719-43717-43715-43713-43711", "from": "371470633", "to": "371470403", "length_m": 671.5260378387002, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788786.9578328016, 5752055.23576251], [788768.916154816, 5752045.9788189735]]}, "properties": {"id": "43728", "from": "512197108", "to": "512197170", "length_m": 20.277897942810657, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770547.421324237, 5738108.150508317], [770538.1063429655, 5738178.11689186]]}, "properties": {"id": "43729-43731-43733-43735-43737", "from": "312996426", "to": "312996425", "length_m": 74.12072232339003, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770538.1063429655, 5738178.11689186], [770547.421324237, 5738108.150508317]]}, "properties": {"id": "43738-43736-43734-43732-43730", "from": "312996425", "to": "312996426", "length_m": 74.12072232339003, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770538.1063429655, 5738178.11689186], [770655.0841481751, 5738363.129867998]]}, "properties": {"id": "43739-43741", "from": "312996425", "to": "336707180", "length_m": 218.89302097194553, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770655.0841481751, 5738363.129867998], [770538.1063429655, 5738178.11689186]]}, "properties": {"id": "43742-43740", "from": "336707180", "to": "312996425", "length_m": 218.89302097194553, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770655.0841481751, 5738363.129867998], [770681.478382991, 5738450.45043996]]}, "properties": {"id": "43743-43745", "from": "336707180", "to": "831202112", "length_m": 91.23683485333413, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770681.478382991, 5738450.45043996], [770655.0841481751, 5738363.129867998]]}, "properties": {"id": "43746-43744", "from": "831202112", "to": "336707180", "length_m": 91.23683485333413, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770681.478382991, 5738450.45043996], [770691.5531745497, 5738488.57085961]]}, "properties": {"id": "43747", "from": "831202112", "to": "3837086153", "length_m": 39.42927613946285, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770691.5531745497, 5738488.57085961], [770681.478382991, 5738450.45043996]]}, "properties": {"id": "43748", "from": "3837086153", "to": "831202112", "length_m": 39.42927613946285, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770691.5531745497, 5738488.57085961], [770707.373388202, 5738556.123265072]]}, "properties": {"id": "43749-43751", "from": "3837086153", "to": "831201852", "length_m": 69.56703325429555, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770707.373388202, 5738556.123265072], [770691.5531745497, 5738488.57085961]]}, "properties": {"id": "43752-43750", "from": "831201852", "to": "3837086153", "length_m": 69.56703325429555, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770707.373388202, 5738556.123265072], [770606.9886794351, 5739073.677119257]]}, "properties": {"id": "43753-21987-21989", "from": "831201852", "to": "312996418", "length_m": 539.7714049234069, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759809.9448591829, 5731415.642285015], [759859.8832544367, 5731374.0553035615]]}, "properties": {"id": "4377-4378-4379", "from": "832509499", "to": "832510157", "length_m": 65.16786340930791, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833614.9826871083, 5806452.280658141], [833691.4303395291, 5806441.001435753]]}, "properties": {"id": "43774-43775", "from": "1537726774", "to": "1537726596", "length_m": 77.27525647915954, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833691.4303395291, 5806441.001435753], [833737.1615970598, 5806434.328088291]]}, "properties": {"id": "43776", "from": "1537726596", "to": "1537726855", "length_m": 46.215597599719274, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833737.1615970598, 5806434.328088291], [833811.3883762127, 5806423.52716631]]}, "properties": {"id": "43777", "from": "1537726855", "to": "1537726926", "length_m": 75.00849698351138, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833811.3883762127, 5806423.52716631], [833952.1726933788, 5806402.891234826]]}, "properties": {"id": "43778-43779", "from": "1537726926", "to": "1537726843", "length_m": 142.28868524223984, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833952.1726933788, 5806402.891234826], [833976.5896664225, 5806399.318396719]]}, "properties": {"id": "43780", "from": "1537726843", "to": "1537726839", "length_m": 24.67698807673943, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837185.6428590356, 5819029.388173642], [837076.8859449411, 5819168.325620558]]}, "properties": {"id": "4380-4381", "from": "1505977542", "to": "1510910504", "length_m": 176.4442294762452, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756817.7588007492, 5726184.204222365], [757259.3862462043, 5726137.910599171]]}, "properties": {"id": "43800-43798-43796-43794-43792-43790-43788-43786-43784-43782-43098-43096-22793-22791-22789-22787-22785-22783-22781-22779-22777-22775-22773-22771-22769-22767-22765-22763", "from": "234756853", "to": "234756841", "length_m": 548.342045492885, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756817.7588007492, 5726184.204222365], [756556.9510996161, 5725775.700793191]]}, "properties": {"id": "43801-43803-43805-43807-43809-43811-43813-43815-43817-43819-43821-43823-43825-43827-43829-43831-43833-43835-43837-43839-43841-43843-43845-43847-43849-43851-43853-43855-43857-43859", "from": "234756853", "to": "234756862", "length_m": 533.9087797153293, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837076.8859449411, 5819168.325620558], [836956.9326793435, 5819321.306757279]]}, "properties": {"id": "4382", "from": "1510910504", "to": "1510910487", "length_m": 194.40168274276547, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759396.8645932279, 5730967.456462092], [759390.11875538, 5730976.641684394]]}, "properties": {"id": "4383", "from": "832509528", "to": "832507805", "length_m": 11.396255408964437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759390.11875538, 5730976.641684394], [759396.8645932279, 5730967.456462092]]}, "properties": {"id": "4384", "from": "832507805", "to": "832509528", "length_m": 11.396255408964437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759390.11875538, 5730976.641684394], [759378.8996451363, 5730992.9607191635]]}, "properties": {"id": "4385", "from": "832507805", "to": "832509607", "length_m": 19.80351815905388, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759378.8996451363, 5730992.9607191635], [759390.11875538, 5730976.641684394]]}, "properties": {"id": "4386", "from": "832509607", "to": "832507805", "length_m": 19.80351815905388, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756556.9510996161, 5725775.700793191], [756817.7588007492, 5726184.204222365]]}, "properties": {"id": "43860-43858-43856-43854-43852-43850-43848-43846-43844-43842-43840-43838-43836-43834-43832-43830-43828-43826-43824-43822-43820-43818-43816-43814-43812-43810-43808-43806-43804-43802", "from": "234756862", "to": "234756853", "length_m": 533.9087797153293, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756556.9510996161, 5725775.700793191], [756100.3207053088, 5725483.364133755]]}, "properties": {"id": "43861-43863-43865-43867-43869-43871-43873-43875-43877-43879-43881-43883-43885-43887-43889-43891-43893-43895-43897-43899-43901-43903-43905-43907-43909-43911-43913-43915", "from": "234756862", "to": "234756876", "length_m": 590.7259072640965, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759378.8996451363, 5730992.9607191635], [759341.6089888769, 5731051.013211661]]}, "properties": {"id": "4387", "from": "832509607", "to": "832508493", "length_m": 68.99771685907048, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759341.6089888769, 5731051.013211661], [759378.8996451363, 5730992.9607191635]]}, "properties": {"id": "4388", "from": "832508493", "to": "832509607", "length_m": 68.99771685907048, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759341.6089888769, 5731051.013211661], [759329.7339861933, 5731071.342324525]]}, "properties": {"id": "4389", "from": "832508493", "to": "832510192", "length_m": 23.54333280647299, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773550.3132142747, 5837948.551903311], [774390.88634825, 5837517.071446553]]}, "properties": {"id": "439-10429-10430-10431-10432-10433", "from": "474050246", "to": "35098326", "length_m": 951.4227282225847, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759329.7339861933, 5731071.342324525], [759341.6089888769, 5731051.013211661]]}, "properties": {"id": "4390", "from": "832510192", "to": "832508493", "length_m": 23.54333280647299, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759329.7339861933, 5731071.342324525], [759563.9003444725, 5731333.639050892]]}, "properties": {"id": "4391-4393-4966-4968", "from": "832510192", "to": "832510043", "length_m": 422.1719643438282, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756100.3207053088, 5725483.364133755], [756556.9510996161, 5725775.700793191]]}, "properties": {"id": "43916-43914-43912-43910-43908-43906-43904-43902-43900-43898-43896-43894-43892-43890-43888-43886-43884-43882-43880-43878-43876-43874-43872-43870-43868-43866-43864-43862", "from": "234756876", "to": "234756862", "length_m": 590.7259072640965, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756100.3207053088, 5725483.364133755], [755701.1439125303, 5725193.466693288]]}, "properties": {"id": "43917-43919-43921-43923-43925-43927-43929-43931-43933-43935-43937-43939-43941-43943-43945-43947-43949-43951-43953-43955-43957-43959-43961-43963-43965", "from": "234756876", "to": "234756902", "length_m": 573.3045040367003, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836575.8925919636, 5819792.709718493], [836727.6145782004, 5819622.326493301]]}, "properties": {"id": "4395-4396-4397-4398-4399-4400-4401-4402-4403-4404-4405-4406", "from": "303683073", "to": "1510910458", "length_m": 228.6788152052218, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755701.1439125303, 5725193.466693288], [756100.3207053088, 5725483.364133755]]}, "properties": {"id": "43966-43964-43962-43960-43958-43956-43954-43952-43950-43948-43946-43944-43942-43940-43938-43936-43934-43932-43930-43928-43926-43924-43922-43920-43918", "from": "234756902", "to": "234756876", "length_m": 573.3045040367003, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755701.1439125303, 5725193.466693288], [755438.8496691342, 5724864.524068289]]}, "properties": {"id": "43967-43969-43971-43973-43975-43977-43979-43981-43983-43985-43987-43989-43991-43993-43995-43997-43999-44001-44003-44005-44007-44009-44011-44013-44015-44017", "from": "234756902", "to": "234756933", "length_m": 545.5597327339773, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773854.9475347779, 5837719.5942961], [773057.4504329443, 5838224.2056480255]]}, "properties": {"id": "440", "from": "35095687", "to": "715261585", "length_m": 943.7342016288875, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755438.8496691342, 5724864.524068289], [755701.1439125303, 5725193.466693288]]}, "properties": {"id": "44018-44016-44014-44012-44010-44008-44006-44004-44002-44000-43998-43996-43994-43992-43990-43988-43986-43984-43982-43980-43978-43976-43974-43972-43970-43968", "from": "234756933", "to": "234756902", "length_m": 545.5597327339773, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755438.8496691342, 5724864.524068289], [754893.652923482, 5724682.008673077]]}, "properties": {"id": "44019-44021-44023-44025-44027-44029-44031-44033-44035-44037-44039-44041-44043-44045-44047-44049-44051-44053-44055-44057-44059-44061-44063", "from": "234756933", "to": "234756953", "length_m": 589.7691008880211, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754893.652923482, 5724682.008673077], [755438.8496691342, 5724864.524068289]]}, "properties": {"id": "44064-44062-44060-44058-44056-44054-44052-44050-44048-44046-44044-44042-44040-44038-44036-44034-44032-44030-44028-44026-44024-44022-44020", "from": "234756953", "to": "234756933", "length_m": 589.7691008880211, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754893.652923482, 5724682.008673077], [754492.819558824, 5724299.012844376]]}, "properties": {"id": "44065-44067-44069-44071-44073-44075-44077-44079-44081-44083-44085-44087-44089-44091-44093-44095-44097-44099-44101-44103-44105-44107-44109-44111-44113", "from": "234756953", "to": "234756989", "length_m": 581.1856753801941, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766871.1218870201, 5778652.701660848], [766170.3098524779, 5778819.284278055]]}, "properties": {"id": "4407-4409-4411", "from": "364615345", "to": "806591840", "length_m": 720.4086053330004, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773057.4504329443, 5838224.2056480255], [771904.4197305993, 5839052.630635783]]}, "properties": {"id": "441-909", "from": "715261585", "to": "317109204", "length_m": 1420.6025977590957, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754492.819558824, 5724299.012844376], [754893.652923482, 5724682.008673077]]}, "properties": {"id": "44114-44112-44110-44108-44106-44104-44102-44100-44098-44096-44094-44092-44090-44088-44086-44084-44082-44080-44078-44076-44074-44072-44070-44068-44066", "from": "234756989", "to": "234756953", "length_m": 581.1856753801941, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754492.819558824, 5724299.012844376], [754229.3395069544, 5723880.699119]]}, "properties": {"id": "44115-44117-44119-44121-44123-44125-44127-44129-44131-44133-44135-44137-44139-44141-44143-44145-44440-45485-45487-45489-45491-45493", "from": "234756989", "to": "234757016", "length_m": 526.4321741387089, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766170.3098524779, 5778819.284278055], [766871.1218870201, 5778652.701660848]]}, "properties": {"id": "4412-4410-4408", "from": "806591840", "to": "364615345", "length_m": 720.4086053330004, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766170.3098524779, 5778819.284278055], [765157.7454760022, 5779074.125347875]]}, "properties": {"id": "4413-4415-4417", "from": "806591840", "to": "1856694813", "length_m": 1044.1706056510527, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751650.1642712386, 5843546.920538952], [752528.2968443686, 5843509.463637561]]}, "properties": {"id": "44161-44162-44163-53977-53954-53955-53956-53957-53958", "from": "465240784", "to": "3953260901", "length_m": 880.805211356716, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834368.1735266715, 5804466.106797399], [834370.4178944225, 5804480.50395038]]}, "properties": {"id": "44164", "from": "825684718", "to": "825684797", "length_m": 14.571039775508899, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834370.4178944225, 5804480.50395038], [834368.1735266715, 5804466.106797399]]}, "properties": {"id": "44165", "from": "825684797", "to": "825684718", "length_m": 14.571039775508899, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758500.0449335829, 5727138.415995723], [758212.2473208534, 5726593.539714377]]}, "properties": {"id": "44169-44167-42888-11426-11424-11422-11420-11418-11416-11414-11412-11410-11408-11406-11404-11402-11400-11398-11396-11394-11392-11390-11388-11386-11384-11382-11380-11378-11376-11374-11372-11370-11368-11366-11364-11362-11360-11358-11356-11354-11352", "from": "863349856", "to": "863348682", "length_m": 670.5603207123726, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758500.0449335829, 5727138.415995723], [759032.6908518835, 5727198.688510917]]}, "properties": {"id": "44170-44172-44174-44176-44178-44180-44182-44184-44186-44188-44190-44192-44194-44196-44198-44200-44202-44204-44206-44208-44210-44212-44214-44216-44218-44220-44222", "from": "863349856", "to": "863349822", "length_m": 588.2975322013252, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765157.7454760022, 5779074.125347875], [766170.3098524779, 5778819.284278055]]}, "properties": {"id": "4418-4416-4414", "from": "1856694813", "to": "806591840", "length_m": 1044.1706056510527, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765157.7454760022, 5779074.125347875], [764007.9250329419, 5779369.478030788]]}, "properties": {"id": "4419-4421", "from": "1856694813", "to": "1852782776", "length_m": 1187.1529513110086, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836228.5925251078, 5808842.735630278], [836207.5159005481, 5808846.622538846]]}, "properties": {"id": "442-443-444-445", "from": "75146077", "to": "75146079", "length_m": 22.89288748219627, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764007.9250329419, 5779369.478030788], [765157.7454760022, 5779074.125347875]]}, "properties": {"id": "4422-4420", "from": "1852782776", "to": "1856694813", "length_m": 1187.1529513110086, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759032.6908518835, 5727198.688510917], [758500.0449335829, 5727138.415995723]]}, "properties": {"id": "44223-44221-44219-44217-44215-44213-44211-44209-44207-44205-44203-44201-44199-44197-44195-44193-44191-44189-44187-44185-44183-44181-44179-44177-44175-44173-44171", "from": "863349822", "to": "863349856", "length_m": 588.2975322013252, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764007.9250329419, 5779369.478030788], [763489.8081912824, 5779504.357970702]]}, "properties": {"id": "4423-4425", "from": "1852782776", "to": "177850214", "length_m": 535.3855291648637, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763489.8081912824, 5779504.357970702], [764007.9250329419, 5779369.478030788]]}, "properties": {"id": "4426-4424", "from": "177850214", "to": "1852782776", "length_m": 535.3855291648637, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763489.8081912824, 5779504.357970702], [762195.5741887027, 5779834.396020562]]}, "properties": {"id": "4427", "from": "177850214", "to": "789295591", "length_m": 1335.6521865747955, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762195.5741887027, 5779834.396020562], [763489.8081912824, 5779504.357970702]]}, "properties": {"id": "4428", "from": "789295591", "to": "177850214", "length_m": 1335.6521865747955, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762195.5741887027, 5779834.396020562], [761561.0658644747, 5780017.150667999]]}, "properties": {"id": "4429-4431-4433", "from": "789295591", "to": "177850216", "length_m": 660.5733199143203, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761561.0658644747, 5780017.150667999], [762195.5741887027, 5779834.396020562]]}, "properties": {"id": "4434-4432-4430", "from": "177850216", "to": "789295591", "length_m": 660.5733199143203, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761561.0658644747, 5780017.150667999], [760528.4536572206, 5780350.17578992]]}, "properties": {"id": "4435", "from": "177850216", "to": "317721535", "length_m": 1084.985575976122, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760528.4536572206, 5780350.17578992], [761561.0658644747, 5780017.150667999]]}, "properties": {"id": "4436", "from": "317721535", "to": "177850216", "length_m": 1084.985575976122, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760528.4536572206, 5780350.17578992], [758899.5999834657, 5780652.409679967]]}, "properties": {"id": "4437-4439-4441", "from": "317721535", "to": "177850220", "length_m": 1659.884198958419, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797421.4517125557, 5757015.6106647495], [796645.8665374, 5756664.751829812]]}, "properties": {"id": "44403-20855-20853-20851", "from": "2574033455", "to": "616942050", "length_m": 529.3948875446677, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791315.1280038175, 5759752.953185669], [791477.1747939889, 5760637.498112891]]}, "properties": {"id": "44417-44418", "from": "469074032", "to": "270450941", "length_m": 899.2673553719683, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791477.1747939889, 5760637.498112891], [791602.8427485886, 5761335.995471511]]}, "properties": {"id": "44419-44420-44421-44422-44423-44424-44425-44426-44427-44428-44429", "from": "270450941", "to": "270450513", "length_m": 710.8317313320065, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758899.5999834657, 5780652.409679967], [760528.4536572206, 5780350.17578992]]}, "properties": {"id": "4442-4440-4438", "from": "177850220", "to": "317721535", "length_m": 1659.884198958419, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758899.5999834657, 5780652.409679967], [757708.4725466018, 5780840.461352226]]}, "properties": {"id": "4443", "from": "177850220", "to": "177850221", "length_m": 1205.8805904336502, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757577.8667403902, 5839049.254725181], [757553.9508426122, 5839075.925263555]]}, "properties": {"id": "44432-44433-44434-44435-44436-44437", "from": "364000819", "to": "364000820", "length_m": 41.97715849418428, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757708.4725466018, 5780840.461352226], [758899.5999834657, 5780652.409679967]]}, "properties": {"id": "4444", "from": "177850221", "to": "177850220", "length_m": 1205.8805904336502, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757708.4725466018, 5780840.461352226], [756368.1092805542, 5781056.52227341]]}, "properties": {"id": "4445", "from": "177850221", "to": "317721311", "length_m": 1357.6656443274894, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756368.1092805542, 5781056.52227341], [757708.4725466018, 5780840.461352226]]}, "properties": {"id": "4446", "from": "317721311", "to": "177850221", "length_m": 1357.6656443274894, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756368.1092805542, 5781056.52227341], [755130.3456960917, 5780960.425905665]]}, "properties": {"id": "4447-4449-4451-4453-4455", "from": "317721311", "to": "177850227", "length_m": 1248.8831676217342, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755130.3456960917, 5780960.425905665], [756368.1092805542, 5781056.52227341]]}, "properties": {"id": "4456-4454-4452-4450-4448", "from": "177850227", "to": "317721311", "length_m": 1248.8831676217342, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755130.3456960917, 5780960.425905665], [753606.9060846745, 5781058.06834338]]}, "properties": {"id": "4457", "from": "177850227", "to": "2151278136", "length_m": 1526.5655204875386, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753606.9060846745, 5781058.06834338], [755130.3456960917, 5780960.425905665]]}, "properties": {"id": "4458", "from": "2151278136", "to": "177850227", "length_m": 1526.5655204875386, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753606.9060846745, 5781058.06834338], [752286.7967518927, 5781142.448038442]]}, "properties": {"id": "4459", "from": "2151278136", "to": "177850229", "length_m": 1322.8033029740477, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836207.5159005481, 5808846.622538846], [836236.7286190428, 5808866.065217642]]}, "properties": {"id": "446-447-448-449-450-451-452-453-454-455-456-457-458-459-460-461", "from": "75146079", "to": "75146088", "length_m": 60.96870880775304, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752286.7967518927, 5781142.448038442], [753606.9060846745, 5781058.06834338]]}, "properties": {"id": "4460", "from": "177850229", "to": "2151278136", "length_m": 1322.8033029740477, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760096.7287953434, 5728771.771984256], [760092.7379173358, 5729259.634735144]]}, "properties": {"id": "44608-44610-44612-44614-44616-44618-44620-44622-44624-44626-44628-44630-44632-44634-3644-3646-3648-3650-3652", "from": "832509749", "to": "832508688", "length_m": 562.2941429960797, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752286.7967518927, 5781142.448038442], [751634.2149278458, 5781200.45125058]]}, "properties": {"id": "4461-4463", "from": "177850229", "to": "598480551", "length_m": 655.5193697026959, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751634.2149278458, 5781200.45125058], [752286.7967518927, 5781142.448038442]]}, "properties": {"id": "4464-4462", "from": "598480551", "to": "177850229", "length_m": 655.5193697026959, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736999.9095920967, 5710906.513861725], [737719.271372781, 5711174.341861379]]}, "properties": {"id": "44645-44643-44641-44639-44637-46646-46345-46343-46341-46339-46337-46335-46333-46331-46329-46327-46325-46323-46321-46319", "from": "2881089019", "to": "2881089014", "length_m": 828.509952792408, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736999.9095920967, 5710906.513861725], [736587.3736904067, 5710571.217958178]]}, "properties": {"id": "44646-44648-44650-44652-44654-44656-44658", "from": "2881089019", "to": "863349778", "length_m": 533.1576678576935, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751634.2149278458, 5781200.45125058], [751098.8609667929, 5781216.49296288]]}, "properties": {"id": "4465-4467", "from": "598480551", "to": "317721315", "length_m": 535.8658128383399, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736587.3736904067, 5710571.217958178], [736999.9095920967, 5710906.513861725]]}, "properties": {"id": "44659-44657-44655-44653-44651-44649-44647", "from": "863349778", "to": "2881089019", "length_m": 533.1576678576935, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736587.3736904067, 5710571.217958178], [735902.2289527192, 5710319.005280154]]}, "properties": {"id": "44660-44662-44664-44666-44668-44670-44672-44674", "from": "863349778", "to": "2881089001", "length_m": 537.1628745458336, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735902.2289527192, 5710319.005280154], [736587.3736904067, 5710571.217958178]]}, "properties": {"id": "44675-44673-44671-44669-44667-44665-44663-44661", "from": "2881089001", "to": "863349778", "length_m": 537.1628745458336, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735902.2289527192, 5710319.005280154], [735062.2625570393, 5709951.1351992395]]}, "properties": {"id": "44676-44678-44680-44682-44684-44686-44688-44690-44692-44694-44696-44698-44700-44702-44704-9118-46192-45052-45054-45056-45058-45060-45062-45064-45066-45068-45070-45072-45074-45076-45078-45080-45082", "from": "2881089001", "to": "863350437", "length_m": 1223.5101243314411, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751098.8609667929, 5781216.49296288], [751634.2149278458, 5781200.45125058]]}, "properties": {"id": "4468-4466", "from": "317721315", "to": "598480551", "length_m": 535.8658128383399, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751098.8609667929, 5781216.49296288], [750360.4262062275, 5781321.666431916]]}, "properties": {"id": "4469-4471", "from": "317721315", "to": "1372490770", "length_m": 745.9280233220151, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750360.4262062275, 5781321.666431916], [751098.8609667929, 5781216.49296288]]}, "properties": {"id": "4472-4470", "from": "1372490770", "to": "317721315", "length_m": 745.9280233220151, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750360.4262062275, 5781321.666431916], [749085.1609137233, 5781496.159575515]]}, "properties": {"id": "4473", "from": "1372490770", "to": "177850232", "length_m": 1287.1477846228672, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749085.1609137233, 5781496.159575515], [750360.4262062275, 5781321.666431916]]}, "properties": {"id": "4474", "from": "177850232", "to": "1372490770", "length_m": 1287.1477846228672, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749085.1609137233, 5781496.159575515], [748410.5964136139, 5781592.188593604]]}, "properties": {"id": "4475", "from": "177850232", "to": "177850233", "length_m": 681.3654203280566, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748410.5964136139, 5781592.188593604], [749085.1609137233, 5781496.159575515]]}, "properties": {"id": "4476", "from": "177850233", "to": "177850232", "length_m": 681.3654203280566, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748410.5964136139, 5781592.188593604], [747853.5743907449, 5781574.582921077]]}, "properties": {"id": "4477-4479", "from": "177850233", "to": "2151398458", "length_m": 559.0549582823307, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747853.5743907449, 5781574.582921077], [748410.5964136139, 5781592.188593604]]}, "properties": {"id": "4480-4478", "from": "2151398458", "to": "177850233", "length_m": 559.0549582823307, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747853.5743907449, 5781574.582921077], [747022.8022753852, 5781663.00750658]]}, "properties": {"id": "4481-4483-37203-46385-46387-46389-46391-46393-46395-46397-46399-46401-46403-46405-46407-46409-46411", "from": "2151398458", "to": "177850240", "length_m": 842.5847348691177, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758559.0494864838, 5729926.718314909], [758413.9536277532, 5729992.413495439]]}, "properties": {"id": "4485-4487-4489-4491-4493-4495-4497-4499", "from": "36705046", "to": "36705048", "length_m": 205.26365911795529, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746117.7148732641, 5713620.681378776], [745610.3608696798, 5713686.148761139]]}, "properties": {"id": "44918-44920-44922-44924-44926-44928-44930-44932-44934-44936-44938-44940-44942-44944-44946-44948-44950-44952-44954-44956-44958-44960-44962-44964-44966-44968-44970", "from": "2880904441", "to": "2880923456", "length_m": 537.418028609673, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745610.3608696798, 5713686.148761139], [746117.7148732641, 5713620.681378776]]}, "properties": {"id": "44971-44969-44967-44965-44963-44961-44959-44957-44955-44953-44951-44949-44947-44945-44943-44941-44939-44937-44935-44933-44931-44929-44927-44925-44923-44921-44919", "from": "2880923456", "to": "2880904441", "length_m": 537.418028609673, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758413.9536277532, 5729992.413495439], [758559.0494864838, 5729926.718314909]]}, "properties": {"id": "4500-4498-4496-4494-4492-4490-4488-4486", "from": "36705048", "to": "36705046", "length_m": 205.26365911795529, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735062.2625570393, 5709951.1351992395], [735902.2289527192, 5710319.005280154]]}, "properties": {"id": "45083-45081-45079-45077-45075-45073-45071-45069-45067-45065-45063-45061-45059-45057-45055-45053-46193-9119-44705-44703-44701-44699-44697-44695-44693-44691-44689-44687-44685-44683-44681-44679-44677", "from": "863350437", "to": "2881089001", "length_m": 1223.5101243314411, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735062.2625570393, 5709951.1351992395], [734521.6094034594, 5709716.996637903]]}, "properties": {"id": "45084-45086-45088-45090-45092-45094-45096-45098-45100-45102-45104-45106-45108-45110-45112-45114-45116", "from": "863350437", "to": "4381867841", "length_m": 607.3738437815282, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734521.6094034594, 5709716.996637903], [735062.2625570393, 5709951.1351992395]]}, "properties": {"id": "45117-45115-45113-45111-45109-45107-45105-45103-45101-45099-45097-45095-45093-45091-45089-45087-45085", "from": "4381867841", "to": "863350437", "length_m": 607.3738437815282, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734521.6094034594, 5709716.996637903], [733990.0219513945, 5709435.199858315]]}, "properties": {"id": "45118-45120-45122-45124-45126-45128", "from": "4381867841", "to": "863348888", "length_m": 601.8229153835708, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733990.0219513945, 5709435.199858315], [734521.6094034594, 5709716.996637903]]}, "properties": {"id": "45129-45127-45125-45123-45121-45119", "from": "863348888", "to": "4381867841", "length_m": 601.8229153835708, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759121.7172109408, 5730467.401995664], [759025.7332564977, 5730526.951891276]]}, "properties": {"id": "4513-4515-4517", "from": "832507882", "to": "832510077", "length_m": 113.0523202088631, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733990.0219513945, 5709435.199858315], [733243.2513206275, 5709167.415690361]]}, "properties": {"id": "45130-45132-45134-45136-45138-45140-45142-45144-45146-45148", "from": "863348888", "to": "863352664", "length_m": 801.4672007767579, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733243.2513206275, 5709167.415690361], [733990.0219513945, 5709435.199858315]]}, "properties": {"id": "45149-45147-45145-45143-45141-45139-45137-45135-45133-45131", "from": "863352664", "to": "863348888", "length_m": 801.4672007767579, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[739983.0077384823, 5712195.507973968], [740443.1082219232, 5712342.713186973]]}, "properties": {"id": "45173-45171-45169-45167-45165-45163-45161-45159-45157-45155-45153-46600-46598-46596-43006-43004-43002-43000-42998-42996-42994-42992-42990-42988-42986-42984-42982-42980-42978", "from": "2881089034", "to": "2880988263", "length_m": 584.3582370880772, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759025.7332564977, 5730526.951891276], [759121.7172109408, 5730467.401995664]]}, "properties": {"id": "4518-4516-4514", "from": "832510077", "to": "832507882", "length_m": 113.0523202088631, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759025.7332564977, 5730526.951891276], [758955.8252094265, 5730567.612865845]]}, "properties": {"id": "4519-4521", "from": "832510077", "to": "832507812", "length_m": 80.92252809910178, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833081.6154428171, 5806028.766751358], [833180.9700210175, 5806489.2734660115]]}, "properties": {"id": "45190-45191-45192-10887-10888-10889-10905-10906-10907-10908-10909-10910-10911-10912-10913-10914", "from": "1763048090", "to": "288440538", "length_m": 472.6174489895811, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834140.3289491129, 5806364.769126819], [834026.4421513089, 5806380.789343518]]}, "properties": {"id": "45207", "from": "353638688", "to": "1537726671", "length_m": 115.00804300033867, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833178.8087800099, 5806519.038321845], [833257.4274258226, 5807038.695246521]]}, "properties": {"id": "45210-45211-45212-45213-45214-45215-45216-45217-45218-45219-45220-45221-45222", "from": "976462504", "to": "288440694", "length_m": 526.0341585488666, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758955.8252094265, 5730567.612865845], [759025.7332564977, 5730526.951891276]]}, "properties": {"id": "4522-4520", "from": "832507812", "to": "832510077", "length_m": 80.92252809910178, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758955.8252094265, 5730567.612865845], [758698.7249623482, 5730522.07689662]]}, "properties": {"id": "4523-4525-4527-4868-4870-4872-4874-4876-3092-3094-3096-5354-5356-5358-5360-5362-5364-5366-5368-5370-5372-5374", "from": "832507812", "to": "832508541", "length_m": 768.8691506637766, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742753.5971982137, 5713081.433765965], [743268.332741592, 5713163.00367752]]}, "properties": {"id": "45236-45234-45232-45230-45228-45226-45224-43036-19492", "from": "234959041", "to": "1835377946", "length_m": 523.6423523257929, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742753.5971982137, 5713081.433765965], [742132.3754247911, 5712863.343583141]]}, "properties": {"id": "45237-45239-45241-45243-45245-45247-45249-45251-45253-45255-45257", "from": "234959041", "to": "2880981759", "length_m": 659.8634653076776, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742132.3754247911, 5712863.343583141], [742753.5971982137, 5713081.433765965]]}, "properties": {"id": "45258-45256-45254-45252-45250-45248-45246-45244-45242-45240-45238", "from": "2880981759", "to": "234959041", "length_m": 659.8634653076776, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742132.3754247911, 5712863.343583141], [741421.8253068452, 5712610.399467063]]}, "properties": {"id": "45259-45261-45263-45265-45267-45269-45271-45273-45275-45277", "from": "2880981759", "to": "2880981761", "length_m": 758.3661982199307, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741421.8253068452, 5712610.399467063], [742132.3754247911, 5712863.343583141]]}, "properties": {"id": "45278-45276-45274-45272-45270-45268-45266-45264-45262-45260", "from": "2880981761", "to": "2880981759", "length_m": 758.3661982199307, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741421.8253068452, 5712610.399467063], [740918.161686868, 5712265.072002549]]}, "properties": {"id": "45279-45281-45283-45285-45287-45289-45291-45293-45295-45297-45299-45301-45303-45305-45307-45309-45311-45313-45315-45317-45319-45321-45323-45325-45327-45329-45331-45333-43257-42921-42923-42925-42927-42929", "from": "2880981761", "to": "2880981766", "length_m": 734.2703500351295, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837196.6151960685, 5819016.674600739], [837202.0275872534, 5819026.116080623]]}, "properties": {"id": "4529", "from": "1510910501", "to": "585216210", "length_m": 10.882808443051946, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830722.2027006436, 5813936.189330667], [830732.2586383, 5813952.274256291]]}, "properties": {"id": "4530", "from": "256040868", "to": "35084641", "length_m": 18.969626045304796, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837057.3526929957, 5811045.6423141435], [837061.5805383045, 5811072.356371882]]}, "properties": {"id": "4531", "from": "2384163600", "to": "2384163598", "length_m": 27.04654424416091, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837208.5190323468, 5819018.745210027], [837196.6151960685, 5819016.674600739]]}, "properties": {"id": "4532", "from": "585216209", "to": "1510910501", "length_m": 12.082579992492118, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[739277.9319763144, 5711725.428871704], [738222.3751967155, 5711409.268472701]]}, "properties": {"id": "45403-45405-45407-45409-45411-45413-45415-45417-45419-45421-45423-45425-45427-45429-45431-45433-45435-45437-45439-45441-45443-45445-45447-45449-45451-45453-45455-45457-45459", "from": "2881088277", "to": "2881089005", "length_m": 1129.0075128776637, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837068.5099179184, 5811043.550391083], [837065.9453036231, 5811035.237926805]]}, "properties": {"id": "4542-4543", "from": "321569609", "to": "1843397347", "length_m": 8.699099059100115, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837083.2922278583, 5819172.478140971], [837076.8859449411, 5819168.325620558]]}, "properties": {"id": "4544", "from": "585216289", "to": "1510910504", "length_m": 7.6343883954872975, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837076.8859449411, 5819168.325620558], [837083.2922278583, 5819172.478140971]]}, "properties": {"id": "4545", "from": "1510910504", "to": "585216289", "length_m": 7.6343883954872975, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785528.532491687, 5754981.283984251], [785527.5866815352, 5754916.648779498]]}, "properties": {"id": "4546-4547-4548-4549-4550-4551-4552-4553-4554-4555-4556-4557-4558-4559-4560", "from": "3413826121", "to": "3413826141", "length_m": 50.0, "freespeed_mps": 8.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738222.3751967155, 5711409.268472701], [739277.9319763144, 5711725.428871704]]}, "properties": {"id": "45460-45458-45456-45454-45452-45450-45448-45446-45444-45442-45440-45438-45436-45434-45432-45430-45428-45426-45424-45422-45420-45418-45416-45414-45412-45410-45408-45406-45404", "from": "2881089005", "to": "2881088277", "length_m": 1129.0075128776637, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738222.3751967155, 5711409.268472701], [737719.271372781, 5711174.341861379]]}, "properties": {"id": "45461-44430-46294-46296-46298-46300-46302-46304-46306-46308-46310-46312-46314-46316", "from": "2881089005", "to": "2881089014", "length_m": 560.2295581457128, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833276.571008574, 5807034.8828251595], [833205.618897422, 5806517.7057611365]]}, "properties": {"id": "45463-45464-45465-45466-45467-45468-45469-45470-45471-45472-45473-45474-45475-45476-45477", "from": "288440676", "to": "5230414514", "length_m": 524.3171503297829, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833398.0064124733, 5808097.097856313], [832986.3000318878, 5808163.587560201]]}, "properties": {"id": "45478-45479-45480-45481-45482-45483-45484", "from": "75155383", "to": "353640763", "length_m": 417.76482751704305, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754229.3395069544, 5723880.699119], [754492.819558824, 5724299.012844376]]}, "properties": {"id": "45494-45492-45490-45488-45486-44441-44146-44144-44142-44140-44138-44136-44134-44132-44130-44128-44126-44124-44122-44120-44118-44116", "from": "234757016", "to": "234756989", "length_m": 526.4321741387089, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754229.3395069544, 5723880.699119], [754360.0340941923, 5723385.431269397]]}, "properties": {"id": "45495-45497-45499-45501-45503-45505-45507-45509-45511-45513-45515-45517-45519-45521-45523-45525-45527-45529-45531-45533-45535-45537-45539-45541", "from": "234757016", "to": "234757044", "length_m": 524.1998234704006, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754360.0340941923, 5723385.431269397], [754229.3395069544, 5723880.699119]]}, "properties": {"id": "45542-45540-45538-45536-45534-45532-45530-45528-45526-45524-45522-45520-45518-45516-45514-45512-45510-45508-45506-45504-45502-45500-45498-45496", "from": "234757044", "to": "234757016", "length_m": 524.1998234704006, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754360.0340941923, 5723385.431269397], [754222.5089265928, 5722935.431478431]]}, "properties": {"id": "45543-45545-45547-45549-45551-45553-45555-45557-45559-45561-45563-45565-45567-45569-45571-45573-45575-45577-45579-45581-45583", "from": "234757044", "to": "234757071", "length_m": 504.55049234225584, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754222.5089265928, 5722935.431478431], [754360.0340941923, 5723385.431269397]]}, "properties": {"id": "45584-45582-45580-45578-45576-45574-45572-45570-45568-45566-45564-45562-45560-45558-45556-45554-45552-45550-45548-45546-45544", "from": "234757071", "to": "234757044", "length_m": 504.55049234225584, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754222.5089265928, 5722935.431478431], [753924.5090453724, 5722377.091868017]]}, "properties": {"id": "45585-45587-45589-45591-45593-45595-45597-45599-45601-45603-45605-45607-45609-45611-45613-45615-45617-45619-45621", "from": "234757071", "to": "234757089", "length_m": 646.793170761742, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760021.167316137, 5731438.434317267], [760033.0093039388, 5731423.571928438]]}, "properties": {"id": "4561", "from": "832508068", "to": "832509045", "length_m": 19.00324383851157, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760033.0093039388, 5731423.571928438], [760021.167316137, 5731438.434317267]]}, "properties": {"id": "4562", "from": "832509045", "to": "832508068", "length_m": 19.00324383851157, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753924.5090453724, 5722377.091868017], [754222.5089265928, 5722935.431478431]]}, "properties": {"id": "45622-45620-45618-45616-45614-45612-45610-45608-45606-45604-45602-45600-45598-45596-45594-45592-45590-45588-45586", "from": "234757089", "to": "234757071", "length_m": 646.793170761742, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753924.5090453724, 5722377.091868017], [753834.0604922336, 5721911.258164158]]}, "properties": {"id": "45623-45625-45627-45629-45631-45633-45635-45637-45639-45641-45643-45645-45647-45649-45651-45653-45655-45657-45659-45661-45663-45665", "from": "234757089", "to": "234757122", "length_m": 559.2703071731853, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836735.8538739507, 5819612.738675743], [836860.0893741376, 5819453.871395659]]}, "properties": {"id": "4563-4564-4565-4566-4567", "from": "716027818", "to": "585216276", "length_m": 201.84854667638155, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753834.0604922336, 5721911.258164158], [753924.5090453724, 5722377.091868017]]}, "properties": {"id": "45666-45664-45662-45660-45658-45656-45654-45652-45650-45648-45646-45644-45642-45640-45638-45636-45634-45632-45630-45628-45626-45624", "from": "234757122", "to": "234757089", "length_m": 559.2703071731853, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753834.0604922336, 5721911.258164158], [753483.222477491, 5721511.2142576715]]}, "properties": {"id": "45667-45669-45671-45673-45675-45677-45679-45681-45683-45685-45687-45689-45691-45693-45695-45697-45699-45701-45703", "from": "234757122", "to": "234757145", "length_m": 549.337179664586, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836860.0893741376, 5819453.871395659], [836961.9521470134, 5819325.460453972]]}, "properties": {"id": "4568", "from": "585216276", "to": "1510910441", "length_m": 163.90666410670954, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759919.0437680618, 5731253.823045738], [759825.0404327121, 5731326.162481322]]}, "properties": {"id": "4569", "from": "36829975", "to": "832508436", "length_m": 118.61543322757507, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759825.0404327121, 5731326.162481322], [759919.0437680618, 5731253.823045738]]}, "properties": {"id": "4570", "from": "832508436", "to": "36829975", "length_m": 118.61543322757507, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753483.222477491, 5721511.2142576715], [753834.0604922336, 5721911.258164158]]}, "properties": {"id": "45704-45702-45700-45698-45696-45694-45692-45690-45688-45686-45684-45682-45680-45678-45676-45674-45672-45670-45668", "from": "234757145", "to": "234757122", "length_m": 549.337179664586, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753483.222477491, 5721511.2142576715], [753241.473111164, 5721101.709646673]]}, "properties": {"id": "45705-45707-45709-45711-45713-45715-45717-45719-45721-45723-45725-45727-45729-45731-45733-45735-45737", "from": "234757145", "to": "234757187", "length_m": 501.30829203554407, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759825.0404327121, 5731326.162481322], [759714.1797208996, 5731440.725538207]]}, "properties": {"id": "4571-4573-4575", "from": "832508436", "to": "832510241", "length_m": 168.4987006497032, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753241.473111164, 5721101.709646673], [753483.222477491, 5721511.2142576715]]}, "properties": {"id": "45738-45736-45734-45732-45730-45728-45726-45724-45722-45720-45718-45716-45714-45712-45710-45708-45706", "from": "234757187", "to": "234757145", "length_m": 501.30829203554407, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753241.473111164, 5721101.709646673], [753017.8368593523, 5720674.203782788]]}, "properties": {"id": "45739-45741-45743-45745-45747-45749-45751-45753-45755-45757-45759-45761-45763-45765-45767-45769-45771-45773-45775-45777-45779-45781", "from": "234757187", "to": "234757228", "length_m": 502.20542745834587, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759714.1797208996, 5731440.725538207], [759825.0404327121, 5731326.162481322]]}, "properties": {"id": "4576-4574-4572", "from": "832510241", "to": "832508436", "length_m": 168.4987006497032, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753017.8368593523, 5720674.203782788], [753241.473111164, 5721101.709646673]]}, "properties": {"id": "45782-45780-45778-45776-45774-45772-45770-45768-45766-45764-45762-45760-45758-45756-45754-45752-45750-45748-45746-45744-45742-45740", "from": "234757228", "to": "234757187", "length_m": 502.20542745834587, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753017.8368593523, 5720674.203782788], [752622.6158671504, 5720342.433141421]]}, "properties": {"id": "45783-45785-45787-45789-45791-45793-45795-45797-45799-45801-45803-45805-45807-45809-45811-45813-45815-45817-45819-45821", "from": "234757228", "to": "234757265", "length_m": 519.6073661358722, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752622.6158671504, 5720342.433141421], [753017.8368593523, 5720674.203782788]]}, "properties": {"id": "45822-45820-45818-45816-45814-45812-45810-45808-45806-45804-45802-45800-45798-45796-45794-45792-45790-45788-45786-45784", "from": "234757265", "to": "234757228", "length_m": 519.6073661358722, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752622.6158671504, 5720342.433141421], [752224.9835290052, 5720154.48231776]]}, "properties": {"id": "45823-45825-45827-45829-45831-45833-45835-45837-45839-45841-45843-45845-45847-45849-45851-45853-45855-45857-45859-45150-45861-45863-45865-45867-45869", "from": "234757265", "to": "2147393109", "length_m": 511.8163452297139, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833856.8768510327, 5820897.773663776], [833851.5487166732, 5820876.362895278]]}, "properties": {"id": "4583", "from": "26032511", "to": "26118269", "length_m": 22.06377171924106, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833851.5487166732, 5820876.362895278], [833856.8768510327, 5820897.773663776]]}, "properties": {"id": "4584", "from": "26118269", "to": "26032511", "length_m": 22.06377171924106, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759913.7752364664, 5731674.422845286], [759958.7436531733, 5731601.484977735]]}, "properties": {"id": "4586-5158", "from": "832510107", "to": "832508363", "length_m": 85.68600280145905, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759913.7752364664, 5731674.422845286], [759835.6167330327, 5731774.992764332]]}, "properties": {"id": "4587-4589-4591", "from": "832510107", "to": "832509681", "length_m": 127.69112986748097, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752224.9835290052, 5720154.48231776], [752622.6158671504, 5720342.433141421]]}, "properties": {"id": "45870-45868-45866-45864-45862-45151-45860-45858-45856-45854-45852-45850-45848-45846-45844-45842-45840-45838-45836-45834-45832-45830-45828-45826-45824", "from": "2147393109", "to": "234757265", "length_m": 511.8163452297139, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752224.9835290052, 5720154.48231776], [751675.6764292442, 5719898.123003637]]}, "properties": {"id": "45871-45873-45875-45877-45879-45881-45883-45885-45887-45889-45891-45893-45895-45897-45899-45901-45903-45905-45907-45909-45911-45913-45915-45917-45919-45921-45923-45925-45927-45929-45931-45933-45935-45937-45939-45941-45943", "from": "2147393109", "to": "2147393176", "length_m": 672.1646603606039, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759835.6167330327, 5731774.992764332], [759913.7752364664, 5731674.422845286]]}, "properties": {"id": "4592-4590-4588", "from": "832509681", "to": "832510107", "length_m": 127.69112986748097, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832189.6612392014, 5808297.310973873], [832188.259373913, 5808283.802452886]]}, "properties": {"id": "4593", "from": "1536458758", "to": "353642926", "length_m": 13.581066423868005, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832188.259373913, 5808283.802452886], [832189.6612392014, 5808297.310973873]]}, "properties": {"id": "4594", "from": "353642926", "to": "1536458758", "length_m": 13.581066423868005, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751675.6764292442, 5719898.123003637], [752224.9835290052, 5720154.48231776]]}, "properties": {"id": "45944-45942-45940-45938-45936-45934-45932-45930-45928-45926-45924-45922-45920-45918-45916-45914-45912-45910-45908-45906-45904-45902-45900-45898-45896-45894-45892-45890-45888-45886-45884-45882-45880-45878-45876-45874-45872", "from": "2147393176", "to": "2147393109", "length_m": 672.1646603606039, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751675.6764292442, 5719898.123003637], [751685.8280701502, 5719417.558507812]]}, "properties": {"id": "45945-45947-45949-43274-43276-19132-19134-19136-19138-19140-19142-19144-19146-19148-19150-19152-19154-19156-19158-19160-19162-19164-19166-19168", "from": "2147393176", "to": "234757429", "length_m": 511.8161094318495, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759434.0920104748, 5731424.633762391], [759244.3918607284, 5731240.395238303]]}, "properties": {"id": "4595-4597-5227", "from": "832508485", "to": "832510362", "length_m": 311.0542376312028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788017.4889025994, 5750214.338735353], [787936.3563520717, 5750221.249463225]]}, "properties": {"id": "45951-45952", "from": "508068036", "to": "508067973", "length_m": 81.58672646301608, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788017.8498958573, 5750223.217277045], [788017.4889025994, 5750214.338735353]]}, "properties": {"id": "45953", "from": "508068039", "to": "508068036", "length_m": 8.885877485899785, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788017.4889025994, 5750214.338735353], [788017.8498958573, 5750223.217277045]]}, "properties": {"id": "45954", "from": "508068036", "to": "508068039", "length_m": 8.885877485899785, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788017.4889025994, 5750214.338735353], [788073.2175748043, 5750051.545525996]]}, "properties": {"id": "45955-45957-45959-45961-45963-45965-45967", "from": "508068036", "to": "508068010", "length_m": 183.34445853016035, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788073.2175748043, 5750051.545525996], [788017.4889025994, 5750214.338735353]]}, "properties": {"id": "45968-45966-45964-45962-45960-45958-45956", "from": "508068010", "to": "508068036", "length_m": 183.34445853016035, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788073.2175748043, 5750051.545525996], [788133.2944808016, 5749985.979912264]]}, "properties": {"id": "45969", "from": "508068010", "to": "508067914", "length_m": 88.92741056365132, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788133.2944808016, 5749985.979912264], [788073.2175748043, 5750051.545525996]]}, "properties": {"id": "45970", "from": "508067914", "to": "508068010", "length_m": 88.92741056365132, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836787.1595402465, 5805983.234242702], [836914.0581267634, 5806251.751420008]]}, "properties": {"id": "45971-45972-45973-45974-45975-45976-45977-45978-45979-45980-45981-45982", "from": "5642286721", "to": "254231554", "length_m": 301.4337143547526, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751765.7320533702, 5842084.627549961], [751787.5602768132, 5841252.423763211]]}, "properties": {"id": "45983-45985-45987-45989-45991-45993", "from": "4748708209", "to": "364001467", "length_m": 833.5704068272579, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758749.8164918063, 5729879.355827033], [758697.2059840078, 5729755.966073313]]}, "properties": {"id": "4599-4601-4603-4605-4607", "from": "832508469", "to": "832508667", "length_m": 135.53271690882792, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751787.5602768132, 5841252.423763211], [751765.7320533702, 5842084.627549961]]}, "properties": {"id": "45994-45992-45990-45988-45986-45984", "from": "364001467", "to": "4748708209", "length_m": 833.5704068272579, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788663.8346761146, 5750622.97899305], [788582.5297854384, 5750411.982666034]]}, "properties": {"id": "45995-45997-45999-46001-46003-46005", "from": "508067911", "to": "508067922", "length_m": 227.15919814245336, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788582.5297854384, 5750411.982666034], [788663.8346761146, 5750622.97899305]]}, "properties": {"id": "46006-46004-46002-46000-45998-45996", "from": "508067922", "to": "508067911", "length_m": 227.15919814245336, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788582.5297854384, 5750411.982666034], [788387.5907077503, 5750204.751934341]]}, "properties": {"id": "46007-46009-46011-46013-46015-46017-46019-46021", "from": "508067922", "to": "508067928", "length_m": 288.48965020386, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788387.5907077503, 5750204.751934341], [788582.5297854384, 5750411.982666034]]}, "properties": {"id": "46022-46020-46018-46016-46014-46012-46010-46008", "from": "508067928", "to": "508067922", "length_m": 288.48965020386, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788387.5907077503, 5750204.751934341], [788319.6873431609, 5750148.652855047]]}, "properties": {"id": "46023-46025", "from": "508067928", "to": "508067915", "length_m": 88.079481599672, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788319.6873431609, 5750148.652855047], [788387.5907077503, 5750204.751934341]]}, "properties": {"id": "46026-46024", "from": "508067915", "to": "508067928", "length_m": 88.079481599672, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788319.6873431609, 5750148.652855047], [788133.2944808016, 5749985.979912264]]}, "properties": {"id": "46027-46029", "from": "508067915", "to": "508067914", "length_m": 247.39769964282667, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788133.2944808016, 5749985.979912264], [788319.6873431609, 5750148.652855047]]}, "properties": {"id": "46030-46028", "from": "508067914", "to": "508067915", "length_m": 247.39769964282667, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788133.2944808016, 5749985.979912264], [788069.8155529641, 5749916.194763929]]}, "properties": {"id": "46031-46033-46035", "from": "508067914", "to": "509914445", "length_m": 94.3780394234551, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788069.8155529641, 5749916.194763929], [788133.2944808016, 5749985.979912264]]}, "properties": {"id": "46036-46034-46032", "from": "509914445", "to": "508067914", "length_m": 94.3780394234551, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788069.8155529641, 5749916.194763929], [787740.9542478225, 5749839.594220181]]}, "properties": {"id": "46037-46039-46041-46043-46045-46047-46049-46051-46053-46055-46057-46059-46061-46063-46065", "from": "509914445", "to": "508067920", "length_m": 417.3073743142619, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787740.9542478225, 5749839.594220181], [788069.8155529641, 5749916.194763929]]}, "properties": {"id": "46066-46064-46062-46060-46058-46056-46054-46052-46050-46048-46046-46044-46042-46040-46038", "from": "508067920", "to": "509914445", "length_m": 417.3073743142619, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787740.9542478225, 5749839.594220181], [787716.8893399956, 5749881.353818155]]}, "properties": {"id": "46067-46069-46071", "from": "508067920", "to": "509914504", "length_m": 48.535900346624636, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787716.8893399956, 5749881.353818155], [787740.9542478225, 5749839.594220181]]}, "properties": {"id": "46072-46070-46068", "from": "509914504", "to": "508067920", "length_m": 48.535900346624636, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787716.8893399956, 5749881.353818155], [787621.0482296979, 5749990.293206085]]}, "properties": {"id": "46073-46075-46077-46079-46081-46083", "from": "509914504", "to": "509914474", "length_m": 150.61715359147416, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758697.2059840078, 5729755.966073313], [758749.8164918063, 5729879.355827033]]}, "properties": {"id": "4608-4606-4604-4602-4600", "from": "832508667", "to": "832508469", "length_m": 135.53271690882792, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787621.0482296979, 5749990.293206085], [787716.8893399956, 5749881.353818155]]}, "properties": {"id": "46084-46082-46080-46078-46076-46074", "from": "509914474", "to": "509914504", "length_m": 150.61715359147416, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787621.0482296979, 5749990.293206085], [787427.9664419862, 5750030.956888853]]}, "properties": {"id": "46085-46087-46089-46091-46093-46095-46097-46099-46101-46103-46105-46107", "from": "509914474", "to": "508067930", "length_m": 202.91094662288089, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832419.3138809951, 5808248.916225176], [832428.0848359752, 5808261.626213737]]}, "properties": {"id": "4609-4610-4611", "from": "75155391", "to": "1536458838", "length_m": 15.76500691172587, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787427.9664419862, 5750030.956888853], [787621.0482296979, 5749990.293206085]]}, "properties": {"id": "46108-46106-46104-46102-46100-46098-46096-46094-46092-46090-46088-46086", "from": "508067930", "to": "509914474", "length_m": 202.91094662288089, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787427.9664419862, 5750030.956888853], [787356.057944584, 5750106.285561318]]}, "properties": {"id": "46109-46111-46113-46115", "from": "508067930", "to": "508067933", "length_m": 104.19471310229508, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787356.057944584, 5750106.285561318], [787427.9664419862, 5750030.956888853]]}, "properties": {"id": "46116-46114-46112-46110", "from": "508067933", "to": "508067930", "length_m": 104.19471310229508, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837005.4092225533, 5806388.089117462], [837023.7770399626, 5806448.582878754]]}, "properties": {"id": "46117-46118-46119-46120", "from": "254238270", "to": "3989374893", "length_m": 63.34659874051828, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760356.2544405218, 5732643.230419948], [760396.3773019981, 5732564.547661101]]}, "properties": {"id": "4612-4614-4616-4618-4620-4622", "from": "832508916", "to": "810035228", "length_m": 90.32458504952649, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837023.7770399626, 5806448.582878754], [837047.5030830984, 5806584.170870569]]}, "properties": {"id": "46121-46122-46123-46124", "from": "3989374893", "to": "254257087", "length_m": 137.67854226388093, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788323.7601514377, 5751518.692364767], [787788.2044686934, 5751433.092778095]]}, "properties": {"id": "46125-46127-46129-46131-46133-46135-46137-46139", "from": "822914639", "to": "848692999", "length_m": 554.3186325743966, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787788.2044686934, 5751433.092778095], [788323.7601514377, 5751518.692364767]]}, "properties": {"id": "46140-46138-46136-46134-46132-46130-46128-46126", "from": "848692999", "to": "822914639", "length_m": 554.3186325743966, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787788.2044686934, 5751433.092778095], [787775.5646346996, 5751431.387691778]]}, "properties": {"id": "46141-46143", "from": "848692999", "to": "848692577", "length_m": 12.754323712071985, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787775.5646346996, 5751431.387691778], [787788.2044686934, 5751433.092778095]]}, "properties": {"id": "46144-46142", "from": "848692577", "to": "848692999", "length_m": 12.754323712071985, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787775.5646346996, 5751431.387691778], [787240.195379534, 5751500.7223419435]]}, "properties": {"id": "46145-46147-46149-46151-46153", "from": "848692577", "to": "976342869", "length_m": 542.6494213830924, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787240.195379534, 5751500.7223419435], [787775.5646346996, 5751431.387691778]]}, "properties": {"id": "46154-46152-46150-46148-46146", "from": "976342869", "to": "848692577", "length_m": 542.6494213830924, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787240.195379534, 5751500.7223419435], [786797.2343936313, 5751584.106292927]]}, "properties": {"id": "46155-46157", "from": "976342869", "to": "3612387689", "length_m": 450.74085415951333, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786797.2343936313, 5751584.106292927], [787240.195379534, 5751500.7223419435]]}, "properties": {"id": "46158-46156", "from": "3612387689", "to": "976342869", "length_m": 450.74085415951333, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788656.2398519138, 5750637.721839002], [788501.2332912681, 5750527.369781419]]}, "properties": {"id": "46159-46160-46161", "from": "508067899", "to": "508067893", "length_m": 191.12308204822722, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828827.8641849381, 5821995.373466439], [828932.2919153305, 5821992.579078415]]}, "properties": {"id": "46162-46163-46164-46165-46166-46167-46168-46169-46170", "from": "33086230", "to": "33085400", "length_m": 106.41469398024903, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788663.8346761146, 5750622.97899305], [788657.900373853, 5750637.162238084]]}, "properties": {"id": "46171-46172", "from": "508067911", "to": "5640651672", "length_m": 15.719070418146348, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788832.5383646047, 5751436.211471048], [788762.9680324176, 5752006.5024070265]]}, "properties": {"id": "46173-46175-46177-46179", "from": "321711589", "to": "845902034", "length_m": 574.731620265206, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788762.9680324176, 5752006.5024070265], [788832.5383646047, 5751436.211471048]]}, "properties": {"id": "46180-46178-46176-46174", "from": "845902034", "to": "321711589", "length_m": 574.731620265206, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836914.0581267634, 5806251.751420008], [836956.9042327914, 5806302.4561367445]]}, "properties": {"id": "46181", "from": "254231554", "to": "32549509", "length_m": 66.38340945642197, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788693.7879860906, 5750690.8418073], [788698.861380795, 5750681.8202070445]]}, "properties": {"id": "46182", "from": "2075585998", "to": "321711581", "length_m": 10.847773086365383, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788698.861380795, 5750681.8202070445], [788693.7879860906, 5750690.8418073]]}, "properties": {"id": "46183", "from": "321711581", "to": "2075585998", "length_m": 10.847773086365383, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788698.861380795, 5750681.8202070445], [789017.5534325626, 5750698.310101813]]}, "properties": {"id": "46184-46186-46188-46190", "from": "321711581", "to": "508067876", "length_m": 328.8255383787185, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789017.5534325626, 5750698.310101813], [788698.861380795, 5750681.8202070445]]}, "properties": {"id": "46191-46189-46187-46185", "from": "508067876", "to": "321711581", "length_m": 328.8255383787185, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788193.958000242, 5751043.272204859], [788110.3623311108, 5751022.64180995]]}, "properties": {"id": "46197-46199-46201", "from": "509914074", "to": "509914303", "length_m": 87.20921453132327, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836236.7286190428, 5808866.065217642], [836235.4951815994, 5808848.858074327]]}, "properties": {"id": "462-463-464", "from": "75146088", "to": "75146091", "length_m": 17.937760174902024, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788110.3623311108, 5751022.64180995], [788193.958000242, 5751043.272204859]]}, "properties": {"id": "46202-46200-46198", "from": "509914303", "to": "509914074", "length_m": 87.20921453132327, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788110.3623311108, 5751022.64180995], [787996.0229658275, 5750982.814089282]]}, "properties": {"id": "46203", "from": "509914303", "to": "509914293", "length_m": 121.07740370943536, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787996.0229658275, 5750982.814089282], [788110.3623311108, 5751022.64180995]]}, "properties": {"id": "46204", "from": "509914293", "to": "509914303", "length_m": 121.07740370943536, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787996.0229658275, 5750982.814089282], [787897.7915848675, 5750968.261494616]]}, "properties": {"id": "46205-46207-46209-46211", "from": "509914293", "to": "509914078", "length_m": 102.11953024513042, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787897.7915848675, 5750968.261494616], [787996.0229658275, 5750982.814089282]]}, "properties": {"id": "46212-46210-46208-46206", "from": "509914078", "to": "509914293", "length_m": 102.11953024513042, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787897.7915848675, 5750968.261494616], [787783.4296242673, 5751407.222505755]]}, "properties": {"id": "46213-46215-46217-46219-46221-46223-46225-46227-46229", "from": "509914078", "to": "848692895", "length_m": 592.874183036421, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760396.3773019981, 5732564.547661101], [760356.2544405218, 5732643.230419948]]}, "properties": {"id": "4623-4621-4619-4617-4615-4613", "from": "810035228", "to": "832508916", "length_m": 90.32458504952649, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787783.4296242673, 5751407.222505755], [787897.7915848675, 5750968.261494616]]}, "properties": {"id": "46230-46228-46226-46224-46222-46220-46218-46216-46214", "from": "848692895", "to": "509914078", "length_m": 592.874183036421, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788714.3996962641, 5750759.108881426], [788698.861380795, 5750681.8202070445]]}, "properties": {"id": "46231-46232-46233", "from": "321711585", "to": "321711581", "length_m": 79.19517315089726, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788698.861380795, 5750681.8202070445], [788669.5936899787, 5750647.657870238]]}, "properties": {"id": "46234-46235-46236-46237", "from": "321711581", "to": "508067903", "length_m": 45.370598380025534, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788832.5383646047, 5751436.211471048], [788601.4829401673, 5751467.290508859]]}, "properties": {"id": "46238-46240-46242-46244", "from": "321711589", "to": "822914635", "length_m": 233.22545713452914, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760396.3773019981, 5732564.547661101], [760356.229567593, 5732523.962380998]]}, "properties": {"id": "4624-4626-4628-4630", "from": "810035228", "to": "832508123", "length_m": 57.7664905150249, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788601.4829401673, 5751467.290508859], [788832.5383646047, 5751436.211471048]]}, "properties": {"id": "46245-46243-46241-46239", "from": "822914635", "to": "321711589", "length_m": 233.22545713452914, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788601.4829401673, 5751467.290508859], [788323.7601514377, 5751518.692364767]]}, "properties": {"id": "46246", "from": "822914635", "to": "822914639", "length_m": 282.43954724438953, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788323.7601514377, 5751518.692364767], [788601.4829401673, 5751467.290508859]]}, "properties": {"id": "46247", "from": "822914639", "to": "822914635", "length_m": 282.43954724438953, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761854.9465747848, 5763338.546112329], [761958.8329550175, 5763417.627176956]]}, "properties": {"id": "46274-46275", "from": "559370742", "to": "52483842", "length_m": 130.61002735866592, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761958.8329550175, 5763417.627176956], [762066.1167680691, 5763493.04160228]]}, "properties": {"id": "46276", "from": "52483842", "to": "1852719101", "length_m": 131.13791216033593, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762066.1167680691, 5763493.04160228], [762173.8025527061, 5763568.086201548]]}, "properties": {"id": "46277", "from": "1852719101", "to": "1852765552", "length_m": 131.25517140824698, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762173.8025527061, 5763568.086201548], [762279.9929217089, 5763642.622438862]]}, "properties": {"id": "46278", "from": "1852765552", "to": "52483843", "length_m": 129.73837158536662, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762279.9929217089, 5763642.622438862], [762302.0146706298, 5763658.286351789]]}, "properties": {"id": "46279", "from": "52483843", "to": "559370768", "length_m": 27.024351794922016, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762302.0146706298, 5763658.286351789], [762524.8203537324, 5763777.572631332]]}, "properties": {"id": "46280-46281-46282-46283-46284-46285", "from": "559370768", "to": "3189862240", "length_m": 253.3675437356714, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762524.8203537324, 5763777.572631332], [762875.3488005808, 5763813.50816024]]}, "properties": {"id": "46286-46287-46288-46289-46290-46291-46292-46293", "from": "3189862240", "to": "209025086", "length_m": 353.3757172037805, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760356.229567593, 5732523.962380998], [760396.3773019981, 5732564.547661101]]}, "properties": {"id": "4631-4629-4627-4625", "from": "832508123", "to": "810035228", "length_m": 57.7664905150249, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737719.271372781, 5711174.341861379], [738222.3751967155, 5711409.268472701]]}, "properties": {"id": "46317-46315-46313-46311-46309-46307-46305-46303-46301-46299-46297-46295-44431-45462", "from": "2881089014", "to": "2881089005", "length_m": 560.2295581457128, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737719.271372781, 5711174.341861379], [736999.9095920967, 5710906.513861725]]}, "properties": {"id": "46318-46320-46322-46324-46326-46328-46330-46332-46334-46336-46338-46340-46342-46344-46645-44636-44638-44640-44642-44644", "from": "2881089014", "to": "2881089019", "length_m": 828.509952792408, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804207.8459576429, 5767237.564826526], [804211.8371613395, 5767251.576879236]]}, "properties": {"id": "4632", "from": "435990856", "to": "435990857", "length_m": 14.569396947998065, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804211.8371613395, 5767251.576879236], [804207.8459576429, 5767237.564826526]]}, "properties": {"id": "4633", "from": "435990857", "to": "435990856", "length_m": 14.569396947998065, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788017.8498958573, 5750223.217277045], [788110.6890463945, 5750221.333335924]]}, "properties": {"id": "46346", "from": "508068039", "to": "508067953", "length_m": 92.85826326754355, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788110.6890463945, 5750221.333335924], [788270.7301683933, 5750338.18045776]]}, "properties": {"id": "46347-46348-46349-46350-46351", "from": "508067953", "to": "508067955", "length_m": 203.63381090139134, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788714.3996962641, 5750759.108881426], [788726.020648767, 5750836.993516019]]}, "properties": {"id": "46352", "from": "321711585", "to": "508067849", "length_m": 78.74682748389648, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788726.020648767, 5750836.993516019], [788714.3996962641, 5750759.108881426]]}, "properties": {"id": "46353", "from": "508067849", "to": "321711585", "length_m": 78.74682748389648, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788726.020648767, 5750836.993516019], [788738.0436198981, 5750896.76954035]]}, "properties": {"id": "46354-46356", "from": "508067849", "to": "508067986", "length_m": 60.9752427588061, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788738.0436198981, 5750896.76954035], [788726.020648767, 5750836.993516019]]}, "properties": {"id": "46357-46355", "from": "508067986", "to": "508067849", "length_m": 60.9752427588061, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788738.0436198981, 5750896.76954035], [788760.752334672, 5751012.946226019]]}, "properties": {"id": "46358-46360-46362", "from": "508067986", "to": "508067817", "length_m": 118.37747201753486, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788760.752334672, 5751012.946226019], [788738.0436198981, 5750896.76954035]]}, "properties": {"id": "46363-46361-46359", "from": "508067817", "to": "508067986", "length_m": 118.37747201753486, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788760.752334672, 5751012.946226019], [788775.2460977924, 5751097.463257733]]}, "properties": {"id": "46364-46366", "from": "508067817", "to": "321711586", "length_m": 85.78024784808811, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788775.2460977924, 5751097.463257733], [788760.752334672, 5751012.946226019]]}, "properties": {"id": "46367-46365", "from": "321711586", "to": "508067817", "length_m": 85.78024784808811, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788775.2460977924, 5751097.463257733], [788780.5078462409, 5751131.951671686]]}, "properties": {"id": "46368", "from": "321711586", "to": "508068168", "length_m": 34.88748620058131, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788780.5078462409, 5751131.951671686], [788775.2460977924, 5751097.463257733]]}, "properties": {"id": "46369", "from": "508068168", "to": "321711586", "length_m": 34.88748620058131, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830989.9126652664, 5824634.092261606], [830180.9436354451, 5825240.301601048]]}, "properties": {"id": "46374-46375-46376-46377-46378-46379-46380-46381-46382-46383-46384-30327-30328-30329-30330-30331-30332-30333-30334-30335-30336-30337-30338-30339", "from": "303685315", "to": "601375324", "length_m": 1026.3506012312555, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759563.9003444725, 5731333.639050892], [759434.0920104748, 5731424.633762391]]}, "properties": {"id": "4641-4639-4637-4635-3692", "from": "832510043", "to": "832508485", "length_m": 199.5743064196661, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747022.8022753852, 5781663.00750658], [747853.5743907449, 5781574.582921077]]}, "properties": {"id": "46412-46410-46408-46406-46404-46402-46400-46398-46396-46394-46392-46390-46388-46386-37204-4484-4482", "from": "177850240", "to": "2151398458", "length_m": 842.5847348691177, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747022.8022753852, 5781663.00750658], [746402.6009065431, 5781839.76719358]]}, "properties": {"id": "46413-46415-46417-46419-46421-46423-46425-46427", "from": "177850240", "to": "317721045", "length_m": 645.0181169818277, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759563.9003444725, 5731333.639050892], [759591.217734079, 5731298.031228797]]}, "properties": {"id": "4642", "from": "832510043", "to": "832508270", "length_m": 44.87935795885415, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746402.6009065431, 5781839.76719358], [747022.8022753852, 5781663.00750658]]}, "properties": {"id": "46428-46426-46424-46422-46420-46418-46416-46414", "from": "317721045", "to": "177850240", "length_m": 645.0181169818277, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746402.6009065431, 5781839.76719358], [745879.6614088267, 5782026.327306917]]}, "properties": {"id": "46429-46431-46433-46435-46437", "from": "317721045", "to": "5705903669", "length_m": 555.2243618217348, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759591.217734079, 5731298.031228797], [759563.9003444725, 5731333.639050892]]}, "properties": {"id": "4643", "from": "832508270", "to": "832510043", "length_m": 44.87935795885415, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745879.6614088267, 5782026.327306917], [746402.6009065431, 5781839.76719358]]}, "properties": {"id": "46438-46436-46434-46432-46430", "from": "5705903669", "to": "317721045", "length_m": 555.2243618217348, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745879.6614088267, 5782026.327306917], [745244.642834781, 5782253.997470735]]}, "properties": {"id": "46439-46441-46443-46445-46447-46449-46451-46453-46455-46457", "from": "5705903669", "to": "177850241", "length_m": 674.606303045899, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759591.217734079, 5731298.031228797], [759573.2106251875, 5731188.102215328]]}, "properties": {"id": "4644-4646", "from": "832508270", "to": "832509987", "length_m": 111.9997618996012, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745244.642834781, 5782253.997470735], [745879.6614088267, 5782026.327306917]]}, "properties": {"id": "46458-46456-46454-46452-46450-46448-46446-46444-46442-46440", "from": "177850241", "to": "5705903669", "length_m": 674.606303045899, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745244.642834781, 5782253.997470735], [744606.368620751, 5782482.179731163]]}, "properties": {"id": "46459-46461-46463-46465-46467-46469-46471-46473-46475-46477", "from": "177850241", "to": "5705903687", "length_m": 677.8519520447732, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759573.2106251875, 5731188.102215328], [759591.217734079, 5731298.031228797]]}, "properties": {"id": "4647-4645", "from": "832509987", "to": "832508270", "length_m": 111.9997618996012, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744606.368620751, 5782482.179731163], [745244.642834781, 5782253.997470735]]}, "properties": {"id": "46478-46476-46474-46472-46470-46468-46466-46464-46462-46460", "from": "5705903687", "to": "177850241", "length_m": 677.8519520447732, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744606.368620751, 5782482.179731163], [743615.4154674828, 5782838.870915316]]}, "properties": {"id": "46479-46481-46483-46485-46487-46489-46491-46493", "from": "5705903687", "to": "5705903695", "length_m": 1053.2078374050516, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759573.2106251875, 5731188.102215328], [759571.995338103, 5731102.384939055]]}, "properties": {"id": "4648", "from": "832509987", "to": "832508833", "length_m": 85.72589093059129, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759571.995338103, 5731102.384939055], [759573.2106251875, 5731188.102215328]]}, "properties": {"id": "4649", "from": "832508833", "to": "832509987", "length_m": 85.72589093059129, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743615.4154674828, 5782838.870915316], [744606.368620751, 5782482.179731163]]}, "properties": {"id": "46494-46492-46490-46488-46486-46484-46482-46480", "from": "5705903695", "to": "5705903687", "length_m": 1053.2078374050516, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743615.4154674828, 5782838.870915316], [743063.4381321569, 5783036.9172453545]]}, "properties": {"id": "46495-46497-46499-46501-46503-46505-46507-46509", "from": "5705903695", "to": "5705903703", "length_m": 586.4482908997331, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836235.4951815994, 5808848.858074327], [836228.5925251078, 5808842.735630278]]}, "properties": {"id": "465-466", "from": "75146091", "to": "75146077", "length_m": 9.305807111304162, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759571.995338103, 5731102.384939055], [759580.468959406, 5731025.320458643]]}, "properties": {"id": "4650-4652-4654", "from": "832508833", "to": "832508372", "length_m": 78.62674935605699, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743063.4381321569, 5783036.9172453545], [743615.4154674828, 5782838.870915316]]}, "properties": {"id": "46510-46508-46506-46504-46502-46500-46498-46496", "from": "5705903703", "to": "5705903695", "length_m": 586.4482908997331, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743063.4381321569, 5783036.9172453545], [742466.7883273623, 5783250.561443762]]}, "properties": {"id": "46511-46513-46515-46517-46519", "from": "5705903703", "to": "5705903708", "length_m": 633.752711101657, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742466.7883273623, 5783250.561443762], [743063.4381321569, 5783036.9172453545]]}, "properties": {"id": "46520-46518-46516-46514-46512", "from": "5705903708", "to": "5705903703", "length_m": 633.752711101657, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[742466.7883273623, 5783250.561443762], [741648.1308281466, 5783544.417644244]]}, "properties": {"id": "46521-46523-46525-46527", "from": "5705903708", "to": "317721047", "length_m": 869.8004649062134, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741648.1308281466, 5783544.417644244], [742466.7883273623, 5783250.561443762]]}, "properties": {"id": "46528-46526-46524-46522", "from": "317721047", "to": "5705903708", "length_m": 869.8004649062134, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741648.1308281466, 5783544.417644244], [740841.6152067501, 5783874.31830196]]}, "properties": {"id": "46529-46531-46533-46535-46537-46539-46541-46543-46545-46547-46549-46551-46553-46555-46557-46559", "from": "317721047", "to": "317721050", "length_m": 873.1184356014822, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759580.468959406, 5731025.320458643], [759571.995338103, 5731102.384939055]]}, "properties": {"id": "4655-4653-4651", "from": "832508372", "to": "832508833", "length_m": 78.62674935605699, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759580.468959406, 5731025.320458643], [759608.9721845639, 5730986.485100995]]}, "properties": {"id": "4656-4658-4660", "from": "832508372", "to": "832509674", "length_m": 49.35037069260945, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740841.6152067501, 5783874.31830196], [741648.1308281466, 5783544.417644244]]}, "properties": {"id": "46560-46558-46556-46554-46552-46550-46548-46546-46544-46542-46540-46538-46536-46534-46532-46530", "from": "317721050", "to": "317721047", "length_m": 873.1184356014822, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[740841.6152067501, 5783874.31830196], [740108.9155514057, 5784145.252833632]]}, "properties": {"id": "46561-46563-46565-46567-46569-46571-46573-46575-46577-46579-46581-46583-46585-46587-46589-46591-46593-37229-37231-37233", "from": "317721050", "to": "317721055", "length_m": 788.24708076173, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838975.5086393795, 5809597.025984036], [838496.424804303, 5809685.44657159]]}, "properties": {"id": "46601-46603-5654-5656", "from": "321401359", "to": "75141976", "length_m": 487.20173283133755, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836956.9042327914, 5806302.4561367445], [837005.4092225533, 5806388.089117462]]}, "properties": {"id": "46605-46606-46607", "from": "32549509", "to": "254238270", "length_m": 98.54567786912918, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831113.9788960565, 5824553.213357198], [830989.9126652664, 5824634.092261606]]}, "properties": {"id": "46608-46609", "from": "1503514919", "to": "303685315", "length_m": 148.1007321459718, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759608.9721845639, 5730986.485100995], [759580.468959406, 5731025.320458643]]}, "properties": {"id": "4661-4659-4657", "from": "832509674", "to": "832508372", "length_m": 49.35037069260945, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830989.9126652664, 5824634.092261606], [830180.9436354451, 5825240.301601048]]}, "properties": {"id": "46610-46611-46612-46613-46614-46615-46616-46617-46618-46619-46620-46621-46622-46623-46624", "from": "303685315", "to": "601375324", "length_m": 1015.5667775524724, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830180.9436354451, 5825240.301601048], [830024.7154819675, 5825619.541855964]]}, "properties": {"id": "46625-46626-46627-46628-46629-46630-46631-46632-46633-46634-46635-46636", "from": "601375324", "to": "348188443", "length_m": 412.2609581377399, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788269.674793946, 5778906.930755566], [787472.1138135018, 5779225.61564566]]}, "properties": {"id": "46667-46665-46663-46661-46659-46657-46655-46653-46651-38448", "from": "318039461", "to": "4181465676", "length_m": 871.6522143300026, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788269.674793946, 5778906.930755566], [788746.3668160933, 5778594.989416734]]}, "properties": {"id": "46668-46670", "from": "318039461", "to": "318039462", "length_m": 569.7342020472528, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793729.0270928104, 5774073.629579565], [793716.4595960281, 5774074.706398841]]}, "properties": {"id": "4667-4668-4669", "from": "1557825485", "to": "3996617763", "length_m": 12.71350822615708, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788746.3668160933, 5778594.989416734], [788269.674793946, 5778906.930755566]]}, "properties": {"id": "46671-46669", "from": "318039462", "to": "318039461", "length_m": 569.7342020472528, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788746.3668160933, 5778594.989416734], [789989.0541485044, 5778113.397618884]]}, "properties": {"id": "46672-46674-46676-1337-1339-1341-1343-1345-1347-1349-1351-21078-21080-21082", "from": "318039462", "to": "318039431", "length_m": 1338.1747137168556, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733243.2513206275, 5709167.415690361], [732578.6967159661, 5708556.366793395]]}, "properties": {"id": "46682-42699-42701-42703-42705-42707-42709-42711-42713-42715-42717-42719", "from": "863352664", "to": "2882838082", "length_m": 905.6167357348372, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792979.8529818259, 5768666.74927451], [793449.7287163507, 5768833.146242249]]}, "properties": {"id": "46687-46688-22927-22928-22929-22930-22931-7662-7663-7664-7665-7666-7667-7668-7669-7676-7677-7678", "from": "36692770", "to": "880526853(1)", "length_m": 571.8881511066354, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831549.1417266962, 5821500.1465720665], [831626.0098074456, 5821484.14861173]]}, "properties": {"id": "46689-46690", "from": "605203284", "to": "26032503", "length_m": 78.5152151248041, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793716.4595960281, 5774074.706398841], [793705.7936013009, 5774082.72770648]]}, "properties": {"id": "4670-4671-4672-4673", "from": "3996617763", "to": "3996617764", "length_m": 13.504877280926367, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833946.6936023396, 5804537.911557989], [833949.4037787123, 5804552.289788788]]}, "properties": {"id": "46700", "from": "599450927", "to": "825685785", "length_m": 14.631424275245688, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833949.4037787123, 5804552.289788788], [833946.6936023396, 5804537.911557989]]}, "properties": {"id": "46701", "from": "825685785", "to": "599450927", "length_m": 14.631424275245688, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[839243.7522368915, 5817580.521275794], [839219.12446716, 5817591.1648696195]]}, "properties": {"id": "46705", "from": "241860884", "to": "241860885", "length_m": 26.829333384625176, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835062.3935128134, 5817544.730188811], [835887.7290241228, 5817398.168220634]]}, "properties": {"id": "46717-46718-46719-4662-4663-4664-4665-4666-46710-46711-46712-46713-46714-46715-46716", "from": "309809640", "to": "299196615", "length_m": 838.3275167979411, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791683.7577927606, 5755167.034532786], [791691.8237716826, 5755209.934712208]]}, "properties": {"id": "46720", "from": "5621360607", "to": "5621360608", "length_m": 43.65186603299332, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791691.8237716826, 5755209.934712208], [791683.7577927606, 5755167.034532786]]}, "properties": {"id": "46721", "from": "5621360608", "to": "5621360607", "length_m": 43.65186603299332, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791683.7577927606, 5755167.034532786], [791675.5816448322, 5755122.537818403]]}, "properties": {"id": "46724", "from": "5621360607", "to": "5621360609", "length_m": 45.24165098302044, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791675.5816448322, 5755122.537818403], [791683.7577927606, 5755167.034532786]]}, "properties": {"id": "46725", "from": "5621360609", "to": "5621360607", "length_m": 45.24165098302044, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795023.518884236, 5762290.234966604], [794828.3598065565, 5760772.578886539]]}, "properties": {"id": "46726-46728-46730-46732-46734-46736-46738-46740-46742-46744-46746", "from": "2888615853", "to": "329904918", "length_m": 1578.8227769073592, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838285.8362063044, 5806632.993111454], [838768.2053356663, 5806688.244688246]]}, "properties": {"id": "4674-4675-4676-4677-4678-4679-4680-4681-4682-4683-4684-4685", "from": "250290129", "to": "244891997", "length_m": 487.00682442086867, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794828.3598065565, 5760772.578886539], [795023.518884236, 5762290.234966604]]}, "properties": {"id": "46747-46745-46743-46741-46739-46737-46735-46733-46731-46729-46727", "from": "329904918", "to": "2888615853", "length_m": 1578.8227769073592, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794828.3598065565, 5760772.578886539], [794524.1598704611, 5759167.995600637]]}, "properties": {"id": "46748", "from": "329904918", "to": "331120847", "length_m": 1633.1641434170608, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794524.1598704611, 5759167.995600637], [794828.3598065565, 5760772.578886539]]}, "properties": {"id": "46749", "from": "331120847", "to": "329904918", "length_m": 1633.1641434170608, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814932.1953813316, 5822509.185195341], [815764.477877601, 5822249.952391537]]}, "properties": {"id": "46764-46765-46940-46941-46905-46906-46907-46908", "from": "1834826154", "to": "3367822915", "length_m": 875.5318021567621, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814017.234043263, 5822674.698053174], [814932.1953813316, 5822509.185195341]]}, "properties": {"id": "46767", "from": "35090937", "to": "1834826154", "length_m": 929.8111373363697, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791598.3121449344, 5755183.025047364], [791590.2724816895, 5755138.656737409]]}, "properties": {"id": "46768", "from": "5621360606", "to": "5621360611", "length_m": 45.09083178651644, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791590.2724816895, 5755138.656737409], [791598.3121449344, 5755183.025047364]]}, "properties": {"id": "46769", "from": "5621360611", "to": "5621360606", "length_m": 45.09083178651644, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791598.3121449344, 5755183.025047364], [791606.6896761106, 5755230.926724873]]}, "properties": {"id": "46794", "from": "5621360606", "to": "5621360610", "length_m": 48.62873361899425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791606.6896761106, 5755230.926724873], [791598.3121449344, 5755183.025047364]]}, "properties": {"id": "46795", "from": "5621360610", "to": "5621360606", "length_m": 48.62873361899425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790639.3453729559, 5751889.679405892], [790757.035743342, 5752071.418324038]]}, "properties": {"id": "46797-46799-46801-46803-46805-46807-46809-46811", "from": "37693856", "to": "37693932", "length_m": 221.78351043021706, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777836.281430813, 5762688.156678869], [777743.4681810017, 5762731.881753936]]}, "properties": {"id": "468-470", "from": "3879204254", "to": "3879204256", "length_m": 108.14873552272093, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790757.035743342, 5752071.418324038], [790639.3453729559, 5751889.679405892]]}, "properties": {"id": "46812-46810-46808-46806-46804-46802-46800-46798", "from": "37693932", "to": "37693856", "length_m": 221.78351043021706, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790757.035743342, 5752071.418324038], [790784.586066827, 5752228.274865853]]}, "properties": {"id": "46813", "from": "37693932", "to": "510171813", "length_m": 159.25763719895903, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790784.586066827, 5752228.274865853], [790757.035743342, 5752071.418324038]]}, "properties": {"id": "46814", "from": "510171813", "to": "37693932", "length_m": 159.25763719895903, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790784.586066827, 5752228.274865853], [790796.1894007362, 5752659.214468884]]}, "properties": {"id": "46815-46817-46819-46821-46823-46825-46827-46829-46831-46833-46835-46837-46839", "from": "510171813", "to": "4187193581", "length_m": 435.47302812526624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790796.1894007362, 5752659.214468884], [790784.586066827, 5752228.274865853]]}, "properties": {"id": "46840-46838-46836-46834-46832-46830-46828-46826-46824-46822-46820-46818-46816", "from": "4187193581", "to": "510171813", "length_m": 435.47302812526624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790796.1894007362, 5752659.214468884], [790938.7503239557, 5752858.9391157525]]}, "properties": {"id": "46841-46843-46845-46847-46849-46851-46853", "from": "4187193581", "to": "510172366", "length_m": 245.5275391399633, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790938.7503239557, 5752858.9391157525], [790796.1894007362, 5752659.214468884]]}, "properties": {"id": "46854-46852-46850-46848-46846-46844-46842", "from": "510172366", "to": "4187193581", "length_m": 245.5275391399633, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790938.7503239557, 5752858.9391157525], [791117.8432898236, 5753015.597230084]]}, "properties": {"id": "46855-46857-46859-46861-46863-46865", "from": "510172366", "to": "270452134", "length_m": 238.070151667753, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759721.0766940028, 5731210.865386932], [759825.0404327121, 5731326.162481322]]}, "properties": {"id": "4686-4688-4690", "from": "832508884", "to": "832508436", "length_m": 155.99690343959162, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791117.8432898236, 5753015.597230084], [790938.7503239557, 5752858.9391157525]]}, "properties": {"id": "46866-46864-46862-46860-46858-46856", "from": "270452134", "to": "510172366", "length_m": 238.070151667753, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791117.8432898236, 5753015.597230084], [791460.5195251406, 5753256.506903434]]}, "properties": {"id": "46867-46869-46871-46873-46875-46877-46879-46881-46883-46885-46887-46889-46891", "from": "270452134", "to": "512197989", "length_m": 420.1850548949783, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791460.5195251406, 5753256.506903434], [791117.8432898236, 5753015.597230084]]}, "properties": {"id": "46892-46890-46888-46886-46884-46882-46880-46878-46876-46874-46872-46870-46868", "from": "512197989", "to": "270452134", "length_m": 420.1850548949783, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791460.5195251406, 5753256.506903434], [791588.2567753068, 5753357.6259149425]]}, "properties": {"id": "46893", "from": "512197989", "to": "512198542", "length_m": 162.9167253092471, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791588.2567753068, 5753357.6259149425], [791460.5195251406, 5753256.506903434]]}, "properties": {"id": "46894", "from": "512198542", "to": "512197989", "length_m": 162.9167253092471, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791588.2567753068, 5753357.6259149425], [791710.1462303144, 5753452.396917186]]}, "properties": {"id": "46895-46897-46899", "from": "512198542", "to": "512198174", "length_m": 154.40268008272983, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791710.1462303144, 5753452.396917186], [791588.2567753068, 5753357.6259149425]]}, "properties": {"id": "46900-46898-46896", "from": "512198174", "to": "512198542", "length_m": 154.40268008272983, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833799.3190721316, 5804577.82194893], [833796.7190836165, 5804563.328021311]]}, "properties": {"id": "46901", "from": "825685969", "to": "825686158", "length_m": 14.725280232191604, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833796.7190836165, 5804563.328021311], [833799.3190721316, 5804577.82194893]]}, "properties": {"id": "46902", "from": "825686158", "to": "825685969", "length_m": 14.725280232191604, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790639.3453729559, 5751889.679405892], [790522.9182062058, 5751911.29062555]]}, "properties": {"id": "46903", "from": "37693856", "to": "510171662", "length_m": 118.4159191775007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790522.9182062058, 5751911.29062555], [790639.3453729559, 5751889.679405892]]}, "properties": {"id": "46904", "from": "510171662", "to": "37693856", "length_m": 118.4159191775007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[815764.477877601, 5822249.952391537], [816489.3410134153, 5821986.358529611]]}, "properties": {"id": "46909-46910-46911-46912-46913-34446-53064-53065-53066-53067-53068", "from": "3367822915", "to": "3367822892", "length_m": 775.4606678858123, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759825.0404327121, 5731326.162481322], [759721.0766940028, 5731210.865386932]]}, "properties": {"id": "4691-4689-4687", "from": "832508436", "to": "832508884", "length_m": 155.99690343959162, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790522.9182062058, 5751911.29062555], [790509.3368425348, 5751913.635961029]]}, "properties": {"id": "46914", "from": "510171662", "to": "510171642", "length_m": 13.782381377793921, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790509.3368425348, 5751913.635961029], [790522.9182062058, 5751911.29062555]]}, "properties": {"id": "46915", "from": "510171642", "to": "510171662", "length_m": 13.782381377793921, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790509.3368425348, 5751913.635961029], [790389.7096812981, 5751936.105136447]]}, "properties": {"id": "46916", "from": "510171642", "to": "2315614121", "length_m": 121.71902682335312, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790389.7096812981, 5751936.105136447], [790509.3368425348, 5751913.635961029]]}, "properties": {"id": "46917", "from": "2315614121", "to": "510171642", "length_m": 121.71902682335312, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790389.7096812981, 5751936.105136447], [790316.0569810831, 5751949.948951881]]}, "properties": {"id": "46918", "from": "2315614121", "to": "2315614119", "length_m": 74.94245425726439, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790316.0569810831, 5751949.948951881], [790389.7096812981, 5751936.105136447]]}, "properties": {"id": "46919", "from": "2315614119", "to": "2315614121", "length_m": 74.94245425726439, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759825.0404327121, 5731326.162481322], [759859.8832544367, 5731374.0553035615]]}, "properties": {"id": "4692", "from": "832508436", "to": "832510157", "length_m": 59.22621578855508, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790316.0569810831, 5751949.948951881], [790000.3555770395, 5752009.243257652]]}, "properties": {"id": "46920", "from": "2315614119", "to": "510171539", "length_m": 321.2214046386669, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790000.3555770395, 5752009.243257652], [790316.0569810831, 5751949.948951881]]}, "properties": {"id": "46921", "from": "510171539", "to": "2315614119", "length_m": 321.2214046386669, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790000.3555770395, 5752009.243257652], [789888.1336890581, 5752030.515999783]]}, "properties": {"id": "46922", "from": "510171539", "to": "270452290", "length_m": 114.2203206262063, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789888.1336890581, 5752030.515999783], [790000.3555770395, 5752009.243257652]]}, "properties": {"id": "46923", "from": "270452290", "to": "510171539", "length_m": 114.2203206262063, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759859.8832544367, 5731374.0553035615], [759825.0404327121, 5731326.162481322]]}, "properties": {"id": "4693", "from": "832510157", "to": "832508436", "length_m": 59.22621578855508, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[815773.216752536, 5822211.46654154], [815076.6266619625, 5822444.867137353]]}, "properties": {"id": "46936-46937-46945-46946-46942-46943", "from": "3367822913", "to": "34610830", "length_m": 738.0930083373952, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780784.2336219051, 5755765.756214974], [780915.7836515829, 5756381.868458455]]}, "properties": {"id": "46938-56771-56773", "from": "484264190", "to": "6032632252", "length_m": 631.8987421676263, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759859.8832544367, 5731374.0553035615], [760006.622288427, 5731569.297454282]]}, "properties": {"id": "4694", "from": "832510157", "to": "832509470", "length_m": 244.23726438086126, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[815076.6266619625, 5822444.867137353], [814080.1872104456, 5822629.305295948]]}, "properties": {"id": "46944-46766-34698-34699", "from": "34610830", "to": "1834826158", "length_m": 1013.428692997293, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760006.622288427, 5731569.297454282], [759859.8832544367, 5731374.0553035615]]}, "properties": {"id": "4695", "from": "832509470", "to": "832510157", "length_m": 244.23726438086126, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835208.8751803963, 5804284.149000556], [835146.1961350485, 5804294.826723014]]}, "properties": {"id": "46950-46951", "from": "244892179", "to": "825559691", "length_m": 63.58510654150923, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760006.622288427, 5731569.297454282], [760047.1126852299, 5731635.15108792]]}, "properties": {"id": "4696", "from": "832509470", "to": "832509290", "length_m": 77.30571311929761, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835208.2453158834, 5804300.242484202], [835215.2099520916, 5804299.135102371]]}, "properties": {"id": "46967", "from": "825571561", "to": "293664305", "length_m": 7.052123939618332, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782097.7264761489, 5763134.096675325], [781948.4040065769, 5762262.740355576]]}, "properties": {"id": "46968-34298-34300", "from": "476151607", "to": "6076265226", "length_m": 884.0821015043806, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760047.1126852299, 5731635.15108792], [760006.622288427, 5731569.297454282]]}, "properties": {"id": "4697", "from": "832509290", "to": "832509470", "length_m": 77.30571311929761, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760047.1126852299, 5731635.15108792], [760288.3108581462, 5732008.959196769]]}, "properties": {"id": "4698-4700-4702", "from": "832509290", "to": "832507573", "length_m": 444.869928585092, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837034.3184199426, 5806413.378670441], [837024.4692748873, 5806385.727774411]]}, "properties": {"id": "46980-46981", "from": "254230220", "to": "3323284486", "length_m": 29.357622029509294, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782262.6689227766, 5764055.105856251], [782388.8921178392, 5764748.296677323]]}, "properties": {"id": "46994-46996-46998-47000-47002-47004-47006-47008-47010", "from": "6076265211", "to": "476151606", "length_m": 705.2622258281818, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782388.8921178392, 5764748.296677323], [782262.6689227766, 5764055.105856251]]}, "properties": {"id": "47011-47009-47007-47005-47003-47001-46999-46997-46995", "from": "476151606", "to": "6076265211", "length_m": 705.2622258281818, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837076.5582440456, 5806661.127938522], [837061.9228350432, 5806573.181982636]]}, "properties": {"id": "47012-1670-47013", "from": "254228084", "to": "254228085", "length_m": 89.16227094798518, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837036.3665570645, 5806421.5899469815], [837034.3184199426, 5806413.378670441]]}, "properties": {"id": "47018", "from": "254230219", "to": "254230220", "length_m": 8.462855781971191, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760288.3108581462, 5732008.959196769], [760047.1126852299, 5731635.15108792]]}, "properties": {"id": "4703-4701-4699", "from": "832507573", "to": "832509290", "length_m": 444.869928585092, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749129.4002218382, 5744743.062710739], [748957.0542895172, 5743779.679964813]]}, "properties": {"id": "47036-47034-47032-47030-47028-47026-47024-47022-47020-47340-47338-47336-47334", "from": "811082355", "to": "811082526", "length_m": 1028.505186730536, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749129.4002218382, 5744743.062710739], [749324.1921355431, 5745457.035255192]]}, "properties": {"id": "47037-47039-47041", "from": "811082355", "to": "811082497", "length_m": 686.0476346800613, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749324.1921355431, 5745457.035255192], [749129.4002218382, 5744743.062710739]]}, "properties": {"id": "47042-47040-47038", "from": "811082497", "to": "811082355", "length_m": 686.0476346800613, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749324.1921355431, 5745457.035255192], [749217.4777098726, 5746168.454661843]]}, "properties": {"id": "47043-47045-47047-47049-47051", "from": "811082497", "to": "811081794", "length_m": 722.6403730034668, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749217.4777098726, 5746168.454661843], [749324.1921355431, 5745457.035255192]]}, "properties": {"id": "47052-47050-47048-47046-47044", "from": "811081794", "to": "811082497", "length_m": 722.6403730034668, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837061.9228350432, 5806573.181982636], [837047.5030830984, 5806584.170870569]]}, "properties": {"id": "47053-47054", "from": "254228085", "to": "254257087", "length_m": 18.680616418010274, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790819.5920019529, 5754431.191838825], [790793.6216563232, 5754304.165475]]}, "properties": {"id": "47069-47071-47073", "from": "5621360587", "to": "5621360596", "length_m": 129.70253185212334, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793726.0521945297, 5774084.829430955], [793763.7627360031, 5774092.5019260775]]}, "properties": {"id": "4707", "from": "318039630", "to": "318040020", "length_m": 38.48314058105958, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790793.6216563232, 5754304.165475], [790819.5920019529, 5754431.191838825]]}, "properties": {"id": "47074-47072-47070", "from": "5621360596", "to": "5621360587", "length_m": 129.70253185212334, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773715.4602114167, 5743897.981138025], [773524.1264198762, 5743330.610449353]]}, "properties": {"id": "47075-47077-47079-47081", "from": "295231720", "to": "524157169", "length_m": 630.1333012779962, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793763.7627360031, 5774092.5019260775], [793804.4488836931, 5774164.24189342]]}, "properties": {"id": "4708-4709-4710-4711-4712-4713-4714-4715-4716-4717-4718-4719-4720", "from": "318040020", "to": "318039883", "length_m": 102.60230324695814, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773524.1264198762, 5743330.610449353], [773715.4602114167, 5743897.981138025]]}, "properties": {"id": "47082-47080-47078-47076", "from": "524157169", "to": "295231720", "length_m": 630.1333012779962, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773524.1264198762, 5743330.610449353], [772929.8822987545, 5742689.811143043]]}, "properties": {"id": "47083-47085-47087-47089", "from": "524157169", "to": "527905336", "length_m": 874.6148737230831, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772929.8822987545, 5742689.811143043], [773524.1264198762, 5743330.610449353]]}, "properties": {"id": "47090-47088-47086-47084", "from": "527905336", "to": "524157169", "length_m": 874.6148737230831, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772929.8822987545, 5742689.811143043], [772431.818722096, 5742440.400802239]]}, "properties": {"id": "47091-47093-47095-47097-47099", "from": "527905336", "to": "524157156", "length_m": 567.0270228379636, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777743.4681810017, 5762731.881753936], [777836.281430813, 5762688.156678869]]}, "properties": {"id": "471-469", "from": "3879204256", "to": "3879204254", "length_m": 108.14873552272093, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772431.818722096, 5742440.400802239], [772929.8822987545, 5742689.811143043]]}, "properties": {"id": "47100-47098-47096-47094-47092", "from": "524157156", "to": "527905336", "length_m": 567.0270228379636, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772431.818722096, 5742440.400802239], [771749.0143746339, 5741953.7016861895]]}, "properties": {"id": "47101-47103-47105-47107-47109-47111-47113-47115-47117-47119", "from": "524157156", "to": "524157083", "length_m": 852.6884074199651, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771749.0143746339, 5741953.7016861895], [772431.818722096, 5742440.400802239]]}, "properties": {"id": "47120-47118-47116-47114-47112-47110-47108-47106-47104-47102", "from": "524157083", "to": "524157156", "length_m": 852.6884074199651, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771749.0143746339, 5741953.7016861895], [771331.0978668975, 5741657.4595987005]]}, "properties": {"id": "47121-47123-47125-47127-47129-47131-47133-47135-47137", "from": "524157083", "to": "527904396", "length_m": 523.5503127228003, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771331.0978668975, 5741657.4595987005], [771749.0143746339, 5741953.7016861895]]}, "properties": {"id": "47138-47136-47134-47132-47130-47128-47126-47124-47122", "from": "527904396", "to": "524157083", "length_m": 523.5503127228003, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771331.0978668975, 5741657.4595987005], [770681.0840965167, 5740963.395326209]]}, "properties": {"id": "47139-47141-47143-47145-47147-47149-47151-47153", "from": "527904396", "to": "524157006", "length_m": 991.5681609871473, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770681.0840965167, 5740963.395326209], [771331.0978668975, 5741657.4595987005]]}, "properties": {"id": "47154-47152-47150-47148-47146-47144-47142-47140", "from": "524157006", "to": "527904396", "length_m": 991.5681609871473, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770681.0840965167, 5740963.395326209], [770457.4236053466, 5740342.43425895]]}, "properties": {"id": "47155-47157-47159-47161-47163-47165-47167-47169-47171-47173", "from": "524157006", "to": "371469354", "length_m": 705.3182709166957, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770457.4236053466, 5740342.43425895], [770681.0840965167, 5740963.395326209]]}, "properties": {"id": "47174-47172-47170-47168-47166-47164-47162-47160-47158-47156", "from": "371469354", "to": "524157006", "length_m": 705.3182709166957, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776500.9368553092, 5743839.155037163], [776562.4100025438, 5743690.738983341]]}, "properties": {"id": "47175-47177-47179-47181-47183-47185", "from": "295251055", "to": "295251059", "length_m": 164.54836616357525, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776562.4100025438, 5743690.738983341], [776500.9368553092, 5743839.155037163]]}, "properties": {"id": "47186-47184-47182-47180-47178-47176", "from": "295251059", "to": "295251055", "length_m": 164.54836616357525, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776562.4100025438, 5743690.738983341], [777097.9252838467, 5743467.205454611]]}, "properties": {"id": "47187-47189-47191-47193-47195-47197-47199-47201-47203-47205-47207-47209-47211-47213-47215-47217-47219-47221-47223-47225", "from": "295251059", "to": "148795031", "length_m": 613.1942828745077, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772132.6286390701, 5771628.507112759], [772232.4610090614, 5772177.631085913]]}, "properties": {"id": "472-474-476-478-480", "from": "5604428499", "to": "5604428494", "length_m": 558.1884876023165, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793804.4488836931, 5774164.24189342], [793625.1127560742, 5774220.84110408]]}, "properties": {"id": "4721-4722-4723-4724-4725-4726-4727-28855-28856-28853", "from": "318039883", "to": "318039939", "length_m": 189.90824293801953, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777097.9252838467, 5743467.205454611], [776562.4100025438, 5743690.738983341]]}, "properties": {"id": "47226-47224-47222-47220-47218-47216-47214-47212-47210-47208-47206-47204-47202-47200-47198-47196-47194-47192-47190-47188", "from": "148795031", "to": "295251059", "length_m": 613.1942828745077, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751068.6130864071, 5746406.90613364], [751072.75606228, 5746009.395171871]]}, "properties": {"id": "47227-47229-47231-47233-47235-47237-47239-47241-47243-47245-47247-47249-47251-47253-47255-47257-47259-47261", "from": "811082476", "to": "811082242", "length_m": 405.00827952609234, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751072.75606228, 5746009.395171871], [751068.6130864071, 5746406.90613364]]}, "properties": {"id": "47262-47260-47258-47256-47254-47252-47250-47248-47246-47244-47242-47240-47238-47236-47234-47232-47230-47228", "from": "811082242", "to": "811082476", "length_m": 405.00827952609234, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837059.5841208694, 5806655.2306811325], [837076.5582440456, 5806661.127938522]]}, "properties": {"id": "47263-47264", "from": "254257041", "to": "254228084", "length_m": 18.0661297965217, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836374.5662673359, 5804089.1841860665], [836377.6777708188, 5804083.9971426735]]}, "properties": {"id": "47265-47266", "from": "1763046589", "to": "1763046592", "length_m": 6.078060739567756, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750173.1759273198, 5742946.339346639], [750778.7339060893, 5742604.729625514]]}, "properties": {"id": "47282-47280-47278-47276-47274-47272-47270-47268-48325-48323-48321-48319-48317-48315-48313", "from": "811082357", "to": "811082521", "length_m": 708.7863132760995, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750173.1759273198, 5742946.339346639], [749875.8344808763, 5743425.756428125]]}, "properties": {"id": "47283-47285-47287-47289-47291-47293-47295", "from": "811082357", "to": "811082548", "length_m": 575.0125764228432, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749875.8344808763, 5743425.756428125], [750173.1759273198, 5742946.339346639]]}, "properties": {"id": "47296-47294-47292-47290-47288-47286-47284", "from": "811082548", "to": "811082357", "length_m": 575.0125764228432, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749875.8344808763, 5743425.756428125], [748957.0542895172, 5743779.679964813]]}, "properties": {"id": "47297-47299-47301-47303-47305-47307-47309-47311-47313-47315-47317-47319-47321-47323-47325-47327-47329-47331", "from": "811082548", "to": "811082526", "length_m": 1085.1721900690893, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759819.6375292416, 5731506.740402478], [759807.7046978637, 5731692.963402761]]}, "properties": {"id": "4732-4734-4736-4738-4740", "from": "832510189", "to": "832509461", "length_m": 188.8799370503362, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748957.0542895172, 5743779.679964813], [749875.8344808763, 5743425.756428125]]}, "properties": {"id": "47332-47330-47328-47326-47324-47322-47320-47318-47316-47314-47312-47310-47308-47306-47304-47302-47300-47298", "from": "811082526", "to": "811082548", "length_m": 1085.1721900690893, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748957.0542895172, 5743779.679964813], [749129.4002218382, 5744743.062710739]]}, "properties": {"id": "47333-47335-47337-47339-47019-47021-47023-47025-47027-47029-47031-47033-47035", "from": "811082526", "to": "811082355", "length_m": 1028.505186730536, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838783.4880252517, 5806686.880265867], [838811.0968353498, 5806585.560848644]]}, "properties": {"id": "47341-6010-6011", "from": "250287973", "to": "250287974", "length_m": 105.12465799496073, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838795.443737746, 5806587.563347765], [838768.2053356663, 5806688.244688246]]}, "properties": {"id": "47350-6004-6005", "from": "250290113", "to": "244891997", "length_m": 104.30816661009732, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835303.6144435175, 5820877.845831374], [835229.3626369677, 5820473.890534718]]}, "properties": {"id": "47351-47352-47353-47354-47355-47356-47357-47358-47359-47360-47361-47362-47363-47364-47365-47366-47367-47368-47369-47370-47371-47372-47373", "from": "303683375", "to": "36047974", "length_m": 412.2953822987555, "freespeed_mps": 11.11111111111111, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838811.0968353498, 5806585.560848644], [838788.2839502892, 5806383.895227282]]}, "properties": {"id": "47374-5616-5617-5618-5619", "from": "250287974", "to": "250287977", "length_m": 203.81956027915257, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832920.3059213652, 5804724.935268931], [832945.3869682685, 5804721.338037869]]}, "properties": {"id": "47375", "from": "1745493191", "to": "1745493149", "length_m": 25.337698801135115, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832945.3869682685, 5804721.338037869], [833189.8723707068, 5804680.314345196]]}, "properties": {"id": "47376-9174-17945", "from": "1745493149", "to": "254238947", "length_m": 247.9090838576197, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754743.1729964786, 5744823.073188045], [754553.3019906803, 5745389.857422799]]}, "properties": {"id": "47377-47379-47381-47383-47385", "from": "534672768", "to": "534673062", "length_m": 599.2555266733248, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754553.3019906803, 5745389.857422799], [754743.1729964786, 5744823.073188045]]}, "properties": {"id": "47386-47384-47382-47380-47378", "from": "534673062", "to": "534672768", "length_m": 599.2555266733248, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754553.3019906803, 5745389.857422799], [754178.856151487, 5746037.249095108]]}, "properties": {"id": "47387-47389-47391-47393-47395", "from": "534673062", "to": "534673103", "length_m": 750.2809678598531, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754178.856151487, 5746037.249095108], [754553.3019906803, 5745389.857422799]]}, "properties": {"id": "47396-47394-47392-47390-47388", "from": "534673103", "to": "534673062", "length_m": 750.2809678598531, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754178.856151487, 5746037.249095108], [754101.5109248841, 5746538.555560193]]}, "properties": {"id": "47397-47399-47401-47403-47405-47407-47409-47411-47413", "from": "534673103", "to": "534673120", "length_m": 525.9969829630136, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759807.7046978637, 5731692.963402761], [759819.6375292416, 5731506.740402478]]}, "properties": {"id": "4741-4739-4737-4735-4733", "from": "832509461", "to": "832510189", "length_m": 188.8799370503362, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754101.5109248841, 5746538.555560193], [754178.856151487, 5746037.249095108]]}, "properties": {"id": "47414-47412-47410-47408-47406-47404-47402-47400-47398", "from": "534673120", "to": "534673103", "length_m": 525.9969829630136, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754101.5109248841, 5746538.555560193], [753725.2073186957, 5747147.567980701]]}, "properties": {"id": "47415-47417-47419-47421-47423-47425-47427-47429-47431-47433-47435-47437-47439-47441-47443-47445-47447-47449-47451", "from": "534673120", "to": "655150569", "length_m": 778.6055354144813, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759025.7332564977, 5730526.951891276], [759031.6163597114, 5730226.947904871]]}, "properties": {"id": "4743-4745-4747-4129-4131-4133", "from": "832510077", "to": "832507607", "length_m": 344.3421426811942, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753725.2073186957, 5747147.567980701], [754101.5109248841, 5746538.555560193]]}, "properties": {"id": "47452-47450-47448-47446-47444-47442-47440-47438-47436-47434-47432-47430-47428-47426-47424-47422-47420-47418-47416", "from": "655150569", "to": "534673120", "length_m": 778.6055354144813, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793002.1662336318, 5754528.343295757], [792993.078184923, 5754516.346797133]]}, "properties": {"id": "47453", "from": "1492271628", "to": "510170513", "length_m": 15.05020290428541, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792993.078184923, 5754516.346797133], [793002.1662336318, 5754528.343295757]]}, "properties": {"id": "47454", "from": "510170513", "to": "1492271628", "length_m": 15.05020290428541, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792993.078184923, 5754516.346797133], [792999.4087414185, 5754499.422520641]]}, "properties": {"id": "47455", "from": "510170513", "to": "1492271787", "length_m": 18.0695069467428, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792999.4087414185, 5754499.422520641], [792993.078184923, 5754516.346797133]]}, "properties": {"id": "47456", "from": "1492271787", "to": "510170513", "length_m": 18.0695069467428, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838566.3795566997, 5805122.097826294], [838487.9154809832, 5804679.443685349]]}, "properties": {"id": "4749-4750-4742-873", "from": "250287615", "to": "3189541011", "length_m": 449.55943782343275, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838811.0968353498, 5806585.560848644], [838795.443737746, 5806587.563347765]]}, "properties": {"id": "4751", "from": "250287974", "to": "250290113", "length_m": 15.780667425161116, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789878.8663680522, 5766680.415674631], [789936.9518434461, 5766787.034494207]]}, "properties": {"id": "4754-4755-4756-4757-4758-4759-4760-4761-4762-4763-4764-4765", "from": "264173098", "to": "421193010", "length_m": 154.98555736147665, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760031.0968250227, 5744509.907867545], [759808.3713518106, 5743669.155732731]]}, "properties": {"id": "47649-47651-47653-47655-47657-47659-47661-47663-47665-47667-47669-47671-47673-47675-47677", "from": "534674972", "to": "534674168", "length_m": 899.1763606575822, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837260.7239922171, 5812024.242568055], [837343.1915837566, 5812005.882703651]]}, "properties": {"id": "4766-4767-4768", "from": "268176011", "to": "268175994", "length_m": 84.49164580894814, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759808.3713518106, 5743669.155732731], [760031.0968250227, 5744509.907867545]]}, "properties": {"id": "47678-47676-47674-47672-47670-47668-47666-47664-47662-47660-47658-47656-47654-47652-47650", "from": "534674168", "to": "534674972", "length_m": 899.1763606575822, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759808.3713518106, 5743669.155732731], [759303.018735029, 5743331.979907937]]}, "properties": {"id": "47679-47681-47683-47685-47687-47689-47691-47693-47695-47697-47699-47701-47703", "from": "534674168", "to": "534674018", "length_m": 651.8630914670149, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758916.9108498537, 5729835.354155907], [759211.8414582743, 5729853.212165034]]}, "properties": {"id": "4769-4771", "from": "809524581", "to": "832510187", "length_m": 295.47076397069594, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759303.018735029, 5743331.979907937], [759808.3713518106, 5743669.155732731]]}, "properties": {"id": "47704-47702-47700-47698-47696-47694-47692-47690-47688-47686-47684-47682-47680", "from": "534674018", "to": "534674168", "length_m": 651.8630914670149, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759303.018735029, 5743331.979907937], [758792.931021842, 5743432.431451457]]}, "properties": {"id": "47705-47707-47709-47711-47713-47715-47717-47719-47721", "from": "534674018", "to": "534672951", "length_m": 525.4609560051449, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759211.8414582743, 5729853.212165034], [758916.9108498537, 5729835.354155907]]}, "properties": {"id": "4772-4770", "from": "832510187", "to": "809524581", "length_m": 295.47076397069594, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758792.931021842, 5743432.431451457], [759303.018735029, 5743331.979907937]]}, "properties": {"id": "47722-47720-47718-47716-47714-47712-47710-47708-47706", "from": "534672951", "to": "534674018", "length_m": 525.4609560051449, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758792.931021842, 5743432.431451457], [757613.8115229425, 5743349.542359528]]}, "properties": {"id": "47723-47725-47727-47729-47731-47733-47735-47737-47739-47741-47743-47745-47747-47749-47751-47753-47755-47757-47759-47761-47763", "from": "534672951", "to": "524143035", "length_m": 1450.2410921515584, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837235.9813228645, 5812020.931446921], [837233.3152208999, 5812004.33900639]]}, "properties": {"id": "4773", "from": "268175490", "to": "33531761", "length_m": 16.8052724542091, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793548.5412072206, 5761014.790698574], [794828.3598065565, 5760772.578886539]]}, "properties": {"id": "4775-48543", "from": "1708355623", "to": "329904918", "length_m": 1302.5368643171932, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764007.9250329419, 5779369.478030788], [763852.5670059314, 5778496.32375329]]}, "properties": {"id": "4776-4778", "from": "1852782776", "to": "1856694832", "length_m": 886.8731803690644, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757613.8115229425, 5743349.542359528], [758792.931021842, 5743432.431451457]]}, "properties": {"id": "47764-47762-47760-47758-47756-47754-47752-47750-47748-47746-47744-47742-47740-47738-47736-47734-47732-47730-47728-47726-47724", "from": "524143035", "to": "534672951", "length_m": 1450.2410921515584, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835293.2511150159, 5820293.197556057], [835293.071246315, 5820284.209438629]]}, "properties": {"id": "47767", "from": "1505945018", "to": "303683164", "length_m": 8.989917004178194, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835289.4749572028, 5820292.016763256], [835293.2511150159, 5820293.197556057]]}, "properties": {"id": "47777", "from": "303683157", "to": "1505945018", "length_m": 3.9564680418788636, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835293.2511150159, 5820293.197556057], [835433.11437055, 5820342.394978857]]}, "properties": {"id": "47778-47779-47780-47781-47782-47783-47784-22359-22360-22361-22362", "from": "1505945018", "to": "303683087", "length_m": 149.60371673170516, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752304.9069612084, 5742237.090536705], [751696.9644819777, 5742393.029745756]]}, "properties": {"id": "47785-47787-47789-47791-47793-47795", "from": "75292652", "to": "811082371", "length_m": 636.1104508561424, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763852.5670059314, 5778496.32375329], [764007.9250329419, 5779369.478030788]]}, "properties": {"id": "4779-4777", "from": "1856694832", "to": "1852782776", "length_m": 886.8731803690644, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751696.9644819777, 5742393.029745756], [752304.9069612084, 5742237.090536705]]}, "properties": {"id": "47796-47794-47792-47790-47788-47786", "from": "811082371", "to": "75292652", "length_m": 636.1104508561424, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763852.5670059314, 5778496.32375329], [763643.2951192999, 5777312.881528459]]}, "properties": {"id": "4780", "from": "1856694832", "to": "1856694862", "length_m": 1201.8029044375965, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763643.2951192999, 5777312.881528459], [763852.5670059314, 5778496.32375329]]}, "properties": {"id": "4781", "from": "1856694862", "to": "1856694832", "length_m": 1201.8029044375965, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763643.2951192999, 5777312.881528459], [763463.8136039785, 5776301.509906619]]}, "properties": {"id": "4782", "from": "1856694862", "to": "1852782778", "length_m": 1027.1738758092092, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755245.0103528774, 5746256.783524846], [755915.5711131381, 5746121.398379414]]}, "properties": {"id": "47825-47827-47829", "from": "655150599", "to": "811082215", "length_m": 684.4784714547933, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763463.8136039785, 5776301.509906619], [763643.2951192999, 5777312.881528459]]}, "properties": {"id": "4783", "from": "1852782778", "to": "1856694862", "length_m": 1027.1738758092092, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755915.5711131381, 5746121.398379414], [755245.0103528774, 5746256.783524846]]}, "properties": {"id": "47830-47828-47826", "from": "811082215", "to": "655150599", "length_m": 684.4784714547933, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838423.9451692898, 5818010.580489237], [838559.6027189624, 5817741.560341916]]}, "properties": {"id": "47831-8669-8671-8673-8675-263-266-268-270-272-274-276-278", "from": "1511218319", "to": "170074256", "length_m": 303.0198763426605, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755264.2978051412, 5749254.217952664], [755585.407907129, 5748535.659559009]]}, "properties": {"id": "47833-47835-47837-47839-47841-47843-47845-47847-47849-47851-47853-47855", "from": "36697629", "to": "811082491", "length_m": 813.6488300226868, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763463.8136039785, 5776301.509906619], [759546.2681442694, 5774174.792393533]]}, "properties": {"id": "4784-4786-4788-4790-4792-4794-4796-4798-4800", "from": "1852782778", "to": "724309228", "length_m": 4498.630099218778, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755585.407907129, 5748535.659559009], [755264.2978051412, 5749254.217952664]]}, "properties": {"id": "47856-47854-47852-47850-47848-47846-47844-47842-47840-47838-47836-47834", "from": "811082491", "to": "36697629", "length_m": 813.6488300226868, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755585.407907129, 5748535.659559009], [755311.3615612786, 5748070.457612445]]}, "properties": {"id": "47857-47859-47861-47863-47865-47867-47869-47871", "from": "811082491", "to": "984102789", "length_m": 554.330197450871, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755311.3615612786, 5748070.457612445], [755585.407907129, 5748535.659559009]]}, "properties": {"id": "47872-47870-47868-47866-47864-47862-47860-47858", "from": "984102789", "to": "811082491", "length_m": 554.330197450871, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755344.8536963263, 5746984.251193064], [755232.6919077595, 5746309.226558067]]}, "properties": {"id": "47907-47909-47911-47913-47915-47917-47919-47921-47923", "from": "811082456", "to": "655150600", "length_m": 693.6657571967952, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755232.6919077595, 5746309.226558067], [755344.8536963263, 5746984.251193064]]}, "properties": {"id": "47924-47922-47920-47918-47916-47914-47912-47910-47908", "from": "655150600", "to": "811082456", "length_m": 693.6657571967952, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748957.0542895172, 5743779.679964813], [748815.8731210416, 5742737.96230735]]}, "properties": {"id": "47925-47927-47929-47931-47933-47935-47937-47939-47941-47943-47945-47947-47949-47951-47953-47955-47957-47959-47961-47963-47965-47967", "from": "811082526", "to": "811082255", "length_m": 1093.8721428271492, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748815.8731210416, 5742737.96230735], [748957.0542895172, 5743779.679964813]]}, "properties": {"id": "47968-47966-47964-47962-47960-47958-47956-47954-47952-47950-47948-47946-47944-47942-47940-47938-47936-47934-47932-47930-47928-47926", "from": "811082255", "to": "811082526", "length_m": 1093.8721428271492, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748815.8731210416, 5742737.96230735], [748695.1933153206, 5741924.970518765]]}, "properties": {"id": "47969-47971-47973-47975-47977-47979-47981-47983-47985-47987-47989-47991-47993-47995-47997-47999-48001-48003", "from": "811082255", "to": "811082422", "length_m": 961.3536159289353, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791053.0573084746, 5753044.6763459025], [791010.4713681766, 5753052.269915621]]}, "properties": {"id": "48-50-52-54-56-58-60-62-64-66", "from": "848692546", "to": "848692885", "length_m": 309.6039641790936, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748695.1933153206, 5741924.970518765], [748815.8731210416, 5742737.96230735]]}, "properties": {"id": "48004-48002-48000-47998-47996-47994-47992-47990-47988-47986-47984-47982-47980-47978-47976-47974-47972-47970", "from": "811082422", "to": "811082255", "length_m": 961.3536159289353, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748695.1933153206, 5741924.970518765], [748805.5567518525, 5741436.600307235]]}, "properties": {"id": "48005-48007-48009-48011-48013-48015-48017-48019", "from": "811082422", "to": "811082511", "length_m": 587.4562851813074, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759546.2681442694, 5774174.792393533], [763463.8136039785, 5776301.509906619]]}, "properties": {"id": "4801-4799-4797-4795-4793-4791-4789-4787-4785", "from": "724309228", "to": "1852782778", "length_m": 4498.630099218778, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759546.2681442694, 5774174.792393533], [759975.1702240054, 5773678.339673657]]}, "properties": {"id": "4802-4804-4806-4808-4810-4812-4814-4816-4818-4820", "from": "724309228", "to": "724309209", "length_m": 668.264633060741, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748805.5567518525, 5741436.600307235], [748695.1933153206, 5741924.970518765]]}, "properties": {"id": "48020-48018-48016-48014-48012-48010-48008-48006", "from": "811082511", "to": "811082422", "length_m": 587.4562851813074, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748805.5567518525, 5741436.600307235], [748983.2754389951, 5740906.45591441]]}, "properties": {"id": "48021-48023-48025-48027-48029-48031-48033-48035-48037-48039", "from": "811082511", "to": "811082392", "length_m": 601.7039478589272, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748983.2754389951, 5740906.45591441], [748805.5567518525, 5741436.600307235]]}, "properties": {"id": "48040-48038-48036-48034-48032-48030-48028-48026-48024-48022", "from": "811082392", "to": "811082511", "length_m": 601.7039478589272, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748983.2754389951, 5740906.45591441], [749365.8841840916, 5739719.0960211335]]}, "properties": {"id": "48041-48043-48045-48047-48049-48051-48053-48055-48057-48059-48061-48063-48065-48067-48069", "from": "811082392", "to": "811081844", "length_m": 1260.6924745342335, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749365.8841840916, 5739719.0960211335], [748983.2754389951, 5740906.45591441]]}, "properties": {"id": "48070-48068-48066-48064-48062-48060-48058-48056-48054-48052-48050-48048-48046-48044-48042", "from": "811081844", "to": "811082392", "length_m": 1260.6924745342335, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838132.886646843, 5818337.202075012], [838086.8550570682, 5818358.004801317]]}, "properties": {"id": "48071-48072-48073-48074-48075", "from": "170074240", "to": "385180902", "length_m": 50.740508492795364, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758854.9245720606, 5751296.684263565], [759363.9133962898, 5751118.842372846]]}, "properties": {"id": "48076-48078-48080-48082-48084-48086", "from": "811082329", "to": "5934622869", "length_m": 585.9019337137152, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759363.9133962898, 5751118.842372846], [758854.9245720606, 5751296.684263565]]}, "properties": {"id": "48087-48085-48083-48081-48079-48077", "from": "5934622869", "to": "811082329", "length_m": 585.9019337137152, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759363.9133962898, 5751118.842372846], [759591.4200830173, 5750429.569746522]]}, "properties": {"id": "48088-48090-48092-48094-48096-48098-48100-48102-48104-48106-48108-48110", "from": "5934622869", "to": "5934623062", "length_m": 843.6652018679328, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772232.4610090614, 5772177.631085913], [772132.6286390701, 5771628.507112759]]}, "properties": {"id": "481-479-477-475-473", "from": "5604428494", "to": "5604428499", "length_m": 558.1884876023165, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759591.4200830173, 5750429.569746522], [759363.9133962898, 5751118.842372846]]}, "properties": {"id": "48111-48109-48107-48105-48103-48101-48099-48097-48095-48093-48091-48089", "from": "5934623062", "to": "5934622869", "length_m": 843.6652018679328, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838322.0448970112, 5818140.13860595], [838277.9683558032, 5818194.121290255]]}, "properties": {"id": "48112-48113", "from": "170074245", "to": "385182456", "length_m": 69.69995455348607, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838277.9683558032, 5818194.121290255], [838252.2002371561, 5818226.547433369]]}, "properties": {"id": "48114", "from": "385182456", "to": "170074244", "length_m": 41.41799975013852, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757624.0224880527, 5749524.88722135], [756644.8311321193, 5749702.303652143]]}, "properties": {"id": "48115-48117-48119-48121-48123-48125-48127-48129-48131", "from": "524143381", "to": "811081787", "length_m": 995.2596315376808, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756644.8311321193, 5749702.303652143], [757624.0224880527, 5749524.88722135]]}, "properties": {"id": "48132-48130-48128-48126-48124-48122-48120-48118-48116", "from": "811081787", "to": "524143381", "length_m": 995.2596315376808, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748815.8731210416, 5742737.96230735], [749205.6433915779, 5742606.348767411]]}, "properties": {"id": "48133-48135-48137-48139-48141-48143-48145-48147-48149-48151-48153", "from": "811082255", "to": "811082550", "length_m": 416.0230721027722, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749205.6433915779, 5742606.348767411], [748815.8731210416, 5742737.96230735]]}, "properties": {"id": "48154-48152-48150-48148-48146-48144-48142-48140-48138-48136-48134", "from": "811082550", "to": "811082255", "length_m": 416.0230721027722, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759145.0836285406, 5753378.609070648], [759768.1568387621, 5753264.485672909]]}, "properties": {"id": "48155", "from": "535080582", "to": "535080581", "length_m": 633.4385322659892, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759768.1568387621, 5753264.485672909], [759145.0836285406, 5753378.609070648]]}, "properties": {"id": "48156", "from": "535080581", "to": "535080582", "length_m": 633.4385322659892, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838065.3999783618, 5818874.502504079], [837854.2123927546, 5819056.470102961]]}, "properties": {"id": "48157-48158-48159-48160", "from": "30928585", "to": "2915452222", "length_m": 279.0640286731602, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752028.6567788974, 5745854.542312649], [752356.1576345538, 5745070.314528253]]}, "properties": {"id": "48161-48163-48165-48167-48169-48171-48173-48175-48177", "from": "811082460", "to": "811082536", "length_m": 862.1532715140593, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752356.1576345538, 5745070.314528253], [752028.6567788974, 5745854.542312649]]}, "properties": {"id": "48178-48176-48174-48172-48170-48168-48166-48164-48162", "from": "811082536", "to": "811082460", "length_m": 862.1532715140593, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752356.1576345538, 5745070.314528253], [752587.7104742576, 5744544.859208231]]}, "properties": {"id": "48179-48181-48183-48185-48187-48189-48191-48193-48195-48197-48199-48201-48203-48205-48207", "from": "811082536", "to": "811081732", "length_m": 630.9555728626062, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772232.4610090614, 5772177.631085913], [772344.8846724548, 5772764.934778185]]}, "properties": {"id": "482-484-486", "from": "5604428494", "to": "5604428491", "length_m": 597.978398712634, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752587.7104742576, 5744544.859208231], [752356.1576345538, 5745070.314528253]]}, "properties": {"id": "48208-48206-48204-48202-48200-48198-48196-48194-48192-48190-48188-48186-48184-48182-48180", "from": "811081732", "to": "811082536", "length_m": 630.9555728626062, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759975.1702240054, 5773678.339673657], [759546.2681442694, 5774174.792393533]]}, "properties": {"id": "4821-4819-4817-4815-4813-4811-4809-4807-4805-4803", "from": "724309209", "to": "724309228", "length_m": 668.264633060741, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837987.9377723048, 5818447.237856751], [838083.38421358, 5818384.289456556]]}, "properties": {"id": "48211-48212-48213-48214-48215-48216-48217-48218-48219-48220-48221-48222", "from": "1511218545", "to": "385180899", "length_m": 116.799794345131, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759975.1702240054, 5773678.339673657], [760429.2588850536, 5772722.599938016]]}, "properties": {"id": "4822", "from": "724309209", "to": "1852782814", "length_m": 1058.1280431541127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752916.55829983, 5747316.78602747], [752751.3503808073, 5746612.490366507]]}, "properties": {"id": "48223-48225-48227-48229-48231-48233-48235-48237-48239", "from": "534673014", "to": "811082413", "length_m": 739.8634566657297, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760429.2588850536, 5772722.599938016], [759975.1702240054, 5773678.339673657]]}, "properties": {"id": "4823", "from": "1852782814", "to": "724309209", "length_m": 1058.1280431541127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760429.2588850536, 5772722.599938016], [760911.3336672753, 5771724.204466145]]}, "properties": {"id": "4824", "from": "1852782814", "to": "1852782816", "length_m": 1108.6882408673691, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752751.3503808073, 5746612.490366507], [752916.55829983, 5747316.78602747]]}, "properties": {"id": "48240-48238-48236-48234-48232-48230-48228-48226-48224", "from": "811082413", "to": "534673014", "length_m": 739.8634566657297, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752751.3503808073, 5746612.490366507], [752745.4235901629, 5745978.197195195]]}, "properties": {"id": "48241-48243-48245-48247-48249-48251-48253-48255-48257-48259-48261-48263-48265-48267-48269", "from": "811082413", "to": "811082435", "length_m": 648.2575684572093, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760911.3336672753, 5771724.204466145], [760429.2588850536, 5772722.599938016]]}, "properties": {"id": "4825", "from": "1852782816", "to": "1852782814", "length_m": 1108.6882408673691, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760911.3336672753, 5771724.204466145], [760075.6809226325, 5766807.811399954]]}, "properties": {"id": "4826-4828-4830-4832-4834-4836-4838", "from": "1852782816", "to": "724309214", "length_m": 4996.976914775624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752745.4235901629, 5745978.197195195], [752751.3503808073, 5746612.490366507]]}, "properties": {"id": "48270-48268-48266-48264-48262-48260-48258-48256-48254-48252-48250-48248-48246-48244-48242", "from": "811082435", "to": "811082413", "length_m": 648.2575684572093, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752745.4235901629, 5745978.197195195], [752736.2607828993, 5745940.888107176]]}, "properties": {"id": "48271-48273-48275", "from": "811082435", "to": "811082379", "length_m": 38.684004553727554, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752736.2607828993, 5745940.888107176], [752745.4235901629, 5745978.197195195]]}, "properties": {"id": "48276-48274-48272", "from": "811082379", "to": "811082435", "length_m": 38.684004553727554, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752736.2607828993, 5745940.888107176], [752745.4235901629, 5745978.197195195]]}, "properties": {"id": "48277-48279-48281-48283-48285", "from": "811082379", "to": "811082435", "length_m": 59.883861432569155, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752745.4235901629, 5745978.197195195], [752736.2607828993, 5745940.888107176]]}, "properties": {"id": "48286-48284-48282-48280-48278", "from": "811082435", "to": "811082379", "length_m": 59.883861432569155, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837493.6882033781, 5818845.865187058], [837511.4993843158, 5818761.583674584]]}, "properties": {"id": "48287-48288-48289-48290-48291-48292-48293", "from": "1511218599", "to": "1511218216", "length_m": 88.69070535584687, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794001.3611173193, 5775608.764783437], [794024.3072156918, 5775768.061568903]]}, "properties": {"id": "48294-48295-48296-48297-48298-48299-48300-48301", "from": "26755975", "to": "867706489", "length_m": 164.6032876785094, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750778.7339060893, 5742604.729625514], [750173.1759273198, 5742946.339346639]]}, "properties": {"id": "48312-48314-48316-48318-48320-48322-48324-47267-47269-47271-47273-47275-47277-47279-47281", "from": "811082521", "to": "811082357", "length_m": 708.7863132760995, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753725.2073186957, 5747147.567980701], [752916.55829983, 5747316.78602747]]}, "properties": {"id": "48326-48328-48330-48332-48334-48336-48338-48340-48342-48344", "from": "655150569", "to": "534673014", "length_m": 859.0345918598639, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752916.55829983, 5747316.78602747], [753725.2073186957, 5747147.567980701]]}, "properties": {"id": "48345-48343-48341-48339-48337-48335-48333-48331-48329-48327", "from": "534673014", "to": "655150569", "length_m": 859.0345918598639, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752916.55829983, 5747316.78602747], [752886.9995544495, 5747339.279227782]]}, "properties": {"id": "48346-48348", "from": "534673014", "to": "534673017", "length_m": 37.14805737256361, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752886.9995544495, 5747339.279227782], [752916.55829983, 5747316.78602747]]}, "properties": {"id": "48349-48347", "from": "534673017", "to": "534673014", "length_m": 37.14805737256361, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754743.1729964786, 5744823.073188045], [754143.5857098976, 5744914.129976685]]}, "properties": {"id": "48350-48352-48354-48356-48358", "from": "534672768", "to": "811082455", "length_m": 607.3745566113985, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754143.5857098976, 5744914.129976685], [754743.1729964786, 5744823.073188045]]}, "properties": {"id": "48359-48357-48355-48353-48351", "from": "811082455", "to": "534672768", "length_m": 607.3745566113985, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731956.0216720946, 5788131.077226033], [730982.1162021853, 5788290.160213216]]}, "properties": {"id": "48364-48366-20866-20868-30425-30427-30429-12552-12554", "from": "2152827783", "to": "2852231213", "length_m": 987.0135712289468, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835184.1106063009, 5820266.911407814], [835377.7958358398, 5819565.020715471]]}, "properties": {"id": "48368-48369-48370-48371-48372-48373-46796-46774-46775-46776-46777-46778-46779-46780-46781-46782-46783-46784-46785-46786-46787-46788-46789-46790-46791-46792-46793-34030-34031-34032-34033-34034-34035-34036", "from": "303683143", "to": "2915467075", "length_m": 741.0123702904523, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838423.9451692898, 5818010.580489237], [838361.4257660969, 5818092.920133915]]}, "properties": {"id": "48374-48375", "from": "1511218319", "to": "1511218462", "length_m": 103.42696150776563, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838361.4257660969, 5818092.920133915], [838322.0448970112, 5818140.13860595]]}, "properties": {"id": "48376", "from": "1511218462", "to": "170074245", "length_m": 61.48525810764391, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833178.8087800099, 5806519.038321845], [833205.618897422, 5806517.7057611365]]}, "properties": {"id": "48377-48378-48379-48380-48381", "from": "976462504", "to": "5230414514", "length_m": 29.893479149998075, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833205.618897422, 5806517.7057611365], [833208.6607984623, 5806513.990812782]]}, "properties": {"id": "48382", "from": "5230414514", "to": "288439943", "length_m": 4.801458463336362, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833208.6607984623, 5806513.990812782], [833206.3454892606, 5806493.013871202]]}, "properties": {"id": "48383-48384-48385-48386", "from": "288439943", "to": "5230414512", "length_m": 22.43386973261658, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833206.3454892606, 5806493.013871202], [833204.5996059399, 5806490.849760583]]}, "properties": {"id": "48387", "from": "5230414512", "to": "976462468", "length_m": 2.780554486800756, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833204.5996059399, 5806490.849760583], [833180.9700210175, 5806489.2734660115]]}, "properties": {"id": "48388-48389-48390-48391", "from": "976462468", "to": "288440538", "length_m": 25.39754414156364, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760075.6809226325, 5766807.811399954], [760911.3336672753, 5771724.204466145]]}, "properties": {"id": "4839-4837-4835-4833-4831-4829-4827", "from": "724309214", "to": "1852782816", "length_m": 4996.976914775624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833180.9700210175, 5806489.2734660115], [833178.8087800099, 5806519.038321845]]}, "properties": {"id": "48392-48393-48394-48395-48396-48397", "from": "288440538", "to": "976462504", "length_m": 34.1169460648998, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730982.1162021853, 5788290.160213216], [730263.148957628, 5788250.772410269]]}, "properties": {"id": "48398-48400-48402-8911-8735-8737-8739", "from": "2852231213", "to": "1966526712", "length_m": 720.5862190086262, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760075.6809226325, 5766807.811399954], [759963.6099172321, 5765923.740046583]]}, "properties": {"id": "4840-4842-4844-4846", "from": "724309214", "to": "1852782832", "length_m": 899.9253288860955, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791256.2845936441, 5777151.427116953], [791267.0544587442, 5777163.289123201]]}, "properties": {"id": "48404", "from": "318028182", "to": "318039355", "length_m": 16.021772203758207, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791267.0544587442, 5777163.289123201], [791256.2845936441, 5777151.427116953]]}, "properties": {"id": "48405", "from": "318039355", "to": "318028182", "length_m": 16.021772203758207, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832871.2478721924, 5815081.903955489], [832890.9819913823, 5815075.190831019]]}, "properties": {"id": "48406", "from": "1536201487", "to": "30918600", "length_m": 20.844699516273643, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833147.2499337101, 5816703.9865755085], [833161.7924520957, 5816698.283735268]]}, "properties": {"id": "48407", "from": "356257672", "to": "30918471", "length_m": 15.620730690571774, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787093.8635539471, 5762192.093153381], [788463.3367912428, 5761933.945228253]]}, "properties": {"id": "48408-48410", "from": "669264562", "to": "1708355795", "length_m": 1393.5918494085201, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788463.3367912428, 5761933.945228253], [787093.8635539471, 5762192.093153381]]}, "properties": {"id": "48411-48409", "from": "1708355795", "to": "669264562", "length_m": 1393.5918494085201, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788463.3367912428, 5761933.945228253], [788468.4042747868, 5761932.997696291]]}, "properties": {"id": "48412-10314", "from": "1708355795", "to": "321710621", "length_m": 5.155312192889605, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759963.6099172321, 5765923.740046583], [760075.6809226325, 5766807.811399954]]}, "properties": {"id": "4847-4845-4843-4841", "from": "1852782832", "to": "724309214", "length_m": 899.9253288860955, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759963.6099172321, 5765923.740046583], [760326.9579133167, 5765067.83086541]]}, "properties": {"id": "4848", "from": "1852782832", "to": "1852782833", "length_m": 929.8399290847545, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760326.9579133167, 5765067.83086541], [759963.6099172321, 5765923.740046583]]}, "properties": {"id": "4849", "from": "1852782833", "to": "1852782832", "length_m": 929.8399290847545, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760326.9579133167, 5765067.83086541], [760682.9421134213, 5764298.331502301]]}, "properties": {"id": "4850-4852-4854-4856-4858-4860", "from": "1852782833", "to": "1852782850", "length_m": 849.6572598202432, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757860.178371186, 5729163.378291735], [758274.9783578452, 5729524.518517981]]}, "properties": {"id": "48500-48502-48504-48506-48508-48510-48512-48514-48516-48518-48520-48522-48524-48526", "from": "5334282904", "to": "3451539009", "length_m": 631.9284061156817, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758274.9783578452, 5729524.518517981], [757860.178371186, 5729163.378291735]]}, "properties": {"id": "48527-48525-48523-48521-48519-48517-48515-48513-48511-48509-48507-48505-48503-48501", "from": "3451539009", "to": "5334282904", "length_m": 631.9284061156817, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758274.9783578452, 5729524.518517981], [758843.4245942896, 5729689.562234205]]}, "properties": {"id": "48528-48530-48532-48534-48536-22119-22121-22123-22125-22127-22129-22131-22133-22135-48544-48546-48548-48550-48552-48554-48556-48558-48560-48562-48564-48566-48568-48570-48572-48574-48576", "from": "3451539009", "to": "809525581", "length_m": 821.1214618057797, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796562.6256053727, 5760443.771294826], [796434.2056782667, 5760468.13071561]]}, "properties": {"id": "48538", "from": "468580917", "to": "367119855", "length_m": 130.70982740777447, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796434.2056782667, 5760468.13071561], [796562.6256053727, 5760443.771294826]]}, "properties": {"id": "48539", "from": "367119855", "to": "468580917", "length_m": 130.70982740777447, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796434.2056782667, 5760468.13071561], [794828.3598065565, 5760772.578886539]]}, "properties": {"id": "48540", "from": "367119855", "to": "329904918", "length_m": 1634.4508682171634, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794828.3598065565, 5760772.578886539], [796434.2056782667, 5760468.13071561]]}, "properties": {"id": "48541", "from": "329904918", "to": "367119855", "length_m": 1634.4508682171634, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794828.3598065565, 5760772.578886539], [793548.5412072206, 5761014.790698574]]}, "properties": {"id": "48542-4774", "from": "329904918", "to": "1708355623", "length_m": 1302.5368643171932, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758843.4245942896, 5729689.562234205], [758274.9783578452, 5729524.518517981]]}, "properties": {"id": "48577-48575-48573-48571-48569-48567-48565-48563-48561-48559-48557-48555-48553-48551-48549-48547-48545-22136-22134-22132-22130-22128-22126-22124-22122-22120-48537-48535-48533-48531-48529", "from": "809525581", "to": "3451539009", "length_m": 821.1214618057797, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791043.5949965888, 5777271.8062144825], [791034.0164906543, 5777373.465152087]]}, "properties": {"id": "48579-48580-48581-48582-48583-48584", "from": "334409508", "to": "334409503", "length_m": 110.20556193248764, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758867.718741783, 5729709.810315088], [758862.9472901579, 5729685.575491294]]}, "properties": {"id": "48587-48588-48589-48590-48591-48592", "from": "809526287", "to": "2876063767", "length_m": 28.51465289796107, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758862.9472901579, 5729685.575491294], [758855.4237767936, 5729683.640933417]]}, "properties": {"id": "48593-48594", "from": "2876063767", "to": "832509672", "length_m": 7.861197229641686, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758855.4237767936, 5729683.640933417], [758843.4245942896, 5729689.562234205]]}, "properties": {"id": "48595-48596-48597", "from": "832509672", "to": "809525581", "length_m": 13.756264208474633, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758843.4245942896, 5729689.562234205], [758847.0926582603, 5729712.599392477]]}, "properties": {"id": "48598-48599-48600-48601-48602", "from": "809525581", "to": "809525740", "length_m": 26.11091523290874, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758847.0926582603, 5729712.599392477], [758867.718741783, 5729709.810315088]]}, "properties": {"id": "48603-48604-48585-48586", "from": "809525740", "to": "809526287", "length_m": 22.563852689677784, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751367.3245432829, 5745461.80925467], [752008.3541054343, 5745990.198967284]]}, "properties": {"id": "48608-29147-29145", "from": "809524742", "to": "75292357", "length_m": 831.5031733363597, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751367.3245432829, 5745461.80925467], [750763.6386105577, 5744795.1585185]]}, "properties": {"id": "48609-48611-48613-48615-48617", "from": "809524742", "to": "809525182", "length_m": 903.0489786747936, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760682.9421134213, 5764298.331502301], [760326.9579133167, 5765067.83086541]]}, "properties": {"id": "4861-4859-4857-4855-4853-4851", "from": "1852782850", "to": "1852782833", "length_m": 849.6572598202432, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750763.6386105577, 5744795.1585185], [751367.3245432829, 5745461.80925467]]}, "properties": {"id": "48618-48616-48614-48612-48610", "from": "809525182", "to": "809524742", "length_m": 903.0489786747936, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750763.6386105577, 5744795.1585185], [750618.1554804784, 5743883.985917076]]}, "properties": {"id": "48619", "from": "809525182", "to": "809526063", "length_m": 922.7138507267506, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760682.9421134213, 5764298.331502301], [761353.2733196514, 5763329.860901261]]}, "properties": {"id": "4862-15215-15217-15219-15221-15223", "from": "1852782850", "to": "559370716", "length_m": 1177.9193792432634, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750618.1554804784, 5743883.985917076], [750763.6386105577, 5744795.1585185]]}, "properties": {"id": "48620", "from": "809526063", "to": "809525182", "length_m": 922.7138507267506, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750618.1554804784, 5743883.985917076], [750354.8482020033, 5743453.965091826]]}, "properties": {"id": "48621-48623-48625-48627-48629-48631-48633-48635-48637", "from": "809526063", "to": "809524759", "length_m": 530.9480265175544, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750354.8482020033, 5743453.965091826], [750618.1554804784, 5743883.985917076]]}, "properties": {"id": "48638-48636-48634-48632-48630-48628-48626-48624-48622", "from": "809524759", "to": "809526063", "length_m": 530.9480265175544, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750354.8482020033, 5743453.965091826], [750173.1759273198, 5742946.339346639]]}, "properties": {"id": "48639-48641-48643-48645-48647-48649-48651-48653-48655", "from": "809524759", "to": "811082357", "length_m": 548.7345634988379, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793226.6898956726, 5761074.257181655], [793216.2008135305, 5761076.015611994]]}, "properties": {"id": "4864", "from": "317376782", "to": "1604837584", "length_m": 10.635455856708985, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793216.2008135305, 5761076.015611994], [793226.6898956726, 5761074.257181655]]}, "properties": {"id": "4865", "from": "1604837584", "to": "317376782", "length_m": 10.635455856708985, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750173.1759273198, 5742946.339346639], [750354.8482020033, 5743453.965091826]]}, "properties": {"id": "48656-48654-48652-48650-48648-48646-48644-48642-48640", "from": "811082357", "to": "809524759", "length_m": 548.7345634988379, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750173.1759273198, 5742946.339346639], [749653.061421334, 5742111.1314150505]]}, "properties": {"id": "48657-48659-48661-48663-48665-48667-48669", "from": "811082357", "to": "809525910", "length_m": 999.3843277586562, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793216.2008135305, 5761076.015611994], [791697.9377777575, 5761332.4894375065]]}, "properties": {"id": "4866", "from": "1604837584", "to": "270450452", "length_m": 1539.773184087812, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791697.9377777575, 5761332.4894375065], [793216.2008135305, 5761076.015611994]]}, "properties": {"id": "4867", "from": "270450452", "to": "1604837584", "length_m": 1539.773184087812, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749653.061421334, 5742111.1314150505], [750173.1759273198, 5742946.339346639]]}, "properties": {"id": "48670-48668-48666-48664-48662-48660-48658", "from": "809525910", "to": "811082357", "length_m": 999.3843277586562, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749653.061421334, 5742111.1314150505], [749538.7811705418, 5741479.071324291]]}, "properties": {"id": "48671-48673-48675-48677-48679-48681", "from": "809525910", "to": "809525138", "length_m": 659.7507000789215, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749538.7811705418, 5741479.071324291], [749653.061421334, 5742111.1314150505]]}, "properties": {"id": "48682-48680-48678-48676-48674-48672", "from": "809525138", "to": "809525910", "length_m": 659.7507000789215, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749538.7811705418, 5741479.071324291], [750080.3828260936, 5741010.094228561]]}, "properties": {"id": "48683-48685-48687-48689-48691-48693-48695-48697-48699-48701-48703-48705-48707", "from": "809525138", "to": "809525152", "length_m": 765.5537427354056, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772344.8846724548, 5772764.934778185], [772232.4610090614, 5772177.631085913]]}, "properties": {"id": "487-485-483", "from": "5604428491", "to": "5604428494", "length_m": 597.978398712634, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750080.3828260936, 5741010.094228561], [749538.7811705418, 5741479.071324291]]}, "properties": {"id": "48708-48706-48704-48702-48700-48698-48696-48694-48692-48690-48688-48686-48684", "from": "809525152", "to": "809525138", "length_m": 765.5537427354056, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750080.3828260936, 5741010.094228561], [750669.3694771731, 5740838.135151035]]}, "properties": {"id": "48709-48711-48713-48715-48717-48719-48721-48723-48725", "from": "809525152", "to": "809524980", "length_m": 635.2863904237239, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750669.3694771731, 5740838.135151035], [750080.3828260936, 5741010.094228561]]}, "properties": {"id": "48726-48724-48722-48720-48718-48716-48714-48712-48710", "from": "809524980", "to": "809525152", "length_m": 635.2863904237239, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750669.3694771731, 5740838.135151035], [751313.7669617687, 5740634.68955764]]}, "properties": {"id": "48727-48729-48731-48733-48735-48737-48739-48741-48743-48745-48747-48749-48751-48753-48755", "from": "809524980", "to": "809525412", "length_m": 697.1263872838201, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751313.7669617687, 5740634.68955764], [750669.3694771731, 5740838.135151035]]}, "properties": {"id": "48756-48754-48752-48750-48748-48746-48744-48742-48740-48738-48736-48734-48732-48730-48728", "from": "809525412", "to": "809524980", "length_m": 697.1263872838201, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833567.1047462667, 5804601.986805805], [833575.1068861452, 5804615.549525798]]}, "properties": {"id": "48772", "from": "293310991", "to": "253337734", "length_m": 15.747431985126504, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755555.6324866952, 5840739.895071898], [756360.0810292956, 5840352.188780386]]}, "properties": {"id": "48773-48774-48775-48776-48777-48778-48779-48780-48781", "from": "3340929863", "to": "3340866183", "length_m": 903.7897125990132, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756360.0810292956, 5840352.188780386], [757297.4829749775, 5839547.019812113]]}, "properties": {"id": "48782-48783-48784-48785-48786-48787-48788-11271-11204-11205-11206-11207-11208-11209-11210-11211-11212", "from": "3340866183", "to": "364000833", "length_m": 1292.1266680732836, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753609.8173184205, 5842616.245301897], [752956.4440428894, 5843269.862930076]]}, "properties": {"id": "48789-48790-48791-48792-48793-48794-48795-48796-48797", "from": "1140333230", "to": "1667975920", "length_m": 934.9210493705132, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752956.4440428894, 5843269.862930076], [751879.3022882033, 5843503.308082283]]}, "properties": {"id": "48798-48799-48800-48801-48802-48803-48804-48805-48806-48807-48808-54008-43569", "from": "1667975920", "to": "236430697", "length_m": 1118.0642085146683, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772344.8846724548, 5772764.934778185], [772481.8500960423, 5773522.092804255]]}, "properties": {"id": "488-490-492-494-496", "from": "5604428491", "to": "5604428486", "length_m": 769.4617238330947, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761441.3660012417, 5761981.052124039], [761422.6415009401, 5761873.371061081]]}, "properties": {"id": "48823", "from": "5992467353", "to": "5992467352", "length_m": 109.29692686687481, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761422.6415009401, 5761873.371061081], [761441.3660012417, 5761981.052124039]]}, "properties": {"id": "48824", "from": "5992467352", "to": "5992467353", "length_m": 109.29692686687481, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836355.6138751844, 5804092.318565446], [836374.5662673359, 5804089.1841860665]]}, "properties": {"id": "48825-48826-48827-48828", "from": "1712176876", "to": "1763046589", "length_m": 20.621438321448863, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759993.6614624998, 5731391.5484504895], [760021.167316137, 5731438.434317267]]}, "properties": {"id": "4883-4885-4887", "from": "36829980", "to": "832508068", "length_m": 56.07497632246053, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835672.9330113487, 5813067.665878372], [836261.9678123489, 5813352.081554638]]}, "properties": {"id": "48836-48837-48838-48839-48840-48841-48842-48843-48844-48845-48846-49016-49017-49018-49019-57045-57046", "from": "268172431", "to": "268385195", "length_m": 670.5798040339812, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787337.4321220457, 5833986.349488227], [786446.2818588996, 5834534.928407021]]}, "properties": {"id": "48850-48851-48852-48853-48854-48855-48856-48857-48858-48859", "from": "413300756", "to": "469726243", "length_m": 1049.832172793765, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786446.2818588996, 5834534.928407021], [785909.1347475142, 5834666.607262967]]}, "properties": {"id": "48860-48861-48862-48863-48864-48865-48866", "from": "469726243", "to": "741906560", "length_m": 554.5088375096879, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838069.3467668188, 5818367.874383397], [837975.5727558464, 5818430.0312840305]]}, "properties": {"id": "48867-48868-48869-48870-48871-48872-48873-48874-48875", "from": "385180904", "to": "385180737", "length_m": 115.23091031403746, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760021.167316137, 5731438.434317267], [759993.6614624998, 5731391.5484504895]]}, "properties": {"id": "4888-4886-4884", "from": "832508068", "to": "36829980", "length_m": 56.07497632246053, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750442.507914509, 5775520.435923426], [752662.4338883172, 5775119.658344267]]}, "properties": {"id": "48889", "from": "1372421468", "to": "2106853224", "length_m": 2255.813375513771, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760021.167316137, 5731438.434317267], [760073.3604523911, 5731510.152506654]]}, "properties": {"id": "4889", "from": "832508068", "to": "832509865", "length_m": 88.69961743776547, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752662.4338883172, 5775119.658344267], [750442.507914509, 5775520.435923426]]}, "properties": {"id": "48890", "from": "2106853224", "to": "1372421468", "length_m": 2255.813375513771, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752662.4338883172, 5775119.658344267], [754240.662734871, 5774869.227781749]]}, "properties": {"id": "48891-48893-48895-48897", "from": "2106853224", "to": "789296559", "length_m": 1599.8205612937593, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754240.662734871, 5774869.227781749], [752662.4338883172, 5775119.658344267]]}, "properties": {"id": "48898-48896-48894-48892", "from": "789296559", "to": "2106853224", "length_m": 1599.8205612937593, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754240.662734871, 5774869.227781749], [755370.4996339359, 5775377.530403538]]}, "properties": {"id": "48899", "from": "789296559", "to": "789296537", "length_m": 1238.9120095468863, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760073.3604523911, 5731510.152506654], [760021.167316137, 5731438.434317267]]}, "properties": {"id": "4890", "from": "832509865", "to": "832508068", "length_m": 88.69961743776547, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755370.4996339359, 5775377.530403538], [754240.662734871, 5774869.227781749]]}, "properties": {"id": "48900", "from": "789296537", "to": "789296559", "length_m": 1238.9120095468863, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755370.4996339359, 5775377.530403538], [756147.9130912838, 5775670.893666628]]}, "properties": {"id": "48901", "from": "789296537", "to": "789296561", "length_m": 830.9233929430076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756147.9130912838, 5775670.893666628], [755370.4996339359, 5775377.530403538]]}, "properties": {"id": "48902", "from": "789296561", "to": "789296537", "length_m": 830.9233929430076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756147.9130912838, 5775670.893666628], [756915.3156312018, 5775964.559313802]]}, "properties": {"id": "48903", "from": "789296561", "to": "1037998271", "length_m": 821.6727863145352, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756915.3156312018, 5775964.559313802], [756147.9130912838, 5775670.893666628]]}, "properties": {"id": "48904", "from": "1037998271", "to": "789296561", "length_m": 821.6727863145352, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756915.3156312018, 5775964.559313802], [757745.6672412053, 5775487.69669767]]}, "properties": {"id": "48905-48907-48909", "from": "1037998271", "to": "1037998269", "length_m": 965.5169207681405, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760073.3604523911, 5731510.152506654], [760120.1917413437, 5731582.033403377]]}, "properties": {"id": "4891", "from": "832509865", "to": "832508707", "length_m": 85.79063422127737, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757745.6672412053, 5775487.69669767], [756915.3156312018, 5775964.559313802]]}, "properties": {"id": "48910-48908-48906", "from": "1037998269", "to": "1037998271", "length_m": 965.5169207681405, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757745.6672412053, 5775487.69669767], [758798.3441035917, 5775286.873662222]]}, "properties": {"id": "48911-48913-48915", "from": "1037998269", "to": "789296565", "length_m": 1073.1123179296476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758798.3441035917, 5775286.873662222], [757745.6672412053, 5775487.69669767]]}, "properties": {"id": "48916-48914-48912", "from": "789296565", "to": "1037998269", "length_m": 1073.1123179296476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758798.3441035917, 5775286.873662222], [759969.4393162454, 5775076.033731358]]}, "properties": {"id": "48917", "from": "789296565", "to": "789295613", "length_m": 1189.9233041553728, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759969.4393162454, 5775076.033731358], [758798.3441035917, 5775286.873662222]]}, "properties": {"id": "48918", "from": "789295613", "to": "789296565", "length_m": 1189.9233041553728, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837902.3238265247, 5818491.290014842], [837974.4443402977, 5818456.798024318]]}, "properties": {"id": "48919-48920-48921-48922-48923-48924-48925-48926-48927", "from": "1511218706", "to": "169812730", "length_m": 81.07236945158465, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760120.1917413437, 5731582.033403377], [760073.3604523911, 5731510.152506654]]}, "properties": {"id": "4892", "from": "832508707", "to": "832509865", "length_m": 85.79063422127737, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836355.6138751844, 5804092.318565446], [836384.9779252087, 5804129.7891116]]}, "properties": {"id": "48928-48929", "from": "1712176876", "to": "1712176905", "length_m": 47.694820321076186, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760120.1917413437, 5731582.033403377], [760288.3108581462, 5732008.959196769]]}, "properties": {"id": "4893-4895-4897-4899-4901-4903-4905-4907-4976-4978-4980-4982-4984-4986-4988-5737-5738-5739-5740-5741-5742-5743-5744", "from": "832508707", "to": "832507573", "length_m": 961.9329866172637, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836377.6777708188, 5804083.9971426735], [836397.2296372915, 5804080.2154254755]]}, "properties": {"id": "48930", "from": "1763046592", "to": "1712176732", "length_m": 19.914237728343398, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836397.2296372915, 5804080.2154254755], [837347.0363320836, 5803903.408333317]]}, "properties": {"id": "48931-48932-48933-48934-48935-48936-48937-48938-48939-48940-48941-48942-40998-1717-1718-1719", "from": "1712176732", "to": "1712171695", "length_m": 966.2307982959654, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836384.9779252087, 5804129.7891116], [836673.9716642074, 5805167.273658204]]}, "properties": {"id": "48948-48949-48950-48951-48952-48953-48954-48955-48956-48957-48958-48959-48960-48961-48962-32166-32167-32168-32169-32170", "from": "1712176905", "to": "32549429", "length_m": 1103.0077724926782, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835902.91405353, 5804152.029968366], [835712.6183176426, 5804187.617588819]]}, "properties": {"id": "48963", "from": "825545291", "to": "825539749", "length_m": 193.5947973008339, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835712.6183176426, 5804187.617588819], [835334.675985196, 5804260.472230034]]}, "properties": {"id": "48964-48965-48966", "from": "825539749", "to": "825547532", "length_m": 384.9006567137812, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838132.886646843, 5818337.202075012], [838204.1104524132, 5818282.629130857]]}, "properties": {"id": "48967-48969-48971-48973-48975", "from": "170074240", "to": "1511218711", "length_m": 89.79770794820203, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838204.1104524132, 5818282.629130857], [838132.886646843, 5818337.202075012]]}, "properties": {"id": "48976-48974-48972-48970-48968", "from": "1511218711", "to": "170074240", "length_m": 89.79770794820203, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837960.3666954106, 5818442.630592603], [837902.3238265247, 5818491.290014842]]}, "properties": {"id": "48978-48979-48980-48981-48982-48983-48984", "from": "1511218538", "to": "1511218706", "length_m": 76.35347002016977, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788458.7463766936, 5764822.833887594], [788034.3366792393, 5764818.733751845]]}, "properties": {"id": "48994-48992-48990-48988-48986-8511-8509-8507-8505-8503-8501-8499-8497-8495-8493", "from": "2478529562", "to": "2936482100", "length_m": 438.58585019967296, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837204.9677135244, 5811778.971250027], [837118.4725222269, 5811370.021831397]]}, "properties": {"id": "48995-48996-48997-48998-23265-23266-23267-23268-23269", "from": "268175498", "to": "268175236", "length_m": 418.3091101969852, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835197.2388548483, 5820479.955077933], [835303.6144435175, 5820877.845831374]]}, "properties": {"id": "48999-49000-49001-49002-49003-49004-49005-49006-49007-49008-49009-49010-49011-49012-49013-49014-49015", "from": "5642426594", "to": "303683375", "length_m": 414.23788821294556, "freespeed_mps": 11.11111111111111, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791038.6160283054, 5753781.662934025], [791048.3679279151, 5753822.857659008]]}, "properties": {"id": "49024", "from": "510172059", "to": "510172091", "length_m": 42.333260087887496, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791048.3679279151, 5753822.857659008], [791038.6160283054, 5753781.662934025]]}, "properties": {"id": "49025", "from": "510172091", "to": "510172059", "length_m": 42.333260087887496, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791048.3679279151, 5753822.857659008], [791081.5450217123, 5753991.058907774]]}, "properties": {"id": "49026", "from": "510172091", "to": "512200110", "length_m": 171.4420590315558, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791081.5450217123, 5753991.058907774], [791048.3679279151, 5753822.857659008]]}, "properties": {"id": "49027", "from": "512200110", "to": "510172091", "length_m": 171.4420590315558, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791081.5450217123, 5753991.058907774], [791099.252232005, 5754091.841093761]]}, "properties": {"id": "49028", "from": "512200110", "to": "510172121", "length_m": 102.32592191841836, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791099.252232005, 5754091.841093761], [791081.5450217123, 5753991.058907774]]}, "properties": {"id": "49029", "from": "510172121", "to": "512200110", "length_m": 102.32592191841836, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791099.252232005, 5754091.841093761], [791114.7663479231, 5754171.629061001]]}, "properties": {"id": "49030", "from": "510172121", "to": "822479626", "length_m": 81.28227052544567, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791114.7663479231, 5754171.629061001], [791099.252232005, 5754091.841093761]]}, "properties": {"id": "49031", "from": "822479626", "to": "510172121", "length_m": 81.28227052544567, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799299.2456302391, 5826015.24287311], [798780.1042179911, 5826012.3172181565]]}, "properties": {"id": "49032-49033-49034-49035-49036-49037-49038-49039-49040-49041-49042-49043-49044-49045-49046-49047", "from": "175091141", "to": "175089739", "length_m": 520.7345655966174, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836093.6235472853, 5813185.239161802], [835560.5098713632, 5813050.246033874]]}, "properties": {"id": "49050-49051-49052-49053-49054-49055-49056-49057-49058-49059", "from": "268172253", "to": "36030400", "length_m": 558.933851502277, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835560.5098713632, 5813050.246033874], [834778.7757166411, 5813171.954660025]]}, "properties": {"id": "49060-49061-49062-49063-49064-53791-12769-12770-12771-12772-12773-12774-12775-12776-12777-12778", "from": "36030400", "to": "268219066", "length_m": 800.8885864454633, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[803767.740259167, 5825882.778759639], [804246.7106954346, 5825709.735497007]]}, "properties": {"id": "49065-49066-49067-49068-49069-49070-49071-49072-49073-49074-49075-49076", "from": "1640164760", "to": "317106791", "length_m": 513.3875332862783, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804246.7106954346, 5825709.735497007], [805069.7815102846, 5825509.512291597]]}, "properties": {"id": "49077-49078-49079-49080-49081-43102-43103-43104-43105-49995-49996-49997", "from": "317106791", "to": "317106737", "length_m": 851.0925191826245, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777916.3654618703, 5771775.263014041], [777697.5765679122, 5770601.619195262]]}, "properties": {"id": "49082-49084-49086-49088-49090-49092-49094", "from": "5956032708", "to": "614531655", "length_m": 1194.348845635845, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777697.5765679122, 5770601.619195262], [777916.3654618703, 5771775.263014041]]}, "properties": {"id": "49095-49093-49091-49089-49087-49085-49083", "from": "614531655", "to": "5956032708", "length_m": 1194.348845635845, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826272.1480839659, 5800080.518800238], [826064.488837801, 5799116.497798722]]}, "properties": {"id": "49096-49097-49098-49099-49100-49101-49102-49103-49104-49105", "from": "38717630", "to": "5128227892", "length_m": 1000.3739105579928, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826064.488837801, 5799116.497798722], [825462.7083941461, 5798544.914637057]]}, "properties": {"id": "49106-59300-59301-59302-59303-59304-59305-59306-59307-59308-59309", "from": "5128227892", "to": "253363796", "length_m": 838.6253827668867, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801150.0144411947, 5825888.745740008], [800477.3139878707, 5825780.769535459]]}, "properties": {"id": "49108-49109-49110-49111-49112-49113-49114-49115-49116-49117-49118", "from": "317107005", "to": "2923307883", "length_m": 684.6645089050892, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800477.3139878707, 5825780.769535459], [799783.9301409821, 5825886.816650372]]}, "properties": {"id": "49119-49120-49121-49122-49123-49124-49125-49126", "from": "2923307883", "to": "2923307887", "length_m": 715.4640613479592, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799783.9301409821, 5825886.816650372], [799299.2456302391, 5826015.24287311]]}, "properties": {"id": "49127-49128-49129-49130-49131", "from": "2923307887", "to": "175091141", "length_m": 502.79485319367075, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[802369.8935482928, 5826010.882273585], [803154.2492193717, 5825988.228887504]]}, "properties": {"id": "49132-49133-49134-49135-49136-49137-49138-49139-27986-27987-27988", "from": "317106915", "to": "1341259752", "length_m": 786.8303733393066, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833567.1047462667, 5804601.986805805], [833462.9761428392, 5804617.760813806]]}, "properties": {"id": "49140", "from": "293310991", "to": "75203367", "length_m": 105.3165955472999, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833462.9761428392, 5804617.760813806], [833401.5423666255, 5804627.907152027]]}, "properties": {"id": "49141-49142", "from": "75203367", "to": "253337733", "length_m": 62.26610674639498, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833927.9112242856, 5822175.192208612], [834046.0897673577, 5822311.687149234]]}, "properties": {"id": "49152-49150-24448", "from": "603452964", "to": "1534925766", "length_m": 180.57062039048117, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834125.6058599567, 5822397.609175699], [834046.0897673577, 5822311.687149234]]}, "properties": {"id": "49153-49154-49155-49156", "from": "603452595", "to": "1534925766", "length_m": 117.30595219868879, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788458.7463766936, 5764822.833887594], [788662.5242517102, 5764746.721825061]]}, "properties": {"id": "49187-49189-49191-49193-49195-49197-49199", "from": "2478529562", "to": "3726903738", "length_m": 218.92501755541616, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793725.8281757724, 5772044.697678714], [794027.7284453437, 5771923.76769779]]}, "properties": {"id": "4919-4924-4925-2390", "from": "143215349", "to": "317727073", "length_m": 325.2196705117419, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788662.5242517102, 5764746.721825061], [788458.7463766936, 5764822.833887594]]}, "properties": {"id": "49200-49198-49196-49194-49192-49190-49188", "from": "3726903738", "to": "2478529562", "length_m": 218.92501755541616, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790091.7442497627, 5753223.207220705], [789930.884737618, 5753252.06252616]]}, "properties": {"id": "49201", "from": "270452105", "to": "509915327", "length_m": 163.4270821902948, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789930.884737618, 5753252.06252616], [790091.7442497627, 5753223.207220705]]}, "properties": {"id": "49202", "from": "509915327", "to": "270452105", "length_m": 163.4270821902948, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789930.884737618, 5753252.06252616], [789909.1876454187, 5753255.231728278]]}, "properties": {"id": "49203", "from": "509915327", "to": "5673066981", "length_m": 21.927326560970332, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789909.1876454187, 5753255.231728278], [789930.884737618, 5753252.06252616]]}, "properties": {"id": "49204", "from": "5673066981", "to": "509915327", "length_m": 21.927326560970332, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789909.1876454187, 5753255.231728278], [789668.8254065516, 5753297.063018889]]}, "properties": {"id": "49205-49207", "from": "5673066981", "to": "3577715612", "length_m": 244.02106995766096, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789668.8254065516, 5753297.063018889], [789909.1876454187, 5753255.231728278]]}, "properties": {"id": "49208-49206", "from": "3577715612", "to": "5673066981", "length_m": 244.02106995766096, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789668.8254065516, 5753297.063018889], [789486.0296477755, 5753332.4872796405]]}, "properties": {"id": "49209", "from": "3577715612", "to": "509915252", "length_m": 186.19658301149823, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789486.0296477755, 5753332.4872796405], [789668.8254065516, 5753297.063018889]]}, "properties": {"id": "49210", "from": "509915252", "to": "3577715612", "length_m": 186.19658301149823, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774372.4785961679, 5765880.757305695], [774390.9996591997, 5765834.291885143]]}, "properties": {"id": "49211-49212", "from": "2379273320", "to": "2379273322", "length_m": 50.03216805279953, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774370.4180341151, 5765727.244368837], [774355.3057410555, 5765796.952314047]]}, "properties": {"id": "49213-49214-49215-49216", "from": "2379273321", "to": "2379273324", "length_m": 71.82337518604525, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797737.2453671894, 5769573.963175141], [797112.7653197098, 5769817.727215483]]}, "properties": {"id": "49223-49224-49225-49226-49227", "from": "279677534", "to": "270421130", "length_m": 670.3702258102968, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789440.4603790296, 5751345.571622396], [789449.2719458421, 5751480.8294861]]}, "properties": {"id": "49228-49230", "from": "3049983777", "to": "5421465902", "length_m": 135.55179832091588, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789449.2719458421, 5751480.8294861], [789440.4603790296, 5751345.571622396]]}, "properties": {"id": "49231-49229", "from": "5421465902", "to": "3049983777", "length_m": 135.55179832091588, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789449.2719458421, 5751480.8294861], [789476.0237513426, 5751480.336050047]]}, "properties": {"id": "49232-49234-49236-49238-49240-49242-49244-49246-49248-49250-49252-49254-49256-49258-49260-49262-49264-49266-49268-49270-49272-49274-49276-49278-49280-49282-49284-49286", "from": "5421465902", "to": "5421466930", "length_m": 444.4070271602924, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759249.1644546826, 5729607.678647973], [759300.47985612, 5729558.527397346]]}, "properties": {"id": "4926-4928-4930", "from": "832508171", "to": "5109912587", "length_m": 71.06167213194323, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789476.0237513426, 5751480.336050047], [789449.2719458421, 5751480.8294861]]}, "properties": {"id": "49287-49285-49283-49281-49279-49277-49275-49273-49271-49269-49267-49265-49263-49261-49259-49257-49255-49253-49251-49249-49247-49245-49243-49241-49239-49237-49235-49233", "from": "5421466930", "to": "5421465902", "length_m": 444.4070271602924, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789476.0237513426, 5751480.336050047], [789449.2719458421, 5751480.8294861]]}, "properties": {"id": "49288", "from": "5421466930", "to": "5421465902", "length_m": 26.756355762315387, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789449.2719458421, 5751480.8294861], [789476.0237513426, 5751480.336050047]]}, "properties": {"id": "49289", "from": "5421465902", "to": "5421466930", "length_m": 26.756355762315387, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774355.3057410555, 5765796.952314047], [774351.6914062819, 5765833.389618133]]}, "properties": {"id": "49290-49292-49294-49296", "from": "2379273324", "to": "2379273323", "length_m": 36.91819091446238, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774351.6914062819, 5765833.389618133], [774355.3057410555, 5765796.952314047]]}, "properties": {"id": "49297-49295-49293-49291", "from": "2379273323", "to": "2379273324", "length_m": 36.91819091446238, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774370.4180341151, 5765727.244368837], [774029.7988279634, 5763924.754083958]]}, "properties": {"id": "49298-49300-49302-49304-49306-49308-49310-49312-49314-49316", "from": "2379273321", "to": "1856823184", "length_m": 1836.2691634414468, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759300.47985612, 5729558.527397346], [759249.1644546826, 5729607.678647973]]}, "properties": {"id": "4931-4929-4927", "from": "5109912587", "to": "832508171", "length_m": 71.06167213194323, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774029.7988279634, 5763924.754083958], [774370.4180341151, 5765727.244368837]]}, "properties": {"id": "49317-49315-49313-49311-49309-49307-49305-49303-49301-49299", "from": "1856823184", "to": "2379273321", "length_m": 1836.2691634414468, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774029.7988279634, 5763924.754083958], [773884.2700936244, 5763017.050501864]]}, "properties": {"id": "49318-49320", "from": "1856823184", "to": "475575510", "length_m": 919.8121626773994, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759300.47985612, 5729558.527397346], [759401.359438407, 5729478.680744281]]}, "properties": {"id": "4932-4934-4936-4938", "from": "5109912587", "to": "832508355", "length_m": 129.00517062193907, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773884.2700936244, 5763017.050501864], [774029.7988279634, 5763924.754083958]]}, "properties": {"id": "49321-49319", "from": "475575510", "to": "1856823184", "length_m": 919.8121626773994, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773884.2700936244, 5763017.050501864], [774207.7387272237, 5762155.41665285]]}, "properties": {"id": "49322", "from": "475575510", "to": "535081575", "length_m": 920.3503941858316, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774207.7387272237, 5762155.41665285], [773884.2700936244, 5763017.050501864]]}, "properties": {"id": "49323", "from": "535081575", "to": "475575510", "length_m": 920.3503941858316, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774207.7387272237, 5762155.41665285], [774551.8275554571, 5761244.512585502]]}, "properties": {"id": "49324-49326", "from": "535081575", "to": "489289820", "length_m": 973.7265244023941, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774551.8275554571, 5761244.512585502], [774207.7387272237, 5762155.41665285]]}, "properties": {"id": "49327-49325", "from": "489289820", "to": "535081575", "length_m": 973.7265244023941, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774551.8275554571, 5761244.512585502], [774557.5695730683, 5761234.005395289]]}, "properties": {"id": "49328", "from": "489289820", "to": "489289818", "length_m": 11.973796917670501, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774557.5695730683, 5761234.005395289], [774551.8275554571, 5761244.512585502]]}, "properties": {"id": "49329", "from": "489289818", "to": "489289820", "length_m": 11.973796917670501, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774351.6914062819, 5765833.389618133], [774372.4785961679, 5765880.757305695]]}, "properties": {"id": "49340-49341-49342", "from": "2379273323", "to": "2379273320", "length_m": 52.16938558227853, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774395.4950495517, 5765795.657811601], [774370.4180341151, 5765727.244368837]]}, "properties": {"id": "49343-49344-49345-49346", "from": "2379273325", "to": "2379273321", "length_m": 73.16802525884087, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774390.9996591997, 5765834.291885143], [774395.4950495517, 5765795.657811601]]}, "properties": {"id": "49347-49349-49351", "from": "2379273322", "to": "2379273325", "length_m": 39.24577592121951, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774395.4950495517, 5765795.657811601], [774390.9996591997, 5765834.291885143]]}, "properties": {"id": "49352-49350-49348", "from": "2379273325", "to": "2379273322", "length_m": 39.24577592121951, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836935.9269013682, 5812058.268923914], [836598.102318455, 5812124.228128023]]}, "properties": {"id": "49380-2693-2694-37100", "from": "268176174", "to": "3451762885", "length_m": 344.2035376078395, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836193.5691161893, 5807425.195610007], [836201.7463166444, 5807413.563356491]]}, "properties": {"id": "49382", "from": "2325319134", "to": "347851660", "length_m": 14.21885824578421, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817806.4956746385, 5822088.764938584], [817815.6938501328, 5822084.008473419]]}, "properties": {"id": "49383-49384-49385", "from": "303686090", "to": "5976736988", "length_m": 10.39304978579463, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817806.4956746385, 5822088.764938584], [817817.0179719187, 5822091.094380629]]}, "properties": {"id": "49386-49387-49388", "from": "303686090", "to": "303686091", "length_m": 10.794276872779097, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836938.3869195732, 5812070.922369523], [837227.2876563801, 5812022.221915591]]}, "properties": {"id": "49389-49390-49391-49392-49393-49394", "from": "268175967", "to": "268175488", "length_m": 293.11269389243483, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759401.359438407, 5729478.680744281], [759300.47985612, 5729558.527397346]]}, "properties": {"id": "4939-4937-4935-4933", "from": "832508355", "to": "5109912587", "length_m": 129.00517062193907, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817817.0179719187, 5822091.094380629], [817815.6938501328, 5822084.008473419]]}, "properties": {"id": "49395", "from": "303686091", "to": "5976736988", "length_m": 7.208562921470028, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817815.6938501328, 5822084.008473419], [817778.5567941092, 5821916.098451991]]}, "properties": {"id": "49396-49397-49398", "from": "5976736988", "to": "1412762902", "length_m": 172.02591639055564, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759401.359438407, 5729478.680744281], [759598.3366802657, 5729316.204781777]]}, "properties": {"id": "4940-4942-4944-4946-4948", "from": "832508355", "to": "4873863339", "length_m": 256.37198552213283, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787472.1138135018, 5779225.61564566], [786700.2127982368, 5779577.064450207]]}, "properties": {"id": "49400-38031-38029-38027-38025-38023-18178-18176-18174-18172-18170", "from": "4181465676", "to": "494759326", "length_m": 848.7446711290937, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760871.0615995585, 5838995.574815173], [760876.757163645, 5838971.6776117515]]}, "properties": {"id": "49401", "from": "1555084641", "to": "1555084567", "length_m": 24.566558203161335, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760876.757163645, 5838971.6776117515], [760871.0615995585, 5838995.574815173]]}, "properties": {"id": "49402", "from": "1555084567", "to": "1555084641", "length_m": 24.566558203161335, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833270.561699091, 5820615.945555721], [833285.5035286194, 5820606.3911232725]]}, "properties": {"id": "49403", "from": "2865664642", "to": "599479818", "length_m": 17.73542921564171, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832110.9661600522, 5810325.193063933], [832112.9186234013, 5810428.565002827]]}, "properties": {"id": "49404-49405-49406", "from": "298331512", "to": "298335479", "length_m": 103.44724965116679, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834714.9977938833, 5820602.468181955], [834721.5720899482, 5820622.093482037]]}, "properties": {"id": "49407", "from": "26118272", "to": "26032514", "length_m": 20.69719233331024, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834721.5720899482, 5820622.093482037], [834714.9977938833, 5820602.468181955]]}, "properties": {"id": "49408", "from": "26032514", "to": "26118272", "length_m": 20.69719233331024, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[815076.6266619625, 5822444.867137353], [814510.0171703724, 5822356.907747858]]}, "properties": {"id": "49409-49410-49411-49412-49413-49414-49415-49416-49417-49418-49419", "from": "34610830", "to": "35091512", "length_m": 593.9629851738981, "freespeed_mps": 30.555555555555554, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834388.7734815119, 5812882.900868851], [834426.1726293473, 5812873.597379884]]}, "properties": {"id": "49420-49421", "from": "268170277", "to": "268172125", "length_m": 38.54272725389124, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834426.1726293473, 5812873.597379884], [834526.9389714438, 5812825.268657781]]}, "properties": {"id": "49422-49423-49424", "from": "268172125", "to": "268172128", "length_m": 112.34375729259513, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834526.9389714438, 5812825.268657781], [834713.4999005878, 5812701.72936364]]}, "properties": {"id": "49425-49426", "from": "268172128", "to": "36713327", "length_m": 223.7564244956967, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833967.1450719287, 5820863.066601317], [833961.1298427451, 5820841.494667498]]}, "properties": {"id": "49427", "from": "1959669511", "to": "26118270", "length_m": 22.394894711127307, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833961.1298427451, 5820841.494667498], [833967.1450719287, 5820863.066601317]]}, "properties": {"id": "49428", "from": "26118270", "to": "1959669511", "length_m": 22.394894711127307, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793780.5063730853, 5774675.48625421], [793804.6603925639, 5774726.517639567]]}, "properties": {"id": "49429-49430-49431-49432-49433-49434", "from": "3964004499", "to": "5468489801", "length_m": 57.79394368190044, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793804.6603925639, 5774726.517639567], [793814.5100634219, 5774728.917871125]]}, "properties": {"id": "49435-49436-49437", "from": "5468489801", "to": "3964004487", "length_m": 10.271255006020287, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789351.663525045, 5752726.836629133], [789343.223329979, 5752682.89285639]]}, "properties": {"id": "49438", "from": "3577715637", "to": "5421465551", "length_m": 44.74697814413431, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789343.223329979, 5752682.89285639], [789351.663525045, 5752726.836629133]]}, "properties": {"id": "49439", "from": "5421465551", "to": "3577715637", "length_m": 44.74697814413431, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814587.0694591014, 5822762.403012712], [814932.1953813316, 5822509.185195341]]}, "properties": {"id": "49440-49441-49442-49443-49444-49445-49446-49447-49448-49449", "from": "35091839", "to": "1834826154", "length_m": 443.88623032941507, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814017.234043263, 5822674.698053174], [814587.0694591014, 5822762.403012712]]}, "properties": {"id": "49450-49451-49452-49453-49454-49455-49456-49457-49458-49459-49460-49461-49462-49463", "from": "35090937", "to": "35091839", "length_m": 598.2317143056559, "freespeed_mps": 30.555555555555554, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832110.9661600522, 5810325.193063933], [831998.1353376874, 5809547.365194403]]}, "properties": {"id": "49464-49466-49468-49470-12697-12683-12685-13752", "from": "298331512", "to": "666604911", "length_m": 785.9711885686331, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[822321.1745488556, 5818180.866706373], [821865.3010129414, 5818550.624116463]]}, "properties": {"id": "49472-49473-49474-49475", "from": "786576629", "to": "477003594", "length_m": 587.0273759211747, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[821865.3010129414, 5818550.624116463], [821373.2652856236, 5818944.274224229]]}, "properties": {"id": "49476-49477-49478", "from": "477003594", "to": "477023175", "length_m": 630.1382264059797, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[821414.5305703573, 5818960.997729426], [822196.0169156366, 5818332.69889546]]}, "properties": {"id": "49479", "from": "786578419", "to": "786578052", "length_m": 1002.7364226429935, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[822196.0169156366, 5818332.69889546], [822655.6018970057, 5817963.664423859]]}, "properties": {"id": "49480-43145-43146-43147", "from": "786578052", "to": "1412789222", "length_m": 589.416112715337, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[822655.6018970057, 5817963.664423859], [823450.040373897, 5817326.258731123]]}, "properties": {"id": "49481-49482-49483-49484-49485", "from": "1412789222", "to": "3604480758", "length_m": 1018.5616547198074, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[823450.040373897, 5817326.258731123], [824086.7640931598, 5817007.075916484]]}, "properties": {"id": "49486-49487-49488-49489-49490-49491-49492-49493-49494-49495-49496-49497-49498", "from": "3604480758", "to": "38693709", "length_m": 713.4481320243686, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759598.3366802657, 5729316.204781777], [759401.359438407, 5729478.680744281]]}, "properties": {"id": "4949-4947-4945-4943-4941", "from": "4873863339", "to": "832508355", "length_m": 256.37198552213283, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824086.7640931598, 5817007.075916484], [824554.0379569677, 5816787.950172184]]}, "properties": {"id": "49499-49500", "from": "38693709", "to": "38693714", "length_m": 516.1019735063394, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759598.3366802657, 5729316.204781777], [759677.1528061532, 5729241.514079198]]}, "properties": {"id": "4950-4952", "from": "4873863339", "to": "832508636", "length_m": 108.67101903548892, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824554.0379569677, 5816787.950172184], [825413.6476699609, 5816370.127602361]]}, "properties": {"id": "49501-49502-49503-49504-49505-49506-49507-49508-49509-49510", "from": "38693714", "to": "36715197", "length_m": 957.1417997245928, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817045.3654273516, 5821903.038157165], [816437.0715833933, 5821961.650273033]]}, "properties": {"id": "49515-49516-49517-49518", "from": "34610825", "to": "3367822903", "length_m": 611.3364017336875, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816437.0715833933, 5821961.650273033], [815773.216752536, 5822211.46654154]]}, "properties": {"id": "49519-49520-49521-49522-49523-49524-34730-46931-46932-46933-46934-46935", "from": "3367822903", "to": "3367822913", "length_m": 712.758938728422, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817735.1566383328, 5821643.788308984], [817725.7195116556, 5821645.997101726]]}, "properties": {"id": "49529", "from": "360521334", "to": "303686094", "length_m": 9.69216820336524, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759677.1528061532, 5729241.514079198], [759598.3366802657, 5729316.204781777]]}, "properties": {"id": "4953-4951", "from": "832508636", "to": "4873863339", "length_m": 108.67101903548892, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818596.3205186182, 5821648.5986647615], [819285.3995677417, 5821034.077447663]]}, "properties": {"id": "49530-49531-49532-49533-49534-49535", "from": "59961470", "to": "1412733140", "length_m": 925.0478234759281, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817841.8992596457, 5822212.564011315], [817817.0179719187, 5822091.094380629]]}, "properties": {"id": "49536-49537", "from": "174726464", "to": "303686091", "length_m": 123.99894212266612, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[821373.2652856236, 5818944.274224229], [820639.233972399, 5819656.483342645]]}, "properties": {"id": "49538-49539-49540-49541", "from": "477023175", "to": "4920069072", "length_m": 1022.7863037863857, "freespeed_mps": 25.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759677.1528061532, 5729241.514079198], [759688.8422857383, 5729230.923607685]]}, "properties": {"id": "4954", "from": "832508636", "to": "832509292", "length_m": 15.773459331974188, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820639.233972399, 5819656.483342645], [820618.3060718633, 5819676.996676713]]}, "properties": {"id": "49542-49543", "from": "4920069072", "to": "1412737863", "length_m": 29.30484425188288, "freespeed_mps": 25.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[820618.3060718633, 5819676.996676713], [820443.6191299157, 5819848.820643711]]}, "properties": {"id": "49544-49545", "from": "1412737863", "to": "1412789208", "length_m": 245.02863951066854, "freespeed_mps": 25.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788892.5527376696, 5773379.735624801], [788888.0539637578, 5773356.900971197]]}, "properties": {"id": "49546-49547", "from": "428721708", "to": "318835563", "length_m": 23.27359908882576, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759688.8422857383, 5729230.923607685], [759677.1528061532, 5729241.514079198]]}, "properties": {"id": "4955", "from": "832509292", "to": "832508636", "length_m": 15.773459331974188, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837118.4725222269, 5811370.021831397], [837186.1592263263, 5811787.993118444]]}, "properties": {"id": "49558-49559-49560-23282-23283-23284-23285-23286", "from": "268175236", "to": "2920060126", "length_m": 424.004763000041, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759688.8422857383, 5729230.923607685], [759767.7980344546, 5729168.116444691]]}, "properties": {"id": "4956", "from": "832509292", "to": "832510052", "length_m": 100.88979127956945, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788880.8011831836, 5773312.903367977], [788753.109586768, 5772926.379708896]]}, "properties": {"id": "49567-49568-49569-49570-49571-49572-49573", "from": "428722427", "to": "428722315", "length_m": 411.5676713268104, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759767.7980344546, 5729168.116444691], [759688.8422857383, 5729230.923607685]]}, "properties": {"id": "4957", "from": "832510052", "to": "832509292", "length_m": 100.88979127956945, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788742.9275725666, 5773414.397305081], [788967.162868608, 5773735.794050696]]}, "properties": {"id": "49576-49577-49578-49579-49580-49581-49582", "from": "428721693", "to": "318036316", "length_m": 395.51885540468066, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759767.7980344546, 5729168.116444691], [759967.9336480867, 5728997.21629611]]}, "properties": {"id": "4958-4960-4962", "from": "832510052", "to": "832509756", "length_m": 263.3625440171115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788720.9822017692, 5773318.797845783], [788734.5724009373, 5773375.662367054]]}, "properties": {"id": "49583-49584-49585", "from": "428721752", "to": "3431090329", "length_m": 58.516643396959466, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753634.3436057338, 5842637.490674095], [754208.0020404559, 5841910.003884072]]}, "properties": {"id": "49586-49587-49588-49589-49590", "from": "1667976026", "to": "3340866179", "length_m": 929.9700823876428, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754208.0020404559, 5841910.003884072], [754637.9520602871, 5841559.377001038]]}, "properties": {"id": "49591-49592-49593", "from": "3340866179", "to": "3340866168", "length_m": 555.1981075434832, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754637.9520602871, 5841559.377001038], [755117.0163245522, 5841160.537523451]]}, "properties": {"id": "49594-49595-49596", "from": "3340866168", "to": "52442365", "length_m": 624.1130841356328, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755117.0163245522, 5841160.537523451], [755555.6324866952, 5840739.895071898]]}, "properties": {"id": "49597-49613", "from": "52442365", "to": "3340929863", "length_m": 607.940165457306, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755287.5932512664, 5840939.732591687], [754670.2768729179, 5841374.052179666]]}, "properties": {"id": "49600-49601-49602-49603", "from": "3340866176", "to": "3340866181", "length_m": 754.9081513065374, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754670.2768729179, 5841374.052179666], [754158.8751873325, 5841842.236146716]]}, "properties": {"id": "49604-49605-49606-49607", "from": "3340866181", "to": "3340866180", "length_m": 694.3127302092803, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754158.8751873325, 5841842.236146716], [753609.8173184205, 5842616.245301897]]}, "properties": {"id": "49608-49609-49610-49611", "from": "3340866180", "to": "1140333230", "length_m": 950.3502263378634, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752155.2941122032, 5838973.614991747], [752147.798316893, 5838975.4535494]]}, "properties": {"id": "49612", "from": "363999777", "to": "60303500", "length_m": 7.717981706698788, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834356.8665141871, 5821886.798149931], [833894.9097144709, 5822052.284320282]]}, "properties": {"id": "49614-49615-49616-49617-49618-49619-49620-49621-49622-49623-49624-49625-49626-49627", "from": "1257432044", "to": "1257431998", "length_m": 517.9568086220145, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833894.9097144709, 5822052.284320282], [833829.0498413837, 5822056.54990803]]}, "properties": {"id": "49628-49629-49630-49631-49632-49633-49634-49635", "from": "1257431998", "to": "603452955", "length_m": 69.96017363810324, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759967.9336480867, 5728997.21629611], [759767.7980344546, 5729168.116444691]]}, "properties": {"id": "4963-4961-4959", "from": "832509756", "to": "832510052", "length_m": 263.3625440171115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833551.7166143686, 5822608.320306225], [834118.9902961713, 5822403.358652301]]}, "properties": {"id": "49636-49637-49638-49639-49640-49641-49642-49643-49644-49645-49646-49647-49648-49649-49650-49651-49652-49653-49654-49655-49656-49657-49658-49659-49660-49661-49662-49663-49664-49665", "from": "1257432185", "to": "1534925726", "length_m": 632.6493968833662, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789122.0089455897, 5751398.107830709], [788832.5383646047, 5751436.211471048]]}, "properties": {"id": "49686-49688-49690-49692-49694", "from": "270452357", "to": "321711589", "length_m": 292.51891866295364, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759563.9003444725, 5731333.639050892], [759329.7339861933, 5731071.342324525]]}, "properties": {"id": "4969-4967-4394-4392", "from": "832510043", "to": "832510192", "length_m": 422.1719643438282, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788832.5383646047, 5751436.211471048], [789122.0089455897, 5751398.107830709]]}, "properties": {"id": "49695-49693-49691-49689-49687", "from": "321711589", "to": "270452357", "length_m": 292.51891866295364, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785106.2933497687, 5751389.511202669], [785145.6315100639, 5751535.101714381]]}, "properties": {"id": "49696-49697-49698-49699-49700", "from": "509915055", "to": "37685285", "length_m": 153.87339664933236, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772481.8500960423, 5773522.092804255], [772344.8846724548, 5772764.934778185]]}, "properties": {"id": "497-495-493-491-489", "from": "5604428486", "to": "5604428491", "length_m": 769.4617238330947, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758897.6299925606, 5729763.9769954905], [759052.8978619105, 5729582.175424744]]}, "properties": {"id": "4970-4972-4974", "from": "832509193", "to": "832510259", "length_m": 243.10230506104148, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785169.2491370954, 5751563.59618689], [785178.305516382, 5751545.182483313]]}, "properties": {"id": "49701-49702-49703-49704", "from": "324204843", "to": "324204850", "length_m": 21.638155036338254, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785178.305516382, 5751545.182483313], [785163.6754454842, 5751529.251249648]]}, "properties": {"id": "49705-49706-49707", "from": "324204850", "to": "324204855", "length_m": 22.89136913899322, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785163.6754454842, 5751529.251249648], [785145.6315100639, 5751535.101714381]]}, "properties": {"id": "49708-49709-49710", "from": "324204855", "to": "37685285", "length_m": 19.757293756705728, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785145.6315100639, 5751535.101714381], [785141.2314680826, 5751551.027929569]]}, "properties": {"id": "49711-49712", "from": "37685285", "to": "324204863", "length_m": 16.965453234461123, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785141.2314680826, 5751551.027929569], [785162.0797219484, 5751566.061375665]]}, "properties": {"id": "49713-49714-49715-49716", "from": "324204863", "to": "37685294", "length_m": 28.141612772022253, "freespeed_mps": 12.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785162.0797219484, 5751566.061375665], [785169.2491370954, 5751563.59618689]]}, "properties": {"id": "49717", "from": "37685294", "to": "324204843", "length_m": 7.58140281167899, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785683.6712950005, 5765454.697071742], [786406.4559506364, 5764914.495433213]]}, "properties": {"id": "49732-49733-49734-49735-49736-49737-49738-49739-49740-49741-49742", "from": "1270758466", "to": "1270758478", "length_m": 906.4165150854474, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786406.4559506364, 5764914.495433213], [787304.5387106524, 5764792.842501673]]}, "properties": {"id": "49743-49744-39786-39741-39742-39743-39744-39745-39746-39747-39748-39749", "from": "1270758478", "to": "1270758456", "length_m": 919.1156291777111, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796661.302034767, 5781550.634372869], [796287.7329012122, 5781188.747546855]]}, "properties": {"id": "49748-49749-49750-49751-49752-49753", "from": "632191149", "to": "867731683", "length_m": 520.1204160385245, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759052.8978619105, 5729582.175424744], [758897.6299925606, 5729763.9769954905]]}, "properties": {"id": "4975-4973-4971", "from": "832510259", "to": "832509193", "length_m": 243.10230506104148, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796287.7329012122, 5781188.747546855], [795583.4251748833, 5780507.21237991]]}, "properties": {"id": "49754-49755-11471-11427-11428-11429-11430-11431-11432-11433", "from": "867731683", "to": "619754860", "length_m": 980.0837621838422, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777526.996046625, 5762009.22370633], [777474.3347239494, 5761886.289378307]]}, "properties": {"id": "49756-49758-49760-49762", "from": "475483092", "to": "475483100", "length_m": 136.8925188970253, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777474.3347239494, 5761886.289378307], [777526.996046625, 5762009.22370633]]}, "properties": {"id": "49763-49761-49759-49757", "from": "475483100", "to": "475483092", "length_m": 136.8925188970253, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777474.3347239494, 5761886.289378307], [777420.1117046126, 5761730.803622816]]}, "properties": {"id": "49764-49766", "from": "475483100", "to": "476151595", "length_m": 164.89879623357575, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777420.1117046126, 5761730.803622816], [777474.3347239494, 5761886.289378307]]}, "properties": {"id": "49767-49765", "from": "476151595", "to": "475483100", "length_m": 164.89879623357575, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777420.1117046126, 5761730.803622816], [777487.5123748425, 5761424.780979193]]}, "properties": {"id": "49768-49770-49772-49774-49776-49778", "from": "476151595", "to": "3756753419", "length_m": 332.6592869408437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777487.5123748425, 5761424.780979193], [777420.1117046126, 5761730.803622816]]}, "properties": {"id": "49779-49777-49775-49773-49771-49769", "from": "3756753419", "to": "476151595", "length_m": 332.6592869408437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777487.5123748425, 5761424.780979193], [777651.4914916893, 5761230.393175072]]}, "properties": {"id": "49780-49782-49784-49786-49788-49790-49792", "from": "3756753419", "to": "475483146", "length_m": 265.4797446134233, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777651.4914916893, 5761230.393175072], [777487.5123748425, 5761424.780979193]]}, "properties": {"id": "49793-49791-49789-49787-49785-49783-49781", "from": "475483146", "to": "3756753419", "length_m": 265.4797446134233, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838061.3131795124, 5808535.879803186], [837888.5624778878, 5808568.728148183]]}, "properties": {"id": "49794", "from": "3138343362", "to": "75143139", "length_m": 175.8460077869646, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837888.5624778878, 5808568.728148183], [838061.3131795124, 5808535.879803186]]}, "properties": {"id": "49795", "from": "75143139", "to": "3138343362", "length_m": 175.8460077869646, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837582.3161923954, 5819266.414248854], [837071.3983052073, 5819535.626160823]]}, "properties": {"id": "49798-49799", "from": "1511360297", "to": "2528926492", "length_m": 577.5330175118277, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772481.8500960423, 5773522.092804255], [772562.5457353079, 5774222.600553378]]}, "properties": {"id": "498-500-502-504-506-508", "from": "5604428486", "to": "5604428480", "length_m": 717.0721744402391, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837071.3983052073, 5819535.626160823], [836333.9206796132, 5820097.5897940695]]}, "properties": {"id": "49800-49801-49802-49803-49804-49805-2643-2598-2599-2600-2601", "from": "2528926492", "to": "36047423", "length_m": 933.981219461608, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832419.3138809951, 5808248.916225176], [832188.259373913, 5808283.802452886]]}, "properties": {"id": "49806-49812", "from": "75155391", "to": "353642926", "length_m": 233.67764155145662, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752108.1007908818, 5838746.998182969], [752147.798316893, 5838975.4535494]]}, "properties": {"id": "49807-49808-49809-49810-49811", "from": "4963796496", "to": "60303500", "length_m": 231.87873643612002, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832189.6612392014, 5808297.310973873], [832428.0848359752, 5808261.626213737]]}, "properties": {"id": "49830-17838-17839", "from": "1536458758", "to": "1536458838", "length_m": 241.07936878895887, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[824965.4302682714, 5798176.314459909], [825448.917264903, 5798562.9962338535]]}, "properties": {"id": "49831-59280-59281", "from": "29319691", "to": "204503685", "length_m": 619.1171777569887, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781940.8445564387, 5766480.150215832], [781792.0495648964, 5765751.925569585]]}, "properties": {"id": "49832-49833-49834-49835", "from": "370245206", "to": "370245210", "length_m": 81.89008909795088, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836812.2305496635, 5806615.697280673], [835651.1506349065, 5806078.1953985905]]}, "properties": {"id": "49842-49843-49844-49845-49846-49847-49848-33947-33948-33949-33950-33951-33952-33953-33954-33955-33631-33632-33649-33650-33651-33652-33653-33654-33938", "from": "26476109", "to": "29321163", "length_m": 1345.2627657138507, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833829.0498413837, 5822056.54990803], [833820.3902594536, 5822064.627869295]]}, "properties": {"id": "49849", "from": "603452955", "to": "603452959", "length_m": 11.842373827417687, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833820.3902594536, 5822064.627869295], [833810.5043724478, 5822099.841160081]]}, "properties": {"id": "49850-49851-49852-49853-49854", "from": "603452959", "to": "603452633", "length_m": 37.67463190184732, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833810.5043724478, 5822099.841160081], [833360.0101000122, 5822727.4651254965]]}, "properties": {"id": "49855-49856-49857-49858-49859-49860-49861-49862-49863-49864-49865-49866-49867-49868-49869-49870-49871-49872-49873-49874-49875-49876-49877-49878-49879", "from": "603452633", "to": "426766418", "length_m": 815.3581652787058, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793726.0521945297, 5774084.829430955], [793729.0270928104, 5774073.629579565]]}, "properties": {"id": "4990", "from": "318039630", "to": "1557825485", "length_m": 11.58821346678341, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759361.4975735095, 5730698.398675203], [759130.4288438923, 5730915.246429214]]}, "properties": {"id": "4991-4993-4995-4997-4999-5001-5003-5005", "from": "75297686", "to": "832508590", "length_m": 348.7415447630133, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807236.0581496053, 5823371.602056822], [808437.9979841543, 5823303.081033997]]}, "properties": {"id": "49911-49912-26261-25840-25841-25842-25843-25844-25845-25846-25847", "from": "716679984", "to": "4230275119", "length_m": 1206.7763903923071, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829979.0023083003, 5821784.480715966], [829796.0125734959, 5821824.184299948]]}, "properties": {"id": "49913-49914-49915", "from": "2960825840", "to": "2960825842", "length_m": 187.3858566974395, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807702.3892221837, 5823344.862167002], [807120.7009604049, 5823356.143059447]]}, "properties": {"id": "49922-49923-49924-49925-49926-49927", "from": "716679778", "to": "716684314", "length_m": 581.8303180028686, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[807120.7009604049, 5823356.143059447], [806493.1759024439, 5823491.017805701]]}, "properties": {"id": "49928-49929-49930-49935-49936-49937-40648-40649-40650-40651-40652-40653-40654-40655-40656-40657-40658-40659", "from": "716684314", "to": "316884367", "length_m": 645.4565981262631, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829801.1659370842, 5821844.803032297], [829796.0125734959, 5821824.184299948]]}, "properties": {"id": "49933-49934", "from": "605209735", "to": "2960825842", "length_m": 21.410530087897232, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[805584.5529634096, 5825126.914893802], [805046.4618715143, 5825482.875294348]]}, "properties": {"id": "49944-49945-49946-49947-49948-49949-49950-49951-49952-49953-49954-49955-49956", "from": "317106663", "to": "317106752", "length_m": 662.2132583829823, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[805046.4618715143, 5825482.875294348], [804371.1235121388, 5825616.445402962]]}, "properties": {"id": "49957-49958-43099-43100-43101-43080-43081", "from": "317106752", "to": "317106766", "length_m": 689.006405541103, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793180.7594713392, 5760833.320746634], [793697.3263706877, 5760731.231178257]]}, "properties": {"id": "49959-49961-49963", "from": "441019267", "to": "441019270", "length_m": 527.2775124177681, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793697.3263706877, 5760731.231178257], [793180.7594713392, 5760833.320746634]]}, "properties": {"id": "49964-49962-49960", "from": "441019270", "to": "441019267", "length_m": 527.2775124177681, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793697.3263706877, 5760731.231178257], [793116.8144214831, 5760485.090810794]]}, "properties": {"id": "49965-49967-49969-49971-49973-49975-49977-49979-49981-49983-49985-49987-49989-49991-49993", "from": "441019270", "to": "441019287", "length_m": 924.8312966789243, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793116.8144214831, 5760485.090810794], [793697.3263706877, 5760731.231178257]]}, "properties": {"id": "49994-49992-49990-49988-49986-49984-49982-49980-49978-49976-49974-49972-49970-49968-49966", "from": "441019287", "to": "441019270", "length_m": 924.8312966789243, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[805069.7815102846, 5825509.512291597], [805515.6412503105, 5825267.178363928]]}, "properties": {"id": "49998-49999-50000-50001-50002-50003-50004-50005-50006-50007-50008-50009-50010-50011-50012-50013", "from": "317106737", "to": "317106695", "length_m": 514.6733629577172, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[805515.6412503105, 5825267.178363928], [805757.2233619791, 5824772.925791279]]}, "properties": {"id": "50014-50015-50016-50017-50018-50019-50020-50021-50022-50023-50024-49916-49917-43037-43038", "from": "317106695", "to": "1340916883", "length_m": 559.6771299514724, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793108.5043058777, 5760439.821581478], [792608.3790376869, 5760530.7988959225]]}, "properties": {"id": "50025-50027-50029-50031-50033-50035-50037-50039-50041-50043", "from": "441019288", "to": "441019298", "length_m": 509.72603925339786, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792608.3790376869, 5760530.7988959225], [793108.5043058777, 5760439.821581478]]}, "properties": {"id": "50044-50042-50040-50038-50036-50034-50032-50030-50028-50026", "from": "441019298", "to": "441019288", "length_m": 509.72603925339786, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792608.3790376869, 5760530.7988959225], [793164.6411856285, 5760745.531717657]]}, "properties": {"id": "50045-50047-50049-50051-50053-50055-50057-50059-50061-50063-50065-50067-50069-50071-50073-50075-50077-50079-50081-50083-50085-50087-50089-50091-50093-50095", "from": "441019298", "to": "441019327", "length_m": 951.8614214854551, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759130.4288438923, 5730915.246429214], [759361.4975735095, 5730698.398675203]]}, "properties": {"id": "5006-5004-5002-5000-4998-4996-4994-4992", "from": "832508590", "to": "75297686", "length_m": 348.7415447630133, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759331.9364379059, 5729204.514851804], [759278.8284548235, 5729335.103454582]]}, "properties": {"id": "5007-5009-5011-5013-5015", "from": "832509973", "to": "832510112", "length_m": 189.7390937182018, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793164.6411856285, 5760745.531717657], [792608.3790376869, 5760530.7988959225]]}, "properties": {"id": "50096-50094-50092-50090-50088-50086-50084-50082-50080-50078-50076-50074-50072-50070-50068-50066-50064-50062-50060-50058-50056-50054-50052-50050-50048-50046", "from": "441019327", "to": "441019298", "length_m": 951.8614214854551, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769728.840752912, 5737892.056409039], [770359.6831910333, 5737982.326101583]]}, "properties": {"id": "50109-50107-50105-50103-50101-51422-51420-26363-26361-26359-26357-26355-26353-26351-26349", "from": "37673595", "to": "3989810660", "length_m": 662.7523916514474, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769728.840752912, 5737892.056409039], [769141.1243059975, 5737737.528255588]]}, "properties": {"id": "50110-50112-50114-50116-50118-50120-50122-50124-50126-50128-50130-50132-50134-50136-50138", "from": "37673595", "to": "665716928", "length_m": 691.0932302031555, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769141.1243059975, 5737737.528255588], [769728.840752912, 5737892.056409039]]}, "properties": {"id": "50139-50137-50135-50133-50131-50129-50127-50125-50123-50121-50119-50117-50115-50113-50111", "from": "665716928", "to": "37673595", "length_m": 691.0932302031555, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769141.1243059975, 5737737.528255588], [768320.6870764887, 5737746.77936784]]}, "properties": {"id": "50140-50142-50144-50146-50148-50150-50152", "from": "665716928", "to": "37673477", "length_m": 822.1151090203249, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768320.6870764887, 5737746.77936784], [769141.1243059975, 5737737.528255588]]}, "properties": {"id": "50153-50151-50149-50147-50145-50143-50141", "from": "37673477", "to": "665716928", "length_m": 822.1151090203249, "freespeed_mps": 14.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768320.6870764887, 5737746.77936784], [767513.420775737, 5737779.431412622]]}, "properties": {"id": "50154-50156-50158-50160-50162-50164-50166-50168-50170-50172", "from": "37673477", "to": "524150774", "length_m": 810.9520642644773, "freespeed_mps": 14.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759278.8284548235, 5729335.103454582], [759331.9364379059, 5729204.514851804]]}, "properties": {"id": "5016-5014-5012-5010-5008", "from": "832510112", "to": "832509973", "length_m": 189.7390937182018, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758893.903902013, 5730737.660314536], [758831.5214214926, 5730689.353981431]]}, "properties": {"id": "5017", "from": "832509934", "to": "832509216", "length_m": 78.89914871266548, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767513.420775737, 5737779.431412622], [768320.6870764887, 5737746.77936784]]}, "properties": {"id": "50173-50171-50169-50167-50165-50163-50161-50159-50157-50155", "from": "524150774", "to": "37673477", "length_m": 810.9520642644773, "freespeed_mps": 14.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767513.420775737, 5737779.431412622], [767283.4006808023, 5737718.488206133]]}, "properties": {"id": "50174-50176-42678-41486-41488-41490", "from": "524150774", "to": "524149978", "length_m": 241.6042544653962, "freespeed_mps": 14.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837023.6222165388, 5806978.42362109], [837106.7717734664, 5807005.656899456]]}, "properties": {"id": "50178-50179", "from": "3323244002", "to": "2971220963", "length_m": 87.49909433175173, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758831.5214214926, 5730689.353981431], [758893.903902013, 5730737.660314536]]}, "properties": {"id": "5018", "from": "832509216", "to": "832509934", "length_m": 78.89914871266548, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833830.7130415575, 5811461.47103769], [833632.5357206455, 5810958.431863496]]}, "properties": {"id": "50182-50183-50184-50185-50186-50187-50188-50189-50190", "from": "268169790", "to": "1843397641", "length_m": 542.519581836959, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793715.8979242158, 5774214.5694930265], [793715.6631217515, 5774166.796700915]]}, "properties": {"id": "5019-5020-5021", "from": "870702524", "to": "4708035144", "length_m": 47.789202243429166, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795716.0104073007, 5771190.573206468], [795324.6294191709, 5771388.66269678]]}, "properties": {"id": "50191-50192-9323-9324-9315-6764-6765", "from": "441990591", "to": "705055387", "length_m": 449.3586043072796, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795714.9484073049, 5771216.342744189], [796480.5346373697, 5770110.084150534]]}, "properties": {"id": "50193-50194-50195-50196-50197", "from": "705057599", "to": "380256754", "length_m": 1345.342148339748, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796480.5346373697, 5770110.084150534], [797114.9771730572, 5769829.483733076]]}, "properties": {"id": "50198-50199-28635-28636-28637-28638-28639-28640-28641-28642", "from": "380256754", "to": "380256747", "length_m": 699.6658552927181, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796894.2786527616, 5781848.277437776], [797601.4836263271, 5782607.061814709]]}, "properties": {"id": "50217-50218-50219-50220-50221-50222-50223-50224-50225-50226-50227-50228-50229-50230-16836-16837-16838-16839-27796-27797-27798-27799-27800-27801-27802-27803-36418-36419-36420-36421-36422-36314-36315-36316-36317-36318-36319", "from": "1586628677", "to": "633091158", "length_m": 1116.9935298300156, "freespeed_mps": 25.0, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793715.6631217515, 5774166.796700915], [793726.0521945297, 5774084.829430955]]}, "properties": {"id": "5022-5023-5024-5025", "from": "4708035144", "to": "318039630", "length_m": 82.7097030907131, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832975.9175157489, 5808164.241887318], [832766.095564199, 5808196.015881652]]}, "properties": {"id": "50246-50247", "from": "353640757", "to": "75155390", "length_m": 212.21453013674957, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832766.095564199, 5808196.015881652], [832419.3138809951, 5808248.916225176]]}, "properties": {"id": "50248-5398", "from": "75155390", "to": "75155391", "length_m": 350.79528913759424, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789691.0588496891, 5753602.000945976], [789716.6186749616, 5753740.7918905625]]}, "properties": {"id": "50252", "from": "3577715663", "to": "3577715664", "length_m": 141.12487713490844, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789716.6186749616, 5753740.7918905625], [789691.0588496891, 5753602.000945976]]}, "properties": {"id": "50253", "from": "3577715664", "to": "3577715663", "length_m": 141.12487713490844, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793797.7847930482, 5774755.864041773], [793852.8814339074, 5775012.850915695]]}, "properties": {"id": "50254-12687", "from": "3964004502", "to": "867706362", "length_m": 262.83286501201286, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761777.765767035, 5839242.908653311], [761781.4094817273, 5839221.886029096]]}, "properties": {"id": "50255", "from": "2669542595", "to": "1555084724", "length_m": 21.33605834876441, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789777.9398104765, 5753586.433419247], [789798.637834205, 5753703.181028823]]}, "properties": {"id": "50256", "from": "3577715665", "to": "3577715666", "length_m": 118.56817665094256, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789798.637834205, 5753703.181028823], [789777.9398104765, 5753586.433419247]]}, "properties": {"id": "50257", "from": "3577715666", "to": "3577715665", "length_m": 118.56817665094256, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789654.3955586225, 5753608.563023168], [789634.0994895697, 5753495.390775797]]}, "properties": {"id": "50258", "from": "3577715659", "to": "3577715661", "length_m": 114.9777716880509, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789634.0994895697, 5753495.390775797], [789654.3955586225, 5753608.563023168]]}, "properties": {"id": "50259", "from": "3577715661", "to": "3577715659", "length_m": 114.9777716880509, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837410.7633068415, 5818400.285754586], [837394.2940817024, 5818402.972531017]]}, "properties": {"id": "5026", "from": "30928564", "to": "1502841890", "length_m": 16.68694523597046, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789634.0994895697, 5753495.390775797], [789632.152065026, 5753484.557412339]]}, "properties": {"id": "50260", "from": "3577715661", "to": "3577715660", "length_m": 11.007008028132319, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789632.152065026, 5753484.557412339], [789634.0994895697, 5753495.390775797]]}, "properties": {"id": "50261", "from": "3577715660", "to": "3577715661", "length_m": 11.007008028132319, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793729.0270928104, 5774073.629579565], [793738.175447996, 5774032.864176403]]}, "properties": {"id": "50262", "from": "1557825485", "to": "318039799", "length_m": 41.77930707811858, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762599.1748987441, 5839434.613205612], [761781.4094817273, 5839221.886029096]]}, "properties": {"id": "50263-50264-50533-50534-50535", "from": "1555084675", "to": "1555084724", "length_m": 845.0327177016218, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789634.0994895697, 5753495.390775797], [789515.6547843716, 5753518.068879015]]}, "properties": {"id": "50265", "from": "3577715661", "to": "3577715662", "length_m": 120.59620432368682, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789515.6547843716, 5753518.068879015], [789634.0994895697, 5753495.390775797]]}, "properties": {"id": "50266", "from": "3577715662", "to": "3577715661", "length_m": 120.59620432368682, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832986.3000318878, 5808163.587560201], [832975.9175157489, 5808164.241887318]]}, "properties": {"id": "50267", "from": "353640763", "to": "353640757", "length_m": 10.40311417196045, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833035.6907033962, 5819538.862265304], [833034.5791471035, 5819550.270660947]]}, "properties": {"id": "50268", "from": "3215340818", "to": "30918342", "length_m": 11.46241898341356, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792159.5811875009, 5754879.409313854], [792243.1809718012, 5754868.414237121]]}, "properties": {"id": "50269-50271-50273-50275-50277", "from": "3577715488", "to": "5253399271", "length_m": 85.93107729897741, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837394.2940817024, 5818402.972531017], [837410.7633068415, 5818400.285754586]]}, "properties": {"id": "5027", "from": "1502841890", "to": "30928564", "length_m": 16.68694523597046, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792243.1809718012, 5754868.414237121], [792159.5811875009, 5754879.409313854]]}, "properties": {"id": "50278-50276-50274-50272-50270", "from": "5253399271", "to": "3577715488", "length_m": 85.93107729897741, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792243.1809718012, 5754868.414237121], [792319.2227666234, 5754834.206477193]]}, "properties": {"id": "50279", "from": "5253399271", "to": "5253399266", "length_m": 83.38180488810394, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759850.0950308421, 5729270.114249188], [759894.0116083891, 5729313.62288803]]}, "properties": {"id": "5028", "from": "5328187034", "to": "832509013", "length_m": 61.819636229451476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792319.2227666234, 5754834.206477193], [792243.1809718012, 5754868.414237121]]}, "properties": {"id": "50280", "from": "5253399266", "to": "5253399271", "length_m": 83.38180488810394, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792319.2227666234, 5754834.206477193], [792400.7763091829, 5754815.8146834]]}, "properties": {"id": "50281-50283", "from": "5253399266", "to": "5253399268", "length_m": 83.72311132678396, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792400.7763091829, 5754815.8146834], [792319.2227666234, 5754834.206477193]]}, "properties": {"id": "50284-50282", "from": "5253399268", "to": "5253399266", "length_m": 83.72311132678396, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792400.7763091829, 5754815.8146834], [792482.8437875458, 5754798.803875889]]}, "properties": {"id": "50285", "from": "5253399268", "to": "5253399265", "length_m": 83.81192366497216, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792482.8437875458, 5754798.803875889], [792400.7763091829, 5754815.8146834]]}, "properties": {"id": "50286", "from": "5253399265", "to": "5253399268", "length_m": 83.81192366497216, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792482.8437875458, 5754798.803875889], [792543.9476017954, 5754773.660076842]]}, "properties": {"id": "50287", "from": "5253399265", "to": "5253399261", "length_m": 66.07485705457417, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792543.9476017954, 5754773.660076842], [792482.8437875458, 5754798.803875889]]}, "properties": {"id": "50288", "from": "5253399261", "to": "5253399265", "length_m": 66.07485705457417, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789145.8689644154, 5754215.905559341], [789163.6921923073, 5754319.630872673]]}, "properties": {"id": "50289", "from": "3577715593", "to": "3577715594", "length_m": 105.2454657842665, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759894.0116083891, 5729313.62288803], [759850.0950308421, 5729270.114249188]]}, "properties": {"id": "5029", "from": "832509013", "to": "5328187034", "length_m": 61.819636229451476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789163.6921923073, 5754319.630872673], [789145.8689644154, 5754215.905559341]]}, "properties": {"id": "50290", "from": "3577715594", "to": "3577715593", "length_m": 105.2454657842665, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789163.6921923073, 5754319.630872673], [789549.4809635417, 5754330.8638683995]]}, "properties": {"id": "50291-50293-50295-50297-50299-50301-50303", "from": "3577715594", "to": "5027728884", "length_m": 418.7551857964363, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789549.4809635417, 5754330.8638683995], [789163.6921923073, 5754319.630872673]]}, "properties": {"id": "50304-50302-50300-50298-50296-50294-50292", "from": "5027728884", "to": "3577715594", "length_m": 418.7551857964363, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792152.9875402187, 5754815.549281305], [792159.5811875009, 5754879.409313854]]}, "properties": {"id": "50305-50307-50309", "from": "3577715480", "to": "3577715488", "length_m": 64.70664610042724, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792159.5811875009, 5754879.409313854], [792152.9875402187, 5754815.549281305]]}, "properties": {"id": "50310-50308-50306", "from": "3577715488", "to": "3577715480", "length_m": 64.70664610042724, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792159.5811875009, 5754879.409313854], [792159.039689027, 5754890.099050432]]}, "properties": {"id": "50311", "from": "3577715488", "to": "3577715483", "length_m": 10.703442852502068, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792159.039689027, 5754890.099050432], [792159.5811875009, 5754879.409313854]]}, "properties": {"id": "50312", "from": "3577715483", "to": "3577715488", "length_m": 10.703442852502068, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792159.039689027, 5754890.099050432], [792185.2438848276, 5755042.322826254]]}, "properties": {"id": "50313-50315-50317-50319-50321", "from": "3577715483", "to": "5421415354", "length_m": 154.59433774342924, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792185.2438848276, 5755042.322826254], [792159.039689027, 5754890.099050432]]}, "properties": {"id": "50322-50320-50318-50316-50314", "from": "5421415354", "to": "3577715483", "length_m": 154.59433774342924, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792159.039689027, 5754890.099050432], [792073.8211250468, 5754903.31916207]]}, "properties": {"id": "50323-50325", "from": "3577715483", "to": "3577715487", "length_m": 86.30432555422868, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792073.8211250468, 5754903.31916207], [792159.039689027, 5754890.099050432]]}, "properties": {"id": "50326-50324", "from": "3577715487", "to": "3577715483", "length_m": 86.30432555422868, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792073.8211250468, 5754903.31916207], [792063.8474714148, 5754905.302730303]]}, "properties": {"id": "50327", "from": "3577715487", "to": "5253402457", "length_m": 10.168987599998104, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792063.8474714148, 5754905.302730303], [792073.8211250468, 5754903.31916207]]}, "properties": {"id": "50328", "from": "5253402457", "to": "3577715487", "length_m": 10.168987599998104, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789945.8797244999, 5753331.147845601], [789863.2141683366, 5753345.5212786365]]}, "properties": {"id": "50329-50331", "from": "3577715618", "to": "5421457447", "length_m": 83.91819953144092, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789863.2141683366, 5753345.5212786365], [789945.8797244999, 5753331.147845601]]}, "properties": {"id": "50332-50330", "from": "5421457447", "to": "3577715618", "length_m": 83.91819953144092, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789863.2141683366, 5753345.5212786365], [789850.9247539507, 5753382.4404130755]]}, "properties": {"id": "50333-53507-53509", "from": "5421457447", "to": "5421457450", "length_m": 63.05256777066857, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833052.4302347557, 5819543.901255373], [833035.6907033962, 5819538.862265304]]}, "properties": {"id": "50335", "from": "255031251", "to": "3215340818", "length_m": 17.481513890472286, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789320.6067109624, 5752834.448747785], [789281.9910008752, 5752755.454082622]]}, "properties": {"id": "50336", "from": "2332735822", "to": "3577715634", "length_m": 87.9279828046388, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789281.9910008752, 5752755.454082622], [789320.6067109624, 5752834.448747785]]}, "properties": {"id": "50337", "from": "3577715634", "to": "2332735822", "length_m": 87.9279828046388, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789281.9910008752, 5752755.454082622], [789267.5163827196, 5752714.616390843]]}, "properties": {"id": "50338", "from": "3577715634", "to": "5421465550", "length_m": 43.32703125205137, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789267.5163827196, 5752714.616390843], [789281.9910008752, 5752755.454082622]]}, "properties": {"id": "50339", "from": "5421465550", "to": "3577715634", "length_m": 43.32703125205137, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833034.5791471035, 5819550.270660947], [833074.0350776088, 5819964.423236141]]}, "properties": {"id": "50340-50341-50342-50343-50344-50345-50346-50347-50348-50349-50350", "from": "30918342", "to": "601349059", "length_m": 420.86819254438785, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789163.6921923073, 5754319.630872673], [789197.1723738619, 5754484.679981712]]}, "properties": {"id": "50351-50353-50355-50357-50359-50361-50363-50365-50367-50369-50371", "from": "3577715594", "to": "3577715611", "length_m": 256.58329682828173, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759072.732651972, 5729426.043075976], [759129.4720942077, 5729254.671499329]]}, "properties": {"id": "5036-5038-3086-3088-3090", "from": "832509284", "to": "832510232", "length_m": 239.60474009299867, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789197.1723738619, 5754484.679981712], [789163.6921923073, 5754319.630872673]]}, "properties": {"id": "50372-50370-50368-50366-50364-50362-50360-50358-50356-50354-50352", "from": "3577715611", "to": "3577715594", "length_m": 256.58329682828173, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833034.5791471035, 5819550.270660947], [833052.4302347557, 5819543.901255373]]}, "properties": {"id": "50373", "from": "30918342", "to": "255031251", "length_m": 18.953381159219465, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789668.8254065516, 5753297.063018889], [789726.6198414983, 5753409.144567993]]}, "properties": {"id": "50374-50376-50378-50380-50382", "from": "3577715612", "to": "3577715617", "length_m": 151.85440662778163, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789726.6198414983, 5753409.144567993], [789668.8254065516, 5753297.063018889]]}, "properties": {"id": "50383-50381-50379-50377-50375", "from": "3577715617", "to": "3577715612", "length_m": 151.85440662778163, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791479.278225681, 5754311.011221957], [791472.8496200966, 5754328.693370314]]}, "properties": {"id": "50384", "from": "518259975", "to": "518259904", "length_m": 18.814498150620864, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791472.8496200966, 5754328.693370314], [791479.278225681, 5754311.011221957]]}, "properties": {"id": "50385", "from": "518259904", "to": "518259975", "length_m": 18.814498150620864, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797601.4836263271, 5782607.061814709], [798193.625207793, 5783073.863043103]]}, "properties": {"id": "50386-50387-50388-50389-50390-50391-50392-50393-50394-50395-50396-50397-50398-50399-50400-50401", "from": "633091158", "to": "26756204", "length_m": 757.6260458401231, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759174.5272627621, 5730946.731075346], [759108.3077167432, 5731054.574311893]]}, "properties": {"id": "5040-5042-5044-5046", "from": "832510279", "to": "832508775", "length_m": 128.1956131959728, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792037.4464304976, 5754726.2660862245], [792116.8655917163, 5754713.533906787]]}, "properties": {"id": "50402", "from": "3577715469", "to": "3577715471", "length_m": 80.43327380299436, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792116.8655917163, 5754713.533906787], [792037.4464304976, 5754726.2660862245]]}, "properties": {"id": "50403", "from": "3577715471", "to": "3577715469", "length_m": 80.43327380299436, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792116.8655917163, 5754713.533906787], [792125.9573137297, 5754711.871146301]]}, "properties": {"id": "50404", "from": "3577715471", "to": "3577715475", "length_m": 9.242520259858054, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792125.9573137297, 5754711.871146301], [792116.8655917163, 5754713.533906787]]}, "properties": {"id": "50405", "from": "3577715475", "to": "3577715471", "length_m": 9.242520259858054, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792125.9573137297, 5754711.871146301], [792280.1046037512, 5754682.394898157]]}, "properties": {"id": "50406-50408", "from": "3577715475", "to": "5253399275", "length_m": 156.94529154357343, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792280.1046037512, 5754682.394898157], [792125.9573137297, 5754711.871146301]]}, "properties": {"id": "50409-50407", "from": "5253399275", "to": "3577715475", "length_m": 156.94529154357343, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792280.1046037512, 5754682.394898157], [792333.2314565347, 5754671.8128174525]]}, "properties": {"id": "50410", "from": "5253399275", "to": "5253399276", "length_m": 54.17049848076649, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792333.2314565347, 5754671.8128174525], [792280.1046037512, 5754682.394898157]]}, "properties": {"id": "50411", "from": "5253399276", "to": "5253399275", "length_m": 54.17049848076649, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792333.2314565347, 5754671.8128174525], [792508.4541840788, 5754636.922872467]]}, "properties": {"id": "50412", "from": "5253399276", "to": "5253399255", "length_m": 178.6625657003451, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792508.4541840788, 5754636.922872467], [792333.2314565347, 5754671.8128174525]]}, "properties": {"id": "50413", "from": "5253399255", "to": "5253399276", "length_m": 178.6625657003451, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791772.7380514364, 5754549.499988832], [791791.5657517225, 5754546.563161878]]}, "properties": {"id": "50417", "from": "845902046", "to": "518259846", "length_m": 19.055373231660358, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791791.5657517225, 5754546.563161878], [791772.7380514364, 5754549.499988832]]}, "properties": {"id": "50418", "from": "518259846", "to": "845902046", "length_m": 19.055373231660358, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791472.8496200966, 5754328.693370314], [791562.4796433507, 5754322.366432428]]}, "properties": {"id": "50419", "from": "518259904", "to": "518259862", "length_m": 89.8530531834708, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791562.4796433507, 5754322.366432428], [791653.0185326056, 5754317.6839672495]]}, "properties": {"id": "50420", "from": "518259862", "to": "518259977", "length_m": 90.6598913596205, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792125.9573137297, 5754711.871146301], [792144.681988426, 5754816.916858212]]}, "properties": {"id": "50421", "from": "3577715475", "to": "3577715476", "length_m": 106.70152305622481, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792144.681988426, 5754816.916858212], [792125.9573137297, 5754711.871146301]]}, "properties": {"id": "50422", "from": "3577715476", "to": "3577715475", "length_m": 106.70152305622481, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835195.3080786682, 5806211.383716868], [835106.3713547278, 5806224.754924854]]}, "properties": {"id": "50423-50425", "from": "254238538", "to": "1537726744", "length_m": 89.94121971574387, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835106.3713547278, 5806224.754924854], [835195.3080786682, 5806211.383716868]]}, "properties": {"id": "50426-50424", "from": "1537726744", "to": "254238538", "length_m": 89.94121971574387, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792521.7379809527, 5754718.324117581], [792294.6521698959, 5754765.38441226]]}, "properties": {"id": "50427-50429", "from": "5253399254", "to": "5253399252", "length_m": 232.08355792951755, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792294.6521698959, 5754765.38441226], [792521.7379809527, 5754718.324117581]]}, "properties": {"id": "50430-50428", "from": "5253399252", "to": "5253399254", "length_m": 232.08355792951755, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792294.6521698959, 5754765.38441226], [792152.9875402187, 5754815.549281305]]}, "properties": {"id": "50431-50433-50435", "from": "5253399252", "to": "3577715480", "length_m": 151.5658777956403, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792152.9875402187, 5754815.549281305], [792294.6521698959, 5754765.38441226]]}, "properties": {"id": "50436-50434-50432", "from": "3577715480", "to": "5253399252", "length_m": 151.5658777956403, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792152.9875402187, 5754815.549281305], [792144.681988426, 5754816.916858212]]}, "properties": {"id": "50437", "from": "3577715480", "to": "3577715476", "length_m": 8.417390157572695, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792144.681988426, 5754816.916858212], [792152.9875402187, 5754815.549281305]]}, "properties": {"id": "50438", "from": "3577715476", "to": "3577715480", "length_m": 8.417390157572695, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792144.681988426, 5754816.916858212], [792057.2441066825, 5754832.1955987215]]}, "properties": {"id": "50439-50441", "from": "3577715476", "to": "5253402462", "length_m": 88.77685953318772, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792057.2441066825, 5754832.1955987215], [792144.681988426, 5754816.916858212]]}, "properties": {"id": "50442-50440", "from": "5253402462", "to": "3577715476", "length_m": 88.77685953318772, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792057.2441066825, 5754832.1955987215], [792047.2621080825, 5754833.946047532]]}, "properties": {"id": "50443", "from": "5253402462", "to": "5253402458", "length_m": 10.134316266767136, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792047.2621080825, 5754833.946047532], [792057.2441066825, 5754832.1955987215]]}, "properties": {"id": "50444", "from": "5253402458", "to": "5253402462", "length_m": 10.134316266767136, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792116.8655917163, 5754713.533906787], [792102.8605021567, 5754627.090165233]]}, "properties": {"id": "50445", "from": "3577715471", "to": "3577715472", "length_m": 87.57090259270713, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792102.8605021567, 5754627.090165233], [792116.8655917163, 5754713.533906787]]}, "properties": {"id": "50446", "from": "3577715472", "to": "3577715471", "length_m": 87.57090259270713, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792010.8974187679, 5754642.865779366], [792021.0807455822, 5754641.119185043]]}, "properties": {"id": "50447", "from": "3577715473", "to": "5253402463", "length_m": 10.332024815610922, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792021.0807455822, 5754641.119185043], [792010.8974187679, 5754642.865779366]]}, "properties": {"id": "50448", "from": "5253402463", "to": "3577715473", "length_m": 10.332024815610922, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792021.0807455822, 5754641.119185043], [792102.8605021567, 5754627.090165233]]}, "properties": {"id": "50449", "from": "5253402463", "to": "3577715472", "length_m": 82.97434515883205, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792102.8605021567, 5754627.090165233], [792021.0807455822, 5754641.119185043]]}, "properties": {"id": "50450", "from": "3577715472", "to": "5253402463", "length_m": 82.97434515883205, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792102.8605021567, 5754627.090165233], [792290.8989465332, 5754588.195563619]]}, "properties": {"id": "50451-50453", "from": "3577715472", "to": "518259716", "length_m": 192.0357856063335, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792290.8989465332, 5754588.195563619], [792102.8605021567, 5754627.090165233]]}, "properties": {"id": "50454-50452", "from": "518259716", "to": "3577715472", "length_m": 192.0357856063335, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792290.8989465332, 5754588.195563619], [792316.8226846037, 5754583.144404354]]}, "properties": {"id": "50455", "from": "518259716", "to": "5253399277", "length_m": 26.411255198999005, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792316.8226846037, 5754583.144404354], [792290.8989465332, 5754588.195563619]]}, "properties": {"id": "50456", "from": "5253399277", "to": "518259716", "length_m": 26.411255198999005, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792316.8226846037, 5754583.144404354], [792502.3759748603, 5754564.163466329]]}, "properties": {"id": "50457-50459", "from": "5253399277", "to": "5253399257", "length_m": 189.09237622402793, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792502.3759748603, 5754564.163466329], [792316.8226846037, 5754583.144404354]]}, "properties": {"id": "50460-50458", "from": "5253399257", "to": "5253399277", "length_m": 189.09237622402793, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828962.6913862354, 5821994.947343923], [829178.9699409041, 5821958.816025637]]}, "properties": {"id": "50461-50462-50463-50464-50465-50466-50467-50468-50469-50470-50471-50472", "from": "3289276811", "to": "33087039", "length_m": 220.1539693432394, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759108.3077167432, 5731054.574311893], [759174.5272627621, 5730946.731075346]]}, "properties": {"id": "5047-5045-5043-5041", "from": "832508775", "to": "832510279", "length_m": 128.1956131959728, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829178.9699409041, 5821958.816025637], [829787.1777867177, 5821847.407878037]]}, "properties": {"id": "50473-50474-50509-15250-15251", "from": "33087039", "to": "605209721", "length_m": 618.4615114289678, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759749.8202396099, 5838659.907920992], [759437.5777384588, 5838570.743865479]]}, "properties": {"id": "50475-50476", "from": "1555084483", "to": "1555084610", "length_m": 324.72389482888116, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759437.5777384588, 5838570.743865479], [758934.6787224987, 5838582.704971528]]}, "properties": {"id": "50477-50478-50479-50480-50481-50482-50483-50484-50485-50486-50487-50488-50489-50490-50491-50492-50493-50494-50495-50496-50497", "from": "1555084610", "to": "1034577842", "length_m": 517.5528691401211, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760548.2225177764, 5732309.818448138], [760356.229567593, 5732523.962380998]]}, "properties": {"id": "5048-5050-5052-5054-5056-5058-5060-5062-5064-5066-5068-5070-5072-5074-5076-5078-5080-5082-5084-5086-5088-5090-5092-5094-5096", "from": "832509815", "to": "832508123", "length_m": 460.8877998357059, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758934.6787224987, 5838582.704971528], [758037.2605691596, 5838954.626458535]]}, "properties": {"id": "50498-50499-50500-50501-50502-50503-50504-50505-50506-50507-50508", "from": "1034577842", "to": "35096781", "length_m": 971.4447746111797, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836448.2764903512, 5806028.9873277685], [836443.314286815, 5806021.962886101]]}, "properties": {"id": "50526", "from": "1537726641", "to": "1537726656", "length_m": 8.600363023671578, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836710.2592961313, 5805984.0200977735], [836582.5157252252, 5806005.69333309]]}, "properties": {"id": "50527-50529-50531", "from": "254237557", "to": "1537726732", "length_m": 129.58392926500116, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836582.5157252252, 5806005.69333309], [836710.2592961313, 5805984.0200977735]]}, "properties": {"id": "50532-50530-50528", "from": "1537726732", "to": "254237557", "length_m": 129.58392926500116, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761781.4094817273, 5839221.886029096], [760876.757163645, 5838971.6776117515]]}, "properties": {"id": "50536-50537-1559-1560-1561", "from": "1555084724", "to": "1555084567", "length_m": 938.6160802560546, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791127.3012321279, 5754720.972059381], [791285.7826849625, 5754689.736024756]]}, "properties": {"id": "50538-17381", "from": "3577715442", "to": "5421408721", "length_m": 161.54681533948113, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788734.5724009373, 5773375.662367054], [788704.096108428, 5773381.802624427]]}, "properties": {"id": "50540", "from": "3431090329", "to": "3431090322", "length_m": 31.088698276271874, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788704.096108428, 5773381.802624427], [788346.3953935304, 5773520.852506981]]}, "properties": {"id": "50541-50542-50543-50544-50545-50546-50547-50548", "from": "3431090322", "to": "252358954", "length_m": 389.0733274371457, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792967.16939461, 5768569.43294421], [792817.0983574117, 5767779.909207989]]}, "properties": {"id": "50549-50550-50551-50552-50553-50554-50555-50556", "from": "360499960", "to": "610643258", "length_m": 803.6634862523252, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788986.2289420727, 5773327.2904559905], [788880.8011831836, 5773312.903367977]]}, "properties": {"id": "50557-50558-50559-50560", "from": "3431090316", "to": "428722427", "length_m": 117.67471748964353, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788720.9822017692, 5773318.797845783], [788704.096108428, 5773381.802624427]]}, "properties": {"id": "50561-50562-50563-50564", "from": "428721752", "to": "3431090322", "length_m": 72.9587913642676, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788346.3953935304, 5773520.852506981], [788704.4978579904, 5773390.634996654]]}, "properties": {"id": "50565-50566-50567-50568-50569-50570-50571", "from": "252358954", "to": "428721689", "length_m": 384.8683591427893, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788704.4978579904, 5773390.634996654], [788738.2303549927, 5773384.734620038]]}, "properties": {"id": "50572-50573", "from": "428721689", "to": "318835263", "length_m": 34.24490602473986, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788738.2303549927, 5773384.734620038], [788888.0539637578, 5773356.900971197]]}, "properties": {"id": "50574-50575", "from": "318835263", "to": "318835563", "length_m": 152.3870915398462, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792355.0069310784, 5765267.303765255], [792351.2908646292, 5765241.363198688]]}, "properties": {"id": "50576", "from": "3546176175", "to": "3726903731", "length_m": 26.205383850235723, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792351.2908646292, 5765241.363198688], [792219.1126689105, 5764550.374817952]]}, "properties": {"id": "50577-50578-50579-50580", "from": "3726903731", "to": "186879856", "length_m": 703.5337635590043, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792219.1126689105, 5764550.374817952], [792007.4294658202, 5763396.143605114]]}, "properties": {"id": "50581-50582-50583-50584-50585-50586-50587", "from": "186879856", "to": "331120741", "length_m": 1173.4833991970954, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792007.4294658202, 5763396.143605114], [791878.0824302626, 5762702.838832928]]}, "properties": {"id": "50588-50589-50590", "from": "331120741", "to": "6073128000", "length_m": 705.26877414923, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791878.0824302626, 5762702.838832928], [791771.8619502801, 5762133.437579325]]}, "properties": {"id": "50591-50592-50593", "from": "6073128000", "to": "441019254", "length_m": 579.2259203513482, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791771.8619502801, 5762133.437579325], [791631.5191072009, 5761355.22055219]]}, "properties": {"id": "50594-50595-50596-50597-50598-50599-50600-50601-50602-50603-50604-50605", "from": "441019254", "to": "1708365711", "length_m": 791.4952017028913, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759371.5790964649, 5838572.941416856], [760090.5608611311, 5838775.473357743]]}, "properties": {"id": "50606-50607-50608-50609", "from": "1555084722", "to": "1555084721", "length_m": 746.9632580981621, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760090.5608611311, 5838775.473357743], [760871.0615995585, 5838995.574815173]]}, "properties": {"id": "50610-50611", "from": "1555084721", "to": "1555084641", "length_m": 810.9414599486386, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760871.0615995585, 5838995.574815173], [761777.765767035, 5839242.908653311]]}, "properties": {"id": "50612-50613-50614-1554-1555", "from": "1555084641", "to": "2669542595", "length_m": 939.8556126054401, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835649.9734997075, 5806152.733548442], [835195.3080786682, 5806211.383716868]]}, "properties": {"id": "50617-50619-50621-50623-50625-50627-50629-50631-50633-50635-50637-50639-50641-50643-50645-50647", "from": "254238018", "to": "254238538", "length_m": 460.8073720877612, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835195.3080786682, 5806211.383716868], [835649.9734997075, 5806152.733548442]]}, "properties": {"id": "50648-50646-50644-50642-50640-50638-50636-50634-50632-50630-50628-50626-50624-50622-50620-50618", "from": "254238538", "to": "254238018", "length_m": 460.8073720877612, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829279.9708150639, 5821921.731676894], [828959.8702748427, 5821967.619981058]]}, "properties": {"id": "50652-50653-50654-50655-50656-50657-50658-50659-50660-50661-50662-50663-50664-50665", "from": "598036402", "to": "33085391", "length_m": 327.3573819162631, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832137.9845860356, 5810460.631291815], [832127.4447968733, 5810411.377566129]]}, "properties": {"id": "50666-50667-50668", "from": "5642266068", "to": "1535010246", "length_m": 50.39625063363639, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835649.9734997075, 5806152.733548442], [836253.7924046852, 5806054.257506223]]}, "properties": {"id": "50671-53596-53594-53592-53590-53588-53586-53584-53582-53580-53578-53576-53574-53572-53570-53568-53566-53564", "from": "254238018", "to": "1537726915", "length_m": 618.2739865355848, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832140.318156661, 5810494.805659711], [832137.9845860356, 5810460.631291815]]}, "properties": {"id": "50672-50673-50674-50675-50676", "from": "36045744", "to": "5642266068", "length_m": 38.313363754468654, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832137.9845860356, 5810460.631291815], [832107.7485652473, 5810461.341286335]]}, "properties": {"id": "50677-50678-50679-50680-50681", "from": "5642266068", "to": "666623092", "length_m": 32.77411835738246, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832107.7485652473, 5810461.341286335], [832111.8741703839, 5810499.034682075]]}, "properties": {"id": "50682-50683-50684-50685-50686-50687-50688", "from": "666623092", "to": "5642266066", "length_m": 44.20415818912555, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832111.8741703839, 5810499.034682075], [832140.318156661, 5810494.805659711]]}, "properties": {"id": "50689-50690-50691-50692", "from": "5642266066", "to": "36045744", "length_m": 30.805634532358003, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757624.0224880527, 5749524.88722135], [758072.0780296634, 5748726.7117162]]}, "properties": {"id": "50803-50805-50807-50809-50811-50813-50815-50817-50819-50821-50823-50825-50827", "from": "524143381", "to": "524143403", "length_m": 998.0411618452239, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758072.0780296634, 5748726.7117162], [757624.0224880527, 5749524.88722135]]}, "properties": {"id": "50828-50826-50824-50822-50820-50818-50816-50814-50812-50810-50808-50806-50804", "from": "524143403", "to": "524143381", "length_m": 998.0411618452239, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758072.0780296634, 5748726.7117162], [758438.7993420045, 5748193.260698985]]}, "properties": {"id": "50829", "from": "524143403", "to": "524143124", "length_m": 647.3441967958751, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758438.7993420045, 5748193.260698985], [758072.0780296634, 5748726.7117162]]}, "properties": {"id": "50830", "from": "524143124", "to": "524143403", "length_m": 647.3441967958751, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758438.7993420045, 5748193.260698985], [759319.3863669425, 5747628.769431587]]}, "properties": {"id": "50831-50833-50835-50837", "from": "524143124", "to": "524157310", "length_m": 1093.5300939277076, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759319.3863669425, 5747628.769431587], [758438.7993420045, 5748193.260698985]]}, "properties": {"id": "50838-50836-50834-50832", "from": "524157310", "to": "524143124", "length_m": 1093.5300939277076, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759319.3863669425, 5747628.769431587], [759850.2016490186, 5747089.11126308]]}, "properties": {"id": "50839-50841-50843", "from": "524157310", "to": "4900981121", "length_m": 767.9903184128482, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759850.2016490186, 5747089.11126308], [759319.3863669425, 5747628.769431587]]}, "properties": {"id": "50844-50842-50840", "from": "4900981121", "to": "524157310", "length_m": 767.9903184128482, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759850.2016490186, 5747089.11126308], [760230.9879077757, 5746811.493775698]]}, "properties": {"id": "50845-50847", "from": "4900981121", "to": "810092321", "length_m": 471.87694094560703, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760230.9879077757, 5746811.493775698], [759850.2016490186, 5747089.11126308]]}, "properties": {"id": "50848-50846", "from": "810092321", "to": "4900981121", "length_m": 471.87694094560703, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760230.9879077757, 5746811.493775698], [760657.7069722335, 5746513.213446724]]}, "properties": {"id": "50849", "from": "810092321", "to": "524157177", "length_m": 520.6345307116554, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760657.7069722335, 5746513.213446724], [760230.9879077757, 5746811.493775698]]}, "properties": {"id": "50850", "from": "524157177", "to": "810092321", "length_m": 520.6345307116554, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760657.7069722335, 5746513.213446724], [761551.3182195341, 5746199.372936876]]}, "properties": {"id": "50851-50853-50855-50857-50859-50861-50863-50865", "from": "524157177", "to": "524157251", "length_m": 955.0922777767281, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761551.3182195341, 5746199.372936876], [760657.7069722335, 5746513.213446724]]}, "properties": {"id": "50866-50864-50862-50860-50858-50856-50854-50852", "from": "524157251", "to": "524157177", "length_m": 955.0922777767281, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761551.3182195341, 5746199.372936876], [761982.3149967268, 5745832.275789869]]}, "properties": {"id": "50867-50869-50871-50873-50875", "from": "524157251", "to": "313076703", "length_m": 586.000722126556, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761982.3149967268, 5745832.275789869], [761551.3182195341, 5746199.372936876]]}, "properties": {"id": "50876-50874-50872-50870-50868", "from": "313076703", "to": "524157251", "length_m": 586.000722126556, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761982.3149967268, 5745832.275789869], [762570.2864353913, 5745857.560918304]]}, "properties": {"id": "50877-50879-50881-50883-50885-50887", "from": "313076703", "to": "534677352", "length_m": 609.0455065222218, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762570.2864353913, 5745857.560918304], [761982.3149967268, 5745832.275789869]]}, "properties": {"id": "50888-50886-50884-50882-50880-50878", "from": "534677352", "to": "313076703", "length_m": 609.0455065222218, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762570.2864353913, 5745857.560918304], [763346.4365710445, 5745599.830794997]]}, "properties": {"id": "50889-50891-50893-50895-50897-50899", "from": "534677352", "to": "524157394", "length_m": 867.5497474799331, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772562.5457353079, 5774222.600553378], [772481.8500960423, 5773522.092804255]]}, "properties": {"id": "509-507-505-503-501-499", "from": "5604428480", "to": "5604428486", "length_m": 717.0721744402391, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763346.4365710445, 5745599.830794997], [762570.2864353913, 5745857.560918304]]}, "properties": {"id": "50900-50898-50896-50894-50892-50890", "from": "524157394", "to": "534677352", "length_m": 867.5497474799331, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763346.4365710445, 5745599.830794997], [763891.6814318844, 5745428.02216845]]}, "properties": {"id": "50901-50903-50905-50907-50909-50911", "from": "524157394", "to": "313076822", "length_m": 602.9560809770298, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763891.6814318844, 5745428.02216845], [763346.4365710445, 5745599.830794997]]}, "properties": {"id": "50912-50910-50908-50906-50904-50902", "from": "313076822", "to": "524157394", "length_m": 602.9560809770298, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763891.6814318844, 5745428.02216845], [764380.5542066123, 5745169.178238316]]}, "properties": {"id": "50913-50915-50917-50919-50921", "from": "313076822", "to": "524157439", "length_m": 563.2365317025957, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764380.5542066123, 5745169.178238316], [763891.6814318844, 5745428.02216845]]}, "properties": {"id": "50922-50920-50918-50916-50914", "from": "524157439", "to": "313076822", "length_m": 563.2365317025957, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764380.5542066123, 5745169.178238316], [764944.7580054007, 5745040.983612615]]}, "properties": {"id": "50923-50925", "from": "524157439", "to": "313076829", "length_m": 579.7625092617346, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764944.7580054007, 5745040.983612615], [764380.5542066123, 5745169.178238316]]}, "properties": {"id": "50926-50924", "from": "313076829", "to": "524157439", "length_m": 579.7625092617346, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764944.7580054007, 5745040.983612615], [765503.1139076549, 5744808.31362323]]}, "properties": {"id": "50927", "from": "313076829", "to": "313076833", "length_m": 604.893905562949, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765503.1139076549, 5744808.31362323], [764944.7580054007, 5745040.983612615]]}, "properties": {"id": "50928", "from": "313076833", "to": "313076829", "length_m": 604.893905562949, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765503.1139076549, 5744808.31362323], [765963.571607746, 5744605.351618155]]}, "properties": {"id": "50929", "from": "313076833", "to": "524157466", "length_m": 503.2045992876365, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765963.571607746, 5744605.351618155], [765503.1139076549, 5744808.31362323]]}, "properties": {"id": "50930", "from": "524157466", "to": "313076833", "length_m": 503.2045992876365, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765963.571607746, 5744605.351618155], [766601.1106787845, 5744654.099732644]]}, "properties": {"id": "50931-50933-50935", "from": "524157466", "to": "371470633", "length_m": 662.6489330262843, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766601.1106787845, 5744654.099732644], [765963.571607746, 5744605.351618155]]}, "properties": {"id": "50936-50934-50932", "from": "371470633", "to": "524157466", "length_m": 662.6489330262843, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774881.2925211997, 5751110.222899667], [774230.8172123893, 5750864.682400251]]}, "properties": {"id": "50937-50939-50941-50943-50945", "from": "494901169", "to": "519798823", "length_m": 759.8824221979128, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774230.8172123893, 5750864.682400251], [774881.2925211997, 5751110.222899667]]}, "properties": {"id": "50946-50944-50942-50940-50938", "from": "519798823", "to": "494901169", "length_m": 759.8824221979128, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774230.8172123893, 5750864.682400251], [773589.1265657903, 5750659.55552925]]}, "properties": {"id": "50947-50949-50951-50953-50955-50957-50959", "from": "519798823", "to": "519798469", "length_m": 711.4916291252284, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773589.1265657903, 5750659.55552925], [774230.8172123893, 5750864.682400251]]}, "properties": {"id": "50960-50958-50956-50954-50952-50950-50948", "from": "519798469", "to": "519798823", "length_m": 711.4916291252284, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773589.1265657903, 5750659.55552925], [772739.0991534465, 5750430.184164244]]}, "properties": {"id": "50961-50963-50965-50967-50969-50971-50973-50975-50977-50979", "from": "519798469", "to": "519798785", "length_m": 1126.3719534981535, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760356.229567593, 5732523.962380998], [760548.2225177764, 5732309.818448138]]}, "properties": {"id": "5097-5095-5093-5091-5089-5087-5085-5083-5081-5079-5077-5075-5073-5071-5069-5067-5065-5063-5061-5059-5057-5055-5053-5051-5049", "from": "832508123", "to": "832509815", "length_m": 460.8877998357059, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760356.229567593, 5732523.962380998], [760320.7252399853, 5732537.360409576]]}, "properties": {"id": "5098-5100", "from": "832508123", "to": "832508753", "length_m": 38.05538478246412, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772739.0991534465, 5750430.184164244], [773589.1265657903, 5750659.55552925]]}, "properties": {"id": "50980-50978-50976-50974-50972-50970-50968-50966-50964-50962", "from": "519798785", "to": "519798469", "length_m": 1126.3719534981535, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772739.0991534465, 5750430.184164244], [772210.090599671, 5750018.273618598]]}, "properties": {"id": "50981-50983-50985", "from": "519798785", "to": "313297924", "length_m": 670.8907102251118, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772210.090599671, 5750018.273618598], [772739.0991534465, 5750430.184164244]]}, "properties": {"id": "50986-50984-50982", "from": "313297924", "to": "519798785", "length_m": 670.8907102251118, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772210.090599671, 5750018.273618598], [771844.5570921765, 5749691.074239657]]}, "properties": {"id": "50987-50989-50991-50993", "from": "313297924", "to": "519798726", "length_m": 501.6770122589449, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771844.5570921765, 5749691.074239657], [772210.090599671, 5750018.273618598]]}, "properties": {"id": "50994-50992-50990-50988", "from": "519798726", "to": "313297924", "length_m": 501.6770122589449, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771844.5570921765, 5749691.074239657], [771469.2894338118, 5749362.577394416]]}, "properties": {"id": "50995-50997-50999-51001-51003-51005-51007-51009-51011-51013", "from": "519798726", "to": "519798222", "length_m": 555.449910639647, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772562.5457353079, 5774222.600553378], [772751.9019503884, 5774817.784024241]]}, "properties": {"id": "510-512-514-516-518-520-522-524-526-528-530-532-534-536-538-540", "from": "5604428480", "to": "5604428464", "length_m": 757.1478408046377, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760320.7252399853, 5732537.360409576], [760356.229567593, 5732523.962380998]]}, "properties": {"id": "5101-5099", "from": "832508753", "to": "832508123", "length_m": 38.05538478246412, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771469.2894338118, 5749362.577394416], [771844.5570921765, 5749691.074239657]]}, "properties": {"id": "51014-51012-51010-51008-51006-51004-51002-51000-50998-50996", "from": "519798222", "to": "519798726", "length_m": 555.449910639647, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771469.2894338118, 5749362.577394416], [770945.9932554046, 5749210.628513577]]}, "properties": {"id": "51015-51017-51019-51021-51023-51025-51027-51029-51031", "from": "519798222", "to": "2558470054", "length_m": 560.8336436288228, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759344.9946651093, 5729796.488753505], [759317.3074312436, 5729966.843173068]]}, "properties": {"id": "5102-5104-5106-5108", "from": "250291483", "to": "36698729", "length_m": 174.76688007809508, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770945.9932554046, 5749210.628513577], [771469.2894338118, 5749362.577394416]]}, "properties": {"id": "51032-51030-51028-51026-51024-51022-51020-51018-51016", "from": "2558470054", "to": "519798222", "length_m": 560.8336436288228, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770945.9932554046, 5749210.628513577], [770217.3953297737, 5748746.930611538]]}, "properties": {"id": "51033-51035-51037-51039-51041-51043-51045-51047-51049-51051-51053-51055", "from": "2558470054", "to": "2558470122", "length_m": 769.0663244419386, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770217.3953297737, 5748746.930611538], [770945.9932554046, 5749210.628513577]]}, "properties": {"id": "51056-51054-51052-51050-51048-51046-51044-51042-51040-51038-51036-51034", "from": "2558470122", "to": "2558470054", "length_m": 769.0663244419386, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770217.3953297737, 5748746.930611538], [769448.5101735912, 5748360.499390328]]}, "properties": {"id": "51057-51059-51061-51063-51065-51067-51069-51071-51073-51075", "from": "2558470122", "to": "498882149", "length_m": 759.1392815207017, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769448.5101735912, 5748360.499390328], [770217.3953297737, 5748746.930611538]]}, "properties": {"id": "51076-51074-51072-51070-51068-51066-51064-51062-51060-51058", "from": "498882149", "to": "2558470122", "length_m": 759.1392815207017, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769448.5101735912, 5748360.499390328], [768931.8853291343, 5748609.578293238]]}, "properties": {"id": "51077-51079-51081-51083-51085-51087-51089", "from": "498882149", "to": "519798331", "length_m": 659.5238698033214, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759317.3074312436, 5729966.843173068], [759344.9946651093, 5729796.488753505]]}, "properties": {"id": "5109-5107-5105-5103", "from": "36698729", "to": "250291483", "length_m": 174.76688007809508, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768931.8853291343, 5748609.578293238], [769448.5101735912, 5748360.499390328]]}, "properties": {"id": "51090-51088-51086-51084-51082-51080-51078", "from": "519798331", "to": "498882149", "length_m": 659.5238698033214, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768931.8853291343, 5748609.578293238], [768580.0637014348, 5749245.889251414]]}, "properties": {"id": "51091", "from": "519798331", "to": "313077142", "length_m": 746.8953235120619, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768580.0637014348, 5749245.889251414], [768931.8853291343, 5748609.578293238]]}, "properties": {"id": "51092", "from": "313077142", "to": "519798331", "length_m": 746.8953235120619, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791837.838559542, 5762586.942940703], [791988.6243716718, 5763399.800587085]]}, "properties": {"id": "51098-51099-51100-51101", "from": "1017986072", "to": "331120743", "length_m": 826.7256475128472, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759317.3074312436, 5729966.843173068], [759328.2573820859, 5730176.968927004]]}, "properties": {"id": "5110-5112-5114-5116-5118-5120-5122", "from": "36698729", "to": "832508848", "length_m": 210.95397248160512, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791988.6243716718, 5763399.800587085], [792202.7507302337, 5764553.288129876]]}, "properties": {"id": "51102-51103-51104-51105-51106-51107-51108-51109-51110-51111", "from": "331120743", "to": "270450183", "length_m": 1173.1977808089587, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792202.7507302337, 5764553.288129876], [792335.3875144117, 5765243.41539161]]}, "properties": {"id": "51112-51113-51114-51115-51116-51117-51118", "from": "270450183", "to": "3726903730", "length_m": 702.8614004861406, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792335.3875144117, 5765243.41539161], [792339.8485761558, 5765268.617744205]]}, "properties": {"id": "51119", "from": "3726903730", "to": "2948697188", "length_m": 25.59413306492095, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763891.6814318844, 5745428.02216845], [764199.3593694036, 5745972.789781269]]}, "properties": {"id": "51120-51122-51124-51126-51128-51130-51132-51134-51136", "from": "313076822", "to": "313077062", "length_m": 642.4065049487938, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764199.3593694036, 5745972.789781269], [763891.6814318844, 5745428.02216845]]}, "properties": {"id": "51137-51135-51133-51131-51129-51127-51125-51123-51121", "from": "313077062", "to": "313076822", "length_m": 642.4065049487938, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764199.3593694036, 5745972.789781269], [764368.3728554053, 5746766.989798704]]}, "properties": {"id": "51138-51140-51142-51144", "from": "313077062", "to": "313077074", "length_m": 814.2556965662919, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764368.3728554053, 5746766.989798704], [764199.3593694036, 5745972.789781269]]}, "properties": {"id": "51145-51143-51141-51139", "from": "313077074", "to": "313077062", "length_m": 814.2556965662919, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764368.3728554053, 5746766.989798704], [764307.220451578, 5747515.799652546]]}, "properties": {"id": "51146-51148-51150-51152-51154-51156-51158", "from": "313077074", "to": "313077082", "length_m": 762.4163779808111, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764307.220451578, 5747515.799652546], [764368.3728554053, 5746766.989798704]]}, "properties": {"id": "51159-51157-51155-51153-51151-51149-51147", "from": "313077082", "to": "313077074", "length_m": 762.4163779808111, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764307.220451578, 5747515.799652546], [764538.6405989279, 5748116.2764165215]]}, "properties": {"id": "51160-51162-51164-51166-51168-51170", "from": "313077082", "to": "313077086", "length_m": 645.1775447782267, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764538.6405989279, 5748116.2764165215], [764307.220451578, 5747515.799652546]]}, "properties": {"id": "51171-51169-51167-51165-51163-51161", "from": "313077086", "to": "313077082", "length_m": 645.1775447782267, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764538.6405989279, 5748116.2764165215], [765234.6992324307, 5748537.968576142]]}, "properties": {"id": "51172-51174-51176-51178-51180-51182-51184-51186-51188-51190-51192-51194", "from": "313077086", "to": "313077108", "length_m": 860.0548772994164, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765234.6992324307, 5748537.968576142], [764538.6405989279, 5748116.2764165215]]}, "properties": {"id": "51195-51193-51191-51189-51187-51185-51183-51181-51179-51177-51175-51173", "from": "313077108", "to": "313077086", "length_m": 860.0548772994164, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765234.6992324307, 5748537.968576142], [765126.669748075, 5749345.344048076]]}, "properties": {"id": "51196-51198-51200-51202-51204-51206", "from": "313077108", "to": "313077119", "length_m": 823.0558330836908, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765126.669748075, 5749345.344048076], [765234.6992324307, 5748537.968576142]]}, "properties": {"id": "51207-51205-51203-51201-51199-51197", "from": "313077119", "to": "313077108", "length_m": 823.0558330836908, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765126.669748075, 5749345.344048076], [765708.1550355873, 5749730.14793715]]}, "properties": {"id": "51208-51210-51212-51214-51216-51218-51220-51222-51224-51226-51228-51230", "from": "313077119", "to": "371473550", "length_m": 892.170874047646, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790566.8349170256, 5755609.992154668], [790563.8491030225, 5755571.773649455]]}, "properties": {"id": "512196735-35", "from": "512196735", "to": "512196735-34", "length_m": 50.0, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790563.8491030225, 5755571.773649455], [790529.4234757901, 5755573.720785346]]}, "properties": {"id": "512196735-36", "from": "512196735-34", "to": "512196786-33", "length_m": 50.0, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790529.4234757901, 5755573.720785346], [790533.0064540841, 5755620.299590529]]}, "properties": {"id": "512196735-37", "from": "512196786-33", "to": "512196786", "length_m": 49.99999999999999, "freespeed_mps": 5.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759328.2573820859, 5730176.968927004], [759317.3074312436, 5729966.843173068]]}, "properties": {"id": "5123-5121-5119-5117-5115-5113-5111", "from": "832508848", "to": "36698729", "length_m": 210.95397248160512, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765708.1550355873, 5749730.14793715], [765126.669748075, 5749345.344048076]]}, "properties": {"id": "51231-51229-51227-51225-51223-51221-51219-51217-51215-51213-51211-51209", "from": "371473550", "to": "313077119", "length_m": 892.170874047646, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759328.2573820859, 5730176.968927004], [759242.2483415564, 5730402.43398781]]}, "properties": {"id": "5124-5126-5128-5130-5132-5134-5136-5138-5140-5142-5144-5146-5148", "from": "832508848", "to": "75308704", "length_m": 252.7027475368483, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758357.1128328582, 5838845.978781601], [759343.3847183828, 5838565.513556613]]}, "properties": {"id": "51245-51246-51247-51248-51249-51250-51251-51252-51253-51254-51255-51256-51257-51258-51259-51260-51261-51262-51263-51264", "from": "35098291", "to": "3340917301", "length_m": 1046.6863196112827, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759343.3847183828, 5838565.513556613], [759371.5790964649, 5838572.941416856]]}, "properties": {"id": "51265", "from": "3340917301", "to": "1555084722", "length_m": 29.156406833503375, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836784.7033648158, 5805952.600032542], [836781.3263190612, 5805958.20948418]]}, "properties": {"id": "51270", "from": "5642286722", "to": "254237440", "length_m": 6.547548098457758, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836781.3263190612, 5805958.20948418], [836783.0939073141, 5805978.508341422]]}, "properties": {"id": "51271-51272-51273", "from": "254237440", "to": "254237430", "length_m": 21.088340128296835, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836783.0939073141, 5805978.508341422], [836787.1595402465, 5805983.234242702]]}, "properties": {"id": "51274", "from": "254237430", "to": "5642286721", "length_m": 6.234060773362762, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836787.1595402465, 5805983.234242702], [836820.0955865036, 5805979.247643378]]}, "properties": {"id": "51275-51276-51277-51278-51279-51280", "from": "5642286721", "to": "254237434", "length_m": 37.31648610542133, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836820.0955865036, 5805979.247643378], [836817.4235803667, 5805950.879593558]]}, "properties": {"id": "51281-51282-51283-51284", "from": "254237434", "to": "2100483163", "length_m": 30.81338105093616, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836817.4235803667, 5805950.879593558], [836784.7033648158, 5805952.600032542]]}, "properties": {"id": "51285-51266-51267-51268-51269", "from": "2100483163", "to": "5642286722", "length_m": 36.65329519111732, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767267.6211511292, 5738018.626765423], [767120.4283738285, 5737920.617263763]]}, "properties": {"id": "51406-51408-51410-51412", "from": "524150761", "to": "524150681", "length_m": 179.5353005290196, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767120.4283738285, 5737920.617263763], [767267.6211511292, 5738018.626765423]]}, "properties": {"id": "51413-51411-51409-51407", "from": "524150681", "to": "524150761", "length_m": 179.5353005290196, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767120.4283738285, 5737920.617263763], [766950.9449376205, 5737845.470558343]]}, "properties": {"id": "51414-51416", "from": "524150681", "to": "524150541", "length_m": 185.3961497538221, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766950.9449376205, 5737845.470558343], [767120.4283738285, 5737920.617263763]]}, "properties": {"id": "51417-51415", "from": "524150541", "to": "524150681", "length_m": 185.3961497538221, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788734.5724009373, 5773375.662367054], [788738.2303549927, 5773384.734620038]]}, "properties": {"id": "51418", "from": "3431090329", "to": "318835263", "length_m": 9.78194264675697, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788886.3069836989, 5773346.282645225], [788880.8011831836, 5773312.903367977]]}, "properties": {"id": "51423", "from": "3431090312", "to": "428722427", "length_m": 33.8303116789383, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790554.2086195123, 5832491.378295489], [789732.4135867716, 5833107.177290663]]}, "properties": {"id": "51428-51429-51430-51431-51432-51433-51434-51435-51436-51437-51438-51439-51440-51441-51442-51443-51444-51445-51446-51447-51448-51449-51450-51451-51452-51453-51454", "from": "322710651", "to": "35095663", "length_m": 1043.9632203706697, "freespeed_mps": 30.555555555555554, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765550.5100141437, 5737404.729427745], [765653.7230782392, 5737609.12763098]]}, "properties": {"id": "51455-51457-51459-51461-51463-51465", "from": "524144995", "to": "831201612", "length_m": 266.14393614524187, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765653.7230782392, 5737609.12763098], [765550.5100141437, 5737404.729427745]]}, "properties": {"id": "51466-51464-51462-51460-51458-51456", "from": "831201612", "to": "524144995", "length_m": 266.14393614524187, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770606.9886794351, 5739073.677119257], [770721.2414230807, 5739117.59890074]]}, "properties": {"id": "51467", "from": "312996418", "to": "831201126", "length_m": 122.40429824911945, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770721.2414230807, 5739117.59890074], [770606.9886794351, 5739073.677119257]]}, "properties": {"id": "51468", "from": "831201126", "to": "312996418", "length_m": 122.40429824911945, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770721.2414230807, 5739117.59890074], [770814.2314360295, 5739153.35733137]]}, "properties": {"id": "51469", "from": "831201126", "to": "831201528", "length_m": 99.62834847843754, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770814.2314360295, 5739153.35733137], [770721.2414230807, 5739117.59890074]]}, "properties": {"id": "51470", "from": "831201528", "to": "831201126", "length_m": 99.62834847843754, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770814.2314360295, 5739153.35733137], [771050.1340706132, 5739141.199033143]]}, "properties": {"id": "51471-51473-51475-51477", "from": "831201528", "to": "831202075", "length_m": 242.84908255175066, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771050.1340706132, 5739141.199033143], [770814.2314360295, 5739153.35733137]]}, "properties": {"id": "51478-51476-51474-51472", "from": "831202075", "to": "831201528", "length_m": 242.84908255175066, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771050.1340706132, 5739141.199033143], [771177.1397268486, 5739119.898655685]]}, "properties": {"id": "51479", "from": "831202075", "to": "524155270", "length_m": 128.77943446450794, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771177.1397268486, 5739119.898655685], [771050.1340706132, 5739141.199033143]]}, "properties": {"id": "51480", "from": "524155270", "to": "831202075", "length_m": 128.77943446450794, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759242.2483415564, 5730402.43398781], [759328.2573820859, 5730176.968927004]]}, "properties": {"id": "5149-5147-5145-5143-5141-5139-5137-5135-5133-5131-5129-5127-5125", "from": "75308704", "to": "832508848", "length_m": 252.7027475368483, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830968.3995221352, 5821589.351075603], [830675.4097929297, 5821649.141448221]]}, "properties": {"id": "5150", "from": "2029060795", "to": "605203941", "length_m": 299.02820846878285, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760073.3604523911, 5731510.152506654], [760006.622288427, 5731569.297454282]]}, "properties": {"id": "5151-5153", "from": "832509865", "to": "832509470", "length_m": 89.73126689933264, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783423.440002652, 5757056.040037351], [785193.9965126247, 5758102.225476763]]}, "properties": {"id": "51511-51513-51515-51517", "from": "535081667", "to": "535081690", "length_m": 1500.0, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785193.9965126247, 5758102.225476763], [783423.440002652, 5757056.040037351]]}, "properties": {"id": "51518-51516-51514-51512", "from": "535081690", "to": "535081667", "length_m": 1500.0, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785193.9965126247, 5758102.225476763], [785330.6322530536, 5758216.256150144]]}, "properties": {"id": "51519", "from": "535081690", "to": "847814531", "length_m": 100.00000000000001, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785330.6322530536, 5758216.256150144], [785193.9965126247, 5758102.225476763]]}, "properties": {"id": "51520", "from": "847814531", "to": "535081690", "length_m": 100.00000000000001, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777914.2313082339, 5762715.18469935], [778261.8196131927, 5764627.5211456185]]}, "properties": {"id": "51531-51533-51535-51537", "from": "177785803", "to": "3756752400", "length_m": 1943.8851132564857, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778261.8196131927, 5764627.5211456185], [777914.2313082339, 5762715.18469935]]}, "properties": {"id": "51538-51536-51534-51532", "from": "3756752400", "to": "177785803", "length_m": 1943.8851132564857, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778261.8196131927, 5764627.5211456185], [778420.389280318, 5765477.544012043]]}, "properties": {"id": "51539", "from": "3756752400", "to": "186874517", "length_m": 864.686771094814, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760006.622288427, 5731569.297454282], [760073.3604523911, 5731510.152506654]]}, "properties": {"id": "5154-5152", "from": "832509470", "to": "832509865", "length_m": 89.73126689933264, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778420.389280318, 5765477.544012043], [778261.8196131927, 5764627.5211456185]]}, "properties": {"id": "51540", "from": "186874517", "to": "3756752400", "length_m": 864.686771094814, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778420.389280318, 5765477.544012043], [778499.3941488238, 5765714.4863377195]]}, "properties": {"id": "51541-51543-51545-51547", "from": "186874517", "to": "2379162967", "length_m": 250.171699793747, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778499.3941488238, 5765714.4863377195], [778420.389280318, 5765477.544012043]]}, "properties": {"id": "51548-51546-51544-51542", "from": "2379162967", "to": "186874517", "length_m": 250.171699793747, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770236.753400143, 5739916.001036378], [769722.9735297654, 5739915.9989586165]]}, "properties": {"id": "51549-51551-51553-51555-51557-51559-51561-51563", "from": "371469327", "to": "831202501", "length_m": 523.0953074523022, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760006.622288427, 5731569.297454282], [759958.7436531733, 5731601.484977735]]}, "properties": {"id": "5155", "from": "832509470", "to": "832508363", "length_m": 57.692290446000214, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759958.7436531733, 5731601.484977735], [760006.622288427, 5731569.297454282]]}, "properties": {"id": "5156", "from": "832508363", "to": "832509470", "length_m": 57.692290446000214, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769722.9735297654, 5739915.9989586165], [770236.753400143, 5739916.001036378]]}, "properties": {"id": "51564-51562-51560-51558-51556-51554-51552-51550", "from": "831202501", "to": "371469327", "length_m": 523.0953074523022, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769722.9735297654, 5739915.9989586165], [769231.0150740333, 5739856.716008992]]}, "properties": {"id": "51565-51567-51569-51571-51573-51575-51577", "from": "831202501", "to": "524155613", "length_m": 519.7260399718094, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759958.7436531733, 5731601.484977735], [759913.7752364664, 5731674.422845286]]}, "properties": {"id": "5157-4585", "from": "832508363", "to": "832510107", "length_m": 85.68600280145905, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769231.0150740333, 5739856.716008992], [769722.9735297654, 5739915.9989586165]]}, "properties": {"id": "51578-51576-51574-51572-51570-51568-51566", "from": "524155613", "to": "831202501", "length_m": 519.7260399718094, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769231.0150740333, 5739856.716008992], [768744.3334277022, 5739490.176196835]]}, "properties": {"id": "51579-51581-51583-51585-51587-51589-51591-51593-51595-51597", "from": "524155613", "to": "524155183", "length_m": 614.6681362822449, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758747.9757559404, 5729934.193449805], [758559.0494864838, 5729926.718314909]]}, "properties": {"id": "5159-5161-5163-5165-5167-5169-5171-5173-5175", "from": "36705043", "to": "36705046", "length_m": 196.10062473255658, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768744.3334277022, 5739490.176196835], [769231.0150740333, 5739856.716008992]]}, "properties": {"id": "51598-51596-51594-51592-51590-51588-51586-51584-51582-51580", "from": "524155183", "to": "524155613", "length_m": 614.6681362822449, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768744.3334277022, 5739490.176196835], [768079.8957438378, 5738725.565944494]]}, "properties": {"id": "51599-51601-51603-51605-51607-51609-51611-51613-51615-51617-51619-51621-51623-51625-51627-51629", "from": "524155183", "to": "524154863", "length_m": 1069.7703745220633, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768079.8957438378, 5738725.565944494], [768744.3334277022, 5739490.176196835]]}, "properties": {"id": "51630-51628-51626-51624-51622-51620-51618-51616-51614-51612-51610-51608-51606-51604-51602-51600", "from": "524154863", "to": "524155183", "length_m": 1069.7703745220633, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768079.8957438378, 5738725.565944494], [767715.8620476086, 5738284.883062502]]}, "properties": {"id": "51631-51633-51635-51637-51639-51641-51643-51645-51647-51649", "from": "524154863", "to": "524151537", "length_m": 659.3755400337229, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767715.8620476086, 5738284.883062502], [768079.8957438378, 5738725.565944494]]}, "properties": {"id": "51650-51648-51646-51644-51642-51640-51638-51636-51634-51632", "from": "524151537", "to": "524154863", "length_m": 659.3755400337229, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758559.0494864838, 5729926.718314909], [758747.9757559404, 5729934.193449805]]}, "properties": {"id": "5176-5174-5172-5170-5168-5166-5164-5162-5160", "from": "36705046", "to": "36705043", "length_m": 196.10062473255658, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758559.0494864838, 5729926.718314909], [758413.9536277532, 5729992.413495439]]}, "properties": {"id": "5177-5179-5181-5183-5185-5187", "from": "36705046", "to": "36705048", "length_m": 170.18403333021143, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832956.272900773, 5805441.5542461965], [833074.6555765241, 5806005.031653911]]}, "properties": {"id": "51800-51801-51802-51803-10927-10928-10929", "from": "1763048103", "to": "1763048091", "length_m": 578.1093801854547, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786396.0437757832, 5761784.869964049], [786768.125065655, 5761542.6779855015]]}, "properties": {"id": "51804-51806-51808-51810-51812-51814", "from": "976339274", "to": "976339273", "length_m": 464.4448637206796, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786768.125065655, 5761542.6779855015], [786396.0437757832, 5761784.869964049]]}, "properties": {"id": "51815-51813-51811-51809-51807-51805", "from": "976339273", "to": "976339274", "length_m": 464.4448637206796, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791811.1121169303, 5753540.187145146], [791813.1323540778, 5753521.230190617]]}, "properties": {"id": "51816", "from": "845902051", "to": "36701492", "length_m": 19.06429867161383, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791952.3451394106, 5754311.186561789], [791955.2680682156, 5754289.340454979]]}, "properties": {"id": "51817", "from": "845902169", "to": "518259834", "length_m": 22.04077802934569, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831839.3428482771, 5808358.634989802], [832189.6612392014, 5808297.310973873]]}, "properties": {"id": "51818-51819-51820-51821-49822-49823", "from": "36045760", "to": "1536458758", "length_m": 356.5898086382845, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791771.8232297582, 5753503.173121621], [791796.200627988, 5753514.54008783]]}, "properties": {"id": "51822-51823-51824", "from": "845902151", "to": "512200692", "length_m": 27.87743401687636, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791710.1462303144, 5753452.396917186], [791771.8232297582, 5753503.173121621]]}, "properties": {"id": "51825-51827-51829", "from": "512198174", "to": "845902151", "length_m": 79.88921896476955, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791771.8232297582, 5753503.173121621], [791710.1462303144, 5753452.396917186]]}, "properties": {"id": "51830-51828-51826", "from": "845902151", "to": "512198174", "length_m": 79.88921896476955, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791943.6136875014, 5754251.371763776], [791934.3545351088, 5754195.366165909]]}, "properties": {"id": "51831", "from": "845901959", "to": "518259685", "length_m": 56.76582504119426, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791934.3545351088, 5754195.366165909], [791943.6136875014, 5754251.371763776]]}, "properties": {"id": "51832", "from": "518259685", "to": "845901959", "length_m": 56.76582504119426, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791934.3545351088, 5754195.366165909], [791857.4486578916, 5753786.836436557]]}, "properties": {"id": "51833-51835", "from": "518259685", "to": "512200554", "length_m": 415.7054889493543, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791857.4486578916, 5753786.836436557], [791934.3545351088, 5754195.366165909]]}, "properties": {"id": "51836-51834", "from": "512200554", "to": "518259685", "length_m": 415.7054889493543, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791857.4486578916, 5753786.836436557], [791840.2728573969, 5753692.2933902405]]}, "properties": {"id": "51837", "from": "512200554", "to": "510174385", "length_m": 96.09055998321696, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791840.2728573969, 5753692.2933902405], [791857.4486578916, 5753786.836436557]]}, "properties": {"id": "51838", "from": "510174385", "to": "512200554", "length_m": 96.09055998321696, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791840.2728573969, 5753692.2933902405], [791811.1121169303, 5753540.187145146]]}, "properties": {"id": "51839", "from": "510174385", "to": "845902051", "length_m": 154.87626853248875, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791811.1121169303, 5753540.187145146], [791840.2728573969, 5753692.2933902405]]}, "properties": {"id": "51840", "from": "845902051", "to": "510174385", "length_m": 154.87626853248875, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834881.7161307106, 5807904.650492538], [834885.0533737645, 5807882.864931686]]}, "properties": {"id": "51852-51853-51854-51855-51856-51857-51858", "from": "75156599", "to": "5642272361", "length_m": 23.59967450904382, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834885.0533737645, 5807882.864931686], [834854.3759625152, 5807881.202217793]]}, "properties": {"id": "51859-51860-51861-51862-51863-51864-51865-51866-51867", "from": "5642272361", "to": "298328160", "length_m": 36.370586404991165, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834854.3759625152, 5807881.202217793], [834853.5406923413, 5807900.962110945]]}, "properties": {"id": "51868-51869-51870-51871-51872-51873-51874-51875", "from": "298328160", "to": "5642272360", "length_m": 20.911019292975418, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834853.5406923413, 5807900.962110945], [834881.7161307106, 5807904.650492538]]}, "properties": {"id": "51876-51841-51842-51843-51844-51845-51846-51847-51848-51849-51850-51851", "from": "5642272360", "to": "75156599", "length_m": 32.57811761342863, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758413.9536277532, 5729992.413495439], [758559.0494864838, 5729926.718314909]]}, "properties": {"id": "5188-5186-5184-5182-5180-5178", "from": "36705048", "to": "36705046", "length_m": 170.18403333021143, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758413.9536277532, 5729992.413495439], [757816.3559542676, 5730467.952708574]]}, "properties": {"id": "5189-5191-5193-5195-5197-5199-5201-5203-5205-5207-5209-5211-5213-26582-26584-26586-26588-26590-26592-26594-26596-26598-26600-26602-26604-26606-26608-26610-26612-26614-26616-26618-26620-26622-26624-26626", "from": "36705048", "to": "36705063", "length_m": 921.9039075454664, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834778.7757166411, 5813171.954660025], [834199.8015480221, 5812285.2375922]]}, "properties": {"id": "51953-51954-51955-51956-51957-51958-51959-51960-51961-51962-51963-50240-50241-50242-50243-50244-50245-50231-50232-50233-50234-50235-50236-50237-50238-50239", "from": "268219066", "to": "268169658", "length_m": 1170.49446617259, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731244.0432855765, 5704605.884011816], [730791.8922293419, 5704276.4017431345]]}, "properties": {"id": "51964-51966-51968-51970-51972-51974", "from": "357068979", "to": "250292073", "length_m": 559.5146195253258, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730791.8922293419, 5704276.4017431345], [731244.0432855765, 5704605.884011816]]}, "properties": {"id": "51975-51973-51971-51969-51967-51965", "from": "250292073", "to": "357068979", "length_m": 559.5146195253258, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730791.8922293419, 5704276.4017431345], [729874.4366506861, 5703949.506367208]]}, "properties": {"id": "51976-51978-51980-51982-51984-51986-51988-51990-51992", "from": "250292073", "to": "250292076", "length_m": 978.2700014385789, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729874.4366506861, 5703949.506367208], [730791.8922293419, 5704276.4017431345]]}, "properties": {"id": "51993-51991-51989-51987-51985-51983-51981-51979-51977", "from": "250292076", "to": "250292073", "length_m": 978.2700014385789, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729874.4366506861, 5703949.506367208], [729128.8480924809, 5703855.440660694]]}, "properties": {"id": "51994-51996-51998-52000-52002-52004-52006-52008-52010-52012", "from": "250292076", "to": "250292080", "length_m": 771.479590288067, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729128.8480924809, 5703855.440660694], [729874.4366506861, 5703949.506367208]]}, "properties": {"id": "52013-52011-52009-52007-52005-52003-52001-51999-51997-51995", "from": "250292080", "to": "250292076", "length_m": 771.479590288067, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729128.8480924809, 5703855.440660694], [728554.3937195963, 5704152.908378329]]}, "properties": {"id": "52014-52016-52018-52020-52022-52024-52026-52028", "from": "250292080", "to": "250292082", "length_m": 648.0062577181591, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728554.3937195963, 5704152.908378329], [729128.8480924809, 5703855.440660694]]}, "properties": {"id": "52029-52027-52025-52023-52021-52019-52017-52015", "from": "250292082", "to": "250292080", "length_m": 648.0062577181591, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728554.3937195963, 5704152.908378329], [728045.4483935782, 5704320.648502148]]}, "properties": {"id": "52030-52032-52034-52036-52038", "from": "250292082", "to": "250292084", "length_m": 537.0017543261868, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728045.4483935782, 5704320.648502148], [728554.3937195963, 5704152.908378329]]}, "properties": {"id": "52039-52037-52035-52033-52031", "from": "250292084", "to": "250292082", "length_m": 537.0017543261868, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728045.4483935782, 5704320.648502148], [727400.689946638, 5704568.158970474]]}, "properties": {"id": "52040-52042-52044-52046-52048-52050-52052-52054-52056-52058-52060-52062-52064-52066-52068-52070-52072", "from": "250292084", "to": "2305744261", "length_m": 703.7812982826845, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727400.689946638, 5704568.158970474], [728045.4483935782, 5704320.648502148]]}, "properties": {"id": "52073-52071-52069-52067-52065-52063-52061-52059-52057-52055-52053-52051-52049-52047-52045-52043-52041", "from": "2305744261", "to": "250292084", "length_m": 703.7812982826845, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727400.689946638, 5704568.158970474], [727035.3993690589, 5704930.853882062]]}, "properties": {"id": "52074-52076-52078-52080-52082-52084-52086", "from": "2305744261", "to": "2305744269", "length_m": 516.9737198732954, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727035.3993690589, 5704930.853882062], [727400.689946638, 5704568.158970474]]}, "properties": {"id": "52087-52085-52083-52081-52079-52077-52075", "from": "2305744269", "to": "2305744261", "length_m": 516.9737198732954, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727035.3993690589, 5704930.853882062], [726523.9248714596, 5705268.607275196]]}, "properties": {"id": "52088-52090-52092-52094-52096-52098-52100-52102-52104-52106-52108-52110-52112-52114-52116-52118-52120", "from": "2305744269", "to": "2305744273", "length_m": 716.014988876985, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726523.9248714596, 5705268.607275196], [727035.3993690589, 5704930.853882062]]}, "properties": {"id": "52121-52119-52117-52115-52113-52111-52109-52107-52105-52103-52101-52099-52097-52095-52093-52091-52089", "from": "2305744273", "to": "2305744269", "length_m": 716.014988876985, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726523.9248714596, 5705268.607275196], [726428.318770752, 5706161.232113956]]}, "properties": {"id": "52122-52124-52126-52128-52130-52132-52134-52136-52138-52140-52142-52144-52146-52148-52150-52152", "from": "2305744273", "to": "2305744285", "length_m": 919.8188134176363, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726428.318770752, 5706161.232113956], [726523.9248714596, 5705268.607275196]]}, "properties": {"id": "52153-52151-52149-52147-52145-52143-52141-52139-52137-52135-52133-52131-52129-52127-52125-52123", "from": "2305744285", "to": "2305744273", "length_m": 919.8188134176363, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726428.318770752, 5706161.232113956], [726052.1359069505, 5706564.7163029425]]}, "properties": {"id": "52154-52156-52158-52160-52162-52164-52166-52168-52170", "from": "2305744285", "to": "250292112", "length_m": 576.6326994866838, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726052.1359069505, 5706564.7163029425], [726428.318770752, 5706161.232113956]]}, "properties": {"id": "52171-52169-52167-52165-52163-52161-52159-52157-52155", "from": "250292112", "to": "2305744285", "length_m": 576.6326994866838, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726052.1359069505, 5706564.7163029425], [725558.0848717899, 5706899.456672263]]}, "properties": {"id": "52172-52174-52176-52178-52180-52182-52184", "from": "250292112", "to": "2305744289", "length_m": 602.945557032901, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[725558.0848717899, 5706899.456672263], [726052.1359069505, 5706564.7163029425]]}, "properties": {"id": "52185-52183-52181-52179-52177-52175-52173", "from": "2305744289", "to": "250292112", "length_m": 602.945557032901, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[725558.0848717899, 5706899.456672263], [724785.1632093905, 5707681.586925085]]}, "properties": {"id": "52186-52188-52190-52192-52194-52196-52198-52200-52202-52204-52206-52208", "from": "2305744289", "to": "2305744292", "length_m": 1106.3169682166092, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829782.9540282522, 5821822.1934585], [829279.9708150639, 5821921.731676894]]}, "properties": {"id": "5220-5221-5222-5223-50669-50651", "from": "2960825844", "to": "598036402", "length_m": 512.7940730770024, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[724785.1632093905, 5707681.586925085], [725558.0848717899, 5706899.456672263]]}, "properties": {"id": "52209-52207-52205-52203-52201-52199-52197-52195-52193-52191-52189-52187", "from": "2305744292", "to": "2305744289", "length_m": 1106.3169682166092, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[724785.1632093905, 5707681.586925085], [724883.7646185517, 5708202.084080222]]}, "properties": {"id": "52210-52212-52214-52216-52218-52220-52222-52224-52226-52228-52230-52232-52234-52236-52238-52240-52242", "from": "2305744292", "to": "2305744304", "length_m": 562.0303133099719, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829801.1659370842, 5821844.803032297], [830166.8064279361, 5821773.9329009205]]}, "properties": {"id": "5224-5225-5226-9197-9198", "from": "605209735", "to": "605208462", "length_m": 372.4603003604283, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[724883.7646185517, 5708202.084080222], [724785.1632093905, 5707681.586925085]]}, "properties": {"id": "52243-52241-52239-52237-52235-52233-52231-52229-52227-52225-52223-52221-52219-52217-52215-52213-52211", "from": "2305744304", "to": "2305744292", "length_m": 562.0303133099719, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[724883.7646185517, 5708202.084080222], [724295.7808902721, 5708737.722200987]]}, "properties": {"id": "52244-52246-52248-52250-52252-52254-52256-52258-52260-52262-52264-52266-52268-52270-52272-52274-52276-52278-52280-52282-52284-52286-52288-52290-52292-52294-52296", "from": "2305744304", "to": "2305744315", "length_m": 834.5331260117235, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759244.3918607284, 5731240.395238303], [759434.0920104748, 5731424.633762391]]}, "properties": {"id": "5228-4598-4596", "from": "832510362", "to": "832508485", "length_m": 311.0542376312028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759132.2780027397, 5729640.618432348], [759042.2401826155, 5729768.188794461]]}, "properties": {"id": "5229", "from": "832508581", "to": "832507837", "length_m": 156.144184557101, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[724295.7808902721, 5708737.722200987], [724883.7646185517, 5708202.084080222]]}, "properties": {"id": "52297-52295-52293-52291-52289-52287-52285-52283-52281-52279-52277-52275-52273-52271-52269-52267-52265-52263-52261-52259-52257-52255-52253-52251-52249-52247-52245", "from": "2305744315", "to": "2305744304", "length_m": 834.5331260117235, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[724295.7808902721, 5708737.722200987], [723854.8214503783, 5709051.25996063]]}, "properties": {"id": "52298-52300-52302-52304-52306-52308-52310-52312-52314-52316-52318-52320", "from": "2305744315", "to": "2305744317", "length_m": 555.6700879567594, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759042.2401826155, 5729768.188794461], [759132.2780027397, 5729640.618432348]]}, "properties": {"id": "5230", "from": "832507837", "to": "832508581", "length_m": 156.144184557101, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[723854.8214503783, 5709051.25996063], [724295.7808902721, 5708737.722200987]]}, "properties": {"id": "52321-52319-52317-52315-52313-52311-52309-52307-52305-52303-52301-52299", "from": "2305744317", "to": "2305744315", "length_m": 555.6700879567594, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[723854.8214503783, 5709051.25996063], [722920.6092566182, 5708835.030364038]]}, "properties": {"id": "52322-52324-52326-52328-52330-52332-52334-52336-52338-52340-52342-52344-52346-52348-52350-52352-52354-52356-52358-52360-52362-52364-52366-52368-52370", "from": "2305744317", "to": "2305744344", "length_m": 997.2368605719486, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837227.2876563801, 5812022.221915591], [837232.6517902524, 5812030.997814692]]}, "properties": {"id": "5234", "from": "268175488", "to": "268175489", "length_m": 10.285442918208988, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760049.1629181646, 5729005.333683753], [760120.0416632154, 5728989.219386595]]}, "properties": {"id": "5235", "from": "832509525", "to": "832509489", "length_m": 72.68746147217833, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760120.0416632154, 5728989.219386595], [760049.1629181646, 5729005.333683753]]}, "properties": {"id": "5236", "from": "832509489", "to": "832509525", "length_m": 72.68746147217833, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760092.7379173358, 5729259.634735144], [760060.2734079295, 5729095.663611386]]}, "properties": {"id": "5237-5239-5241", "from": "832508688", "to": "832509157", "length_m": 167.2011140348632, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[722920.6092566182, 5708835.030364038], [723854.8214503783, 5709051.25996063]]}, "properties": {"id": "52371-52369-52367-52365-52363-52361-52359-52357-52355-52353-52351-52349-52347-52345-52343-52341-52339-52337-52335-52333-52331-52329-52327-52325-52323", "from": "2305744344", "to": "2305744317", "length_m": 997.2368605719486, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[722920.6092566182, 5708835.030364038], [722594.7156617434, 5708213.0175421005]]}, "properties": {"id": "52372-52374-52376-52378-52380-52382-52384-52386-52388-52390-52392-52394-52396-52398-52400-52402-52404-52406-52408-52410-52412-52414", "from": "2305744344", "to": "2305744346", "length_m": 818.0657265566574, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[722594.7156617434, 5708213.0175421005], [722920.6092566182, 5708835.030364038]]}, "properties": {"id": "52415-52413-52411-52409-52407-52405-52403-52401-52399-52397-52395-52393-52391-52389-52387-52385-52383-52381-52379-52377-52375-52373", "from": "2305744346", "to": "2305744344", "length_m": 818.0657265566574, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[722594.7156617434, 5708213.0175421005], [722083.2284079748, 5707952.45043864]]}, "properties": {"id": "52416-52418-52420-52422-52424-52426-52428-52430-52432-52434-52436-52438-52440-52442-52444-52446-52448", "from": "2305744346", "to": "250292180", "length_m": 634.1410951853917, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760060.2734079295, 5729095.663611386], [760092.7379173358, 5729259.634735144]]}, "properties": {"id": "5242-5240-5238", "from": "832509157", "to": "832508688", "length_m": 167.2011140348632, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760060.2734079295, 5729095.663611386], [760049.1629181646, 5729005.333683753]]}, "properties": {"id": "5243-5245", "from": "832509157", "to": "832509525", "length_m": 91.02140705131343, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[722083.2284079748, 5707952.45043864], [722594.7156617434, 5708213.0175421005]]}, "properties": {"id": "52449-52447-52445-52443-52441-52439-52437-52435-52433-52431-52429-52427-52425-52423-52421-52419-52417", "from": "250292180", "to": "2305744346", "length_m": 634.1410951853917, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[722083.2284079748, 5707952.45043864], [721940.661905488, 5707559.565094198]]}, "properties": {"id": "52450-52452-52454-52456-52458-52460-52462-52464-52466-52468-52470-52472-52474", "from": "250292180", "to": "2305744355", "length_m": 530.8125743350048, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760049.1629181646, 5729005.333683753], [760060.2734079295, 5729095.663611386]]}, "properties": {"id": "5246-5244", "from": "832509525", "to": "832509157", "length_m": 91.02140705131343, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760049.1629181646, 5729005.333683753], [760096.7287953434, 5728771.771984256]]}, "properties": {"id": "5247-5249-5399-5401-5403", "from": "832509525", "to": "832509749", "length_m": 306.36369107938043, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[721940.661905488, 5707559.565094198], [722083.2284079748, 5707952.45043864]]}, "properties": {"id": "52475-52473-52471-52469-52467-52465-52463-52461-52459-52457-52455-52453-52451", "from": "2305744355", "to": "250292180", "length_m": 530.8125743350048, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[721940.661905488, 5707559.565094198], [721805.2252684474, 5706972.327562067]]}, "properties": {"id": "52476-52478-52480-52482-52484-52486-52488-52490-52492-52494-52496-52498-52500-52502-52504-52506-52508-52510-52512", "from": "2305744355", "to": "250292444", "length_m": 634.5315415723161, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759052.8978619105, 5729582.175424744], [759127.7754681422, 5729536.551882249]]}, "properties": {"id": "5251-5253", "from": "832510259", "to": "832508282", "length_m": 88.09146004873475, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[721805.2252684474, 5706972.327562067], [721940.661905488, 5707559.565094198]]}, "properties": {"id": "52513-52511-52509-52507-52505-52503-52501-52499-52497-52495-52493-52491-52489-52487-52485-52483-52481-52479-52477", "from": "250292444", "to": "2305744355", "length_m": 634.5315415723161, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758037.2605691596, 5838954.626458535], [757577.8667403902, 5839049.254725181]]}, "properties": {"id": "52514-52515-52516-52517-52518-52519-52520-52521", "from": "35096781", "to": "364000819", "length_m": 470.97204116783865, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831386.4375060059, 5824373.205994418], [831636.1071990955, 5824243.981515798]]}, "properties": {"id": "52522-52523-52524-52525-52526-52527-52528-52529-52530", "from": "2791828162", "to": "2791828183", "length_m": 285.09730627302457, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831284.8432075279, 5824473.034731744], [831386.4375060059, 5824373.205994418]]}, "properties": {"id": "52531-52532-52533-52534-52535-52536-52537-52538-52539", "from": "2791828184", "to": "2791828162", "length_m": 147.85846374262474, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759127.7754681422, 5729536.551882249], [759052.8978619105, 5729582.175424744]]}, "properties": {"id": "5254-5252", "from": "832508282", "to": "832510259", "length_m": 88.09146004873475, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837367.1709271745, 5818159.397100767], [837351.4366055543, 5818162.331751705]]}, "properties": {"id": "52540", "from": "30928562", "to": "1502841906", "length_m": 16.005656865428893, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837351.4366055543, 5818162.331751705], [837367.1709271745, 5818159.397100767]]}, "properties": {"id": "52541", "from": "1502841906", "to": "30928562", "length_m": 16.005656865428893, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834236.5468168389, 5812862.555649356], [834178.836865285, 5812860.529934768]]}, "properties": {"id": "52543-52544", "from": "268170298", "to": "268220094", "length_m": 57.74593644622474, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834178.836865285, 5812860.529934768], [833702.6641466223, 5812785.699393535]]}, "properties": {"id": "52545-52546-52547-52548-52549-52550-52551-52552-52553-52554-52555-52556-52557-52558-52559-52560-52561", "from": "268220094", "to": "268170840", "length_m": 489.4225656048713, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759127.7754681422, 5729536.551882249], [759220.9201439332, 5729468.146984148]]}, "properties": {"id": "5255-5257", "from": "832508282", "to": "5109912586", "length_m": 116.08825072519609, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833702.6641466223, 5812785.699393535], [833566.5179639747, 5812752.792543929]]}, "properties": {"id": "52562-52563-52564-52565-52566-52567", "from": "268170840", "to": "268170635", "length_m": 140.74156609779664, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789542.4277758991, 5758776.48192965], [789775.5809426554, 5760040.472764641]]}, "properties": {"id": "52568", "from": "619562768", "to": "480636137", "length_m": 1285.314447274476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789775.5809426554, 5760040.472764641], [789542.4277758991, 5758776.48192965]]}, "properties": {"id": "52569", "from": "480636137", "to": "619562768", "length_m": 1285.314447274476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833702.6641466223, 5812785.699393535], [833696.0341591964, 5812799.155590917]]}, "properties": {"id": "52570", "from": "268170840", "to": "268170745", "length_m": 15.00086604179948, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833696.0341591964, 5812799.155590917], [833702.6641466223, 5812785.699393535]]}, "properties": {"id": "52571", "from": "268170745", "to": "268170840", "length_m": 15.00086604179948, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791149.6035093543, 5754299.613215097], [791252.0885741203, 5754154.226599332]]}, "properties": {"id": "52572-52574-52576-52578-52580", "from": "822479569", "to": "822479567", "length_m": 197.74089815429102, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759220.9201439332, 5729468.146984148], [759127.7754681422, 5729536.551882249]]}, "properties": {"id": "5258-5256", "from": "5109912586", "to": "832508282", "length_m": 116.08825072519609, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791252.0885741203, 5754154.226599332], [791149.6035093543, 5754299.613215097]]}, "properties": {"id": "52581-52579-52577-52575-52573", "from": "822479567", "to": "822479569", "length_m": 197.74089815429102, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791078.8898344017, 5754374.186212554], [791164.2999413006, 5754337.050613389]]}, "properties": {"id": "52582", "from": "822479605", "to": "822479635", "length_m": 93.1339845221965, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791164.2999413006, 5754337.050613389], [791078.8898344017, 5754374.186212554]]}, "properties": {"id": "52583", "from": "822479635", "to": "822479605", "length_m": 93.1339845221965, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791029.4589061078, 5754202.3363527395], [791051.8369049819, 5754305.651020991]]}, "properties": {"id": "52584-52586-52588", "from": "822479558", "to": "822479630", "length_m": 105.78834661094388, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791051.8369049819, 5754305.651020991], [791029.4589061078, 5754202.3363527395]]}, "properties": {"id": "52589-52587-52585", "from": "822479630", "to": "822479558", "length_m": 105.78834661094388, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759220.9201439332, 5729468.146984148], [759320.484622174, 5729383.277149947]]}, "properties": {"id": "5259-3925", "from": "5109912586", "to": "832507894", "length_m": 130.8283496587182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791051.8369049819, 5754305.651020991], [791078.8898344017, 5754374.186212554]]}, "properties": {"id": "52590-52592", "from": "822479630", "to": "822479605", "length_m": 74.2107901953151, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791078.8898344017, 5754374.186212554], [791051.8369049819, 5754305.651020991]]}, "properties": {"id": "52593-52591", "from": "822479605", "to": "822479630", "length_m": 74.2107901953151, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791078.8898344017, 5754374.186212554], [791080.7421804264, 5754386.212101588]]}, "properties": {"id": "52594", "from": "822479605", "to": "822479644", "length_m": 12.16771107559025, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791080.7421804264, 5754386.212101588], [791078.8898344017, 5754374.186212554]]}, "properties": {"id": "52595", "from": "822479644", "to": "822479605", "length_m": 12.16771107559025, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791080.7421804264, 5754386.212101588], [791082.4675444427, 5754418.515602366]]}, "properties": {"id": "52596-52598", "from": "822479644", "to": "822479587", "length_m": 32.65963218658721, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791082.4675444427, 5754418.515602366], [791080.7421804264, 5754386.212101588]]}, "properties": {"id": "52599-52597", "from": "822479587", "to": "822479644", "length_m": 32.65963218658721, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791082.4675444427, 5754418.515602366], [791025.6836909351, 5754656.770371386]]}, "properties": {"id": "52600-52602-52604", "from": "822479587", "to": "2244716811", "length_m": 249.99278844751558, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791025.6836909351, 5754656.770371386], [791082.4675444427, 5754418.515602366]]}, "properties": {"id": "52605-52603-52601", "from": "2244716811", "to": "822479587", "length_m": 249.99278844751558, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791080.7421804264, 5754386.212101588], [790987.6142439133, 5754402.162685961]]}, "properties": {"id": "52606", "from": "822479644", "to": "2244716815", "length_m": 94.48403918828402, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790987.6142439133, 5754402.162685961], [791080.7421804264, 5754386.212101588]]}, "properties": {"id": "52607", "from": "2244716815", "to": "822479644", "length_m": 94.48403918828402, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790987.6142439133, 5754402.162685961], [790895.6694850286, 5754417.902808451]]}, "properties": {"id": "52608", "from": "2244716815", "to": "2244716820", "length_m": 93.2823139881011, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790895.6694850286, 5754417.902808451], [790987.6142439133, 5754402.162685961]]}, "properties": {"id": "52609", "from": "2244716820", "to": "2244716815", "length_m": 93.2823139881011, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790895.6694850286, 5754417.902808451], [790819.5920019529, 5754431.191838825]]}, "properties": {"id": "52610", "from": "2244716820", "to": "5621360587", "length_m": 77.22940977072774, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790819.5920019529, 5754431.191838825], [790895.6694850286, 5754417.902808451]]}, "properties": {"id": "52611", "from": "5621360587", "to": "2244716820", "length_m": 77.22940977072774, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790819.5920019529, 5754431.191838825], [790733.8628593504, 5754431.568100855]]}, "properties": {"id": "52612-52614-52616-52618-52620", "from": "5621360587", "to": "2244716744", "length_m": 86.53620783341775, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790733.8628593504, 5754431.568100855], [790819.5920019529, 5754431.191838825]]}, "properties": {"id": "52621-52619-52617-52615-52613", "from": "2244716744", "to": "5621360587", "length_m": 86.53620783341775, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791118.323982863, 5754189.172975545], [791149.6035093543, 5754299.613215097]]}, "properties": {"id": "52622-52624-52626-52628", "from": "822479613", "to": "822479569", "length_m": 115.32966172407842, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791149.6035093543, 5754299.613215097], [791118.323982863, 5754189.172975545]]}, "properties": {"id": "52629-52627-52625-52623", "from": "822479569", "to": "822479613", "length_m": 115.32966172407842, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791149.6035093543, 5754299.613215097], [791164.2999413006, 5754337.050613389]]}, "properties": {"id": "52630", "from": "822479569", "to": "822479635", "length_m": 40.21870085922039, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791164.2999413006, 5754337.050613389], [791149.6035093543, 5754299.613215097]]}, "properties": {"id": "52631", "from": "822479635", "to": "822479569", "length_m": 40.21870085922039, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791164.2999413006, 5754337.050613389], [791174.1959731949, 5754380.029518637]]}, "properties": {"id": "52632-52634", "from": "822479635", "to": "824325905", "length_m": 44.3837866551286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791174.1959731949, 5754380.029518637], [791164.2999413006, 5754337.050613389]]}, "properties": {"id": "52635-52633", "from": "824325905", "to": "822479635", "length_m": 44.3837866551286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791174.1959731949, 5754380.029518637], [791177.4140917346, 5754401.509126595]]}, "properties": {"id": "52636", "from": "824325905", "to": "824325860", "length_m": 21.719342638458812, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791177.4140917346, 5754401.509126595], [791174.1959731949, 5754380.029518637]]}, "properties": {"id": "52637", "from": "824325860", "to": "824325905", "length_m": 21.719342638458812, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791177.4140917346, 5754401.509126595], [791168.0956940765, 5754445.192249174]]}, "properties": {"id": "52638-52640", "from": "824325860", "to": "822479597", "length_m": 44.82317382057299, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791168.0956940765, 5754445.192249174], [791177.4140917346, 5754401.509126595]]}, "properties": {"id": "52641-52639", "from": "822479597", "to": "824325860", "length_m": 44.82317382057299, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791168.0956940765, 5754445.192249174], [791132.9875064094, 5754538.920973915]]}, "properties": {"id": "52642", "from": "822479597", "to": "2244716762", "length_m": 100.0882545816704, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791132.9875064094, 5754538.920973915], [791168.0956940765, 5754445.192249174]]}, "properties": {"id": "52643", "from": "2244716762", "to": "822479597", "length_m": 100.0882545816704, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791132.9875064094, 5754538.920973915], [791110.8134499331, 5754599.383848119]]}, "properties": {"id": "52644-52646", "from": "2244716762", "to": "3464608673", "length_m": 64.41767151470977, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791110.8134499331, 5754599.383848119], [791132.9875064094, 5754538.920973915]]}, "properties": {"id": "52647-52645", "from": "3464608673", "to": "2244716762", "length_m": 64.41767151470977, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791051.8369049819, 5754305.651020991], [790945.1206650865, 5754206.49945706]]}, "properties": {"id": "52648-52650-52652-52654", "from": "822479630", "to": "822479596", "length_m": 197.1874725895117, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758650.4612396864, 5730884.403896867], [758811.1866396962, 5730854.378697927]]}, "properties": {"id": "5265-5267-5269-5271-5273-5275-5277-5279-5281-5283-5285-5287-5289", "from": "832508748", "to": "832509302", "length_m": 274.92408070528086, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790945.1206650865, 5754206.49945706], [791051.8369049819, 5754305.651020991]]}, "properties": {"id": "52655-52653-52651-52649", "from": "822479596", "to": "822479630", "length_m": 197.1874725895117, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792696.9102712639, 5753837.739198686], [792891.3162117978, 5753925.140211119]]}, "properties": {"id": "52667-52669-52671-52673-52675-52677-52679-52681-52683", "from": "822479561", "to": "822479603", "length_m": 221.45043432809834, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792891.3162117978, 5753925.140211119], [792696.9102712639, 5753837.739198686]]}, "properties": {"id": "52684-52682-52680-52678-52676-52674-52672-52670-52668", "from": "822479603", "to": "822479561", "length_m": 221.45043432809834, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833567.1183687975, 5812766.077785378], [833696.0341591964, 5812799.155590917]]}, "properties": {"id": "52716-52717-52718-52719-52720", "from": "268170656", "to": "268170745", "length_m": 133.85868485487828, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833696.0341591964, 5812799.155590917], [834146.0452259239, 5812887.224619177]]}, "properties": {"id": "52721-52722-52723-52724-52725-52726-52727-52728-52729-52730-52731-52732-52733-52734-52735", "from": "268170745", "to": "4989023969", "length_m": 466.07877057652604, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834146.0452259239, 5812887.224619177], [834245.4727255865, 5812889.99108329]]}, "properties": {"id": "52736-52737-52738-52739-52740", "from": "4989023969", "to": "268170300", "length_m": 99.48532485835443, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791082.4675444427, 5754418.515602366], [791168.0956940765, 5754445.192249174]]}, "properties": {"id": "52741", "from": "822479587", "to": "822479597", "length_m": 89.68736498811076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791168.0956940765, 5754445.192249174], [791082.4675444427, 5754418.515602366]]}, "properties": {"id": "52742", "from": "822479597", "to": "822479587", "length_m": 89.68736498811076, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791118.323982863, 5754189.172975545], [791124.4020543259, 5754177.2945217285]]}, "properties": {"id": "52745-52746-52747-52748-52749", "from": "822479613", "to": "512199239", "length_m": 14.97237678961224, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791124.4020543259, 5754177.2945217285], [791114.7663479231, 5754171.629061001]]}, "properties": {"id": "52750-52751-52752-52753", "from": "512199239", "to": "822479626", "length_m": 11.99824474781442, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791114.7663479231, 5754171.629061001], [791107.0068732873, 5754181.078477101]]}, "properties": {"id": "52754-52755-52756-52757-52758", "from": "822479626", "to": "822479640", "length_m": 13.394433842161497, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791107.0068732873, 5754181.078477101], [791118.323982863, 5754189.172975545]]}, "properties": {"id": "52759-52760-52761-52743-52744", "from": "822479640", "to": "822479613", "length_m": 15.829645966327288, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833566.5179639747, 5812752.792543929], [833510.0906357643, 5812752.756182551]]}, "properties": {"id": "52762-52763", "from": "268170635", "to": "268170604", "length_m": 56.44368583181566, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791107.0068732873, 5754181.078477101], [791029.4589061078, 5754202.3363527395]]}, "properties": {"id": "52764-52766", "from": "822479640", "to": "822479558", "length_m": 80.56728527512864, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791029.4589061078, 5754202.3363527395], [791107.0068732873, 5754181.078477101]]}, "properties": {"id": "52767-52765", "from": "822479558", "to": "822479640", "length_m": 80.56728527512864, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791029.4589061078, 5754202.3363527395], [790945.1206650865, 5754206.49945706]]}, "properties": {"id": "52768", "from": "822479558", "to": "822479596", "length_m": 84.44092787850396, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790945.1206650865, 5754206.49945706], [791029.4589061078, 5754202.3363527395]]}, "properties": {"id": "52769", "from": "822479596", "to": "822479558", "length_m": 84.44092787850396, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790945.1206650865, 5754206.49945706], [790852.9283724831, 5754196.595782165]]}, "properties": {"id": "52770-52772", "from": "822479596", "to": "822479572", "length_m": 92.75793165625718, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790852.9283724831, 5754196.595782165], [790945.1206650865, 5754206.49945706]]}, "properties": {"id": "52773-52771", "from": "822479572", "to": "822479596", "length_m": 92.75793165625718, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790852.9283724831, 5754196.595782165], [790811.281858508, 5754185.714778056]]}, "properties": {"id": "52774", "from": "822479572", "to": "822479607", "length_m": 43.04449283682202, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790811.281858508, 5754185.714778056], [790852.9283724831, 5754196.595782165]]}, "properties": {"id": "52775", "from": "822479607", "to": "822479572", "length_m": 43.04449283682202, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790563.8491030225, 5755571.773649455], [790440.1880077844, 5755174.299343916]]}, "properties": {"id": "52776-52777-52778-52779", "from": "512196735-34", "to": "2548347174", "length_m": 446.56778125925297, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790440.1880077844, 5755174.299343916], [790360.8121063283, 5754937.5128159]]}, "properties": {"id": "52780", "from": "2548347174", "to": "1580591389", "length_m": 245.77068000252294, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832531.1548389154, 5813045.480939448], [832525.1786685865, 5813009.207789335]]}, "properties": {"id": "52783", "from": "1536176345", "to": "298347813", "length_m": 36.762154842797884, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832525.1786685865, 5813009.207789335], [832517.6670087862, 5812963.767954101]]}, "properties": {"id": "52784-52785", "from": "298347813", "to": "243827557", "length_m": 46.21763786254573, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833508.4060526047, 5812767.157000097], [833567.1183687975, 5812766.077785378]]}, "properties": {"id": "52786-52787", "from": "268170653", "to": "268170656", "length_m": 58.77641669848663, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790533.0064540841, 5755620.299590529], [790740.6057726252, 5756674.860313992]]}, "properties": {"id": "52788-52789-52790-52791-52792-52793", "from": "512196786", "to": "3184022801", "length_m": 1091.8156567020364, "freespeed_mps": 22.0, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790740.6057726252, 5756674.860313992], [790839.1903956288, 5757183.723916007]]}, "properties": {"id": "52794", "from": "3184022801", "to": "270450946", "length_m": 518.3252772446316, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790839.1903956288, 5757183.723916007], [790947.5292761999, 5757772.260251313]]}, "properties": {"id": "52795", "from": "270450946", "to": "270450945", "length_m": 598.4248746850608, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790947.5292761999, 5757772.260251313], [791118.7090190952, 5758670.261534957]]}, "properties": {"id": "52796", "from": "270450945", "to": "539387489", "length_m": 914.171104802063, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790852.9283724831, 5754196.595782165], [790895.6694850286, 5754417.902808451]]}, "properties": {"id": "52797", "from": "822479572", "to": "2244716820", "length_m": 225.3965450666173, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790895.6694850286, 5754417.902808451], [790852.9283724831, 5754196.595782165]]}, "properties": {"id": "52798", "from": "2244716820", "to": "822479572", "length_m": 225.3965450666173, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832976.1645715124, 5808175.995920479], [832987.8172071553, 5808174.467297051]]}, "properties": {"id": "52799", "from": "36045765", "to": "353640765", "length_m": 11.752472296139278, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835361.1018146137, 5807812.216463687], [835302.7427748259, 5807820.481024984]]}, "properties": {"id": "52809-52810", "from": "298326676", "to": "75157621", "length_m": 58.94144979927141, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835302.7427748259, 5807820.481024984], [835188.9749676437, 5807835.598630518]]}, "properties": {"id": "52811-52800", "from": "75157621", "to": "75158828", "length_m": 114.80634607468183, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835307.821926892, 5807842.045648806], [835342.2184219875, 5807837.783835185]]}, "properties": {"id": "52813-52814", "from": "75157210", "to": "2100470530", "length_m": 34.660424028195564, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835137.7417712088, 5807864.798266573], [835192.5650532093, 5807857.212934155]]}, "properties": {"id": "52815", "from": "298326590", "to": "75156602", "length_m": 55.34554626836888, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833164.9001883243, 5804668.129716666], [833034.5373992644, 5804689.088448403]]}, "properties": {"id": "52820-53124", "from": "75203370", "to": "1745493160", "length_m": 132.03741404563806, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834245.4727255865, 5812889.99108329], [834388.7734815119, 5812882.900868851]]}, "properties": {"id": "52821-52822-52823", "from": "268170300", "to": "268170277", "length_m": 143.9749963963266, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834236.5468168389, 5812862.555649356], [834245.4727255865, 5812889.99108329]]}, "properties": {"id": "52824", "from": "268170298", "to": "268170300", "length_m": 28.850907757565963, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834376.434208619, 5812855.10389199], [834236.5468168389, 5812862.555649356]]}, "properties": {"id": "52825-52826-52827-52828-52829", "from": "268170275", "to": "268170298", "length_m": 140.50524712790812, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774338.1032176508, 5776429.457444348], [774437.2899566811, 5776314.922202468]]}, "properties": {"id": "52842-52844-52846-52848-52850", "from": "5604453394", "to": "5604453359", "length_m": 151.54609256981, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774437.2899566811, 5776314.922202468], [774338.1032176508, 5776429.457444348]]}, "properties": {"id": "52851-52849-52847-52845-52843", "from": "5604453359", "to": "5604453394", "length_m": 151.54609256981, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774437.2899566811, 5776314.922202468], [774449.8954773345, 5776278.504643748]]}, "properties": {"id": "52852-52854-52856-52858-52860-52862-52864", "from": "5604453359", "to": "5604453354", "length_m": 39.6240150831718, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774449.8954773345, 5776278.504643748], [774437.2899566811, 5776314.922202468]]}, "properties": {"id": "52865-52863-52861-52859-52857-52855-52853", "from": "5604453354", "to": "5604453359", "length_m": 39.6240150831718, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834388.7734815119, 5812882.900868851], [834376.434208619, 5812855.10389199]]}, "properties": {"id": "52896", "from": "268170277", "to": "268170275", "length_m": 30.412654804075565, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785925.8128182171, 5757152.450430012], [786092.0549969081, 5758073.897508104]]}, "properties": {"id": "52899-54209-54223-54221", "from": "994354529", "to": "148800320", "length_m": 936.5342643035458, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758811.1866396962, 5730854.378697927], [758650.4612396864, 5730884.403896867]]}, "properties": {"id": "5290-5288-5286-5284-5282-5280-5278-5276-5274-5272-5270-5268-5266", "from": "832509302", "to": "832508748", "length_m": 274.92408070528086, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785925.8128182171, 5757152.450430012], [785528.532491687, 5754981.283984251]]}, "properties": {"id": "52900", "from": "994354529", "to": "3413826121", "length_m": 1990.4229387525859, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785528.532491687, 5754981.283984251], [785925.8128182171, 5757152.450430012]]}, "properties": {"id": "52901", "from": "3413826121", "to": "994354529", "length_m": 1990.4229387525859, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[839286.4619602594, 5817533.683078646], [839243.7522368915, 5817580.521275794]]}, "properties": {"id": "52902-52903-52904-52905-52906-52907-52908", "from": "236890836", "to": "241860884", "length_m": 67.40937225448117, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758811.1866396962, 5730854.378697927], [758893.903902013, 5730737.660314536]]}, "properties": {"id": "5291-5293-5295-5297-5299-5301-5303-5305-5307-5309-5311-5313-5315-5317-5319", "from": "832509302", "to": "832509934", "length_m": 284.45548105114244, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786553.7171851086, 5760412.735796318], [786449.2076800466, 5759858.098654566]]}, "properties": {"id": "52911-52913", "from": "1708406406", "to": "148800276", "length_m": 564.39759450337, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786449.2076800466, 5759858.098654566], [786553.7171851086, 5760412.735796318]]}, "properties": {"id": "52914-52912", "from": "148800276", "to": "1708406406", "length_m": 564.39759450337, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786449.2076800466, 5759858.098654566], [786039.7341945036, 5759191.592995398]]}, "properties": {"id": "52915-52917-52919-52921-52923-52925-52927-52929-52931-52933-52935-52937-52939-52941-52943-52945-52947-52949-52951-52953-52959-52957", "from": "148800276", "to": "148800312", "length_m": 805.0677435874295, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786039.7341945036, 5759191.592995398], [786449.2076800466, 5759858.098654566]]}, "properties": {"id": "52956-52958-52954-52952-52950-52948-52946-52944-52942-52940-52938-52936-52934-52932-52930-52928-52926-52924-52922-52920-52918-52916", "from": "148800312", "to": "148800276", "length_m": 805.0677435874295, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759210.6545088034, 5730431.501375545], [759186.6332186171, 5730469.123640102]]}, "properties": {"id": "52963-52964-52965-52966", "from": "832509387", "to": "1976126541", "length_m": 44.84688383570675, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759194.6263838055, 5730415.164403433], [759099.1730296011, 5730375.89718942]]}, "properties": {"id": "52967-52969-52971-52973", "from": "312994166", "to": "312994169", "length_m": 103.53902236245062, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759099.1730296011, 5730375.89718942], [759194.6263838055, 5730415.164403433]]}, "properties": {"id": "52974-52972-52970-52968", "from": "312994169", "to": "312994166", "length_m": 103.53902236245062, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759099.1730296011, 5730375.89718942], [759031.6163597114, 5730226.947904871]]}, "properties": {"id": "52975-52977-52979", "from": "312994169", "to": "832507607", "length_m": 163.75336568924885, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759031.6163597114, 5730226.947904871], [759099.1730296011, 5730375.89718942]]}, "properties": {"id": "52980-52978-52976", "from": "832507607", "to": "312994169", "length_m": 163.75336568924885, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759031.6163597114, 5730226.947904871], [759007.5877634776, 5730156.957815283]]}, "properties": {"id": "52981", "from": "832507607", "to": "832508641", "length_m": 73.99990586922398, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759007.5877634776, 5730156.957815283], [759031.6163597114, 5730226.947904871]]}, "properties": {"id": "52982", "from": "832508641", "to": "832507607", "length_m": 73.99990586922398, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759007.5877634776, 5730156.957815283], [758994.2606383105, 5730120.221864604]]}, "properties": {"id": "52983-52985", "from": "832508641", "to": "832509924", "length_m": 39.080516496033226, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758994.2606383105, 5730120.221864604], [759007.5877634776, 5730156.957815283]]}, "properties": {"id": "52986-52984", "from": "832509924", "to": "832508641", "length_m": 39.080516496033226, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758994.2606383105, 5730120.221864604], [758936.6797323179, 5729942.593591478]]}, "properties": {"id": "52987-52989", "from": "832509924", "to": "312994256", "length_m": 186.89758087005495, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758936.6797323179, 5729942.593591478], [758994.2606383105, 5730120.221864604]]}, "properties": {"id": "52990-52988", "from": "312994256", "to": "832509924", "length_m": 186.89758087005495, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758936.6797323179, 5729942.593591478], [758916.9108498537, 5729835.354155907]]}, "properties": {"id": "52991-52993", "from": "312994256", "to": "809524581", "length_m": 109.12269630571025, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758916.9108498537, 5729835.354155907], [758936.6797323179, 5729942.593591478]]}, "properties": {"id": "52994-52992", "from": "809524581", "to": "312994256", "length_m": 109.12269630571025, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758916.9108498537, 5729835.354155907], [758897.6299925606, 5729763.9769954905]]}, "properties": {"id": "52995", "from": "809524581", "to": "832509193", "length_m": 73.93544807863286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758897.6299925606, 5729763.9769954905], [758916.9108498537, 5729835.354155907]]}, "properties": {"id": "52996", "from": "832509193", "to": "809524581", "length_m": 73.93544807863286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758897.6299925606, 5729763.9769954905], [758867.718741783, 5729709.810315088]]}, "properties": {"id": "52997-52999-53001", "from": "832509193", "to": "809526287", "length_m": 63.22882261069067, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758867.718741783, 5729709.810315088], [758897.6299925606, 5729763.9769954905]]}, "properties": {"id": "53002-53000-52998", "from": "809526287", "to": "832509193", "length_m": 63.22882261069067, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759216.131323684, 5730417.901745824], [759194.6263838055, 5730415.164403433]]}, "properties": {"id": "53003", "from": "1724462873", "to": "312994166", "length_m": 21.678456587598504, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818969.6970822226, 5823261.83143555], [818798.9650909746, 5823256.042617123]]}, "properties": {"id": "53004", "from": "303685798", "to": "1412762872", "length_m": 170.83009979065878, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759194.6263838055, 5730415.164403433], [759209.8687168894, 5730427.7156579355]]}, "properties": {"id": "53005-53006", "from": "312994166", "to": "1724462893", "length_m": 20.17580817056345, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793960.7759629488, 5775509.190758606], [794001.3611173193, 5775608.764783437]]}, "properties": {"id": "53007-53008-53009-53010-53011-53012-53013-53014-53015-53016-53017-53018", "from": "880404467", "to": "26755975", "length_m": 113.61316103077665, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818383.5041046061, 5821722.658374531], [817868.6513146348, 5821834.5112247765]]}, "properties": {"id": "53019-53020-53021-53022-53023-53024-53025-53026-53027-53028-53029-53030-53031-53032", "from": "34610823", "to": "1412763787", "length_m": 529.4424557514596, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788874.8706688373, 5766022.16001412], [789139.5284470604, 5766414.69423883]]}, "properties": {"id": "53033-53034-53035-53036-53037-53038-53039-53040-53041-53042-53043-53044-53045-53046-53047-53048-53049", "from": "827509566", "to": "4460066650", "length_m": 484.70722913787597, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817868.6513146348, 5821834.5112247765], [817045.3654273516, 5821903.038157165]]}, "properties": {"id": "53050-53051-49511-49512-49513-49514", "from": "1412763787", "to": "34610825", "length_m": 826.1427953152438, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816489.3410134153, 5821986.358529611], [817206.2659454034, 5821922.122163385]]}, "properties": {"id": "53069-53070-53071-53072", "from": "3367822892", "to": "59961468", "length_m": 719.8936771680549, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817206.2659454034, 5821922.122163385], [817987.1654747454, 5821857.558569857]]}, "properties": {"id": "53073-53074-34447-34448", "from": "59961468", "to": "1412779624", "length_m": 783.5769722090989, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800336.6028909878, 5784809.797461578], [799753.6089515297, 5784406.481815942]]}, "properties": {"id": "53079-53080-53081-53082-53083-53084-53085", "from": "27266296", "to": "867732178", "length_m": 710.0273252423365, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799753.6089515297, 5784406.481815942], [799323.318756271, 5784114.94202945]]}, "properties": {"id": "53086-25522-25646-25647-25648-25649", "from": "867732178", "to": "867732171", "length_m": 520.0471753665544, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832768.9823626431, 5804466.703226617], [833011.0100573318, 5804795.286675062]]}, "properties": {"id": "53098-53099-53100-53101-53102-53103-53104-53105-53106-53107-53108-53135-53136-57171-57172-57173-57174-57175-57176-57177-57178-57179-57180-57181-57182-57183-57184-57185-57186", "from": "825699520", "to": "254239173", "length_m": 549.6506609240068, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833034.5373992644, 5804689.088448403], [832920.3059213652, 5804724.935268931]]}, "properties": {"id": "53109-53110-53111-53112-53113-53114-53115", "from": "1745493160", "to": "1745493191", "length_m": 122.26333678207014, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832891.4226020027, 5804713.053066495], [832804.4911057143, 5804707.628166513]]}, "properties": {"id": "53117-53118-53119-53120-53121-53122", "from": "1745493156", "to": "1745493118", "length_m": 88.25151255376437, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833034.5373992644, 5804689.088448403], [832891.4226020027, 5804713.053066495]]}, "properties": {"id": "53125-53126-53127-53128-53129", "from": "1745493160", "to": "1745493156", "length_m": 145.11429735051212, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832920.3059213652, 5804724.935268931], [832921.7209367836, 5804753.076171871]]}, "properties": {"id": "53130-53131-53132-53133", "from": "1745493191", "to": "1745493158", "length_m": 28.656096828530814, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832814.012822253, 5804740.210402605], [832835.8756561235, 5804736.399339156]]}, "properties": {"id": "53134", "from": "1745518668", "to": "1745493180", "length_m": 22.19251464972427, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794033.8859067227, 5776871.240964768], [794123.1008736282, 5776371.906920165]]}, "properties": {"id": "53145-53146-53147-53148-53149-53150-53151-53152-53153-53154-53155-53156-53157-53158-53159-53160-57065-57066-57067-57068", "from": "867695762", "to": "26756061", "length_m": 537.9974640970182, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794132.8268144501, 5777497.521066876], [794205.2736740815, 5777905.392251887]]}, "properties": {"id": "53167-53168-53169-53170-53171-53172-53173-53174-53175-53176-53177-53178-53179", "from": "5711728465", "to": "252359226", "length_m": 414.2970585414991, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832358.4137586583, 5803077.138244425], [832589.9063415993, 5804077.620864481]]}, "properties": {"id": "53183-53184-53185-53186-53187-53188-53189-53190-53191", "from": "293318484", "to": "593267455", "length_m": 1026.9480868301544, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832589.9063415993, 5804077.620864481], [832768.9823626431, 5804466.703226617]]}, "properties": {"id": "53192-53193-53194-53195-53196-53197-53198-53199-53200-53201-53202-53203-53204-53205-53206-53207-53208-53209-53210", "from": "593267455", "to": "825699520", "length_m": 434.00520077534526, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758893.903902013, 5730737.660314536], [758811.1866396962, 5730854.378697927]]}, "properties": {"id": "5320-5318-5316-5314-5312-5310-5308-5306-5304-5302-5300-5298-5296-5294-5292", "from": "832509934", "to": "832509302", "length_m": 284.45548105114244, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758893.903902013, 5730737.660314536], [758931.2005810519, 5730716.198963979]]}, "properties": {"id": "5321-5323-5325", "from": "832509934", "to": "832510289", "length_m": 46.6375295387883, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832768.9823626431, 5804466.703226617], [833541.0060984937, 5804933.290794583]]}, "properties": {"id": "53211-53212-53213-53214-53215-53216-53217-53218-53219-53116-53123", "from": "825699520", "to": "1745493186", "length_m": 905.6868285015292, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833657.2207092715, 5804958.110704516], [833104.5251600896, 5804660.27321292]]}, "properties": {"id": "53221-53222-53220", "from": "253337672", "to": "29321143", "length_m": 627.9280444110034, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832835.8756561235, 5804736.399339156], [832921.7209367836, 5804753.076171871]]}, "properties": {"id": "53223-53224-53225-53226-53227-53228-53229-53230", "from": "1745493180", "to": "1745493158", "length_m": 90.3525473376209, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833157.1845438138, 5804773.675478286], [833541.0060984937, 5804933.290794583]]}, "properties": {"id": "53231-53232-53233-53234-53235-53236-53237-53238-53239-53240", "from": "1745493123", "to": "1745493186", "length_m": 419.77721904991904, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751794.9890976109, 5840292.389579629], [751796.059391847, 5840283.3595119435]]}, "properties": {"id": "53241", "from": "356613593", "to": "1140362179", "length_m": 9.093275110301377, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751783.1632370076, 5840285.350391282], [751781.6663780427, 5840295.770807716]]}, "properties": {"id": "53244", "from": "2282481505", "to": "364001283", "length_m": 10.527376947118801, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831255.8714201404, 5821532.373182299], [831234.8425004986, 5821536.964387072]]}, "properties": {"id": "53245", "from": "309587595", "to": "26118249", "length_m": 21.52427976127448, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837162.9985461768, 5806576.96070029], [837053.0857991101, 5806517.334295152]]}, "properties": {"id": "53246-53247-53248-53249-53250-53251", "from": "2100854657", "to": "254257349", "length_m": 133.8884298136048, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831260.5546779471, 5821558.135930834], [831549.1417266962, 5821500.1465720665]]}, "properties": {"id": "53252-3227-3228", "from": "26032502", "to": "605203284", "length_m": 294.3679106496384, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794232.5176832967, 5771828.497638156], [794023.365711736, 5771913.8114287015]]}, "properties": {"id": "53253-53254", "from": "1967618657", "to": "705048767", "length_m": 225.88269084484435, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794023.365711736, 5771913.8114287015], [793724.1303478049, 5772035.856346935]]}, "properties": {"id": "53255-53256-4881-4882-4964-4965", "from": "705048767", "to": "705048771", "length_m": 323.1668656491397, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837162.9985461768, 5806576.96070029], [837061.9228350432, 5806573.181982636]]}, "properties": {"id": "53257-53258", "from": "2100854657", "to": "254228085", "length_m": 101.20708668510781, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791256.2845936441, 5777151.427116953], [791232.5168108785, 5777124.09297916]]}, "properties": {"id": "53259-53260-53261", "from": "318028182", "to": "318035114", "length_m": 36.30634954537818, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758931.2005810519, 5730716.198963979], [758893.903902013, 5730737.660314536]]}, "properties": {"id": "5326-5324-5322", "from": "832510289", "to": "832509934", "length_m": 46.6375295387883, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791232.5168108785, 5777124.09297916], [791149.4185713574, 5776749.711024446]]}, "properties": {"id": "53262-53263-53264-53265-53266-53267-53268-53269", "from": "318035114", "to": "318028144", "length_m": 388.3432373314087, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786026.117488208, 5757998.74557687], [785966.9647258332, 5757973.932352598]]}, "properties": {"id": "53270-53272-53274-53276-53278-53280-53282-53284-53286-53288-53290", "from": "5604781747", "to": "5604780759", "length_m": 65.55417256745653, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785966.9647258332, 5757973.932352598], [786026.117488208, 5757998.74557687]]}, "properties": {"id": "53291-53289-53287-53285-53283-53281-53279-53277-53275-53273-53271", "from": "5604780759", "to": "5604781747", "length_m": 65.55417256745653, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818084.3647461827, 5822964.704454472], [817971.9593548009, 5822720.877739355]]}, "properties": {"id": "53292-53293-53294-53295-53296-53297-53298-53299-53300", "from": "174713243", "to": "1412762932", "length_m": 273.5086952735588, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759130.4288438923, 5730915.246429214], [759174.5272627621, 5730946.731075346]]}, "properties": {"id": "5330", "from": "832508590", "to": "832510279", "length_m": 54.18443943819632, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817971.9593548009, 5822720.877739355], [817905.7917493938, 5822390.904582992]]}, "properties": {"id": "53301-53302-53303-53304-53305-53306-53307-53308-53309", "from": "1412762932", "to": "174717943", "length_m": 340.32134082514585, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759174.5272627621, 5730946.731075346], [759130.4288438923, 5730915.246429214]]}, "properties": {"id": "5331", "from": "832510279", "to": "832508590", "length_m": 54.18443943819632, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794276.6204831498, 5778309.435107843], [794277.4521924318, 5778313.973076944]]}, "properties": {"id": "53310", "from": "502710903", "to": "3953492257", "length_m": 4.613556527890375, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794277.4521924318, 5778313.973076944], [794359.5641782114, 5778745.701382748]]}, "properties": {"id": "53311-55531-55532-55533-55534-55466-55467", "from": "3953492257", "to": "621549704", "length_m": 439.49359026410445, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835510.4447702856, 5806902.489860088], [835929.4421901386, 5806453.119370765]]}, "properties": {"id": "53312-53313-53314-53315-53316-53317-53318-53319-53320-53321-53322-53323-53324-53325-53326", "from": "26476043", "to": "2100690846", "length_m": 623.296028322625, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759174.5272627621, 5730946.731075346], [759341.6089888769, 5731051.013211661]]}, "properties": {"id": "5332-5334", "from": "832510279", "to": "832508493", "length_m": 197.13401384578256, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835929.4421901386, 5806453.119370765], [835333.8402531213, 5805858.897459114]]}, "properties": {"id": "53327-30358-30359-30360-30361-30362-30363-33931-33932-33933-33934-33935-33936-33929-33930-14666-14667-14668-14669-14670-14671-14672-14673-14674-14675-14676", "from": "2100690846", "to": "29321158", "length_m": 902.1144319145747, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794300.9912578121, 5778295.260500646], [794299.469622182, 5778287.190854435]]}, "properties": {"id": "53328", "from": "621549604", "to": "2802468202", "length_m": 8.211855145194509, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833811.3883762127, 5806423.52716631], [833809.7370994396, 5806412.630672406]]}, "properties": {"id": "53329", "from": "1537726926", "to": "1537726625", "length_m": 11.020902606604668, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833809.7370994396, 5806412.630672406], [833811.3883762127, 5806423.52716631]]}, "properties": {"id": "53330", "from": "1537726625", "to": "1537726926", "length_m": 11.020902606604668, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835081.3798068287, 5806228.499215582], [835002.8677418549, 5806239.497895848]]}, "properties": {"id": "53331", "from": "1537726864", "to": "254238565", "length_m": 79.27871886362072, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835002.8677418549, 5806239.497895848], [835081.3798068287, 5806228.499215582]]}, "properties": {"id": "53332", "from": "254238565", "to": "1537726864", "length_m": 79.27871886362072, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795512.5371962704, 5829791.410797286], [795161.1499249873, 5830233.815800991]]}, "properties": {"id": "53339-53340-53341-53342-53343", "from": "317107859", "to": "317108030", "length_m": 570.2801874261941, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795161.1499249873, 5830233.815800991], [794831.1076897566, 5830971.458689619]]}, "properties": {"id": "53344-53345-53346", "from": "317108030", "to": "35095648", "length_m": 808.1745098858777, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794831.1076897566, 5830971.458689619], [794446.1386688472, 5831528.776923954]]}, "properties": {"id": "53347-53348-53349-53350-53351-53352-53353", "from": "35095648", "to": "317108057", "length_m": 680.1520451013266, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759341.6089888769, 5731051.013211661], [759174.5272627621, 5730946.731075346]]}, "properties": {"id": "5335-5333", "from": "832508493", "to": "832510279", "length_m": 197.13401384578256, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794446.1386688472, 5831528.776923954], [794047.8099833208, 5831853.656001981]]}, "properties": {"id": "53354-53355-53356", "from": "317108057", "to": "317108128", "length_m": 515.01402877538, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794047.8099833208, 5831853.656001981], [793427.8746411428, 5832232.224318242]]}, "properties": {"id": "53357-53358-53359", "from": "317108128", "to": "35095651", "length_m": 726.3861589440751, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838799.2078336844, 5806558.862934565], [838762.1326635845, 5806587.870160166]]}, "properties": {"id": "5336-5337-5327-5328-5329", "from": "244891985", "to": "2099022778", "length_m": 49.596462871760025, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793427.8746411428, 5832232.224318242], [792368.5766337909, 5832302.633234998]]}, "properties": {"id": "53360-53361-53362-53363-53364-53365-53366-53367-53368-53369-53370-53371-53372-53373-53374-23934-23935-23891-23892-23893-23894-23895-23896-23897-23898-23899-23900", "from": "35095651", "to": "174742065", "length_m": 1105.2729503598134, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833976.5896664225, 5806399.318396719], [833974.8839838662, 5806388.390767297]]}, "properties": {"id": "53375", "from": "1537726839", "to": "1537726853", "length_m": 11.059947450901289, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833974.8839838662, 5806388.390767297], [833976.5896664225, 5806399.318396719]]}, "properties": {"id": "53376", "from": "1537726853", "to": "1537726839", "length_m": 11.059947450901289, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833614.9826871083, 5806452.280658141], [833613.3569325394, 5806442.005795076]]}, "properties": {"id": "53377", "from": "1537726774", "to": "1537726593", "length_m": 10.402686616436846, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833613.3569325394, 5806442.005795076], [833614.9826871083, 5806452.280658141]]}, "properties": {"id": "53378", "from": "1537726593", "to": "1537726774", "length_m": 10.402686616436846, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833515.528733209, 5806467.128948106], [833513.8654167642, 5806456.577623215]]}, "properties": {"id": "53379", "from": "1537726653", "to": "353638698", "length_m": 10.681623399270595, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789181.2949635691, 5766412.837050422], [788909.6479653236, 5766033.645602863]]}, "properties": {"id": "5338-5339-5340-5341-5342-5343-5344-5345-5346-5347-5348-5349-5350-5351-5352-5353", "from": "318558980", "to": "1611301414", "length_m": 477.3099691374512, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833513.8654167642, 5806456.577623215], [833515.528733209, 5806467.128948106]]}, "properties": {"id": "53380", "from": "353638698", "to": "1537726653", "length_m": 10.681623399270595, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788967.162868608, 5773735.794050696], [789493.6501131403, 5774066.58089362]]}, "properties": {"id": "53388-53389-53390-53391-53392-53393", "from": "318036316", "to": "318036322", "length_m": 632.078636807895, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789493.6501131403, 5774066.58089362], [790355.349930644, 5774453.026555963]]}, "properties": {"id": "53394-54518-54519-54520-54494-54495-54496", "from": "318036322", "to": "318036330", "length_m": 957.0557983706403, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789034.7110244487, 5773770.900120433], [788892.5527376696, 5773379.735624801]]}, "properties": {"id": "53395-53396-53397-53398-53399-53400-53401-53402", "from": "318835558", "to": "428721708", "length_m": 422.05482768637455, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833737.1615970598, 5806434.328088291], [833735.5609933664, 5806423.3739340175]]}, "properties": {"id": "53403", "from": "1537726855", "to": "1537726834", "length_m": 11.070475499884877, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833735.5609933664, 5806423.3739340175], [833737.1615970598, 5806434.328088291]]}, "properties": {"id": "53404", "from": "1537726834", "to": "1537726855", "length_m": 11.070475499884877, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833208.6607984623, 5806513.990812782], [833515.528733209, 5806467.128948106]]}, "properties": {"id": "53427-53428-53429-53430-53431-53432", "from": "288439943", "to": "1537726653", "length_m": 310.56552417570015, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833515.528733209, 5806467.128948106], [833614.9826871083, 5806452.280658141]]}, "properties": {"id": "53435-53436", "from": "1537726653", "to": "1537726774", "length_m": 100.55662196858287, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829233.245843824, 5801773.481681827], [828283.956380235, 5801513.193088238]]}, "properties": {"id": "53437-53438-53439-53440-53441-53442-53443-53444-53445-53446-53447-53448-53449-53450-53451-53452-48605-48606-22482-22483-22484-22485-22486-22487-22488-22489-22490-22491-22492-22493", "from": "125301103", "to": "34219992", "length_m": 1116.4647431555268, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833974.8839838662, 5806388.390767297], [833950.3934437409, 5806391.888760837]]}, "properties": {"id": "53453", "from": "1537726853", "to": "1537726866", "length_m": 24.73908870666584, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833950.3934437409, 5806391.888760837], [833809.7370994396, 5806412.630672406]]}, "properties": {"id": "53454", "from": "1537726866", "to": "1537726625", "length_m": 142.1774733363639, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833809.7370994396, 5806412.630672406], [833735.5609933664, 5806423.3739340175]]}, "properties": {"id": "53455", "from": "1537726625", "to": "1537726834", "length_m": 74.95006562152443, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833735.5609933664, 5806423.3739340175], [833689.8620773914, 5806430.190515437]]}, "properties": {"id": "53456", "from": "1537726834", "to": "1537726655", "length_m": 46.20450937522033, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833689.8620773914, 5806430.190515437], [833613.3569325394, 5806442.005795076]]}, "properties": {"id": "53457", "from": "1537726655", "to": "1537726593", "length_m": 77.41213066639708, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765840.397476858, 5764273.292603728], [766371.1918535376, 5764434.551501552]]}, "properties": {"id": "53458-43148-43149", "from": "1852770876", "to": "2379163053", "length_m": 554.9583628444885, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833613.3569325394, 5806442.005795076], [833513.8654167642, 5806456.577623215]]}, "properties": {"id": "53459", "from": "1537726593", "to": "353638698", "length_m": 100.55297017049799, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837076.5582440456, 5806661.127938522], [837123.0659119601, 5806657.005845306]]}, "properties": {"id": "53460-53461", "from": "254228084", "to": "254257339", "length_m": 46.68998622624724, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837123.0659119601, 5806657.005845306], [837521.6541717965, 5806617.057891537]]}, "properties": {"id": "53462-53463-53464-53465-53466", "from": "254257339", "to": "3323284480", "length_m": 400.6803116463326, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753601.2743447847, 5740775.588760565], [752592.8000918655, 5740930.400289471]]}, "properties": {"id": "53467-53469-53471-53473-53475-53477-53479-53481-53483-53485-53487-53489-53491-53493-53495-53497", "from": "5607598663", "to": "5607598647", "length_m": 1068.314440112523, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752592.8000918655, 5740930.400289471], [753601.2743447847, 5740775.588760565]]}, "properties": {"id": "53498-53496-53494-53492-53490-53488-53486-53484-53482-53480-53478-53476-53474-53472-53470-53468", "from": "5607598647", "to": "5607598663", "length_m": 1068.314440112523, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834902.6961150325, 5817543.2830037465], [834027.7866649952, 5817625.939208036]]}, "properties": {"id": "53500-53501-53502-59311-59266-59267-59268-59269-46750-46751-46752-14270-2263-46753-46754-46755-46756-46757-46758-46759-46760-46761-46762-46763-14243", "from": "309809588", "to": "601357373", "length_m": 879.8106163977166, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770655.0841481751, 5738363.129867998], [770873.9993888125, 5738221.331795187]]}, "properties": {"id": "53503", "from": "336707180", "to": "1737115065", "length_m": 260.82671644754504, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770873.9993888125, 5738221.331795187], [770655.0841481751, 5738363.129867998]]}, "properties": {"id": "53504", "from": "1737115065", "to": "336707180", "length_m": 260.82671644754504, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747435.497749371, 5757935.0659528235], [746346.6726443688, 5757840.936954881]]}, "properties": {"id": "53505-42456-42458-42460", "from": "917801348", "to": "5817973355", "length_m": 1094.4072551505833, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789850.9247539507, 5753382.4404130755], [789863.2141683366, 5753345.5212786365]]}, "properties": {"id": "53510-53508-50334", "from": "5421457450", "to": "5421457447", "length_m": 63.05256777066857, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789850.9247539507, 5753382.4404130755], [789863.2141683366, 5753345.5212786365]]}, "properties": {"id": "53511-53513-53515-53517-53519", "from": "5421457450", "to": "5421457447", "length_m": 50.83606374189152, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789863.2141683366, 5753345.5212786365], [789850.9247539507, 5753382.4404130755]]}, "properties": {"id": "53520-53518-53516-53514-53512", "from": "5421457447", "to": "5421457450", "length_m": 50.83606374189152, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789973.1302866775, 5753485.682421386], [789917.8242230773, 5753495.127436656]]}, "properties": {"id": "53521", "from": "5956023053", "to": "5956023054", "length_m": 56.106764033347304, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789917.8242230773, 5753495.127436656], [789973.1302866775, 5753485.682421386]]}, "properties": {"id": "53522", "from": "5956023054", "to": "5956023053", "length_m": 56.106764033347304, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792326.3672276869, 5754872.849411511], [792408.1182865256, 5754857.240233722]]}, "properties": {"id": "53523", "from": "5670261059", "to": "5670261058", "length_m": 83.22789211563257, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792408.1182865256, 5754857.240233722], [792326.3672276869, 5754872.849411511]]}, "properties": {"id": "53524", "from": "5670261058", "to": "5670261059", "length_m": 83.22789211563257, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792408.1182865256, 5754857.240233722], [792490.4507973897, 5754841.731398375]]}, "properties": {"id": "53525", "from": "5670261058", "to": "5670261057", "length_m": 83.78046481280464, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792490.4507973897, 5754841.731398375], [792408.1182865256, 5754857.240233722]]}, "properties": {"id": "53526", "from": "5670261057", "to": "5670261058", "length_m": 83.78046481280464, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750939.2160929893, 5746430.0834165905], [750951.692528015, 5746076.153166712]]}, "properties": {"id": "53527-53529-53531-53533-53535-53537-53539-53541-53543-53545-53547-53549-53551-53553-53555-53557-53559", "from": "333977501", "to": "917854715", "length_m": 362.96044900457923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750951.692528015, 5746076.153166712], [750939.2160929893, 5746430.0834165905]]}, "properties": {"id": "53560-53558-53556-53554-53552-53550-53548-53546-53544-53542-53540-53538-53536-53534-53532-53530-53528", "from": "917854715", "to": "333977501", "length_m": 362.96044900457923, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833689.8620773914, 5806430.190515437], [833691.4303395291, 5806441.001435753]]}, "properties": {"id": "53561", "from": "1537726655", "to": "1537726596", "length_m": 10.924076349124803, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833691.4303395291, 5806441.001435753], [833689.8620773914, 5806430.190515437]]}, "properties": {"id": "53562", "from": "1537726596", "to": "1537726655", "length_m": 10.924076349124803, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836253.7924046852, 5806054.257506223], [835649.9734997075, 5806152.733548442]]}, "properties": {"id": "53563-53565-53567-53569-53571-53573-53575-53577-53579-53581-53583-53585-53587-53589-53591-53593-53595-50670", "from": "1537726915", "to": "254238018", "length_m": 618.2739865355848, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762444.4467332016, 5764308.19084525], [762642.9203420238, 5764329.543566128]]}, "properties": {"id": "53597-53599-53601", "from": "1852769491", "to": "1852769484", "length_m": 200.24442653501617, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762642.9203420238, 5764329.543566128], [762444.4467332016, 5764308.19084525]]}, "properties": {"id": "53602-53600-53598", "from": "1852769484", "to": "1852769491", "length_m": 200.24442653501617, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762642.9203420238, 5764329.543566128], [762962.1701195902, 5764303.226149406]]}, "properties": {"id": "53603-53605-53607-53609-53611", "from": "1852769484", "to": "1852769489", "length_m": 322.5515302796854, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762962.1701195902, 5764303.226149406], [762642.9203420238, 5764329.543566128]]}, "properties": {"id": "53612-53610-53608-53606-53604", "from": "1852769489", "to": "1852769484", "length_m": 322.5515302796854, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762699.2677161302, 5763929.322170627], [762747.0243527251, 5763928.3279205775]]}, "properties": {"id": "53613-53615-53617", "from": "1852769526", "to": "1852769523", "length_m": 48.09282249200261, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762747.0243527251, 5763928.3279205775], [762699.2677161302, 5763929.322170627]]}, "properties": {"id": "53618-53616-53614", "from": "1852769523", "to": "1852769526", "length_m": 48.09282249200261, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762747.0243527251, 5763928.3279205775], [762894.4121219954, 5763925.576423416]]}, "properties": {"id": "53619-53621-53623-53625", "from": "1852769523", "to": "1852769522", "length_m": 148.34141576694424, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762894.4121219954, 5763925.576423416], [762747.0243527251, 5763928.3279205775]]}, "properties": {"id": "53626-53624-53622-53620", "from": "1852769522", "to": "1852769523", "length_m": 148.34141576694424, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836443.314286815, 5806021.962886101], [836440.2879932945, 5806030.326598107]]}, "properties": {"id": "53653", "from": "1537726656", "to": "1537726893", "length_m": 8.894387632591734, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833513.8654167642, 5806456.577623215], [833206.3454892606, 5806493.013871202]]}, "properties": {"id": "53654-53655-53656-53657-53658-53659-53660-53661", "from": "353638698", "to": "5230414512", "length_m": 311.0961417163297, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762821.340243181, 5764000.914540907], [762747.0243527251, 5763928.3279205775]]}, "properties": {"id": "53662-53664-53666-53668-53670-53672-53674-53676-53678", "from": "1852769502", "to": "1852769523", "length_m": 133.9556377053127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762747.0243527251, 5763928.3279205775], [762821.340243181, 5764000.914540907]]}, "properties": {"id": "53679-53677-53675-53673-53671-53669-53667-53665-53663", "from": "1852769523", "to": "1852769502", "length_m": 133.9556377053127, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835002.8677418549, 5806239.497895848], [834982.8308828734, 5806242.116793818]]}, "properties": {"id": "53680", "from": "254238565", "to": "1537726758", "length_m": 20.207284348143162, "freespeed_mps": 19.444444444444443, "capacity_vph": 2250.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834982.8308828734, 5806242.116793818], [835002.8677418549, 5806239.497895848]]}, "properties": {"id": "53681", "from": "1537726758", "to": "254238565", "length_m": 20.207284348143162, "freespeed_mps": 19.444444444444443, "capacity_vph": 2250.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762642.9203420238, 5764329.543566128], [761821.0241033116, 5764743.3520999085]]}, "properties": {"id": "53682-53684-53686-53688-53690-53692-53694-53696-53698-53700-53702", "from": "1852769484", "to": "1852769453", "length_m": 1046.570279658473, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761821.0241033116, 5764743.3520999085], [762642.9203420238, 5764329.543566128]]}, "properties": {"id": "53703-53701-53699-53697-53695-53693-53691-53689-53687-53685-53683", "from": "1852769453", "to": "1852769484", "length_m": 1046.570279658473, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836552.9254412146, 5806006.317087762], [836554.0719584909, 5806013.631333584]]}, "properties": {"id": "53705", "from": "573105376", "to": "1537726679", "length_m": 7.403559528872465, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836554.0719584909, 5806013.631333584], [836552.9254412146, 5806006.317087762]]}, "properties": {"id": "53706", "from": "1537726679", "to": "573105376", "length_m": 7.403559528872465, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835106.3713547278, 5806224.754924854], [835081.3798068287, 5806228.499215582]]}, "properties": {"id": "53707", "from": "1537726744", "to": "1537726864", "length_m": 25.27048030867368, "freespeed_mps": 19.444444444444443, "capacity_vph": 2250.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835081.3798068287, 5806228.499215582], [835106.3713547278, 5806224.754924854]]}, "properties": {"id": "53708", "from": "1537726864", "to": "1537726744", "length_m": 25.27048030867368, "freespeed_mps": 19.444444444444443, "capacity_vph": 2250.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750832.7573601408, 5836407.90218697], [750784.872672224, 5836405.296861891]]}, "properties": {"id": "53709-53710-53711-53712", "from": "363993774", "to": "3205831189", "length_m": 48.16031023777032, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750784.872672224, 5836405.296861891], [749538.6351753252, 5836201.582524457]]}, "properties": {"id": "53713-53714-53715-53716-53717-29659-29658-29663-25123-25613-30710-30723-32449-28545-23527-23528-23529-23530", "from": "3205831189", "to": "363996473", "length_m": 1263.7825792736332, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833950.3934437409, 5806391.888760837], [833952.1726933788, 5806402.891234826]]}, "properties": {"id": "53740", "from": "1537726866", "to": "1537726843", "length_m": 11.145409953658627, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833952.1726933788, 5806402.891234826], [833950.3934437409, 5806391.888760837]]}, "properties": {"id": "53741", "from": "1537726843", "to": "1537726866", "length_m": 11.145409953658627, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834982.8308828734, 5806242.116793818], [834140.3289491129, 5806364.769126819]]}, "properties": {"id": "53742-53744-53746-53748-53750-53752-53754-53756-53758-53760-53762", "from": "1537726758", "to": "353638688", "length_m": 851.435787115541, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758698.7249623482, 5730522.07689662], [758955.8252094265, 5730567.612865845]]}, "properties": {"id": "5375-5373-5371-5369-5367-5365-5363-5361-5359-5357-5355-3097-3095-3093-4877-4875-4873-4871-4869-4528-4526-4524", "from": "832508541", "to": "832507812", "length_m": 768.8691506637766, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759290.7796184183, 5729353.049968338], [759300.169122386, 5729362.490433647]]}, "properties": {"id": "5376-5377-5378-5379", "from": "832508660", "to": "832509022", "length_m": 295.43396691792896, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834140.3289491129, 5806364.769126819], [834982.8308828734, 5806242.116793818]]}, "properties": {"id": "53763-53761-53759-53757-53755-53753-53751-53749-53747-53745-53743", "from": "353638688", "to": "1537726758", "length_m": 851.435787115541, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752049.0157286815, 5838384.778248543], [752072.1513283527, 5838517.295753878]]}, "properties": {"id": "53764-53766", "from": "1840300860", "to": "363998609", "length_m": 134.5219134901958, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752072.1513283527, 5838517.295753878], [752049.0157286815, 5838384.778248543]]}, "properties": {"id": "53767-53765", "from": "363998609", "to": "1840300860", "length_m": 134.5219134901958, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836448.2764903512, 5806028.9873277685], [836554.0719584909, 5806013.631333584]]}, "properties": {"id": "53768", "from": "1537726641", "to": "1537726679", "length_m": 106.90410442114863, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836554.0719584909, 5806013.631333584], [836582.5157252252, 5806005.69333309]]}, "properties": {"id": "53769", "from": "1537726679", "to": "1537726732", "length_m": 29.530657150941416, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836402.3958903878, 5806028.087543443], [836404.1889481007, 5806035.686654037]]}, "properties": {"id": "53770", "from": "573105362", "to": "1537726802", "length_m": 7.807786990810647, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836404.1889481007, 5806035.686654037], [836402.3958903878, 5806028.087543443]]}, "properties": {"id": "53771", "from": "1537726802", "to": "573105362", "length_m": 7.807786990810647, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836582.5157252252, 5806005.69333309], [836552.9254412146, 5806006.317087762]]}, "properties": {"id": "53773", "from": "1537726732", "to": "573105376", "length_m": 29.59685740061009, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836552.9254412146, 5806006.317087762], [836443.314286815, 5806021.962886101]]}, "properties": {"id": "53774", "from": "573105376", "to": "1537726656", "length_m": 110.7221571135306, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804488.6887591239, 5786836.216263715], [804385.3094776159, 5786799.791307442]]}, "properties": {"id": "53775-53776-53777-53778-53779-53780-53781-53782-53783-37728-37729-37730", "from": "616936293", "to": "476313228", "length_m": 327.19495542952814, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835356.670875837, 5819465.239809204], [835377.7958358398, 5819565.020715471]]}, "properties": {"id": "53784-53785-53786-53787-53788-53789-53790", "from": "583087209", "to": "2915467075", "length_m": 109.6937424313087, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785762.0917237995, 5757881.732962424], [785966.9647258332, 5757973.932352598]]}, "properties": {"id": "53792-53794-53796-53798-53800-53802-53804-53806-53808-53810-53812-53814-53816-53818-53820-53822-53824-53826", "from": "5604780777", "to": "5604780759", "length_m": 246.60744230857068, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759685.0317551803, 5731388.358592299], [759679.6669779215, 5731366.643308126]]}, "properties": {"id": "5380", "from": "832509914", "to": "832508745", "length_m": 22.36815596113078, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759679.6669779215, 5731366.643308126], [759685.0317551803, 5731388.358592299]]}, "properties": {"id": "5381", "from": "832508745", "to": "832509914", "length_m": 22.36815596113078, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759679.6669779215, 5731366.643308126], [759591.217734079, 5731298.031228797]]}, "properties": {"id": "5382-5384-5386", "from": "832508745", "to": "832508270", "length_m": 116.23928036803117, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785966.9647258332, 5757973.932352598], [785762.0917237995, 5757881.732962424]]}, "properties": {"id": "53827-53825-53823-53821-53819-53817-53815-53813-53811-53809-53807-53805-53803-53801-53799-53797-53795-53793", "from": "5604780759", "to": "5604780777", "length_m": 246.60744230857068, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785966.9647258332, 5757973.932352598], [785969.8740920565, 5758096.748816954]]}, "properties": {"id": "53828-53830-53832-53834-53836-53838-53840", "from": "5604780759", "to": "5604780752", "length_m": 123.17131726882592, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785969.8740920565, 5758096.748816954], [785966.9647258332, 5757973.932352598]]}, "properties": {"id": "53841-53839-53837-53835-53833-53831-53829", "from": "5604780752", "to": "5604780759", "length_m": 123.17131726882592, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791402.2874144915, 5754577.697139746], [791397.5412250035, 5754567.276218947]]}, "properties": {"id": "53842", "from": "518259899", "to": "518259902", "length_m": 11.450847313872847, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759591.217734079, 5731298.031228797], [759679.6669779215, 5731366.643308126]]}, "properties": {"id": "5387-5385-5383", "from": "832508270", "to": "832508745", "length_m": 116.23928036803117, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832188.259373913, 5808283.802452886], [831832.2139336081, 5808323.875945105]]}, "properties": {"id": "5388-5389-35183-35184-35185-35186-35187", "from": "353642926", "to": "75155397", "length_m": 360.53997472199563, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798061.6017546318, 5826131.950308155], [798772.4932869412, 5826044.211909806]]}, "properties": {"id": "5393-5394-5395-5396-5397-32113", "from": "317107499", "to": "175089846", "length_m": 731.1053741143121, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777590.539280391, 5760897.2351447875], [776689.3033882666, 5761067.401069263]]}, "properties": {"id": "53941", "from": "474069825", "to": "474069836", "length_m": 917.1600581506949, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776689.3033882666, 5761067.401069263], [777590.539280391, 5760897.2351447875]]}, "properties": {"id": "53942", "from": "474069836", "to": "474069825", "length_m": 917.1600581506949, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777743.259646249, 5762440.045831868], [777784.0317871785, 5762671.669771375]]}, "properties": {"id": "53943", "from": "475575487", "to": "474069775", "length_m": 235.18506922093727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777784.0317871785, 5762671.669771375], [777743.259646249, 5762440.045831868]]}, "properties": {"id": "53944", "from": "474069775", "to": "475575487", "length_m": 235.18506922093727, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759186.6332186171, 5730469.123640102], [759171.5581210997, 5730497.878448516]]}, "properties": {"id": "53945-53947-53949", "from": "1976126541", "to": "75308689", "length_m": 32.93605996601431, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759171.5581210997, 5730497.878448516], [759186.6332186171, 5730469.123640102]]}, "properties": {"id": "53950-53948-53946", "from": "75308689", "to": "1976126541", "length_m": 32.93605996601431, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759186.6332186171, 5730469.123640102], [759221.1452632047, 5730437.995225998]]}, "properties": {"id": "53951-53952-53953", "from": "1976126541", "to": "832508970", "length_m": 46.477695338928655, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752528.2968443686, 5843509.463637561], [753103.9541326783, 5843256.138433728]]}, "properties": {"id": "53959-53960-53961-53962-53963-53964-53965", "from": "3953260901", "to": "291556149", "length_m": 632.8602071040698, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753103.9541326783, 5843256.138433728], [753634.3436057338, 5842637.490674095]]}, "properties": {"id": "53966-53967-53968-53969-48578", "from": "291556149", "to": "1667976026", "length_m": 821.9784632481782, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791405.4596949739, 5754606.380653517], [791407.6621289263, 5754593.641574452]]}, "properties": {"id": "53976", "from": "2548347251", "to": "518259886", "length_m": 12.928064464609314, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759230.5628637318, 5730424.545810781], [759242.2483415564, 5730402.43398781]]}, "properties": {"id": "53978-53979", "from": "832507845", "to": "75308704", "length_m": 25.07219708216411, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833632.5357206455, 5810958.431863496], [833523.7411463179, 5810337.83747204]]}, "properties": {"id": "53980-53981-53982-53983-53984-53985-53986-53987-53988-53989-53990", "from": "1843397641", "to": "268169805", "length_m": 632.7078809944478, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833523.7411463179, 5810337.83747204], [833690.1298390816, 5809790.125426516]]}, "properties": {"id": "53991-53992-53993-53994-53995-53996-53997-53998-53999-54000-54001-54002-54003-54004-54005-54006-54007-7442-7443", "from": "268169805", "to": "26475875", "length_m": 590.6348668875025, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759242.2483415564, 5730402.43398781], [759221.9790320438, 5730417.379132754]]}, "properties": {"id": "54009-54010-54011", "from": "75308704", "to": "2220026250", "length_m": 25.244728200623488, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785471.0864013715, 5754078.1221365845], [785362.0386514103, 5754094.759439745]]}, "properties": {"id": "54012-54013", "from": "1708406428", "to": "1708406362", "length_m": 110.31270315193518, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831240.3626103095, 5821562.226564094], [831260.5546779471, 5821558.135930834]]}, "properties": {"id": "54014", "from": "309587586", "to": "26032502", "length_m": 20.602254114296237, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786220.967493108, 5753938.55646854], [786960.6308137961, 5753801.460716687]]}, "properties": {"id": "54018-54016-25700", "from": "5984995359", "to": "2833518552", "length_m": 752.2637485371756, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786220.967493108, 5753938.55646854], [785471.0864013715, 5754078.1221365845]]}, "properties": {"id": "54019", "from": "5984995359", "to": "1708406428", "length_m": 762.7583006013298, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785471.0864013715, 5754078.1221365845], [786220.967493108, 5753938.55646854]]}, "properties": {"id": "54020", "from": "1708406428", "to": "5984995359", "length_m": 762.7583006013298, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[819406.8482512473, 5820856.096311732], [818990.862057684, 5821262.951642096]]}, "properties": {"id": "54021-54022-54023-54024-54025-54026-54027-54028-54029-54030-54031-54032-54033-54034-54035-54036-54037-54038-54039-54040-54041-54042-54057-54058-54059-54060-54061-54062-54063-54064-54065-54066-54067-54068-54069-54070-54071-54072-54073-54074", "from": "5973412090", "to": "5973412089", "length_m": 822.4702004148118, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760096.7287953434, 5728771.771984256], [760049.1629181646, 5729005.333683753]]}, "properties": {"id": "5404-5402-5400-5250-5248", "from": "832509749", "to": "832509525", "length_m": 306.36369107938043, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786896.7098340003, 5762130.546006676], [786837.8026915225, 5761910.812089421]]}, "properties": {"id": "54043-54044-54045-54046", "from": "669264547", "to": "669240092", "length_m": 227.49560178302914, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785362.1771973944, 5754100.411506021], [785471.0864013715, 5754078.1221365845]]}, "properties": {"id": "54047-54048", "from": "509915205", "to": "1708406428", "length_m": 111.1768728837679, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786889.5301628981, 5762157.462800517], [786885.952749665, 5762205.3905064445]]}, "properties": {"id": "54049-54050-54051-54052-54053-54054", "from": "836930522", "to": "669261487", "length_m": 48.76074209802921, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833393.3930333938, 5821021.780958851], [833399.8065570304, 5821042.314114787]]}, "properties": {"id": "5405", "from": "26118268", "to": "255031362", "length_m": 21.51148010476992, "freespeed_mps": 19.444444444444443, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758990.7331349562, 5730747.596614594], [758931.2005810519, 5730716.198963979]]}, "properties": {"id": "5406-5408-5410-5412-5414-5416-5418", "from": "832510041", "to": "832510289", "length_m": 85.28352791668615, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804979.3190780925, 5787295.585671995], [804488.6887591239, 5786836.216263715]]}, "properties": {"id": "54075-54076-54077-54078-54079-54080-54081-54082-54083-54084-54085-54086-54087-54088-54089-54090-54091-54092-54093-54094-54095-54096-54097-54098-54099", "from": "616936239", "to": "616936293", "length_m": 696.4062449508189, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772751.9019503884, 5774817.784024241], [772562.5457353079, 5774222.600553378]]}, "properties": {"id": "541-539-537-535-533-531-529-527-525-523-521-519-517-515-513-511", "from": "5604428464", "to": "5604428480", "length_m": 757.1478408046377, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798038.8826308153, 5760162.185087783], [796950.1948005741, 5760369.461863139]]}, "properties": {"id": "5410000001", "from": "1708194377", "to": "1708194419", "length_m": 1108.2440380083729, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796950.1948005741, 5760369.461863139], [798038.8826308153, 5760162.185087783]]}, "properties": {"id": "5410100005", "from": "1708194419", "to": "1708194377", "length_m": 1108.2440380083729, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784790.8334618879, 5750440.619582346], [783421.8631166343, 5750700.304218881]]}, "properties": {"id": "54102", "from": "310176853", "to": "519796861", "length_m": 1393.3829012202355, "freespeed_mps": 22.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783421.8631166343, 5750700.304218881], [784790.8334618879, 5750440.619582346]]}, "properties": {"id": "54103", "from": "519796861", "to": "310176853", "length_m": 1393.3829012202355, "freespeed_mps": 22.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783421.8631166343, 5750700.304218881], [781498.6271327976, 5751052.340781235]]}, "properties": {"id": "54104", "from": "519796861", "to": "292878995", "length_m": 1943.4426988807713, "freespeed_mps": 22.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781498.6271327976, 5751052.340781235], [783421.8631166343, 5750700.304218881]]}, "properties": {"id": "54105", "from": "292878995", "to": "519796861", "length_m": 1943.4426988807713, "freespeed_mps": 22.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781498.6271327976, 5751052.340781235], [781440.0117030784, 5751165.760703]]}, "properties": {"id": "54106-54108", "from": "292878995", "to": "498837785", "length_m": 134.59810557345455, "freespeed_mps": 8.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781440.0117030784, 5751165.760703], [781498.6271327976, 5751052.340781235]]}, "properties": {"id": "54109-54107", "from": "498837785", "to": "292878995", "length_m": 134.59810557345455, "freespeed_mps": 8.0, "capacity_vph": 400.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781440.0117030784, 5751165.760703], [780419.5282353486, 5751274.59675417]]}, "properties": {"id": "54110-54112-54114-54116-39608", "from": "498837785", "to": "527905894", "length_m": 1048.3279618056172, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752112.066513093, 5838746.266686805], [752108.1007908818, 5838746.998182969]]}, "properties": {"id": "54118", "from": "363998721", "to": "4963796496", "length_m": 4.032621889547946, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752108.1007908818, 5838746.998182969], [752112.066513093, 5838746.266686805]]}, "properties": {"id": "54119", "from": "4963796496", "to": "363998721", "length_m": 4.032621889547946, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787091.5556547717, 5754602.14275065], [787685.5348914354, 5757776.619198186]]}, "properties": {"id": "54120", "from": "321710619", "to": "2574066808", "length_m": 3229.5683982042956, "freespeed_mps": 20.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787685.5348914354, 5757776.619198186], [787091.5556547717, 5754602.14275065]]}, "properties": {"id": "54121", "from": "2574066808", "to": "321710619", "length_m": 3229.5683982042956, "freespeed_mps": 20.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780868.3160356884, 5747433.748880553], [780863.2284407124, 5747460.954246154]]}, "properties": {"id": "54123-54124-54125-54126", "from": "292878979", "to": "1083026063", "length_m": 27.97320501587465, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780863.2284407124, 5747460.954246154], [780865.5886795744, 5747479.4647507565]]}, "properties": {"id": "54127", "from": "1083026063", "to": "513379380", "length_m": 18.660372664737448, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781056.3879117694, 5748540.235123575], [781527.5649317966, 5748727.805523997]]}, "properties": {"id": "54128-54130-54132-54134", "from": "292878983", "to": "2558470073", "length_m": 507.83859251726466, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781527.5649317966, 5748727.805523997], [781056.3879117694, 5748540.235123575]]}, "properties": {"id": "54135-54133-54131-54129", "from": "2558470073", "to": "292878983", "length_m": 507.83859251726466, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781527.5649317966, 5748727.805523997], [782064.1439384808, 5748747.557699009]]}, "properties": {"id": "54136-54138-54140-54142-54144-54146-54148-54150-54152", "from": "2558470073", "to": "2558470064", "length_m": 580.5925895964018, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782064.1439384808, 5748747.557699009], [781527.5649317966, 5748727.805523997]]}, "properties": {"id": "54153-54151-54149-54147-54145-54143-54141-54139-54137", "from": "2558470064", "to": "2558470073", "length_m": 580.5925895964018, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782663.205056092, 5748448.576807019], [782545.3306179636, 5747835.754034548]]}, "properties": {"id": "54176-39353", "from": "292878976", "to": "513380037", "length_m": 610.3809138655338, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786724.5812655629, 5761314.119245183], [786596.4659344524, 5760637.588865142]]}, "properties": {"id": "54178", "from": "1708406368", "to": "469074031", "length_m": 688.5542046100448, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786596.4659344524, 5760637.588865142], [786724.5812655629, 5761314.119245183]]}, "properties": {"id": "54179", "from": "469074031", "to": "1708406368", "length_m": 688.5542046100448, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786596.4659344524, 5760637.588865142], [786553.7171851086, 5760412.735796318]]}, "properties": {"id": "54180", "from": "469074031", "to": "1708406406", "length_m": 228.88066338898858, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786553.7171851086, 5760412.735796318], [786596.4659344524, 5760637.588865142]]}, "properties": {"id": "54181", "from": "1708406406", "to": "469074031", "length_m": 228.88066338898858, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758931.2005810519, 5730716.198963979], [758990.7331349562, 5730747.596614594]]}, "properties": {"id": "5419-5417-5415-5413-5411-5409-5407", "from": "832510289", "to": "832510041", "length_m": 85.28352791668615, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804385.3094776159, 5786799.791307442], [803756.0946667057, 5786643.796044217]]}, "properties": {"id": "54190-54191-54192-54193-54194-54195-54196-54197-54198-54199-54200-54201-54202-54203-54204-54205-54206-54207", "from": "476313228", "to": "616936360", "length_m": 678.6019622629959, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759679.6669779215, 5731366.643308126], [759571.995338103, 5731102.384939055]]}, "properties": {"id": "5420-5422-5424-5426", "from": "832508745", "to": "832508833", "length_m": 297.98620102881705, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786039.7341945036, 5759191.592995398], [786063.5957600735, 5758619.284871614]]}, "properties": {"id": "54210-54212-54214", "from": "148800312", "to": "847812392", "length_m": 573.5738217683752, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786063.5957600735, 5758619.284871614], [786039.7341945036, 5759191.592995398]]}, "properties": {"id": "54215-54213-54211", "from": "847812392", "to": "148800312", "length_m": 573.5738217683752, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786063.5957600735, 5758619.284871614], [786092.0549969081, 5758073.897508104]]}, "properties": {"id": "54216-54218", "from": "847812392", "to": "148800320", "length_m": 546.2827926038341, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786092.0549969081, 5758073.897508104], [786063.5957600735, 5758619.284871614]]}, "properties": {"id": "54219-54217", "from": "148800320", "to": "847812392", "length_m": 546.2827926038341, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786092.0549969081, 5758073.897508104], [785925.8128182171, 5757152.450430012]]}, "properties": {"id": "54220-54222-54208-52898", "from": "148800320", "to": "994354529", "length_m": 936.5342643035458, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834559.7508885547, 5809478.7490844615], [833685.0141963714, 5809758.654494615]]}, "properties": {"id": "54224-54225-54226-54227-54228-54229-54230-54231-54232-54233-54234-54235", "from": "1834824664", "to": "26475876", "length_m": 936.3227064890705, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726054.3872049438, 5825994.113909578], [725839.1018638429, 5825643.84261485]]}, "properties": {"id": "54236-54237-54238-54239-54240-35583-35584-35541", "from": "1124738522", "to": "5523638554", "length_m": 486.6297981730927, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794386.6397995575, 5778748.467303715], [794307.0213219412, 5778326.4630213715]]}, "properties": {"id": "54241-54242-55479-55480-55481-55482-55483-55484", "from": "621549705", "to": "621549688", "length_m": 429.4556196074291, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726054.3872049438, 5825994.113909578], [726470.7343532529, 5826332.7066647075]]}, "properties": {"id": "54243-54245-54247-54249-54251-54253-54255-54257-54259-54261-54263-54265-54267-54269-54271-54273-54275-54277", "from": "1124738522", "to": "2315437914", "length_m": 575.9063140075212, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759571.995338103, 5731102.384939055], [759679.6669779215, 5731366.643308126]]}, "properties": {"id": "5427-5425-5423-5421", "from": "832508833", "to": "832508745", "length_m": 297.98620102881705, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726470.7343532529, 5826332.7066647075], [726054.3872049438, 5825994.113909578]]}, "properties": {"id": "54278-54276-54274-54272-54270-54268-54266-54264-54262-54260-54258-54256-54254-54252-54250-54248-54246-54244", "from": "2315437914", "to": "1124738522", "length_m": 575.9063140075212, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834199.216377463, 5812781.634221255], [834178.836865285, 5812860.529934768]]}, "properties": {"id": "54279-54280-54281-54282-54283-54284", "from": "268220075", "to": "268220094", "length_m": 87.04418186959272, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834199.216377463, 5812781.634221255], [834236.5468168389, 5812862.555649356]]}, "properties": {"id": "54285-54286-54287-54288", "from": "268220075", "to": "268170298", "length_m": 89.4072165438801, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[826122.3991558035, 5822449.013120173], [826265.2068378299, 5822416.207898628]]}, "properties": {"id": "54342-54343", "from": "1412723341", "to": "1080119539", "length_m": 146.54780811430973, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836735.5756970644, 5817513.298490877], [836519.9795090425, 5817420.418555528]]}, "properties": {"id": "54344-54345-54346-54347", "from": "1502841925", "to": "1502841931", "length_m": 234.77229528693613, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835887.7290241228, 5817398.168220634], [835889.6315970593, 5817382.44574091]]}, "properties": {"id": "54348", "from": "299196615", "to": "30928479", "length_m": 15.83717630285345, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[725839.1018638429, 5825643.84261485], [726054.3872049438, 5825994.113909578]]}, "properties": {"id": "54349-54350-54351-54352", "from": "5523638554", "to": "1124738522", "length_m": 411.2026181267717, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835879.3157123256, 5817384.378477151], [835887.7290241228, 5817398.168220634]]}, "properties": {"id": "54353", "from": "299196565", "to": "299196615", "length_m": 16.15366330975586, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778190.0513996622, 5744186.036639649], [778207.2201496523, 5744187.143250106]]}, "properties": {"id": "54354-54355", "from": "4763108785", "to": "4763108781", "length_m": 17.236971557909495, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778207.2201496523, 5744187.143250106], [778232.9970431023, 5744189.363492939]]}, "properties": {"id": "54356-54357-54358", "from": "4763108781", "to": "4763108782", "length_m": 26.06314774011577, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778200.1502346196, 5744176.396782968], [778207.2201496523, 5744187.143250106]]}, "properties": {"id": "54359-54360", "from": "4763108779", "to": "4763108781", "length_m": 12.983882031838693, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836860.0893741376, 5819453.871395659], [836854.908430949, 5819449.6575156255]]}, "properties": {"id": "5436", "from": "585216276", "to": "1510910459", "length_m": 6.678245046601765, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837006.6911266545, 5810716.697486488], [837180.7068619209, 5809931.261955023]]}, "properties": {"id": "54361-54363-54365-54367-54369-54371-54373-54375-54377-54379-54381-54383-54385-54387-54389-54391-54393-54395-23698-23696-23694", "from": "1843397341", "to": "5468277474", "length_m": 999.5857101384368, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836854.908430949, 5819449.6575156255], [836860.0893741376, 5819453.871395659]]}, "properties": {"id": "5437", "from": "1510910459", "to": "585216276", "length_m": 6.678245046601765, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837075.3946010486, 5811109.674841624], [837068.5099179184, 5811043.550391083]]}, "properties": {"id": "54397-54398-30051-4541", "from": "3678283680", "to": "321569609", "length_m": 66.680055343868, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837006.6911266545, 5810716.697486488], [837016.5401234665, 5810807.141476365]]}, "properties": {"id": "54399", "from": "1843397341", "to": "1843397353", "length_m": 90.97866804207693, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758037.2605691596, 5838954.626458535], [757791.5328593472, 5839046.660772184]]}, "properties": {"id": "54400-54401-54402-54403-54404", "from": "35096781", "to": "1556440093", "length_m": 262.4368565644914, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804207.8459576429, 5767237.564826526], [803856.1102343771, 5767363.473614904]]}, "properties": {"id": "54405-54406-54407-54408", "from": "435990856", "to": "974357971", "length_m": 373.6000819856444, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833894.9097144709, 5822052.284320282], [833812.0593624666, 5822035.177219472]]}, "properties": {"id": "54409-54410-54411-54412-54413-54414-54415-54416-54417-54418-54419-54420-54421", "from": "1257431998", "to": "1257432128", "length_m": 87.21228034602035, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833779.171457748, 5822014.425285319], [833810.5043724478, 5822099.841160081]]}, "properties": {"id": "54422-54423-54424-54425-54426", "from": "1257432190", "to": "603452633", "length_m": 91.42394783603964, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833052.4302347557, 5819543.901255373], [833263.796616484, 5819011.826586597]]}, "properties": {"id": "54446-54447-54448-54449-54450-54451-54452-54453", "from": "255031251", "to": "398301079", "length_m": 573.9589980133887, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833263.796616484, 5819011.826586597], [833248.4432778448, 5818197.306788472]]}, "properties": {"id": "54454-54455-54456-54457-54458-54459-54460-54461-54462-54463-54464-54465-54466-54467-54468-54469-54470-54471", "from": "398301079", "to": "255031238", "length_m": 837.8118136276187, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833248.4432778448, 5818197.306788472], [833359.2507935737, 5817689.281041833]]}, "properties": {"id": "54472-54473-54474-54475-54476-54477-54478-54479-54480-54481-54482-54483", "from": "255031238", "to": "309809299", "length_m": 520.781960914053, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790355.349930644, 5774453.026555963], [790726.520965295, 5774978.654031063]]}, "properties": {"id": "54497-54498-54499-54500-54501-54502", "from": "318036330", "to": "318036335", "length_m": 648.8680679244844, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790726.520965295, 5774978.654031063], [790858.2705806652, 5775471.129372004]]}, "properties": {"id": "54503-54504-54505", "from": "318036335", "to": "318036338", "length_m": 510.87176122365275, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790858.2705806652, 5775471.129372004], [791133.0059356494, 5776834.065884154]]}, "properties": {"id": "54506-54507-54508-54509-54510-54511-54512", "from": "318036338", "to": "639606175", "length_m": 1392.1135177730462, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791133.0059356494, 5776834.065884154], [791109.7544398215, 5777338.434422232]]}, "properties": {"id": "54513-54514-54515-54516-54517-27767", "from": "639606175", "to": "318036345", "length_m": 505.3038849344309, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791885.0338169925, 5776233.053499948], [791277.2797567027, 5777124.890286564]]}, "properties": {"id": "54529-54530-54531-54532-54533-54534-8046-7864-7865-7866-7867", "from": "318039572", "to": "318028180", "length_m": 1079.5555150860507, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762325.3445786788, 5763120.518369329], [762205.0454086454, 5763295.446450687]]}, "properties": {"id": "54554", "from": "723899192", "to": "1852765568", "length_m": 212.30102215899106, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762205.0454086454, 5763295.446450687], [762325.3445786788, 5763120.518369329]]}, "properties": {"id": "54555", "from": "1852765568", "to": "723899192", "length_m": 212.30102215899106, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762205.0454086454, 5763295.446450687], [762073.2452056296, 5763482.8776964545]]}, "properties": {"id": "54556-54558", "from": "1852765568", "to": "3188104958", "length_m": 229.13313391020066, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762073.2452056296, 5763482.8776964545], [762205.0454086454, 5763295.446450687]]}, "properties": {"id": "54559-54557", "from": "3188104958", "to": "1852765568", "length_m": 229.13313391020066, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762073.2452056296, 5763482.8776964545], [762066.1167680691, 5763493.04160228]]}, "properties": {"id": "54560", "from": "3188104958", "to": "1852719101", "length_m": 12.414491684162245, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762066.1167680691, 5763493.04160228], [762073.2452056296, 5763482.8776964545]]}, "properties": {"id": "54561", "from": "1852719101", "to": "3188104958", "length_m": 12.414491684162245, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762066.1167680691, 5763493.04160228], [761938.6478741316, 5763675.329951526]]}, "properties": {"id": "54562-54564", "from": "1852719101", "to": "1852719099", "length_m": 222.48753520337078, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761938.6478741316, 5763675.329951526], [762066.1167680691, 5763493.04160228]]}, "properties": {"id": "54565-54563", "from": "1852719099", "to": "1852719101", "length_m": 222.48753520337078, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762279.9929217089, 5763642.622438862], [762287.6981967865, 5763632.684086059]]}, "properties": {"id": "54568", "from": "52483843", "to": "3188104956", "length_m": 12.57545708536633, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762287.6981967865, 5763632.684086059], [762279.9929217089, 5763642.622438862]]}, "properties": {"id": "54569", "from": "3188104956", "to": "52483843", "length_m": 12.57545708536633, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759473.374966743, 5730836.610140299], [759396.8645932279, 5730967.456462092]]}, "properties": {"id": "5457-5459-5461-5463-5465-5467-5469", "from": "832507753", "to": "832509528", "length_m": 256.35178916656605, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762287.6981967865, 5763632.684086059], [762415.5317420869, 5763447.022212588]]}, "properties": {"id": "54570-54572-54574", "from": "3188104956", "to": "1852765554", "length_m": 225.41518096175247, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762415.5317420869, 5763447.022212588], [762287.6981967865, 5763632.684086059]]}, "properties": {"id": "54575-54573-54571", "from": "1852765554", "to": "3188104956", "length_m": 225.41518096175247, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762415.5317420869, 5763447.022212588], [762543.3683031901, 5763274.068572266]]}, "properties": {"id": "54576", "from": "1852765554", "to": "559370771", "length_m": 215.07010044730077, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762543.3683031901, 5763274.068572266], [762415.5317420869, 5763447.022212588]]}, "properties": {"id": "54577", "from": "559370771", "to": "1852765554", "length_m": 215.07010044730077, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762543.3683031901, 5763274.068572266], [762743.9473208773, 5763092.973579995]]}, "properties": {"id": "54578-54580", "from": "559370771", "to": "1852765624", "length_m": 270.34670502265186, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762743.9473208773, 5763092.973579995], [762543.3683031901, 5763274.068572266]]}, "properties": {"id": "54581-54579", "from": "1852765624", "to": "559370771", "length_m": 270.34670502265186, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762743.9473208773, 5763092.973579995], [763080.3646071388, 5762799.159398859]]}, "properties": {"id": "54582-54584", "from": "1852765624", "to": "1852765679", "length_m": 446.6579940075766, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763080.3646071388, 5762799.159398859], [762743.9473208773, 5763092.973579995]]}, "properties": {"id": "54585-54583", "from": "1852765679", "to": "1852765624", "length_m": 446.6579940075766, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763080.3646071388, 5762799.159398859], [763129.9802997587, 5762755.824519284]]}, "properties": {"id": "54586", "from": "1852765679", "to": "1852765682", "length_m": 65.87585856640553, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763129.9802997587, 5762755.824519284], [763080.3646071388, 5762799.159398859]]}, "properties": {"id": "54587", "from": "1852765682", "to": "1852765679", "length_m": 65.87585856640553, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763129.9802997587, 5762755.824519284], [763543.4679957156, 5762659.7144642435]]}, "properties": {"id": "54588-56218-56220-56222-56224", "from": "1852765682", "to": "614531205", "length_m": 428.93835445319274, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762173.8025527061, 5763568.086201548], [762181.9410078228, 5763558.5339144105]]}, "properties": {"id": "54590", "from": "1852765552", "to": "3188104959", "length_m": 12.54912907914466, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762181.9410078228, 5763558.5339144105], [762173.8025527061, 5763568.086201548]]}, "properties": {"id": "54591", "from": "3188104959", "to": "1852765552", "length_m": 12.54912907914466, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762181.9410078228, 5763558.5339144105], [762311.8665914289, 5763369.528273043]]}, "properties": {"id": "54592-54594", "from": "3188104959", "to": "1852765558", "length_m": 229.39538630957165, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762311.8665914289, 5763369.528273043], [762181.9410078228, 5763558.5339144105]]}, "properties": {"id": "54595-54593", "from": "1852765558", "to": "3188104959", "length_m": 229.39538630957165, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837232.6517902524, 5812030.997814692], [837235.9813228645, 5812020.931446921]]}, "properties": {"id": "54596", "from": "268175489", "to": "268175490", "length_m": 10.602714180889382, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789880.1256814565, 5766957.203634237], [789155.2913401789, 5766328.030873562]]}, "properties": {"id": "54602-54603-54604-54605-3077-4070-4071-4072-4073-5603-5604-5605-55391-54122", "from": "827493678", "to": "436945680", "length_m": 662.9229135568623, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837232.6517902524, 5812030.997814692], [837244.9692358018, 5812097.644514551]]}, "properties": {"id": "54606-54608-54610", "from": "268175489", "to": "1387186631", "length_m": 67.78669088903462, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837244.9692358018, 5812097.644514551], [837232.6517902524, 5812030.997814692]]}, "properties": {"id": "54611-54609-54607", "from": "1387186631", "to": "268175489", "length_m": 67.78669088903462, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789671.299007202, 5774086.610383697], [789034.7110244487, 5773770.900120433]]}, "properties": {"id": "54627-54628-54629-54630-54631-54632-54633", "from": "318028159", "to": "318835558", "length_m": 724.1778510269044, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789034.7110244487, 5773770.900120433], [788753.109586768, 5772926.379708896]]}, "properties": {"id": "54634-54635-54636-54637-54638-54639-54640-25743-25721-25722-25723-25724-25725-25726-25727-25728", "from": "318835558", "to": "428722315", "length_m": 917.2326568010624, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789854.2920337536, 5766988.423762637], [789966.6295682573, 5767527.388649002]]}, "properties": {"id": "54642-54643-54644-54645-54646-54647-54648-54649-54650-54651-54652-54653-54654-54655-54656-54657-54658-54659-54660", "from": "827491373", "to": "421192970", "length_m": 560.1582846700163, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789966.6295682573, 5767527.388649002], [789678.8844032653, 5768172.904605901]]}, "properties": {"id": "54661-54662-54663-54664-54665-54666-54667-54668-54669-54670-54671", "from": "421192970", "to": "1833870432", "length_m": 711.8335958340986, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789678.8844032653, 5768172.904605901], [789249.9369055433, 5768729.618091677]]}, "properties": {"id": "54672-54673-54674-54675-54676-54677-30803", "from": "1833870432", "to": "1833870416", "length_m": 704.4403008931802, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788892.5527376696, 5773379.735624801], [788920.194973916, 5773350.434048378]]}, "properties": {"id": "54683-54684-54685-54686", "from": "428721708", "to": "428721717", "length_m": 41.971128740738266, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788704.4978579904, 5773390.634996654], [788742.9275725666, 5773414.397305081]]}, "properties": {"id": "54697-54698-54699-54700", "from": "428721689", "to": "428721693", "length_m": 47.98201084187574, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759396.8645932279, 5730967.456462092], [759473.374966743, 5730836.610140299]]}, "properties": {"id": "5470-5468-5466-5464-5462-5460-5458", "from": "832509528", "to": "832507753", "length_m": 256.35178916656605, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788729.2352688714, 5772934.741629686], [788720.9822017692, 5773318.797845783]]}, "properties": {"id": "54701-54702-54703-54704-54705", "from": "421192856", "to": "428721752", "length_m": 385.27588878529133, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786797.2343936313, 5751584.106292927], [785602.3401170201, 5751683.126455578]]}, "properties": {"id": "54706-54708-54710-54712-54714-54716-54718-54720", "from": "3612387689", "to": "509915222", "length_m": 1216.0662867533663, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785602.3401170201, 5751683.126455578], [786797.2343936313, 5751584.106292927]]}, "properties": {"id": "54721-54719-54717-54715-54713-54711-54709-54707", "from": "509915222", "to": "3612387689", "length_m": 1216.0662867533663, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785602.3401170201, 5751683.126455578], [785418.2585006749, 5751639.286186104]]}, "properties": {"id": "54722", "from": "509915222", "to": "2085414782", "length_m": 189.23004642664645, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785418.2585006749, 5751639.286186104], [785602.3401170201, 5751683.126455578]]}, "properties": {"id": "54723", "from": "2085414782", "to": "509915222", "length_m": 189.23004642664645, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789999.0309521258, 5766698.845013445], [789528.8667102167, 5766553.211802248]]}, "properties": {"id": "54724-54725-54726-54727-54728-54729-54730-54731-54732", "from": "4198707179", "to": "3332965299", "length_m": 492.5673760025216, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837224.6062253031, 5812005.685700946], [837227.2876563801, 5812022.221915591]]}, "properties": {"id": "54733", "from": "1387206041", "to": "268175488", "length_m": 16.75220782561728, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837233.3152208999, 5812004.33900639], [837229.9068959779, 5811984.496692212]]}, "properties": {"id": "54734", "from": "33531761", "to": "268175492", "length_m": 20.13291111510276, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837229.9068959779, 5811984.496692212], [837206.2964183448, 5811788.346257988]]}, "properties": {"id": "54735-54736-54737-54738-54739-54740-54741-54742-54743", "from": "268175492", "to": "268175497", "length_m": 197.93602307436194, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759341.4176312832, 5730652.637250714], [759329.2541173245, 5730663.764554764]]}, "properties": {"id": "54746-54747-54748-54749", "from": "1976126508", "to": "1976126500", "length_m": 18.17488781932467, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836025.9627852805, 5807734.618572827], [836028.9007743483, 5807710.480066734]]}, "properties": {"id": "5475-5476-5477-5478-5479", "from": "75148588", "to": "75148590", "length_m": 26.375983025048125, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759329.2541173245, 5730663.764554764], [759334.8373762902, 5730674.206115661]]}, "properties": {"id": "54750-54751-54752", "from": "1976126500", "to": "1976126489", "length_m": 12.345820711175119, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759334.8373762902, 5730674.206115661], [759350.9454669779, 5730676.2780812895]]}, "properties": {"id": "54753-54754-54755", "from": "1976126489", "to": "36698471", "length_m": 12.781284748809023, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759350.9454669779, 5730676.2780812895], [759352.1025385802, 5730660.802470717]]}, "properties": {"id": "54756-54757-54758-54759", "from": "36698471", "to": "36698470", "length_m": 15.31762108169193, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759352.1025385802, 5730660.802470717], [759341.4176312832, 5730652.637250714]]}, "properties": {"id": "54760-54761-54744-54745", "from": "36698470", "to": "1976126508", "length_m": 14.269190454333458, "freespeed_mps": 8.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788762.9680324176, 5752006.5024070265], [788755.9912773893, 5752042.951638758]]}, "properties": {"id": "54762-54763-54764", "from": "845902034", "to": "512197140", "length_m": 38.098679467372584, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830049.3898746156, 5825737.133007878], [830304.0199058531, 5825224.896722218]]}, "properties": {"id": "54768-54769-54770-54771-54772-54773-54774-54775-54776-54777-54778-54779", "from": "348188448", "to": "665607819", "length_m": 574.8029816108093, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830304.0199058531, 5825224.896722218], [830827.6930079401, 5824774.001973368]]}, "properties": {"id": "54780-54781-54782-54783-54784-54785-54786-54787-54788-54789-54790", "from": "665607819", "to": "665607775", "length_m": 695.4262243081312, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830827.6930079401, 5824774.001973368], [831284.8432075279, 5824473.034731744]]}, "properties": {"id": "54791-54792-54793-54794-54795", "from": "665607775", "to": "2791828184", "length_m": 547.3531522671063, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831284.8432075279, 5824473.034731744], [831636.1071990955, 5824243.981515798]]}, "properties": {"id": "54796-54797-54798-54799", "from": "2791828184", "to": "2791828183", "length_m": 419.3498792672195, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836028.9007743483, 5807710.480066734], [835999.1685016885, 5807708.638426624]]}, "properties": {"id": "5480-5481-5482-5483-5484", "from": "75148590", "to": "75148594", "length_m": 34.21424547445195, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831636.1071990955, 5824243.981515798], [832069.8724918407, 5823908.112721587]]}, "properties": {"id": "54800-54801-54802-54803-54804-54805-54806-54807-54808-54809", "from": "2791828183", "to": "3116154546", "length_m": 549.6138520018121, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832069.8724918407, 5823908.112721587], [832519.1646255339, 5823498.6753910035]]}, "properties": {"id": "54810-54811-54812-54813-54814-54815", "from": "3116154546", "to": "3459192208", "length_m": 607.9336608144974, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832519.1646255339, 5823498.6753910035], [833110.9517731881, 5822978.987488106]]}, "properties": {"id": "54816-54817-54818-54819-54820", "from": "3459192208", "to": "1608495081", "length_m": 787.7493909615655, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833110.9517731881, 5822978.987488106], [833551.7166143686, 5822608.320306225]]}, "properties": {"id": "54821-54822", "from": "1608495081", "to": "1257432185", "length_m": 575.9126966589024, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836338.7448144245, 5812190.790183604], [836336.0150135327, 5812175.40116448]]}, "properties": {"id": "54823", "from": "268175699", "to": "268179969", "length_m": 15.629258532512637, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836336.0150135327, 5812175.40116448], [836338.7448144245, 5812190.790183604]]}, "properties": {"id": "54824", "from": "268179969", "to": "268175699", "length_m": 15.629258532512637, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750442.507914509, 5775520.435923426], [749704.403122836, 5771401.493747058]]}, "properties": {"id": "54825", "from": "1372421468", "to": "2106853502", "length_m": 4184.55294228393, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749704.403122836, 5771401.493747058], [750442.507914509, 5775520.435923426]]}, "properties": {"id": "54826", "from": "2106853502", "to": "1372421468", "length_m": 4184.55294228393, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749704.403122836, 5771401.493747058], [749718.8004316855, 5770850.550645131]]}, "properties": {"id": "54827-54829-54831-54833-54835-54837-54839", "from": "2106853502", "to": "1372490766", "length_m": 560.9504225765638, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749718.8004316855, 5770850.550645131], [749704.403122836, 5771401.493747058]]}, "properties": {"id": "54840-54838-54836-54834-54832-54830-54828", "from": "1372490766", "to": "2106853502", "length_m": 560.9504225765638, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749718.8004316855, 5770850.550645131], [749209.7838668805, 5769844.26995865]]}, "properties": {"id": "54841", "from": "1372490766", "to": "1372490768", "length_m": 1127.696182872301, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749209.7838668805, 5769844.26995865], [749718.8004316855, 5770850.550645131]]}, "properties": {"id": "54842", "from": "1372490768", "to": "1372490766", "length_m": 1127.696182872301, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835999.1685016885, 5807708.638426624], [835996.112802934, 5807713.511482838]]}, "properties": {"id": "5485", "from": "75148594", "to": "75148597", "length_m": 5.751866820655297, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788635.9286391616, 5771266.427321256], [788392.0096767723, 5770360.879937013]]}, "properties": {"id": "54859-54860-54861-54862-54863-54864-54865-54866-54867-54868-54869-54870", "from": "420460960", "to": "475541964", "length_m": 943.0120385422641, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835996.112802934, 5807713.511482838], [836000.6533167539, 5807734.586406769]]}, "properties": {"id": "5486-5487-5488-5489", "from": "75148597", "to": "75148599", "length_m": 22.90914529001506, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788392.0096767723, 5770360.879937013], [788449.3778608032, 5769841.265110927]]}, "properties": {"id": "54871-54872-54873-54874-54875-54876-54877-54878-54879", "from": "475541964", "to": "1833870384", "length_m": 524.903350293461, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788449.3778608032, 5769841.265110927], [788827.2549360564, 5769156.523998261]]}, "properties": {"id": "54880-54881-54882-54883-13897-13898-13899-13900-13901-13902-13903", "from": "1833870384", "to": "1833870406", "length_m": 788.6504227054087, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788779.6667209917, 5772304.723276334], [788635.9286391616, 5771266.427321256]]}, "properties": {"id": "54884-54846-54847-54848-54849-54850-54851-54852-54853-54854-54855-54856-54857-54858", "from": "420460952", "to": "420460960", "length_m": 1054.4161380840528, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788729.2352688714, 5772934.741629686], [788967.162868608, 5773735.794050696]]}, "properties": {"id": "54886-54887-54888-54889-54890-54891-25828-53381-53382-53383-53384-53385-53386-53387", "from": "421192856", "to": "318036316", "length_m": 853.84951396653, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832441.7006023476, 5812983.238073004], [832503.6691207977, 5812967.057781776]]}, "properties": {"id": "54892-54893", "from": "298347681", "to": "35084638", "length_m": 64.06117480299993, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832208.121067426, 5813044.842102315], [832441.7006023476, 5812983.238073004]]}, "properties": {"id": "54899-54900-54901-54902", "from": "1536081348", "to": "298347681", "length_m": 241.57451048210297, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836000.6533167539, 5807734.586406769], [836009.3050959969, 5807739.069525164]]}, "properties": {"id": "5490-5491", "from": "75148599", "to": "75148601", "length_m": 9.830368495726667, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831937.9328577635, 5813190.162358822], [831983.7133778888, 5813161.452253938]]}, "properties": {"id": "54904-54905-54906", "from": "369130238", "to": "4117890894", "length_m": 54.038250952389824, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831983.7133778888, 5813161.452253938], [832208.121067426, 5813044.842102315]]}, "properties": {"id": "54907-54908-54894-54895-54896-54897-54898", "from": "4117890894", "to": "1536081348", "length_m": 254.46877333355283, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830987.9083765405, 5813767.922735041], [830893.0273379248, 5813827.831874043]]}, "properties": {"id": "54915-54916", "from": "360504702", "to": "1363214351", "length_m": 112.22712689889958, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836009.3050959969, 5807739.069525164], [836025.9627852805, 5807734.618572827]]}, "properties": {"id": "5492-5493-5494", "from": "75148601", "to": "75148588", "length_m": 17.836710492807754, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790580.0819130163, 5752165.622661791], [790649.1156892753, 5752161.546041556]]}, "properties": {"id": "54920-54918-8097", "from": "510171674", "to": "5678574449", "length_m": 75.45567075520269, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790580.0819130163, 5752165.622661791], [790544.689318483, 5752171.543494663]]}, "properties": {"id": "54921", "from": "510171674", "to": "510171683", "length_m": 35.884425689933515, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790544.689318483, 5752171.543494663], [790580.0819130163, 5752165.622661791]]}, "properties": {"id": "54922", "from": "510171683", "to": "510171674", "length_m": 35.884425689933515, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836502.4633353895, 5812158.308389106], [836500.1905911047, 5812143.31211786]]}, "properties": {"id": "54923", "from": "268175701", "to": "268179535", "length_m": 15.167515206318184, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836500.1905911047, 5812143.31211786], [836502.4633353895, 5812158.308389106]]}, "properties": {"id": "54924", "from": "268179535", "to": "268175701", "length_m": 15.167515206318184, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788888.0539637578, 5773356.900971197], [788886.3069836989, 5773346.282645225]]}, "properties": {"id": "54925", "from": "318835563", "to": "3431090312", "length_m": 10.761077334082254, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727909.4322011643, 5753671.369045679], [728643.7497330616, 5753886.588303092]]}, "properties": {"id": "54926-42677-42675-42673", "from": "632016236", "to": "632016237", "length_m": 687.4861186585008, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790448.1668645529, 5751587.3587915115], [790461.8254047038, 5751584.254936223]]}, "properties": {"id": "54928", "from": "518638236", "to": "518638262", "length_m": 14.006771059372157, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790461.8254047038, 5751584.254936223], [790448.1668645529, 5751587.3587915115]]}, "properties": {"id": "54929", "from": "518638262", "to": "518638236", "length_m": 14.006771059372157, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832111.8741703839, 5810499.034682075], [832243.0865477961, 5811298.66865136]]}, "properties": {"id": "54930-54931-54932-54933-54934-54935-54936-54937-54938-54939-54940-54941", "from": "5642266066", "to": "666715008", "length_m": 811.5283647373427, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832243.0865477961, 5811298.66865136], [832312.3257192159, 5811761.733344014]]}, "properties": {"id": "54942-13010-13011-13012-13013-13014-13015-32380-32568-32569-32570-32571", "from": "666715008", "to": "366746065", "length_m": 468.22715170241554, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790500.8828768658, 5751869.2376149595], [790514.8938324812, 5751867.154677269]]}, "properties": {"id": "54943", "from": "518638320", "to": "518638346", "length_m": 14.164939349983774, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790514.8938324812, 5751867.154677269], [790500.8828768658, 5751869.2376149595]]}, "properties": {"id": "54944", "from": "518638346", "to": "518638320", "length_m": 14.164939349983774, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761063.836425334, 5762388.753239561], [760859.809314579, 5762426.065583119]]}, "properties": {"id": "54945", "from": "5052362456", "to": "5052362455", "length_m": 207.41087913506453, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760859.809314579, 5762426.065583119], [761063.836425334, 5762388.753239561]]}, "properties": {"id": "54946", "from": "5052362455", "to": "5052362456", "length_m": 207.41087913506453, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780977.060485403, 5771411.934360248], [780775.5582220815, 5772012.271656308]]}, "properties": {"id": "54947-54949-54951-54953-54955-54957-54959-54961-54963-54965-54967", "from": "948960415", "to": "948960453", "length_m": 704.0319325714668, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759216.0017475699, 5730558.962958543], [759121.2612430665, 5730714.963469842]]}, "properties": {"id": "5495-5497-5499-5501-5503-5505", "from": "832510269", "to": "832510482", "length_m": 183.1727985161698, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780775.5582220815, 5772012.271656308], [780977.060485403, 5771411.934360248]]}, "properties": {"id": "54968-54966-54964-54962-54960-54958-54956-54954-54952-54950-54948", "from": "948960453", "to": "948960415", "length_m": 704.0319325714668, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780775.5582220815, 5772012.271656308], [781305.0710229167, 5772554.767052035]]}, "properties": {"id": "54969-54971-54973", "from": "948960453", "to": "948960428", "length_m": 758.1650303296402, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781305.0710229167, 5772554.767052035], [780775.5582220815, 5772012.271656308]]}, "properties": {"id": "54974-54972-54970", "from": "948960428", "to": "948960453", "length_m": 758.1650303296402, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781305.0710229167, 5772554.767052035], [781831.493661625, 5773244.410973294]]}, "properties": {"id": "54975-54977-54979-54981-54983-54985-54987-54989-54991-54993-54995-54997-54999-55001-55003-55005-55007", "from": "948960428", "to": "948960413", "length_m": 880.5022964077057, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781831.493661625, 5773244.410973294], [781305.0710229167, 5772554.767052035]]}, "properties": {"id": "55008-55006-55004-55002-55000-54998-54996-54994-54992-54990-54988-54986-54984-54982-54980-54978-54976", "from": "948960413", "to": "948960428", "length_m": 880.5022964077057, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764770.2287726579, 5839654.935842681], [765335.832499126, 5839560.332475659]]}, "properties": {"id": "55010-55011", "from": "35098302", "to": "291556849", "length_m": 573.4936103956801, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765335.832499126, 5839560.332475659], [765845.7125410801, 5839575.006382198]]}, "properties": {"id": "55012-55013-55014-55015", "from": "291556849", "to": "291556977", "length_m": 513.0162321282294, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765845.7125410801, 5839575.006382198], [766676.5335818147, 5839796.303296378]]}, "properties": {"id": "55016-55017-55018", "from": "291556977", "to": "35098308", "length_m": 860.4174847727589, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766676.5335818147, 5839796.303296378], [767187.5228244384, 5839868.498887848]]}, "properties": {"id": "55019", "from": "35098308", "to": "35098309", "length_m": 516.0641513614743, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767187.5228244384, 5839868.498887848], [767744.5252757922, 5839860.198762366]]}, "properties": {"id": "55020-55021-55022-55023", "from": "35098309", "to": "291557395", "length_m": 559.2578161371398, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767744.5252757922, 5839860.198762366], [768277.9357533308, 5839756.02265302]]}, "properties": {"id": "55024-55025", "from": "291557395", "to": "291557281", "length_m": 543.5570079951156, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768277.9357533308, 5839756.02265302], [769114.2596375011, 5839732.816780118]]}, "properties": {"id": "55026-55027-55028-55029-55030", "from": "291557281", "to": "186317540", "length_m": 837.9293874853615, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781752.2367389711, 5771499.747318091], [780977.060485403, 5771411.934360248]]}, "properties": {"id": "55042-55040-55038-55036-55034-55032-12300-12298-12296", "from": "948960402", "to": "948960415", "length_m": 783.9257917898453, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781752.2367389711, 5771499.747318091], [782791.5298897678, 5771970.156110871]]}, "properties": {"id": "55043-55045-55047-55049-55051-55053-55055-55057-55059-55061-55063", "from": "948960402", "to": "5956032718", "length_m": 906.3500703529694, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759121.2612430665, 5730714.963469842], [759216.0017475699, 5730558.962958543]]}, "properties": {"id": "5506-5504-5502-5500-5498-5496", "from": "832510482", "to": "832510269", "length_m": 183.1727985161698, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782791.5298897678, 5771970.156110871], [781752.2367389711, 5771499.747318091]]}, "properties": {"id": "55064-55062-55060-55058-55056-55054-55052-55050-55048-55046-55044", "from": "5956032718", "to": "948960402", "length_m": 906.3500703529694, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782791.5298897678, 5771970.156110871], [783448.8744819318, 5771908.817816538]]}, "properties": {"id": "55065-55067-55069-55071-55073-55075", "from": "5956032718", "to": "5956032702", "length_m": 661.9755102533869, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837712.7454510888, 5814688.649342974], [837710.8280126436, 5814730.582464546]]}, "properties": {"id": "5507-5508", "from": "268386307", "to": "268386309", "length_m": 42.03434669774532, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783448.8744819318, 5771908.817816538], [782791.5298897678, 5771970.156110871]]}, "properties": {"id": "55076-55074-55072-55070-55068-55066", "from": "5956032702", "to": "5956032718", "length_m": 661.9755102533869, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758931.2005810519, 5730716.198963979], [758955.8252094265, 5730567.612865845]]}, "properties": {"id": "5509-5511-5513-5515-5517-5519-5521-5523", "from": "832510289", "to": "832507812", "length_m": 190.1727203277262, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744864.0020805555, 5713619.815241135], [744365.8898060924, 5713602.005449542]]}, "properties": {"id": "55105-55107-55109-55111-55113-55115-55117-55119-55121-55123-55125-55127-55129-55131-55133-55135-55137-55139-55141-55143-55145-55147-55149-55151-55153-55155-55157-55159-55161", "from": "2880948328", "to": "2880948337", "length_m": 529.9470760674957, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744365.8898060924, 5713602.005449542], [744864.0020805555, 5713619.815241135]]}, "properties": {"id": "55162-55160-55158-55156-55154-55152-55150-55148-55146-55144-55142-55140-55138-55136-55134-55132-55130-55128-55126-55124-55122-55120-55118-55116-55114-55112-55110-55108-55106", "from": "2880948337", "to": "2880948328", "length_m": 529.9470760674957, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744365.8898060924, 5713602.005449542], [743773.9658444731, 5713243.697771546]]}, "properties": {"id": "55163-45208-46248-46250-46252-46254-46256-46258-46260-46262-46264-46266-46268-46270-46272-19441-19443-19445-19447-19449-19451-19453-19455-19457-19459-19461-19463", "from": "2880948337", "to": "2880948332", "length_m": 731.27615020187, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768978.9868999543, 5839697.173502397], [768349.3457312899, 5839710.61769552]]}, "properties": {"id": "55167-55168-55169-55170", "from": "3953417009", "to": "291557300", "length_m": 630.4188402099201, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768349.3457312899, 5839710.61769552], [767440.1001134858, 5839854.0069770105]]}, "properties": {"id": "55171-55172-55173-55174-55175", "from": "291557300", "to": "291557065", "length_m": 921.7151196907747, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767440.1001134858, 5839854.0069770105], [766864.4055921936, 5839797.273255426]]}, "properties": {"id": "55176-55177", "from": "291557065", "to": "35096766", "length_m": 578.9227314022207, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766864.4055921936, 5839797.273255426], [765976.3999524529, 5839578.37244251]]}, "properties": {"id": "55178-55179-55180", "from": "35096766", "to": "291556914", "length_m": 915.6015116051198, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765976.3999524529, 5839578.37244251], [765390.8952022977, 5839518.943121169]]}, "properties": {"id": "55181-55182-55183-55184-55185-55186-55187-55188-55189", "from": "291556914", "to": "291556916", "length_m": 592.274025025306, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765390.8952022977, 5839518.943121169], [764553.7511230696, 5839641.999556936]]}, "properties": {"id": "55190-55191-55192-55193-55194-55195-55196-55197", "from": "291556916", "to": "291556847", "length_m": 846.7242507508347, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764553.7511230696, 5839641.999556936], [763489.7105527145, 5839618.578995002]]}, "properties": {"id": "55198-2394-2395-2396-2622-2623-2624-2625-2626-2627", "from": "291556847", "to": "291556819", "length_m": 1066.3035282403287, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781028.0945478814, 5770431.5919003775], [780977.060485403, 5771411.934360248]]}, "properties": {"id": "55199-55201-55203-55205", "from": "948960423", "to": "948960415", "length_m": 982.0016962551487, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780977.060485403, 5771411.934360248], [781028.0945478814, 5770431.5919003775]]}, "properties": {"id": "55206-55204-55202-55200", "from": "948960415", "to": "948960423", "length_m": 982.0016962551487, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834771.1053040426, 5804383.2609564345], [834769.0983546503, 5804368.865269564]]}, "properties": {"id": "55207", "from": "354777622", "to": "354777626", "length_m": 14.534911284028468, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834769.0983546503, 5804368.865269564], [834771.1053040426, 5804383.2609564345]]}, "properties": {"id": "55208", "from": "354777626", "to": "354777622", "length_m": 14.534911284028468, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790544.689318483, 5752171.543494663], [790509.6059361612, 5752155.179420304]]}, "properties": {"id": "55211-55212-55213-55214-55215-55216-55217-55218-55219-55220", "from": "510171683", "to": "510171671", "length_m": 40.37367375120741, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758955.8252094265, 5730567.612865845], [758931.2005810519, 5730716.198963979]]}, "properties": {"id": "5524-5522-5520-5518-5516-5514-5512-5510", "from": "832507812", "to": "832510289", "length_m": 190.1727203277262, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758955.8252094265, 5730567.612865845], [758818.9599778918, 5730080.067088445]]}, "properties": {"id": "5525-5527-5529-5531-5533-5535-5537-5539-5541-5543-5545-5547-5549-5551-5553-5555", "from": "832507812", "to": "832507840", "length_m": 630.8093203111939, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736936.9752717753, 5830342.476195976], [736570.0149203071, 5829755.560368266]]}, "properties": {"id": "55261-55259-55257-55255-55253-55251-55249-55247-55245-55243-55241-55239-55237-55235-55233-55231-55229-55227-55225-55223-56693-56691-56689", "from": "364650805", "to": "2315437913", "length_m": 704.0107179958777, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736936.9752717753, 5830342.476195976], [737290.5657309262, 5830700.529607164]]}, "properties": {"id": "55262-55264-55266", "from": "364650805", "to": "707310491", "length_m": 503.32136797966865, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737290.5657309262, 5830700.529607164], [736936.9752717753, 5830342.476195976]]}, "properties": {"id": "55267-55265-55263", "from": "707310491", "to": "364650805", "length_m": 503.32136797966865, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737290.5657309262, 5830700.529607164], [737698.6115414539, 5831178.41433952]]}, "properties": {"id": "55268-55270-55272-55274-55276", "from": "707310491", "to": "2315437912", "length_m": 630.7335997826317, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737698.6115414539, 5831178.41433952], [737290.5657309262, 5830700.529607164]]}, "properties": {"id": "55277-55275-55273-55271-55269", "from": "2315437912", "to": "707310491", "length_m": 630.7335997826317, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837026.8393172221, 5810804.36196441], [837016.5401234665, 5810807.141476365]]}, "properties": {"id": "55278", "from": "309595876", "to": "1843397353", "length_m": 10.667665066819453, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837016.5401234665, 5810807.141476365], [837026.8393172221, 5810804.36196441]]}, "properties": {"id": "55279", "from": "1843397353", "to": "309595876", "length_m": 10.667665066819453, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790432.680787195, 5751506.902339065], [790447.166901482, 5751503.446368357]]}, "properties": {"id": "55280", "from": "518638174", "to": "518638211", "length_m": 14.892657236398017, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790447.166901482, 5751503.446368357], [790432.680787195, 5751506.902339065]]}, "properties": {"id": "55281", "from": "518638211", "to": "518638174", "length_m": 14.892657236398017, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838619.0024609313, 5805419.033449526], [838608.5178547159, 5805420.77813541]]}, "properties": {"id": "55287", "from": "608107551", "to": "244891982", "length_m": 10.62877677332243, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838608.5178547159, 5805420.77813541], [838619.0024609313, 5805419.033449526]]}, "properties": {"id": "55288", "from": "244891982", "to": "608107551", "length_m": 10.62877677332243, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790488.2805161795, 5751803.481966003], [790502.9612163248, 5751800.552436405]]}, "properties": {"id": "55289", "from": "518638287", "to": "518638293", "length_m": 14.970140252485338, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790502.9612163248, 5751800.552436405], [790488.2805161795, 5751803.481966003]]}, "properties": {"id": "55290", "from": "518638293", "to": "518638287", "length_m": 14.970140252485338, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748032.7482310506, 5758151.417079317], [748896.3704921264, 5758476.731607656]]}, "properties": {"id": "55291-55293-55295-55297-55299-55301-55303-55305-55307-55309-55311", "from": "2406598004", "to": "1835207007", "length_m": 944.1639811586573, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748896.3704921264, 5758476.731607656], [748032.7482310506, 5758151.417079317]]}, "properties": {"id": "55312-55310-55308-55306-55304-55302-55300-55298-55296-55294-55292", "from": "1835207007", "to": "2406598004", "length_m": 944.1639811586573, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760997.0623634779, 5762067.706113052], [760731.2398171665, 5761676.856493042]]}, "properties": {"id": "55313-55315-55317", "from": "1852765711", "to": "1852765743", "length_m": 473.0977221237543, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760731.2398171665, 5761676.856493042], [760997.0623634779, 5762067.706113052]]}, "properties": {"id": "55318-55316-55314", "from": "1852765743", "to": "1852765711", "length_m": 473.0977221237543, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760731.2398171665, 5761676.856493042], [760556.8196751565, 5761424.307094015]]}, "properties": {"id": "55319-55321", "from": "1852765743", "to": "1096015558", "length_m": 306.9260246797969, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760556.8196751565, 5761424.307094015], [760731.2398171665, 5761676.856493042]]}, "properties": {"id": "55322-55320", "from": "1096015558", "to": "1852765743", "length_m": 306.9260246797969, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760556.8196751565, 5761424.307094015], [759980.9717830395, 5760600.912240503]]}, "properties": {"id": "55323", "from": "1096015558", "to": "1882041560", "length_m": 1004.7785211541293, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759980.9717830395, 5760600.912240503], [760556.8196751565, 5761424.307094015]]}, "properties": {"id": "55324", "from": "1882041560", "to": "1096015558", "length_m": 1004.7785211541293, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759980.9717830395, 5760600.912240503], [759972.7173143012, 5760589.111396431]]}, "properties": {"id": "55325", "from": "1882041560", "to": "982267914", "length_m": 14.401255984128772, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759972.7173143012, 5760589.111396431], [759980.9717830395, 5760600.912240503]]}, "properties": {"id": "55326", "from": "982267914", "to": "1882041560", "length_m": 14.401255984128772, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759972.7173143012, 5760589.111396431], [759848.3087035489, 5760184.803573718]]}, "properties": {"id": "55327-55329-55331-55333-55335-55337-55339-55341-55343-55345-55347-55349-55351", "from": "982267914", "to": "982268205", "length_m": 448.45468005038816, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759848.3087035489, 5760184.803573718], [759972.7173143012, 5760589.111396431]]}, "properties": {"id": "55352-55350-55348-55346-55344-55342-55340-55338-55336-55334-55332-55330-55328", "from": "982268205", "to": "982267914", "length_m": 448.45468005038816, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759848.3087035489, 5760184.803573718], [760368.9154593371, 5759333.2281221915]]}, "properties": {"id": "55353-55355-55357-55359-55361-55363-55365-55367-55369-55371-55373-55375-55377", "from": "982268205", "to": "36693738", "length_m": 1004.3324675027316, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760368.9154593371, 5759333.2281221915], [759848.3087035489, 5760184.803573718]]}, "properties": {"id": "55378-55376-55374-55372-55370-55368-55366-55364-55362-55360-55358-55356-55354", "from": "36693738", "to": "982268205", "length_m": 1004.3324675027316, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760368.9154593371, 5759333.2281221915], [760653.3281387425, 5758903.163229804]]}, "properties": {"id": "55379-55381-55383-55385-31926-31928", "from": "36693738", "to": "36693740", "length_m": 516.2315343703251, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794307.0213219412, 5778326.4630213715], [794300.9912578121, 5778295.260500646]]}, "properties": {"id": "55387-55388", "from": "621549688", "to": "621549604", "length_m": 31.783612102342293, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761100.7799931498, 5762791.582340685], [761105.39280436, 5762777.578381436]]}, "properties": {"id": "55389", "from": "5857617038", "to": "5857617037", "length_m": 14.744114155657632, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761105.39280436, 5762777.578381436], [761100.7799931498, 5762791.582340685]]}, "properties": {"id": "55390", "from": "5857617037", "to": "5857617038", "length_m": 14.744114155657632, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752049.456468561, 5746228.178773224], [752004.7968058551, 5746236.3209108375]]}, "properties": {"id": "55403", "from": "52485285", "to": "3710136206", "length_m": 45.395813402991045, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752004.7968058551, 5746236.3209108375], [752049.456468561, 5746228.178773224]]}, "properties": {"id": "55404", "from": "3710136206", "to": "52485285", "length_m": 45.395813402991045, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752004.7968058551, 5746236.3209108375], [751068.6130864071, 5746406.90613364]]}, "properties": {"id": "55405-55407", "from": "3710136206", "to": "811082476", "length_m": 951.5982728180713, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751068.6130864071, 5746406.90613364], [752004.7968058551, 5746236.3209108375]]}, "properties": {"id": "55408-55406", "from": "811082476", "to": "3710136206", "length_m": 951.5982728180713, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751068.6130864071, 5746406.90613364], [750939.2160929893, 5746430.0834165905]]}, "properties": {"id": "55409", "from": "811082476", "to": "333977501", "length_m": 131.45633616977833, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750939.2160929893, 5746430.0834165905], [751068.6130864071, 5746406.90613364]]}, "properties": {"id": "55410", "from": "333977501", "to": "811082476", "length_m": 131.45633616977833, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750939.2160929893, 5746430.0834165905], [750368.9464126641, 5746532.442333419]]}, "properties": {"id": "55411-55413", "from": "333977501", "to": "177797327", "length_m": 579.3831682451071, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750368.9464126641, 5746532.442333419], [750939.2160929893, 5746430.0834165905]]}, "properties": {"id": "55414-55412", "from": "177797327", "to": "333977501", "length_m": 579.3831682451071, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750368.9464126641, 5746532.442333419], [749855.5327706411, 5746576.712941924]]}, "properties": {"id": "55415-55417-55419-55421-55423-55425-55427-55429-55431-55433-55435-55437-55439", "from": "177797327", "to": "917846344", "length_m": 520.4791026339526, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749855.5327706411, 5746576.712941924], [750368.9464126641, 5746532.442333419]]}, "properties": {"id": "55440-55438-55436-55434-55432-55430-55428-55426-55424-55422-55420-55418-55416", "from": "917846344", "to": "177797327", "length_m": 520.4791026339526, "freespeed_mps": 24.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749855.5327706411, 5746576.712941924], [749217.4777098726, 5746168.454661843]]}, "properties": {"id": "55441-55443-55445-55447-55449-55451-55453-55455-59066-59070-59072-59074-59076-59078-59080-59082-59084", "from": "917846344", "to": "811081794", "length_m": 854.6966832981824, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756119.8971886944, 5731995.118169397], [756362.6779488523, 5731998.898244529]]}, "properties": {"id": "55485-55487-55489-55491-55493-55495-55497-55499-55501-55503-55505-55507-55509-55511", "from": "5838943989", "to": "5838943775", "length_m": 257.62307966544523, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756362.6779488523, 5731998.898244529], [756119.8971886944, 5731995.118169397]]}, "properties": {"id": "55512-55510-55508-55506-55504-55502-55500-55498-55496-55494-55492-55490-55488-55486", "from": "5838943775", "to": "5838943989", "length_m": 257.62307966544523, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756430.8409514856, 5731706.889800333], [756667.4384499723, 5731741.301763702]]}, "properties": {"id": "55513-55515-55517-55519-55521-55523-55525", "from": "36705082", "to": "5838943768", "length_m": 246.52048898552414, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756667.4384499723, 5731741.301763702], [756430.8409514856, 5731706.889800333]]}, "properties": {"id": "55526-55524-55522-55520-55518-55516-55514", "from": "5838943768", "to": "36705082", "length_m": 246.52048898552414, "freespeed_mps": 18.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794270.3498689033, 5778278.863689505], [794276.6204831498, 5778309.435107843]]}, "properties": {"id": "55527-55528", "from": "621549608", "to": "502710903", "length_m": 31.20815342371885, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837726.316832454, 5814685.6685413215], [837712.7454510888, 5814688.649342974]]}, "properties": {"id": "55529", "from": "268386636", "to": "268386307", "length_m": 13.894875635442403, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837712.7454510888, 5814688.649342974], [837726.316832454, 5814685.6685413215]]}, "properties": {"id": "55530", "from": "268386307", "to": "268386636", "length_m": 13.894875635442403, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784885.9023872514, 5765714.210614388], [785683.6712950005, 5765454.697071742]]}, "properties": {"id": "55545-55546-55547-55548-55549-49718-49719-49720-49721-49722-49723-49724-49725-49726-49727-49728-49729-49730-49731", "from": "3577738561", "to": "1270758466", "length_m": 846.7046583430879, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801047.1364605732, 5785497.842324017], [801728.4006744015, 5785587.904408142]]}, "properties": {"id": "55559-55560-55561-55562-55563-55564-55565-55566-55567-55568-55569-55570-55571-55572", "from": "619112894", "to": "385128529", "length_m": 758.6923013402949, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758818.9599778918, 5730080.067088445], [758955.8252094265, 5730567.612865845]]}, "properties": {"id": "5556-5554-5552-5550-5548-5546-5544-5542-5540-5538-5536-5534-5532-5530-5528-5526", "from": "832507840", "to": "832507812", "length_m": 630.8093203111939, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758818.9599778918, 5730080.067088445], [758747.9757559404, 5729934.193449805]]}, "properties": {"id": "5557-5559-5561-5563-5565-5567-5569", "from": "832507840", "to": "36705043", "length_m": 174.55500552199854, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796656.8488942779, 5781575.293469162], [796668.5454476548, 5781557.4616894545]]}, "properties": {"id": "55573", "from": "286389331", "to": "286389293", "length_m": 21.32561207023416, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834868.1384410388, 5812560.8041888345], [834872.0100701007, 5812580.89486629]]}, "properties": {"id": "55578", "from": "3088525625", "to": "3088525626", "length_m": 20.460323343515377, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[796661.302034767, 5781550.634372869], [796649.5484200488, 5781567.623501042]]}, "properties": {"id": "55579", "from": "632191149", "to": "2069599529", "length_m": 20.65860439691204, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834884.11589747, 5812571.695685061], [834868.1384410388, 5812560.8041888345]]}, "properties": {"id": "55580", "from": "3088525624", "to": "3088525625", "length_m": 19.3365922289776, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774355.3057410555, 5765796.952314047], [773733.6330507217, 5765814.482032457]]}, "properties": {"id": "55581-55582-55583", "from": "2379273324", "to": "3187946416", "length_m": 621.949384807288, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773733.6330507217, 5765814.482032457], [772741.5954677714, 5765857.798334507]]}, "properties": {"id": "55584-55585-55586-55587-55588-55589-55590", "from": "3187946416", "to": "3187946129", "length_m": 993.2981387392708, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772741.5954677714, 5765857.798334507], [771102.3700648957, 5765880.117757097]]}, "properties": {"id": "55591", "from": "3187946129", "to": "2379163074", "length_m": 1639.3773411552108, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771102.3700648957, 5765880.117757097], [771069.9665784709, 5765880.879819605]]}, "properties": {"id": "55592", "from": "2379163074", "to": "2379163073", "length_m": 32.41244619210867, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771069.9665784709, 5765880.879819605], [770525.7840323341, 5765885.280462697]]}, "properties": {"id": "55593", "from": "2379163073", "to": "3187975593", "length_m": 544.2003380505582, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770525.7840323341, 5765885.280462697], [769966.1071315059, 5765825.012851767]]}, "properties": {"id": "55594-55595-55596-55597-55598-55599", "from": "3187975593", "to": "2373877423", "length_m": 563.7740974226822, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769966.1071315059, 5765825.012851767], [769395.7729847103, 5765646.8780458355]]}, "properties": {"id": "55600-55601-55602-55603", "from": "2373877423", "to": "2379163027", "length_m": 598.5283805644477, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769395.7729847103, 5765646.8780458355], [769357.7345098874, 5765630.77544302]]}, "properties": {"id": "55604", "from": "2379163027", "to": "2373877419", "length_m": 41.30640842335558, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769357.7345098874, 5765630.77544302], [768782.0809883557, 5765394.151900214]]}, "properties": {"id": "55605", "from": "2373877419", "to": "2373877432", "length_m": 622.38868545054, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768782.0809883557, 5765394.151900214], [768214.1183441619, 5765161.258099845]]}, "properties": {"id": "55606", "from": "2373877432", "to": "4908350461", "length_m": 613.8575449366868, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768214.1183441619, 5765161.258099845], [768178.1103399785, 5765144.638660441]]}, "properties": {"id": "55607", "from": "4908350461", "to": "2373877435", "length_m": 39.65831721220411, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768178.1103399785, 5765144.638660441], [767624.316106217, 5764896.347977829]]}, "properties": {"id": "55608-55609-55610-55611", "from": "2373877435", "to": "3187980403", "length_m": 607.000457037844, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767624.316106217, 5764896.347977829], [766418.8585431844, 5764417.616281193]]}, "properties": {"id": "55612-55613-55614", "from": "3187980403", "to": "2379163040", "length_m": 1297.1019939072753, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766418.8585431844, 5764417.616281193], [766382.1252331135, 5764404.557850281]]}, "properties": {"id": "55615", "from": "2379163040", "to": "2379163043", "length_m": 38.98536494833322, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766382.1252331135, 5764404.557850281], [765528.5683751379, 5764153.156497525]]}, "properties": {"id": "55616-55617-19693-19716-19717", "from": "2379163043", "to": "2373877441", "length_m": 889.9693330931033, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793772.4052406047, 5774083.87572917], [793729.0270928104, 5774073.629579565]]}, "properties": {"id": "55618-55619", "from": "318039790", "to": "1557825485", "length_m": 44.574223863278284, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836183.4448730396, 5807418.137625741], [835999.1685016885, 5807708.638426624]]}, "properties": {"id": "55620-55621-55622-55623-55624-55625-55626", "from": "2325319136", "to": "75148594", "length_m": 346.3166968196042, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836570.7577968261, 5806871.488283988], [836600.5509090135, 5806818.927509493]]}, "properties": {"id": "55627-55628-55629-55630-55631", "from": "320854747", "to": "36021205", "length_m": 61.06238647127348, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759249.1644546826, 5729607.678647973], [759211.5721493613, 5729635.451663593]]}, "properties": {"id": "55632", "from": "832508171", "to": "832508460", "length_m": 46.73886837732058, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759211.5721493613, 5729635.451663593], [759249.1644546826, 5729607.678647973]]}, "properties": {"id": "55633", "from": "832508460", "to": "832508171", "length_m": 46.73886837732058, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759211.5721493613, 5729635.451663593], [759181.6230032607, 5729669.3993653115]]}, "properties": {"id": "55634-55636", "from": "832508460", "to": "832509710", "length_m": 47.25402840946412, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759181.6230032607, 5729669.3993653115], [759211.5721493613, 5729635.451663593]]}, "properties": {"id": "55637-55635", "from": "832509710", "to": "832508460", "length_m": 47.25402840946412, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836630.653760158, 5806840.633489327], [837023.6222165388, 5806978.42362109]]}, "properties": {"id": "55641-55642-55643-55644-55645-55646-55647-17849-17837", "from": "1833721396", "to": "3323244002", "length_m": 417.9754816931461, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[819287.432388958, 5795884.303737854], [818516.0758945646, 5795497.933732825]]}, "properties": {"id": "55651-40950-40951-40952-40953-40954-40955-40956-40957", "from": "661569593", "to": "661569043", "length_m": 866.1020288043914, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837100.7905291589, 5806904.857096549], [837124.4923575546, 5806988.894764103]]}, "properties": {"id": "55653-55654-55655", "from": "32549532", "to": "4006753156", "length_m": 87.70510389517875, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788291.5050346013, 5750341.994395946], [788286.9531463797, 5750330.965050025]]}, "properties": {"id": "55657-55658-55659-55660", "from": "508067935", "to": "508067937", "length_m": 12.636933731772949, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788286.9531463797, 5750330.965050025], [788277.8606100405, 5750329.778664924]]}, "properties": {"id": "55661-55662", "from": "508067937", "to": "508067956", "length_m": 9.40024131817042, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788277.8606100405, 5750329.778664924], [788270.7301683933, 5750338.18045776]]}, "properties": {"id": "55663-55664-55665", "from": "508067956", "to": "508067955", "length_m": 11.511351643207968, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788270.7301683933, 5750338.18045776], [788273.6784659929, 5750347.199890712]]}, "properties": {"id": "55666-55667", "from": "508067955", "to": "508067954", "length_m": 9.757367066168042, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788273.6784659929, 5750347.199890712], [788283.0089640042, 5750350.144951005]]}, "properties": {"id": "55668-55669-55670", "from": "508067954", "to": "508067961", "length_m": 10.112457218775752, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788283.0089640042, 5750350.144951005], [788291.5050346013, 5750341.994395946]]}, "properties": {"id": "55671-55672-55673-55674", "from": "508067961", "to": "508067935", "length_m": 12.435591174740553, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837065.8488579642, 5806971.820115928], [836647.6131611762, 5806831.542877274]]}, "properties": {"id": "55675-17836-17844-17845-17846-17847-17848", "from": "253521108", "to": "36021206", "length_m": 442.2076090427295, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788781.734657586, 5751139.565540636], [788789.7328919009, 5751181.535952214]]}, "properties": {"id": "55676-55678", "from": "508068161", "to": "508067803", "length_m": 42.756470669009296, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788789.7328919009, 5751181.535952214], [788781.734657586, 5751139.565540636]]}, "properties": {"id": "55679-55677", "from": "508067803", "to": "508068161", "length_m": 42.756470669009296, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788789.7328919009, 5751181.535952214], [788804.7571685453, 5751267.656659032]]}, "properties": {"id": "55680-55682", "from": "508067803", "to": "508067792", "length_m": 87.4214220686712, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788804.7571685453, 5751267.656659032], [788789.7328919009, 5751181.535952214]]}, "properties": {"id": "55683-55681", "from": "508067792", "to": "508067803", "length_m": 87.4214220686712, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788804.7571685453, 5751267.656659032], [788807.4567959982, 5751280.952795366]]}, "properties": {"id": "55684", "from": "508067792", "to": "508067745", "length_m": 13.567432689345512, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788807.4567959982, 5751280.952795366], [788804.7571685453, 5751267.656659032]]}, "properties": {"id": "55685", "from": "508067745", "to": "508067792", "length_m": 13.567432689345512, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788807.4567959982, 5751280.952795366], [788821.4371553867, 5751353.562450244]]}, "properties": {"id": "55686", "from": "508067745", "to": "508067783", "length_m": 73.94330546304698, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788821.4371553867, 5751353.562450244], [788807.4567959982, 5751280.952795366]]}, "properties": {"id": "55687", "from": "508067783", "to": "508067745", "length_m": 73.94330546304698, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788821.4371553867, 5751353.562450244], [788831.6283201623, 5751411.047771772]]}, "properties": {"id": "55688-55690", "from": "508067783", "to": "508067889", "length_m": 58.402859117968546, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788831.6283201623, 5751411.047771772], [788821.4371553867, 5751353.562450244]]}, "properties": {"id": "55691-55689", "from": "508067889", "to": "508067783", "length_m": 58.402859117968546, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788831.6283201623, 5751411.047771772], [788832.5383646047, 5751436.211471048]]}, "properties": {"id": "55692-55694", "from": "508067889", "to": "321711589", "length_m": 25.245563619753984, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788832.5383646047, 5751436.211471048], [788831.6283201623, 5751411.047771772]]}, "properties": {"id": "55695-55693", "from": "321711589", "to": "508067889", "length_m": 25.245563619753984, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758747.9757559404, 5729934.193449805], [758818.9599778918, 5730080.067088445]]}, "properties": {"id": "5570-5568-5566-5564-5562-5560-5558", "from": "36705043", "to": "832507840", "length_m": 174.55500552199854, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830224.835088626, 5814272.294931652], [830213.3914907192, 5814258.566682481]]}, "properties": {"id": "55702", "from": "981838892", "to": "981835734", "length_m": 17.872346104222753, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830236.0307725878, 5814244.638560183], [830252.9030833812, 5814254.6243778]]}, "properties": {"id": "55703-55704-55705-55706", "from": "369133283", "to": "981838907", "length_m": 21.73522920754601, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759320.484622174, 5729383.277149947], [759524.0564096947, 5729214.578094862]]}, "properties": {"id": "5571-5573-5575", "from": "832507894", "to": "832508639", "length_m": 264.41791416409706, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787685.5348914354, 5757776.619198186], [786092.0549969081, 5758073.897508104]]}, "properties": {"id": "55731", "from": "2574066808", "to": "148800320", "length_m": 1620.9727195435685, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786092.0549969081, 5758073.897508104], [787685.5348914354, 5757776.619198186]]}, "properties": {"id": "55732", "from": "148800320", "to": "2574066808", "length_m": 1620.9727195435685, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787685.5348914354, 5757776.619198186], [788165.8024203058, 5760340.773697633]]}, "properties": {"id": "55733", "from": "2574066808", "to": "469074029", "length_m": 2608.743986898085, "freespeed_mps": 20.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788165.8024203058, 5760340.773697633], [787685.5348914354, 5757776.619198186]]}, "properties": {"id": "55734", "from": "469074029", "to": "2574066808", "length_m": 2608.743986898085, "freespeed_mps": 20.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793220.7487621149, 5756740.03096791], [794339.5541578217, 5756528.572211787]]}, "properties": {"id": "55735-55737", "from": "2574066796", "to": "617920869", "length_m": 1138.613329782075, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794339.5541578217, 5756528.572211787], [793220.7487621149, 5756740.03096791]]}, "properties": {"id": "55738-55736", "from": "617920869", "to": "2574066796", "length_m": 1138.613329782075, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794339.5541578217, 5756528.572211787], [794894.667357305, 5756422.839469023]]}, "properties": {"id": "55739", "from": "617920869", "to": "510175115", "length_m": 565.092979709034, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794894.667357305, 5756422.839469023], [794339.5541578217, 5756528.572211787]]}, "properties": {"id": "55740", "from": "510175115", "to": "617920869", "length_m": 565.092979709034, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791635.2710095195, 5776621.300716323], [792163.0150209388, 5775771.916947609]]}, "properties": {"id": "55744-55745-55746-55747-55748-55749-55750-57788-57789-57790-57791-57792", "from": "318039338", "to": "268179135", "length_m": 1001.0708712840872, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832638.6215847551, 5821277.793855337], [832814.8401072731, 5821228.780260545]]}, "properties": {"id": "55751-55752-55753", "from": "5427790022", "to": "603438238", "length_m": 182.93873216692893, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832814.8401072731, 5821228.780260545], [832827.2790289826, 5821225.254139021]]}, "properties": {"id": "55754", "from": "603438238", "to": "26032508", "length_m": 12.929048901733198, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759524.0564096947, 5729214.578094862], [759320.484622174, 5729383.277149947]]}, "properties": {"id": "5576-5574-5572", "from": "832508639", "to": "832507894", "length_m": 264.41791416409706, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759524.0564096947, 5729214.578094862], [759572.6369018832, 5729167.057852414]]}, "properties": {"id": "5577", "from": "832508639", "to": "832510333", "length_m": 67.9576166712978, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791256.2845936441, 5777151.427116953], [791158.1618979741, 5777257.27991096]]}, "properties": {"id": "55770-55771-55772-55773-55774-55775", "from": "318028182", "to": "334409425", "length_m": 144.5387026408862, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791158.1618979741, 5777257.27991096], [791034.0164906543, 5777373.465152087]]}, "properties": {"id": "55776-36287-36294-36295", "from": "334409425", "to": "334409503", "length_m": 170.03263596489927, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792979.8529818259, 5768666.74927451], [792983.3840669787, 5768654.729145135]]}, "properties": {"id": "55777", "from": "36692770", "to": "36692776", "length_m": 12.52805144109321, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792983.3840669787, 5768654.729145135], [792967.16939461, 5768569.43294421]]}, "properties": {"id": "55778", "from": "36692776", "to": "360499960", "length_m": 86.82371499395448, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759572.6369018832, 5729167.057852414], [759524.0564096947, 5729214.578094862]]}, "properties": {"id": "5578", "from": "832510333", "to": "832508639", "length_m": 67.9576166712978, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800582.7785778672, 5784975.532420226], [800961.0588408483, 5785470.619838685]]}, "properties": {"id": "55794-55795-55796-55797-55798-55799-55800-55801-55802-55803-55804-55805", "from": "322483539", "to": "322483534", "length_m": 651.595809292362, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[800961.0588408483, 5785470.619838685], [801047.1364605732, 5785497.842324017]]}, "properties": {"id": "55806-55807-55808-55554-55555-55556-55557-55558", "from": "322483534", "to": "619112894", "length_m": 266.33853871920337, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832082.7955327224, 5821372.768169595], [831990.867182188, 5821391.67816001]]}, "properties": {"id": "55809-55810", "from": "5931587936", "to": "2299094462", "length_m": 93.85312633251998, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831990.867182188, 5821391.67816001], [831844.3990732379, 5821423.543773826]]}, "properties": {"id": "55811", "from": "2299094462", "to": "1312612515", "length_m": 149.89437659201303, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831844.3990732379, 5821423.543773826], [831691.2321595168, 5821451.428663112]]}, "properties": {"id": "55812-55813-55814", "from": "1312612515", "to": "26118250", "length_m": 155.69814231888208, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790857.7921194003, 5757180.175598641], [792440.5583271749, 5756887.384782911]]}, "properties": {"id": "55815", "from": "270450949", "to": "36701491", "length_m": 1609.6196194115244, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792440.5583271749, 5756887.384782911], [790857.7921194003, 5757180.175598641]]}, "properties": {"id": "55816", "from": "36701491", "to": "270450949", "length_m": 1609.6196194115244, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792440.5583271749, 5756887.384782911], [792463.5021032025, 5756883.05304563]]}, "properties": {"id": "55817", "from": "36701491", "to": "331121470", "length_m": 23.349107143170933, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792463.5021032025, 5756883.05304563], [792440.5583271749, 5756887.384782911]]}, "properties": {"id": "55818", "from": "331121470", "to": "36701491", "length_m": 23.349107143170933, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792463.5021032025, 5756883.05304563], [793220.7487621149, 5756740.03096791]]}, "properties": {"id": "55819", "from": "331121470", "to": "2574066796", "length_m": 770.634682969724, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789446.5097481234, 5766623.049804277], [789854.2920337536, 5766988.423762637]]}, "properties": {"id": "5582-3121-54613-54614-54615-54616-54617-54618-54619-54620-54621-54622-54612-54641", "from": "1357342798", "to": "827491373", "length_m": 553.907195306484, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793220.7487621149, 5756740.03096791], [792463.5021032025, 5756883.05304563]]}, "properties": {"id": "55820", "from": "2574066796", "to": "331121470", "length_m": 770.634682969724, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778975.338024934, 5744799.6354956515], [778920.7423661652, 5744894.023946897]]}, "properties": {"id": "55827", "from": "289545959", "to": "289545914", "length_m": 109.04066080684954, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778920.7423661652, 5744894.023946897], [778975.338024934, 5744799.6354956515]]}, "properties": {"id": "55828", "from": "289545914", "to": "289545959", "length_m": 109.04066080684954, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776508.4523538228, 5743841.574929651], [776701.572747363, 5743802.495217702]]}, "properties": {"id": "55829-55831-55833-55835-55837-55839-55841", "from": "295250997", "to": "295250993", "length_m": 201.1600457365786, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791106.6967616731, 5754651.092932455], [791117.1459039369, 5754672.500733646]]}, "properties": {"id": "5583", "from": "2244716775", "to": "2548347248", "length_m": 23.82180772666461, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776701.572747363, 5743802.495217702], [776508.4523538228, 5743841.574929651]]}, "properties": {"id": "55842-55840-55838-55836-55834-55832-55830", "from": "295250993", "to": "295250997", "length_m": 201.1600457365786, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776701.572747363, 5743802.495217702], [776765.7125605377, 5743772.606039735]]}, "properties": {"id": "55843-55845-55847", "from": "295250993", "to": "295250991", "length_m": 71.21048712514644, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776765.7125605377, 5743772.606039735], [776701.572747363, 5743802.495217702]]}, "properties": {"id": "55848-55846-55844", "from": "295250991", "to": "295250993", "length_m": 71.21048712514644, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776765.7125605377, 5743772.606039735], [777142.8071131944, 5743561.631649968]]}, "properties": {"id": "55849-55851-55853-55855-55857-55859-55861-55863-55865-55867-55869-55871-55873", "from": "295250991", "to": "295250958", "length_m": 491.0701438612914, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789155.2913401789, 5766328.030873562], [788586.4673790288, 5765671.564897807]]}, "properties": {"id": "5585-5586", "from": "436945680", "to": "436942197", "length_m": 868.6366439695164, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829178.9699409041, 5821958.816025637], [829279.9708150639, 5821921.731676894]]}, "properties": {"id": "5587-5588-5589-5590-5591-5592-5593-5594-5595-5596-5597", "from": "33087039", "to": "598036402", "length_m": 126.3219450128483, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777142.8071131944, 5743561.631649968], [776765.7125605377, 5743772.606039735]]}, "properties": {"id": "55874-55872-55870-55868-55866-55864-55862-55860-55858-55856-55854-55852-55850", "from": "295250958", "to": "295250991", "length_m": 491.0701438612914, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775328.9924311019, 5771044.9881785475], [775170.9199746036, 5770368.889267408]]}, "properties": {"id": "55875", "from": "475586085", "to": "475577051", "length_m": 316.40256040830917, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775170.9199746036, 5770368.889267408], [775328.9924311019, 5771044.9881785475]]}, "properties": {"id": "55876", "from": "475577051", "to": "475586085", "length_m": 316.40256040830917, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778763.2166175668, 5744744.7083309805], [778841.0137052215, 5744755.304168291]]}, "properties": {"id": "55883-55885", "from": "289545962", "to": "289545965", "length_m": 98.11846401692965, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778841.0137052215, 5744755.304168291], [778763.2166175668, 5744744.7083309805]]}, "properties": {"id": "55886-55884", "from": "289545965", "to": "289545962", "length_m": 98.11846401692965, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777701.6527941726, 5743309.135574145], [777635.7833045677, 5743511.124068368]]}, "properties": {"id": "55887", "from": "289884894", "to": "289884813", "length_m": 212.4573875780988, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777635.7833045677, 5743511.124068368], [777701.6527941726, 5743309.135574145]]}, "properties": {"id": "55888", "from": "289884813", "to": "289884894", "length_m": 212.4573875780988, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777635.7833045677, 5743511.124068368], [777558.7471940587, 5743720.553821036]]}, "properties": {"id": "55889-55891", "from": "289884813", "to": "289884837", "length_m": 223.14879620238295, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777558.7471940587, 5743720.553821036], [777635.7833045677, 5743511.124068368]]}, "properties": {"id": "55892-55890", "from": "289884837", "to": "289884813", "length_m": 223.14879620238295, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777558.7471940587, 5743720.553821036], [777467.128340397, 5743995.085946098]]}, "properties": {"id": "55893-55895", "from": "289884837", "to": "289884834", "length_m": 289.41648595880326, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777467.128340397, 5743995.085946098], [777558.7471940587, 5743720.553821036]]}, "properties": {"id": "55896-55894", "from": "289884834", "to": "289884837", "length_m": 289.41648595880326, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779116.6629705662, 5744871.27175587], [778975.338024934, 5744799.6354956515]]}, "properties": {"id": "55897-55899-55901", "from": "289545955", "to": "289545959", "length_m": 159.93666268055316, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778975.338024934, 5744799.6354956515], [779116.6629705662, 5744871.27175587]]}, "properties": {"id": "55902-55900-55898", "from": "289545959", "to": "289545955", "length_m": 159.93666268055316, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778975.338024934, 5744799.6354956515], [778742.9683744332, 5744655.759163614]]}, "properties": {"id": "55903-55905-55907-55909-55911-55913-55915-39694", "from": "289545959", "to": "289545865", "length_m": 303.3653114617432, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777454.1252356187, 5742958.902298657], [777346.341868582, 5742715.331091522]]}, "properties": {"id": "55917-55919-55921-2231-2229-2074", "from": "289885501", "to": "289884783", "length_m": 398.9271206358648, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768447.2730052272, 5776082.124835857], [768637.8567981834, 5776252.765404044]]}, "properties": {"id": "55923-55925-55927-55929", "from": "475586101", "to": "475586128", "length_m": 256.80449817961346, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768637.8567981834, 5776252.765404044], [768447.2730052272, 5776082.124835857]]}, "properties": {"id": "55930-55928-55926-55924", "from": "475586128", "to": "475586101", "length_m": 256.80449817961346, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768637.8567981834, 5776252.765404044], [769275.0480750981, 5776816.398498993]]}, "properties": {"id": "55931", "from": "475586128", "to": "475586130", "length_m": 850.702642334596, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769275.0480750981, 5776816.398498993], [768637.8567981834, 5776252.765404044]]}, "properties": {"id": "55932", "from": "475586130", "to": "475586128", "length_m": 850.702642334596, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769275.0480750981, 5776816.398498993], [769961.1763791263, 5777260.526839486]]}, "properties": {"id": "55933-55935-55937-55939-55941-55943-55945-55947-55949-55951-55953-55955-55957-55959-55961-55963-55965-55967-55969-55971-55973-55975-55977-55979", "from": "475586130", "to": "5604390114", "length_m": 870.0578485721438, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751458.7395958905, 5843361.914620122], [751388.7923307281, 5843338.216764497]]}, "properties": {"id": "5598-5599-5600-5601-5602", "from": "364002146", "to": "364001786", "length_m": 78.70336211309517, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769961.1763791263, 5777260.526839486], [769275.0480750981, 5776816.398498993]]}, "properties": {"id": "55980-55978-55976-55974-55972-55970-55968-55966-55964-55962-55960-55958-55956-55954-55952-55950-55948-55946-55944-55942-55940-55938-55936-55934", "from": "5604390114", "to": "475586130", "length_m": 870.0578485721438, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769961.1763791263, 5777260.526839486], [770175.8255141363, 5777257.386337588]]}, "properties": {"id": "55981-55983-55985-55987-55989-55991-55993", "from": "5604390114", "to": "5604390107", "length_m": 221.87432589541532, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770175.8255141363, 5777257.386337588], [769961.1763791263, 5777260.526839486]]}, "properties": {"id": "55994-55992-55990-55988-55986-55984-55982", "from": "5604390107", "to": "5604390114", "length_m": 221.87432589541532, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778236.1752120899, 5744762.227847961], [778256.1510816831, 5744758.492061396]]}, "properties": {"id": "55995", "from": "289545933", "to": "289545852", "length_m": 20.32219145565779, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778256.1510816831, 5744758.492061396], [778236.1752120899, 5744762.227847961]]}, "properties": {"id": "55996", "from": "289545852", "to": "289545933", "length_m": 20.32219145565779, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778256.1510816831, 5744758.492061396], [778357.9095258834, 5744742.314507653]]}, "properties": {"id": "55997", "from": "289545852", "to": "289545365", "length_m": 103.03637307375404, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778357.9095258834, 5744742.314507653], [778256.1510816831, 5744758.492061396]]}, "properties": {"id": "55998", "from": "289545365", "to": "289545852", "length_m": 103.03637307375404, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777360.4358413843, 5742931.817626092], [777432.9882774341, 5743060.638783429]]}, "properties": {"id": "55999-56001-56003-56005-56007-56009-56011-56013-56015-56017", "from": "289885504", "to": "289885444", "length_m": 173.90081507562135, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777432.9882774341, 5743060.638783429], [777360.4358413843, 5742931.817626092]]}, "properties": {"id": "56018-56016-56014-56012-56010-56008-56006-56004-56002-56000", "from": "289885444", "to": "289885504", "length_m": 173.90081507562135, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777432.9882774341, 5743060.638783429], [777419.2783596937, 5743126.012403074]]}, "properties": {"id": "56019", "from": "289885444", "to": "289884778", "length_m": 66.79574834287781, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777419.2783596937, 5743126.012403074], [777432.9882774341, 5743060.638783429]]}, "properties": {"id": "56020", "from": "289884778", "to": "289885444", "length_m": 66.79574834287781, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777419.2783596937, 5743126.012403074], [777404.4595339326, 5743197.01412235]]}, "properties": {"id": "56021", "from": "289884778", "to": "289884786", "length_m": 72.53166028578705, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777404.4595339326, 5743197.01412235], [777419.2783596937, 5743126.012403074]]}, "properties": {"id": "56022", "from": "289884786", "to": "289884778", "length_m": 72.53166028578705, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777404.4595339326, 5743197.01412235], [777373.5592198533, 5743336.660493901]]}, "properties": {"id": "56023", "from": "289884786", "to": "289884787", "length_m": 143.0242585283152, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777373.5592198533, 5743336.660493901], [777404.4595339326, 5743197.01412235]]}, "properties": {"id": "56024", "from": "289884787", "to": "289884786", "length_m": 143.0242585283152, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775640.29624267, 5770987.370393131], [775328.9924311019, 5771044.9881785475]]}, "properties": {"id": "56025", "from": "475586081", "to": "475586085", "length_m": 316.59101689227003, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775328.9924311019, 5771044.9881785475], [775640.29624267, 5770987.370393131]]}, "properties": {"id": "56026", "from": "475586085", "to": "475586081", "length_m": 316.59101689227003, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775328.9924311019, 5771044.9881785475], [773903.6175525775, 5771305.365598052]]}, "properties": {"id": "56027", "from": "475586085", "to": "5320757593", "length_m": 1448.9616757516023, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773903.6175525775, 5771305.365598052], [775328.9924311019, 5771044.9881785475]]}, "properties": {"id": "56028", "from": "5320757593", "to": "475586085", "length_m": 1448.9616757516023, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773903.6175525775, 5771305.365598052], [772132.6286390701, 5771628.507112759]]}, "properties": {"id": "56029", "from": "5320757593", "to": "5604428499", "length_m": 1800.228363218236, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772132.6286390701, 5771628.507112759], [773903.6175525775, 5771305.365598052]]}, "properties": {"id": "56030", "from": "5604428499", "to": "5320757593", "length_m": 1800.228363218236, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772132.6286390701, 5771628.507112759], [770552.2136948489, 5771916.5332711935]]}, "properties": {"id": "56031", "from": "5604428499", "to": "559367582", "length_m": 1606.446530584916, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770552.2136948489, 5771916.5332711935], [772132.6286390701, 5771628.507112759]]}, "properties": {"id": "56032", "from": "559367582", "to": "5604428499", "length_m": 1606.446530584916, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770552.2136948489, 5771916.5332711935], [767373.5794890758, 5772450.922294649]]}, "properties": {"id": "56033-56035-56037-56039-56041-56043-56045-56047-56049", "from": "559367582", "to": "475586094", "length_m": 3226.221467835168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767373.5794890758, 5772450.922294649], [770552.2136948489, 5771916.5332711935]]}, "properties": {"id": "56050-56048-56046-56044-56042-56040-56038-56036-56034", "from": "475586094", "to": "559367582", "length_m": 3226.221467835168, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767373.5794890758, 5772450.922294649], [767932.0694846931, 5775618.983549098]]}, "properties": {"id": "56051-56053-56055-56057-56059", "from": "475586094", "to": "475586118", "length_m": 3220.251963446044, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767932.0694846931, 5775618.983549098], [767373.5794890758, 5772450.922294649]]}, "properties": {"id": "56060-56058-56056-56054-56052", "from": "475586118", "to": "475586094", "length_m": 3220.251963446044, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778565.7835385317, 5744694.379431638], [778533.9928525933, 5744541.228326616]]}, "properties": {"id": "56070", "from": "289545952", "to": "289545976", "length_m": 156.41581971323197, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778533.9928525933, 5744541.228326616], [778565.7835385317, 5744694.379431638]]}, "properties": {"id": "56071", "from": "289545976", "to": "289545952", "length_m": 156.41581971323197, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778719.3326629796, 5744359.209410843], [778532.7860207118, 5744394.541393228]]}, "properties": {"id": "56072-56074-56076-56078-56080", "from": "289885360", "to": "2562476557", "length_m": 191.80283728233977, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778532.7860207118, 5744394.541393228], [778719.3326629796, 5744359.209410843]]}, "properties": {"id": "56081-56079-56077-56075-56073", "from": "2562476557", "to": "289885360", "length_m": 191.80283728233977, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778221.7146276602, 5744615.4002835965], [778312.1078451297, 5744595.070837347]]}, "properties": {"id": "56087", "from": "289545853", "to": "297395416", "length_m": 92.65106648756158, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778312.1078451297, 5744595.070837347], [778221.7146276602, 5744615.4002835965]]}, "properties": {"id": "56088", "from": "297395416", "to": "289545853", "length_m": 92.65106648756158, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778312.1078451297, 5744595.070837347], [778385.882199877, 5744582.738990668]]}, "properties": {"id": "56089-56091-56093", "from": "297395416", "to": "289545363", "length_m": 75.26370358368794, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778385.882199877, 5744582.738990668], [778312.1078451297, 5744595.070837347]]}, "properties": {"id": "56094-56092-56090", "from": "289545363", "to": "297395416", "length_m": 75.26370358368794, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777860.4803650449, 5743898.182268786], [777762.2132078503, 5743865.247119164]]}, "properties": {"id": "56095", "from": "289884983", "to": "289884987", "length_m": 103.63955905255261, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777762.2132078503, 5743865.247119164], [777860.4803650449, 5743898.182268786]]}, "properties": {"id": "56096", "from": "289884987", "to": "289884983", "length_m": 103.63955905255261, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778956.1002838402, 5744911.946451715], [778896.4645270343, 5744963.645469375]]}, "properties": {"id": "56097-56099", "from": "289545911", "to": "289545974", "length_m": 94.04646750396046, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778896.4645270343, 5744963.645469375], [778956.1002838402, 5744911.946451715]]}, "properties": {"id": "56100-56098", "from": "289545974", "to": "289545911", "length_m": 94.04646750396046, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777838.1243414609, 5743458.050703491], [777751.7679066551, 5743426.538098856]]}, "properties": {"id": "56107", "from": "289884872", "to": "289884876", "length_m": 91.92648165344677, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777751.7679066551, 5743426.538098856], [777838.1243414609, 5743458.050703491]]}, "properties": {"id": "56108", "from": "289884876", "to": "289884872", "length_m": 91.92648165344677, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778651.4711811901, 5745163.447265632], [778382.5688943197, 5745120.432849645]]}, "properties": {"id": "56112-56114-56488", "from": "289545372", "to": "289545846", "length_m": 346.42762100370857, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761286.9500801944, 5762507.603799269], [761348.0677874777, 5762606.427317185]]}, "properties": {"id": "56116-56118-56120-56122", "from": "1852765707", "to": "1852765701", "length_m": 131.8765715722762, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761348.0677874777, 5762606.427317185], [761286.9500801944, 5762507.603799269]]}, "properties": {"id": "56123-56121-56119-56117", "from": "1852765701", "to": "1852765707", "length_m": 131.8765715722762, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778538.6969344437, 5745079.067974391], [778382.5688943197, 5745120.432849645]]}, "properties": {"id": "56124", "from": "289545370", "to": "289545846", "length_m": 161.51476012727784, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778382.5688943197, 5745120.432849645], [778538.6969344437, 5745079.067974391]]}, "properties": {"id": "56125", "from": "289545846", "to": "289545370", "length_m": 161.51476012727784, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832525.1786685865, 5813009.207789335], [832539.1087599618, 5812959.032004086]]}, "properties": {"id": "56126-56127-56128-56129-56130", "from": "298347813", "to": "298347857", "length_m": 52.40373077835042, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752072.1513283527, 5838517.295753878], [752112.066513093, 5838746.266686805]]}, "properties": {"id": "56131-56133-56135-56137", "from": "363998609", "to": "363998721", "length_m": 232.42398840871036, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752112.066513093, 5838746.266686805], [752072.1513283527, 5838517.295753878]]}, "properties": {"id": "56138-56136-56134-56132", "from": "363998721", "to": "363998609", "length_m": 232.42398840871036, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760731.2398171665, 5761676.856493042], [761379.4109357957, 5761532.187773385]]}, "properties": {"id": "56139-56141-56143-56145-56147-56149-56151-56153-56155-56157-56159-56161-56163-56165-56167-56169-56171-56173-56175-56177", "from": "1852765743", "to": "1852765790", "length_m": 710.4812261475698, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761379.4109357957, 5761532.187773385], [760731.2398171665, 5761676.856493042]]}, "properties": {"id": "56178-56176-56174-56172-56170-56168-56166-56164-56162-56160-56158-56156-56154-56152-56150-56148-56146-56144-56142-56140", "from": "1852765790", "to": "1852765743", "length_m": 710.4812261475698, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778719.3326629796, 5744359.209410843], [778729.0361920143, 5744367.9527751915]]}, "properties": {"id": "56179-56180-56181-56182-56183", "from": "289885360", "to": "289885595", "length_m": 14.613062995226196, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778729.0361920143, 5744367.9527751915], [778731.9523000671, 5744351.159627951]]}, "properties": {"id": "56184-56185-56186-56187-56188-56189-56190", "from": "289885595", "to": "289885584", "length_m": 22.929567040391248, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778731.9523000671, 5744351.159627951], [778719.3326629796, 5744359.209410843]]}, "properties": {"id": "56191-56192-56193-56194-56195-56196", "from": "289885584", "to": "289885360", "length_m": 17.73443881263488, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747805.3967015118, 5835917.014955288], [747778.1898523712, 5835917.884090126]]}, "properties": {"id": "56197-56198-56199-56200-56201", "from": "363996591", "to": "363996598", "length_m": 31.288449029068648, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767612.2629466096, 5753871.449135126], [768574.2432916501, 5753459.353965609]]}, "properties": {"id": "562-564-566", "from": "3965568548", "to": "534677981", "length_m": 1051.071222809526, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838788.2839502892, 5806383.895227282], [838757.0628087411, 5806206.095373362]]}, "properties": {"id": "5620-5621-5622-5623-5624-5625", "from": "250287977", "to": "832362785", "length_m": 180.52762887144684, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761107.5258339306, 5762631.59177534], [761209.5904157212, 5762660.71917489]]}, "properties": {"id": "56202-56204-56206", "from": "1852765697", "to": "1852765691", "length_m": 106.72641330203395, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761209.5904157212, 5762660.71917489], [761107.5258339306, 5762631.59177534]]}, "properties": {"id": "56207-56205-56203", "from": "1852765691", "to": "1852765697", "length_m": 106.72641330203395, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761209.5904157212, 5762660.71917489], [761291.1634847301, 5762688.840392803]]}, "properties": {"id": "56208", "from": "1852765691", "to": "1852765688", "length_m": 86.28423063052182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761291.1634847301, 5762688.840392803], [761209.5904157212, 5762660.71917489]]}, "properties": {"id": "56209", "from": "1852765688", "to": "1852765691", "length_m": 86.28423063052182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832623.0775743292, 5812924.6493432075], [832510.7505673124, 5812924.319420066]]}, "properties": {"id": "56210-56211-56212-56213-56214-56215", "from": "298347787", "to": "36043664", "length_m": 114.05726230456202, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762863.9395032143, 5762551.0506693665], [763080.3646071388, 5762799.159398859]]}, "properties": {"id": "56216", "from": "917877756", "to": "1852765679", "length_m": 329.2381613008572, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763080.3646071388, 5762799.159398859], [762863.9395032143, 5762551.0506693665]]}, "properties": {"id": "56217", "from": "1852765679", "to": "917877756", "length_m": 329.2381613008572, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763543.4679957156, 5762659.7144642435], [763129.9802997587, 5762755.824519284]]}, "properties": {"id": "56225-56223-56221-56219-54589", "from": "614531205", "to": "1852765682", "length_m": 428.93835445319274, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778841.651308271, 5745104.316328807], [778811.4479859836, 5744969.892223936]]}, "properties": {"id": "56226", "from": "289545875", "to": "297395420", "length_m": 137.7754717822652, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778811.4479859836, 5744969.892223936], [778841.651308271, 5745104.316328807]]}, "properties": {"id": "56227", "from": "297395420", "to": "289545875", "length_m": 137.7754717822652, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778811.4479859836, 5744969.892223936], [778787.7001419542, 5744862.749717439]]}, "properties": {"id": "56228", "from": "297395420", "to": "289545866", "length_m": 109.74277552742232, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778787.7001419542, 5744862.749717439], [778811.4479859836, 5744969.892223936]]}, "properties": {"id": "56229", "from": "289545866", "to": "297395420", "length_m": 109.74277552742232, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778787.7001419542, 5744862.749717439], [778763.2166175668, 5744744.7083309805]]}, "properties": {"id": "56230", "from": "289545866", "to": "289545962", "length_m": 120.55377168579908, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778763.2166175668, 5744744.7083309805], [778787.7001419542, 5744862.749717439]]}, "properties": {"id": "56231", "from": "289545962", "to": "289545866", "length_m": 120.55377168579908, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778763.2166175668, 5744744.7083309805], [778742.9683744332, 5744655.759163614]]}, "properties": {"id": "56232", "from": "289545962", "to": "289545865", "length_m": 91.22469903277857, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778742.9683744332, 5744655.759163614], [778763.2166175668, 5744744.7083309805]]}, "properties": {"id": "56233", "from": "289545865", "to": "289545962", "length_m": 91.22469903277857, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778742.9683744332, 5744655.759163614], [778708.4035837571, 5744504.41599503]]}, "properties": {"id": "56234", "from": "289545865", "to": "289545864", "length_m": 155.24007022276075, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778708.4035837571, 5744504.41599503], [778742.9683744332, 5744655.759163614]]}, "properties": {"id": "56235", "from": "289545864", "to": "289545865", "length_m": 155.24007022276075, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778708.4035837571, 5744504.41599503], [778699.1834134569, 5744413.951196061]]}, "properties": {"id": "56236-56238-56240-56242-56244", "from": "289545864", "to": "289545863", "length_m": 92.49792666749462, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778699.1834134569, 5744413.951196061], [778708.4035837571, 5744504.41599503]]}, "properties": {"id": "56245-56243-56241-56239-56237", "from": "289545863", "to": "289545864", "length_m": 92.49792666749462, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832494.1182149815, 5812916.363247303], [832475.1534213007, 5812957.057772342]]}, "properties": {"id": "56246-56247-56248-56249-56250", "from": "243827559", "to": "298347745", "length_m": 46.000185759495, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778223.6321256177, 5744152.713746558], [778204.7361103517, 5744154.000681892]]}, "properties": {"id": "56257-56258-56259", "from": "289545826", "to": "289545828", "length_m": 20.486353592737593, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838799.2078336844, 5806558.862934565], [838795.443737746, 5806587.563347765]]}, "properties": {"id": "5626-5627", "from": "244891985", "to": "250290113", "length_m": 28.946333712205423, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777740.0437760353, 5744090.0536622275], [777995.1204020022, 5744181.261687966]]}, "properties": {"id": "56260-56262", "from": "289545798", "to": "289545793", "length_m": 270.9685066336647, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777995.1204020022, 5744181.261687966], [777740.0437760353, 5744090.0536622275]]}, "properties": {"id": "56263-56261", "from": "289545793", "to": "289545798", "length_m": 270.9685066336647, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777995.1204020022, 5744181.261687966], [778069.9334980338, 5744183.910438203]]}, "properties": {"id": "56264-56266", "from": "289545793", "to": "294988786", "length_m": 75.05247268895674, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778069.9334980338, 5744183.910438203], [777995.1204020022, 5744181.261687966]]}, "properties": {"id": "56267-56265", "from": "294988786", "to": "289545793", "length_m": 75.05247268895674, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778069.9334980338, 5744183.910438203], [778186.2307780745, 5744186.057622862]]}, "properties": {"id": "56268", "from": "294988786", "to": "289885139", "length_m": 116.3170996925798, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778186.2307780745, 5744186.057622862], [778069.9334980338, 5744183.910438203]]}, "properties": {"id": "56269", "from": "289885139", "to": "294988786", "length_m": 116.3170996925798, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778186.2307780745, 5744186.057622862], [778190.0513996622, 5744186.036639649]]}, "properties": {"id": "56270", "from": "289885139", "to": "4763108785", "length_m": 3.8206792087815993, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778190.0513996622, 5744186.036639649], [778186.2307780745, 5744186.057622862]]}, "properties": {"id": "56271", "from": "4763108785", "to": "289885139", "length_m": 3.8206792087815993, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832441.7006023476, 5812983.238073004], [832507.2793831384, 5812987.159510225]]}, "properties": {"id": "56272-56273-56274-56275-56276-56277-56278-56279-56280-56281", "from": "298347681", "to": "298347710", "length_m": 67.81038032146705, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838778.2521512299, 5806386.811154056], [838799.2078336844, 5806558.862934565]]}, "properties": {"id": "5628-5629-5630-5631-5632", "from": "320777910", "to": "244891985", "length_m": 173.5341381267316, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778204.7361103517, 5744154.000681892], [778200.1502346196, 5744176.396782968]]}, "properties": {"id": "56282", "from": "289545828", "to": "4763108779", "length_m": 22.860787392578935, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778200.1502346196, 5744176.396782968], [778190.0513996622, 5744186.036639649]]}, "properties": {"id": "56283-56284", "from": "4763108779", "to": "4763108785", "length_m": 14.013676546088266, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777432.9882774341, 5743060.638783429], [777394.4428871779, 5743038.175239377]]}, "properties": {"id": "56285", "from": "289885444", "to": "289885445", "length_m": 44.61342747431229, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777394.4428871779, 5743038.175239377], [777432.9882774341, 5743060.638783429]]}, "properties": {"id": "56286", "from": "289885445", "to": "289885444", "length_m": 44.61342747431229, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833432.4656596517, 5821087.9048423655], [833434.748461702, 5821030.716982938]]}, "properties": {"id": "56287-56288-56289-56290-56291", "from": "603462890", "to": "603462904", "length_m": 57.40772943261633, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837047.5995407479, 5810929.341182457], [837038.7703398518, 5810930.525936924]]}, "properties": {"id": "56292", "from": "1843397346", "to": "1843397349", "length_m": 8.90833493817099, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837038.7703398518, 5810930.525936924], [837047.5995407479, 5810929.341182457]]}, "properties": {"id": "56293", "from": "1843397349", "to": "1843397346", "length_m": 8.90833493817099, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777731.8525491351, 5744088.091604519], [777732.7505807459, 5744091.561241382]]}, "properties": {"id": "56294-56295-56296", "from": "289545800", "to": "289545801", "length_m": 3.6893023686615103, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777732.7505807459, 5744091.561241382], [777740.0437760353, 5744090.0536622275]]}, "properties": {"id": "56297-56298-56299-56300-56301-56302", "from": "289545801", "to": "289545798", "length_m": 9.067499687881194, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777740.0437760353, 5744090.0536622275], [777739.567652176, 5744086.647251598]]}, "properties": {"id": "56303-56304", "from": "289545798", "to": "289545822", "length_m": 3.5159549717039784, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777739.567652176, 5744086.647251598], [777731.8525491351, 5744088.091604519]]}, "properties": {"id": "56305-56306-56307-56308-56309-56310", "from": "289545822", "to": "289545800", "length_m": 10.001028364452328, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832982.2630912707, 5812870.148078224], [832980.1064139144, 5812856.1141916625]]}, "properties": {"id": "56312", "from": "298347614", "to": "298347619", "length_m": 14.198634757195205, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832980.1064139144, 5812856.1141916625], [832982.2630912707, 5812870.148078224]]}, "properties": {"id": "56313", "from": "298347619", "to": "298347614", "length_m": 14.198634757195205, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787081.907607176, 5750581.882752031], [787324.7286513428, 5750452.85426527]]}, "properties": {"id": "56314-56316-56318-56320-56322", "from": "976342877", "to": "1738887820", "length_m": 287.10657068787964, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787324.7286513428, 5750452.85426527], [787081.907607176, 5750581.882752031]]}, "properties": {"id": "56323-56321-56319-56317-56315", "from": "1738887820", "to": "976342877", "length_m": 287.10657068787964, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787324.7286513428, 5750452.85426527], [787346.101274071, 5750434.654287634]]}, "properties": {"id": "56324-56326-56328-56330", "from": "1738887820", "to": "1738887826", "length_m": 37.9003530275239, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835996.112802934, 5807713.511482838], [835361.1018146137, 5807812.216463687]]}, "properties": {"id": "5633-5634-5635-5636-5637-5638-5639-5640", "from": "75148597", "to": "298326676", "length_m": 643.0631880270291, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787346.101274071, 5750434.654287634], [787324.7286513428, 5750452.85426527]]}, "properties": {"id": "56331-56329-56327-56325", "from": "1738887826", "to": "1738887820", "length_m": 37.9003530275239, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787346.101274071, 5750434.654287634], [787324.7286513428, 5750452.85426527]]}, "properties": {"id": "56332-56334-56336", "from": "1738887826", "to": "1738887820", "length_m": 30.529477058846474, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787324.7286513428, 5750452.85426527], [787346.101274071, 5750434.654287634]]}, "properties": {"id": "56337-56335-56333", "from": "1738887820", "to": "1738887826", "length_m": 30.529477058846474, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769077.0825743265, 5763904.861445474], [770665.5638990011, 5763615.649708078]]}, "properties": {"id": "56338", "from": "559367552", "to": "559367554", "length_m": 1614.594791175943, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770665.5638990011, 5763615.649708078], [769077.0825743265, 5763904.861445474]]}, "properties": {"id": "56339", "from": "559367554", "to": "559367552", "length_m": 1614.594791175943, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770665.5638990011, 5763615.649708078], [771373.4426123461, 5763489.7538996665]]}, "properties": {"id": "56340-56342", "from": "559367554", "to": "888208905", "length_m": 719.2255990150028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771373.4426123461, 5763489.7538996665], [770665.5638990011, 5763615.649708078]]}, "properties": {"id": "56343-56341", "from": "888208905", "to": "559367554", "length_m": 719.2255990150028, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777607.6421597226, 5744366.417453531], [777671.418422539, 5744463.256787674]]}, "properties": {"id": "56347-56349-56351-56353", "from": "289885122", "to": "294989008", "length_m": 118.7727940469155, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777671.418422539, 5744463.256787674], [777607.6421597226, 5744366.417453531]]}, "properties": {"id": "56354-56352-56350-56348", "from": "294989008", "to": "289885122", "length_m": 118.7727940469155, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777671.418422539, 5744463.256787674], [777752.1475886789, 5744550.331069024]]}, "properties": {"id": "56355", "from": "294989008", "to": "294989025", "length_m": 118.7397518513315, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777752.1475886789, 5744550.331069024], [777671.418422539, 5744463.256787674]]}, "properties": {"id": "56356", "from": "294989025", "to": "294989008", "length_m": 118.7397518513315, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777752.1475886789, 5744550.331069024], [777793.4447143092, 5744593.75797128]]}, "properties": {"id": "56357", "from": "294989025", "to": "289885032", "length_m": 59.927860004646796, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777793.4447143092, 5744593.75797128], [777752.1475886789, 5744550.331069024]]}, "properties": {"id": "56358", "from": "289885032", "to": "294989025", "length_m": 59.927860004646796, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777793.4447143092, 5744593.75797128], [777854.0455366899, 5744657.788671308]]}, "properties": {"id": "56359", "from": "289885032", "to": "289885083", "length_m": 88.16116026604166, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777854.0455366899, 5744657.788671308], [777793.4447143092, 5744593.75797128]]}, "properties": {"id": "56360", "from": "289885083", "to": "289885032", "length_m": 88.16116026604166, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777854.0455366899, 5744657.788671308], [777910.6281051454, 5744720.401941331]]}, "properties": {"id": "56361", "from": "289885083", "to": "289885106", "length_m": 84.39199369794808, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777910.6281051454, 5744720.401941331], [777854.0455366899, 5744657.788671308]]}, "properties": {"id": "56362", "from": "289885106", "to": "289885083", "length_m": 84.39199369794808, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777910.6281051454, 5744720.401941331], [777926.1962662768, 5744733.87790402]]}, "properties": {"id": "56363", "from": "289885106", "to": "289885455", "length_m": 20.590512589184755, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777926.1962662768, 5744733.87790402], [777910.6281051454, 5744720.401941331]]}, "properties": {"id": "56364", "from": "289885455", "to": "289885106", "length_m": 20.590512589184755, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833019.7679315791, 5812849.0495325085], [833021.7702357941, 5812861.666427705]]}, "properties": {"id": "56365", "from": "268220755", "to": "298347595", "length_m": 12.774790264696048, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833021.7702357941, 5812861.666427705], [833019.7679315791, 5812849.0495325085]]}, "properties": {"id": "56366", "from": "298347595", "to": "268220755", "length_m": 12.774790264696048, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768797.7425721125, 5762329.051021275], [768865.432238825, 5762717.455629952]]}, "properties": {"id": "56367", "from": "559367553", "to": "888208922", "length_m": 394.25883745880213, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768865.432238825, 5762717.455629952], [768797.7425721125, 5762329.051021275]]}, "properties": {"id": "56368", "from": "888208922", "to": "559367553", "length_m": 394.25883745880213, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768865.432238825, 5762717.455629952], [769077.0825743265, 5763904.861445474]]}, "properties": {"id": "56369", "from": "888208922", "to": "559367552", "length_m": 1206.1212352939476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769077.0825743265, 5763904.861445474], [768865.432238825, 5762717.455629952]]}, "properties": {"id": "56370", "from": "559367552", "to": "888208922", "length_m": 1206.1212352939476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769077.0825743265, 5763904.861445474], [769377.9858597239, 5765585.7219683435]]}, "properties": {"id": "56371-56373-1540-1542", "from": "559367552", "to": "2379163031", "length_m": 1707.7037839354718, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777165.264636951, 5744489.599805604], [777174.1498334974, 5744539.36919221]]}, "properties": {"id": "56375-56377", "from": "289884990", "to": "294988999", "length_m": 50.569983107945184, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777174.1498334974, 5744539.36919221], [777165.264636951, 5744489.599805604]]}, "properties": {"id": "56378-56376", "from": "294988999", "to": "289884990", "length_m": 50.569983107945184, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777174.1498334974, 5744539.36919221], [777192.4880242331, 5744625.4304665]]}, "properties": {"id": "56379-56381", "from": "294988999", "to": "294989031", "length_m": 88.09364441761454, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777192.4880242331, 5744625.4304665], [777174.1498334974, 5744539.36919221]]}, "properties": {"id": "56382-56380", "from": "294989031", "to": "294988999", "length_m": 88.09364441761454, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777192.4880242331, 5744625.4304665], [777222.2151137454, 5744702.686744682]]}, "properties": {"id": "56383-56385-56387-56389-56391", "from": "294989031", "to": "294989030", "length_m": 83.77260652625395, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777222.2151137454, 5744702.686744682], [777192.4880242331, 5744625.4304665]]}, "properties": {"id": "56392-56390-56388-56386-56384", "from": "294989030", "to": "294989031", "length_m": 83.77260652625395, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777222.2151137454, 5744702.686744682], [777557.4329937056, 5744791.34822102]]}, "properties": {"id": "56393-56395-56397-56399-56401-56403-56405-56407-56409-56411-56413-56415", "from": "294989030", "to": "294989021", "length_m": 389.61554140535185, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789999.0309521258, 5766698.845013445], [789986.5149662865, 5766726.033635433]]}, "properties": {"id": "5641", "from": "4198707179", "to": "331122806", "length_m": 29.931105392452388, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777557.4329937056, 5744791.34822102], [777222.2151137454, 5744702.686744682]]}, "properties": {"id": "56416-56414-56412-56410-56408-56406-56404-56402-56400-56398-56396-56394", "from": "294989021", "to": "294989030", "length_m": 389.61554140535185, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777557.4329937056, 5744791.34822102], [777793.4447143092, 5744593.75797128]]}, "properties": {"id": "56417-56419-56421-56423-56425", "from": "294989021", "to": "289885032", "length_m": 310.2581874486912, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838496.424804303, 5809685.44657159], [838329.5797726075, 5809716.59057709]]}, "properties": {"id": "5642-2378", "from": "75141976", "to": "321401326", "length_m": 169.7268795426793, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777793.4447143092, 5744593.75797128], [777557.4329937056, 5744791.34822102]]}, "properties": {"id": "56426-56424-56422-56420-56418", "from": "289885032", "to": "294989021", "length_m": 310.2581874486912, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777793.4447143092, 5744593.75797128], [778031.7542568139, 5744441.477630816]]}, "properties": {"id": "56427-56429-56431-56433", "from": "289885032", "to": "289885059", "length_m": 293.49391917525105, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778031.7542568139, 5744441.477630816], [777793.4447143092, 5744593.75797128]]}, "properties": {"id": "56434-56432-56430-56428", "from": "289885059", "to": "289885032", "length_m": 293.49391917525105, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778031.7542568139, 5744441.477630816], [778130.3715960969, 5744424.099807144]]}, "properties": {"id": "56435-56437", "from": "289885059", "to": "289885052", "length_m": 100.15684348402173, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778130.3715960969, 5744424.099807144], [778031.7542568139, 5744441.477630816]]}, "properties": {"id": "56438-56436", "from": "289885052", "to": "289885059", "length_m": 100.15684348402173, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779893.1786313956, 5744901.221942072], [779406.8168444454, 5745003.485917656]]}, "properties": {"id": "56439-56441-56443-56445-56447", "from": "294988660", "to": "294988739", "length_m": 497.05011263392566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759573.2106251875, 5731188.102215328], [759517.6217881952, 5731188.903295033]]}, "properties": {"id": "5644", "from": "832509987", "to": "832507718", "length_m": 55.594608685625005, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779406.8168444454, 5745003.485917656], [779893.1786313956, 5744901.221942072]]}, "properties": {"id": "56448-56446-56444-56442-56440", "from": "294988739", "to": "294988660", "length_m": 497.05011263392566, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779406.8168444454, 5745003.485917656], [779273.1331550764, 5745039.2882560035]]}, "properties": {"id": "56449-56451-56453-56455-56457-56459", "from": "294988739", "to": "289545872", "length_m": 138.41713747372938, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759517.6217881952, 5731188.903295033], [759573.2106251875, 5731188.102215328]]}, "properties": {"id": "5645", "from": "832507718", "to": "832509987", "length_m": 55.594608685625005, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759517.6217881952, 5731188.903295033], [759329.7339861933, 5731071.342324525]]}, "properties": {"id": "5646-5648-5650-5652", "from": "832507718", "to": "832510192", "length_m": 222.09583063529334, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779273.1331550764, 5745039.2882560035], [779406.8168444454, 5745003.485917656]]}, "properties": {"id": "56460-56458-56456-56454-56452-56450", "from": "289545872", "to": "294988739", "length_m": 138.41713747372938, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776580.0369668843, 5741924.127901462], [776607.3551754879, 5742057.76702242]]}, "properties": {"id": "56461", "from": "289885290", "to": "289884728", "length_m": 136.40270948498238, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776607.3551754879, 5742057.76702242], [776580.0369668843, 5741924.127901462]]}, "properties": {"id": "56462", "from": "289884728", "to": "289885290", "length_m": 136.40270948498238, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776607.3551754879, 5742057.76702242], [776623.4157919532, 5742145.974347032]]}, "properties": {"id": "56463", "from": "289884728", "to": "289884720", "length_m": 89.65754573915467, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776623.4157919532, 5742145.974347032], [776607.3551754879, 5742057.76702242]]}, "properties": {"id": "56464", "from": "289884720", "to": "289884728", "length_m": 89.65754573915467, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776623.4157919532, 5742145.974347032], [776682.6305771382, 5742439.010481323]]}, "properties": {"id": "56465", "from": "289884720", "to": "289884721", "length_m": 298.95913884055625, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776682.6305771382, 5742439.010481323], [776623.4157919532, 5742145.974347032]]}, "properties": {"id": "56466", "from": "289884721", "to": "289884720", "length_m": 298.95913884055625, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776682.6305771382, 5742439.010481323], [776725.3223119029, 5742651.956519739]]}, "properties": {"id": "56467", "from": "289884721", "to": "289884722", "length_m": 217.18333142500694, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776725.3223119029, 5742651.956519739], [776682.6305771382, 5742439.010481323]]}, "properties": {"id": "56468", "from": "289884722", "to": "289884721", "length_m": 217.18333142500694, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776725.3223119029, 5742651.956519739], [776749.364822279, 5742816.824677853]]}, "properties": {"id": "56469", "from": "289884722", "to": "289884723", "length_m": 166.6119799113235, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776749.364822279, 5742816.824677853], [776725.3223119029, 5742651.956519739]]}, "properties": {"id": "56470", "from": "289884723", "to": "289884722", "length_m": 166.6119799113235, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776749.364822279, 5742816.824677853], [776797.6864178625, 5743015.4520779]]}, "properties": {"id": "56471", "from": "289884723", "to": "289884724", "length_m": 204.42069512515883, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776797.6864178625, 5743015.4520779], [776749.364822279, 5742816.824677853]]}, "properties": {"id": "56472", "from": "289884724", "to": "289884723", "length_m": 204.42069512515883, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776797.6864178625, 5743015.4520779], [776828.3247217068, 5743173.258569376]]}, "properties": {"id": "56473", "from": "289884724", "to": "289884725", "length_m": 160.7532095682929, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776828.3247217068, 5743173.258569376], [776797.6864178625, 5743015.4520779]]}, "properties": {"id": "56474", "from": "289884725", "to": "289884724", "length_m": 160.7532095682929, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776828.3247217068, 5743173.258569376], [776855.0465931707, 5743312.263179299]]}, "properties": {"id": "56475", "from": "289884725", "to": "289884726", "length_m": 141.5497791462613, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776855.0465931707, 5743312.263179299], [776828.3247217068, 5743173.258569376]]}, "properties": {"id": "56476", "from": "289884726", "to": "289884725", "length_m": 141.5497791462613, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777090.4455586418, 5743459.984041564], [777250.5496502684, 5743489.672947949]]}, "properties": {"id": "56477-56479-56481-56483", "from": "289884803", "to": "289884805", "length_m": 166.0519489700375, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777250.5496502684, 5743489.672947949], [777090.4455586418, 5743459.984041564]]}, "properties": {"id": "56484-56482-56480-56478", "from": "289884805", "to": "289884803", "length_m": 166.0519489700375, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777380.5857509777, 5743657.542698701], [777283.849580371, 5743925.8142747935]]}, "properties": {"id": "56486", "from": "289884831", "to": "289885182", "length_m": 285.17981237532314, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777283.849580371, 5743925.8142747935], [777380.5857509777, 5743657.542698701]]}, "properties": {"id": "56487", "from": "289885182", "to": "289884831", "length_m": 285.17981237532314, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778382.5688943197, 5745120.432849645], [778651.4711811901, 5745163.447265632]]}, "properties": {"id": "56489-56115-56113", "from": "289545846", "to": "289545372", "length_m": 346.42762100370857, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778382.5688943197, 5745120.432849645], [778256.1510816831, 5744758.492061396]]}, "properties": {"id": "56490-56492-56494-56496-56498", "from": "289545846", "to": "289545852", "length_m": 390.68206911369515, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778256.1510816831, 5744758.492061396], [778382.5688943197, 5745120.432849645]]}, "properties": {"id": "56499-56497-56495-56493-56491", "from": "289545852", "to": "289545846", "length_m": 390.68206911369515, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778256.1510816831, 5744758.492061396], [778221.7146276602, 5744615.4002835965]]}, "properties": {"id": "56500", "from": "289545852", "to": "289545853", "length_m": 147.17719323533734, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778221.7146276602, 5744615.4002835965], [778256.1510816831, 5744758.492061396]]}, "properties": {"id": "56501", "from": "289545853", "to": "289545852", "length_m": 147.17719323533734, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778221.7146276602, 5744615.4002835965], [778245.5629984469, 5744419.705662981]]}, "properties": {"id": "56502-56504", "from": "289545853", "to": "289545857", "length_m": 198.08167428084528, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778245.5629984469, 5744419.705662981], [778221.7146276602, 5744615.4002835965]]}, "properties": {"id": "56505-56503", "from": "289545857", "to": "289545853", "length_m": 198.08167428084528, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836481.9359139875, 5813572.752982128], [836093.6235472853, 5813185.239161802]]}, "properties": {"id": "56509-56510-56511-56512-56513-56514-49020-49021-49022-49023-49048-49049", "from": "268385264", "to": "268172253", "length_m": 550.5498229678703, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778523.8600874896, 5744858.36168991], [778553.1261095512, 5744962.824278794]]}, "properties": {"id": "56515-56517", "from": "289545926", "to": "289545929", "length_m": 109.80317672104856, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778553.1261095512, 5744962.824278794], [778523.8600874896, 5744858.36168991]]}, "properties": {"id": "56518-56516", "from": "289545929", "to": "289545926", "length_m": 109.80317672104856, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776984.0084943185, 5742323.548442095], [777030.1386454094, 5742386.3817065265]]}, "properties": {"id": "56519", "from": "289885499", "to": "289885494", "length_m": 77.94876478889383, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777030.1386454094, 5742386.3817065265], [776984.0084943185, 5742323.548442095]]}, "properties": {"id": "56520", "from": "289885494", "to": "289885499", "length_m": 77.94876478889383, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777030.1386454094, 5742386.3817065265], [777062.478959938, 5742432.364641585]]}, "properties": {"id": "56521", "from": "289885494", "to": "289885500", "length_m": 56.216779055544535, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777062.478959938, 5742432.364641585], [777030.1386454094, 5742386.3817065265]]}, "properties": {"id": "56522", "from": "289885500", "to": "289885494", "length_m": 56.216779055544535, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777090.8167809469, 5742476.6072978955], [777104.1451953088, 5742505.919958045]]}, "properties": {"id": "56523", "from": "289885495", "to": "4763088580", "length_m": 32.200600474108754, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777104.1451953088, 5742505.919958045], [777090.8167809469, 5742476.6072978955]]}, "properties": {"id": "56524", "from": "4763088580", "to": "289885495", "length_m": 32.200600474108754, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779148.130220507, 5745066.441067757], [779052.6170985412, 5744955.398010598]]}, "properties": {"id": "56525-56527-56529-56531", "from": "289545890", "to": "289545882", "length_m": 147.87049176584677, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759329.7339861933, 5731071.342324525], [759517.6217881952, 5731188.903295033]]}, "properties": {"id": "5653-5651-5649-5647", "from": "832510192", "to": "832507718", "length_m": 222.09583063529334, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779052.6170985412, 5744955.398010598], [779148.130220507, 5745066.441067757]]}, "properties": {"id": "56532-56530-56528-56526", "from": "289545882", "to": "289545890", "length_m": 147.87049176584677, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779052.6170985412, 5744955.398010598], [778956.1002838402, 5744911.946451715]]}, "properties": {"id": "56533-56535", "from": "289545882", "to": "289545911", "length_m": 106.15108070435936, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778956.1002838402, 5744911.946451715], [779052.6170985412, 5744955.398010598]]}, "properties": {"id": "56536-56534", "from": "289545911", "to": "289545882", "length_m": 106.15108070435936, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778956.1002838402, 5744911.946451715], [778920.7423661652, 5744894.023946897]]}, "properties": {"id": "56537", "from": "289545911", "to": "289545914", "length_m": 39.640869231740524, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778920.7423661652, 5744894.023946897], [778956.1002838402, 5744911.946451715]]}, "properties": {"id": "56538", "from": "289545914", "to": "289545911", "length_m": 39.640869231740524, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778920.7423661652, 5744894.023946897], [778787.7001419542, 5744862.749717439]]}, "properties": {"id": "56539-56541-56543-56545", "from": "289545914", "to": "289545866", "length_m": 153.7122568939438, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778787.7001419542, 5744862.749717439], [778920.7423661652, 5744894.023946897]]}, "properties": {"id": "56546-56544-56542-56540", "from": "289545866", "to": "289545914", "length_m": 153.7122568939438, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778787.7001419542, 5744862.749717439], [778618.5596598804, 5744894.390749958]]}, "properties": {"id": "56547-56549", "from": "289545866", "to": "289545922", "length_m": 172.10952331262786, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778618.5596598804, 5744894.390749958], [778787.7001419542, 5744862.749717439]]}, "properties": {"id": "56550-56548", "from": "289545922", "to": "289545866", "length_m": 172.10952331262786, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777264.0388678359, 5742331.5328435935], [777030.1386454094, 5742386.3817065265]]}, "properties": {"id": "56551-56553", "from": "289884758", "to": "289885494", "length_m": 240.71355838378116, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777030.1386454094, 5742386.3817065265], [777264.0388678359, 5742331.5328435935]]}, "properties": {"id": "56554-56552", "from": "289885494", "to": "289884758", "length_m": 240.71355838378116, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779127.1245340216, 5744860.995804267], [779116.6629705662, 5744871.27175587]]}, "properties": {"id": "56555", "from": "289545881", "to": "289545955", "length_m": 14.664224870480348, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779116.6629705662, 5744871.27175587], [779127.1245340216, 5744860.995804267]]}, "properties": {"id": "56556", "from": "289545955", "to": "289545881", "length_m": 14.664224870480348, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779116.6629705662, 5744871.27175587], [779052.6170985412, 5744955.398010598]]}, "properties": {"id": "56557", "from": "289545955", "to": "289545882", "length_m": 105.7312653549568, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779052.6170985412, 5744955.398010598], [779116.6629705662, 5744871.27175587]]}, "properties": {"id": "56558", "from": "289545882", "to": "289545955", "length_m": 105.7312653549568, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777326.6936958662, 5742683.047232963], [777294.6497786939, 5742473.091910347]]}, "properties": {"id": "56559-56561-56563-56565", "from": "4763100425", "to": "4763088569", "length_m": 218.9976374634958, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777294.6497786939, 5742473.091910347], [777326.6936958662, 5742683.047232963]]}, "properties": {"id": "56566-56564-56562-56560", "from": "4763088569", "to": "4763100425", "length_m": 218.9976374634958, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763306.3094426173, 5763843.046560869], [763310.9739695102, 5763825.061684631]]}, "properties": {"id": "56567", "from": "1852765526", "to": "2716421239", "length_m": 18.579924246708618, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763310.9739695102, 5763825.061684631], [763306.3094426173, 5763843.046560869]]}, "properties": {"id": "56568", "from": "2716421239", "to": "1852765526", "length_m": 18.579924246708618, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763310.9739695102, 5763825.061684631], [763237.1695511758, 5763326.089062874]]}, "properties": {"id": "56569-56571-56573-56575", "from": "2716421239", "to": "1852765559", "length_m": 505.4339852107051, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838496.424804303, 5809685.44657159], [838975.5086393795, 5809597.025984036]]}, "properties": {"id": "5657-5655-46604-46602", "from": "75141976", "to": "321401359", "length_m": 487.20173283133755, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763237.1695511758, 5763326.089062874], [763310.9739695102, 5763825.061684631]]}, "properties": {"id": "56576-56574-56572-56570", "from": "1852765559", "to": "2716421239", "length_m": 505.4339852107051, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763237.1695511758, 5763326.089062874], [763129.9802997587, 5762755.824519284]]}, "properties": {"id": "56577-56579-56581", "from": "1852765559", "to": "1852765682", "length_m": 581.2769770899016, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759437.5379137762, 5729114.9030693015], [759524.0564096947, 5729214.578094862]]}, "properties": {"id": "5658-5660", "from": "832509468", "to": "832508639", "length_m": 132.08233945293392, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763129.9802997587, 5762755.824519284], [763237.1695511758, 5763326.089062874]]}, "properties": {"id": "56582-56580-56578", "from": "1852765682", "to": "1852765559", "length_m": 581.2769770899016, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762053.9067711644, 5762864.505960189], [762140.2465410153, 5762925.175166685]]}, "properties": {"id": "56583", "from": "1852719140", "to": "1852765669", "length_m": 105.52397085162936, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762140.2465410153, 5762925.175166685], [762053.9067711644, 5762864.505960189]]}, "properties": {"id": "56584", "from": "1852765669", "to": "1852719140", "length_m": 105.52397085162936, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833415.4272342643, 5804701.408532207], [833426.0717594117, 5804640.6872848235]]}, "properties": {"id": "56585-56586-56587-56588-56589-56590-56591-56592-56593", "from": "253337722", "to": "254256120", "length_m": 63.767146779540454, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762070.9411398876, 5763708.647310054], [762195.8558447524, 5763791.178335271]]}, "properties": {"id": "56594-56596-56598-56600-56602-56604", "from": "1852765544", "to": "1852765541", "length_m": 202.33680568786446, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762195.8558447524, 5763791.178335271], [762070.9411398876, 5763708.647310054]]}, "properties": {"id": "56605-56603-56601-56599-56597-56595", "from": "1852765541", "to": "1852765544", "length_m": 202.33680568786446, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835664.0406667364, 5812306.692746315], [835667.2000171118, 5812323.987986416]]}, "properties": {"id": "56606", "from": "2045001471", "to": "268175695", "length_m": 17.581434073468085, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835667.2000171118, 5812323.987986416], [835664.0406667364, 5812306.692746315]]}, "properties": {"id": "56607", "from": "268175695", "to": "2045001471", "length_m": 17.581434073468085, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761091.8827881867, 5762542.165897077], [761191.1749214204, 5762523.439843621]]}, "properties": {"id": "56608-56610", "from": "1852765705", "to": "1852765706", "length_m": 101.0445719013012, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759524.0564096947, 5729214.578094862], [759437.5379137762, 5729114.9030693015]]}, "properties": {"id": "5661-5659", "from": "832508639", "to": "832509468", "length_m": 132.08233945293392, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761191.1749214204, 5762523.439843621], [761091.8827881867, 5762542.165897077]]}, "properties": {"id": "56611-56609", "from": "1852765706", "to": "1852765705", "length_m": 101.0445719013012, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761191.1749214204, 5762523.439843621], [761286.9500801944, 5762507.603799269]]}, "properties": {"id": "56612", "from": "1852765706", "to": "1852765707", "length_m": 97.07554436699799, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761286.9500801944, 5762507.603799269], [761191.1749214204, 5762523.439843621]]}, "properties": {"id": "56613", "from": "1852765707", "to": "1852765706", "length_m": 97.07554436699799, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761286.9500801944, 5762507.603799269], [761378.6620401009, 5762490.76453793]]}, "properties": {"id": "56614", "from": "1852765707", "to": "5052363045", "length_m": 93.24507648821658, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761378.6620401009, 5762490.76453793], [761286.9500801944, 5762507.603799269]]}, "properties": {"id": "56615", "from": "5052363045", "to": "1852765707", "length_m": 93.24507648821658, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835592.3357185144, 5812320.704292815], [835595.6695794595, 5812338.170335744]]}, "properties": {"id": "56616", "from": "321681204", "to": "2045001473", "length_m": 17.781374635969293, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835595.6695794595, 5812338.170335744], [835592.3357185144, 5812320.704292815]]}, "properties": {"id": "56617", "from": "2045001473", "to": "321681204", "length_m": 17.781374635969293, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836576.823303539, 5813751.700303205], [836605.5636155789, 5813809.04704694]]}, "properties": {"id": "56618", "from": "268385204", "to": "268385235", "length_m": 64.1455729233923, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761891.4611047932, 5763076.359696528], [761987.3611894252, 5763145.132161613]]}, "properties": {"id": "56619-56621", "from": "1852765642", "to": "1852765621", "length_m": 118.01157255537531, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759524.0564096947, 5729214.578094862], [759559.9024663572, 5729268.950187628]]}, "properties": {"id": "5662-5664-5666", "from": "832508639", "to": "832508801", "length_m": 66.56640070861587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761987.3611894252, 5763145.132161613], [761891.4611047932, 5763076.359696528]]}, "properties": {"id": "56622-56620", "from": "1852765621", "to": "1852765642", "length_m": 118.01157255537531, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761987.3611894252, 5763145.132161613], [762096.2096946585, 5763222.684142188]]}, "properties": {"id": "56623", "from": "1852765621", "to": "1852765586", "length_m": 133.64994088410202, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762096.2096946585, 5763222.684142188], [761987.3611894252, 5763145.132161613]]}, "properties": {"id": "56624", "from": "1852765586", "to": "1852765621", "length_m": 133.64994088410202, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762096.2096946585, 5763222.684142188], [762205.0454086454, 5763295.446450687]]}, "properties": {"id": "56625", "from": "1852765586", "to": "1852765568", "length_m": 130.91816564727537, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762205.0454086454, 5763295.446450687], [762096.2096946585, 5763222.684142188]]}, "properties": {"id": "56626", "from": "1852765568", "to": "1852765586", "length_m": 130.91816564727537, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762205.0454086454, 5763295.446450687], [762311.8665914289, 5763369.528273043]]}, "properties": {"id": "56627", "from": "1852765568", "to": "1852765558", "length_m": 129.9956977071337, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762311.8665914289, 5763369.528273043], [762205.0454086454, 5763295.446450687]]}, "properties": {"id": "56628", "from": "1852765558", "to": "1852765568", "length_m": 129.9956977071337, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762311.8665914289, 5763369.528273043], [762415.5317420869, 5763447.022212588]]}, "properties": {"id": "56629", "from": "1852765558", "to": "1852765554", "length_m": 129.42864462214555, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762415.5317420869, 5763447.022212588], [762311.8665914289, 5763369.528273043]]}, "properties": {"id": "56630", "from": "1852765554", "to": "1852765558", "length_m": 129.42864462214555, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762415.5317420869, 5763447.022212588], [762641.0711333831, 5763619.337746172]]}, "properties": {"id": "56631-56633-56635", "from": "1852765554", "to": "1852765547", "length_m": 289.97751843577174, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762641.0711333831, 5763619.337746172], [762415.5317420869, 5763447.022212588]]}, "properties": {"id": "56636-56634-56632", "from": "1852765547", "to": "1852765554", "length_m": 289.97751843577174, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836067.5740804246, 5812244.582945305], [836064.356670516, 5812228.479925126]]}, "properties": {"id": "56637", "from": "268175696", "to": "268179978", "length_m": 16.421296685183314, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836064.356670516, 5812228.479925126], [836067.5740804246, 5812244.582945305]]}, "properties": {"id": "56638", "from": "268179978", "to": "268175696", "length_m": 16.421296685183314, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836605.5636155789, 5813809.04704694], [837322.7327910312, 5814669.989714962]]}, "properties": {"id": "56639-56640-56641-56642-56643-56644-56645-56646-56647", "from": "268385235", "to": "26475397", "length_m": 1139.9318086083135, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761293.8939105982, 5761492.296039697], [761379.4109357957, 5761532.187773385]]}, "properties": {"id": "56649", "from": "1852765792", "to": "1852765790", "length_m": 94.36372169560373, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761379.4109357957, 5761532.187773385], [761293.8939105982, 5761492.296039697]]}, "properties": {"id": "56650", "from": "1852765790", "to": "1852765792", "length_m": 94.36372169560373, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761379.4109357957, 5761532.187773385], [761558.8691358458, 5761713.105072887]]}, "properties": {"id": "56651-56653-56655-56657-56659-56661", "from": "1852765790", "to": "1852765741", "length_m": 261.17844519182927, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761558.8691358458, 5761713.105072887], [761379.4109357957, 5761532.187773385]]}, "properties": {"id": "56662-56660-56658-56656-56654-56652", "from": "1852765741", "to": "1852765790", "length_m": 261.17844519182927, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760997.0623634779, 5762067.706113052], [761186.9058674378, 5762027.469694758]]}, "properties": {"id": "56663-56665", "from": "1852765711", "to": "1852765724", "length_m": 194.5336033466819, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761186.9058674378, 5762027.469694758], [760997.0623634779, 5762067.706113052]]}, "properties": {"id": "56666-56664", "from": "1852765724", "to": "1852765711", "length_m": 194.5336033466819, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761186.9058674378, 5762027.469694758], [761441.3660012417, 5761981.052124039]]}, "properties": {"id": "56667", "from": "1852765724", "to": "5992467353", "length_m": 258.65913935532467, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761441.3660012417, 5761981.052124039], [761186.9058674378, 5762027.469694758]]}, "properties": {"id": "56668", "from": "5992467353", "to": "1852765724", "length_m": 258.65913935532467, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761441.3660012417, 5761981.052124039], [761788.2001357945, 5762272.419187574]]}, "properties": {"id": "56669-56671-56673-56703-56705-56707", "from": "5992467353", "to": "1852765710", "length_m": 629.4840521132622, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759559.9024663572, 5729268.950187628], [759524.0564096947, 5729214.578094862]]}, "properties": {"id": "5667-5665-5663", "from": "832508801", "to": "832508639", "length_m": 66.56640070861587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762800.1536210526, 5763408.244353955], [763237.1695511758, 5763326.089062874]]}, "properties": {"id": "56675", "from": "1852765556", "to": "1852765559", "length_m": 444.6711307472893, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763237.1695511758, 5763326.089062874], [762800.1536210526, 5763408.244353955]]}, "properties": {"id": "56676", "from": "1852765559", "to": "1852765556", "length_m": 444.6711307472893, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761737.1271504792, 5762433.589954867], [762152.208425781, 5762725.569426483]]}, "properties": {"id": "56677-56679-56681", "from": "1852765708", "to": "1852719143", "length_m": 507.48840149839936, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837186.1592263263, 5811787.993118444], [837189.2934350355, 5811809.547985033]]}, "properties": {"id": "5668", "from": "2920060126", "to": "268175484", "length_m": 21.78154120513596, "freespeed_mps": 16.666666666666668, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762152.208425781, 5762725.569426483], [761737.1271504792, 5762433.589954867]]}, "properties": {"id": "56682-56680-56678", "from": "1852719143", "to": "1852765708", "length_m": 507.48840149839936, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762152.208425781, 5762725.569426483], [762238.5771649278, 5762785.525504897]]}, "properties": {"id": "56683", "from": "1852719143", "to": "614531127", "length_m": 105.13938552348954, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762238.5771649278, 5762785.525504897], [762152.208425781, 5762725.569426483]]}, "properties": {"id": "56684", "from": "614531127", "to": "1852719143", "length_m": 105.13938552348954, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762238.5771649278, 5762785.525504897], [762432.9988031681, 5762921.154031859]]}, "properties": {"id": "56685", "from": "614531127", "to": "1852765667", "length_m": 237.0545728236388, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762432.9988031681, 5762921.154031859], [762238.5771649278, 5762785.525504897]]}, "properties": {"id": "56686", "from": "1852765667", "to": "614531127", "length_m": 237.0545728236388, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736570.0149203071, 5829755.560368266], [736936.9752717753, 5830342.476195976]]}, "properties": {"id": "56688-56690-56692-55222-55224-55226-55228-55230-55232-55234-55236-55238-55240-55242-55244-55246-55248-55250-55252-55254-55256-55258-55260", "from": "2315437913", "to": "364650805", "length_m": 704.0107179958777, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759099.1730296011, 5730375.89718942], [759121.7172109408, 5730467.401995664]]}, "properties": {"id": "5669-5671-5673-5675-5677-5679-5681-5683", "from": "312994169", "to": "832507882", "length_m": 99.55504996834749, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761186.9058674378, 5762027.469694758], [761144.7293343095, 5761861.124822973]]}, "properties": {"id": "56695-56697-56699-56701", "from": "1852765724", "to": "1852765740", "length_m": 172.14636139364416, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768574.2432916501, 5753459.353965609], [767612.2629466096, 5753871.449135126]]}, "properties": {"id": "567-565-563", "from": "534677981", "to": "3965568548", "length_m": 1051.071222809526, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761144.7293343095, 5761861.124822973], [761186.9058674378, 5762027.469694758]]}, "properties": {"id": "56702-56700-56698-56696", "from": "1852765740", "to": "1852765724", "length_m": 172.14636139364416, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761788.2001357945, 5762272.419187574], [761441.3660012417, 5761981.052124039]]}, "properties": {"id": "56708-56706-56704-56674-56672-56670", "from": "1852765710", "to": "5992467353", "length_m": 629.4840521132622, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750780.259518243, 5836412.056886036], [750831.1505974124, 5836424.035361221]]}, "properties": {"id": "56716-56717-56718-56719", "from": "3205832023", "to": "672665697", "length_m": 52.36840189595391, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761209.5904157212, 5762660.71917489], [761191.1749214204, 5762523.439843621]]}, "properties": {"id": "56720-56722-56724", "from": "1852765691", "to": "1852765706", "length_m": 139.5103581563336, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761191.1749214204, 5762523.439843621], [761209.5904157212, 5762660.71917489]]}, "properties": {"id": "56725-56723-56721", "from": "1852765706", "to": "1852765691", "length_m": 139.5103581563336, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762538.8558892875, 5763768.539832347], [762641.0711333831, 5763619.337746172]]}, "properties": {"id": "56735-56737-56739-56741", "from": "3188103028", "to": "1852765547", "length_m": 180.97545747400432, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762641.0711333831, 5763619.337746172], [762538.8558892875, 5763768.539832347]]}, "properties": {"id": "56742-56740-56738-56736", "from": "1852765547", "to": "3188103028", "length_m": 180.97545747400432, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761604.0428504902, 5763169.608307021], [761453.9050356626, 5763399.242253847]]}, "properties": {"id": "56743-56745-56747-56749-56751-56753-56755-56757-56759-56761-56763-56765-56767-56769", "from": "1852765617", "to": "723913587", "length_m": 277.99626309758696, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761453.9050356626, 5763399.242253847], [761604.0428504902, 5763169.608307021]]}, "properties": {"id": "56770-56768-56766-56764-56762-56760-56758-56756-56754-56752-56750-56748-56746-56744", "from": "723913587", "to": "1852765617", "length_m": 277.99626309758696, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780915.7836515829, 5756381.868458455], [780784.2336219051, 5755765.756214974]]}, "properties": {"id": "56774-56772-46939", "from": "6032632252", "to": "484264190", "length_m": 631.8987421676263, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781127.3465557528, 5757607.926694919], [781255.1343747815, 5758365.406166038]]}, "properties": {"id": "56781-56783", "from": "6032632249", "to": "1835206995", "length_m": 768.8726639879233, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781255.1343747815, 5758365.406166038], [781127.3465557528, 5757607.926694919]]}, "properties": {"id": "56784-56782", "from": "1835206995", "to": "6032632249", "length_m": 768.8726639879233, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762178.1084137332, 5763901.817432974], [762524.8203537324, 5763777.572631332]]}, "properties": {"id": "56785-56787-56789-56791-56793-56795-56797-56799-56801", "from": "1852765525", "to": "3189862240", "length_m": 381.236921465182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768574.2432916501, 5753459.353965609], [769024.4096519477, 5753010.559696184]]}, "properties": {"id": "568-570", "from": "534677981", "to": "534678033", "length_m": 642.5217962907128, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762524.8203537324, 5763777.572631332], [762178.1084137332, 5763901.817432974]]}, "properties": {"id": "56802-56800-56798-56796-56794-56792-56790-56788-56786", "from": "3189862240", "to": "1852765525", "length_m": 381.236921465182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762524.8203537324, 5763777.572631332], [762538.8558892875, 5763768.539832347]]}, "properties": {"id": "56803", "from": "3189862240", "to": "3188103028", "length_m": 16.690947129121977, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762538.8558892875, 5763768.539832347], [762524.8203537324, 5763777.572631332]]}, "properties": {"id": "56804", "from": "3188103028", "to": "3189862240", "length_m": 16.690947129121977, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768531.0547465535, 5776523.978087722], [768637.8567981834, 5776252.765404044]]}, "properties": {"id": "56805-56807-56809-56811-56813-56815-56817-56819", "from": "209212577", "to": "475586128", "length_m": 292.3195779646945, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768637.8567981834, 5776252.765404044], [768531.0547465535, 5776523.978087722]]}, "properties": {"id": "56820-56818-56816-56814-56812-56810-56808-56806", "from": "475586128", "to": "209212577", "length_m": 292.3195779646945, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761610.9022440135, 5762950.236706625], [761105.39280436, 5762777.578381436]]}, "properties": {"id": "56829-56830-56831-56832", "from": "1852765666", "to": "5857617037", "length_m": 534.5300592708288, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833180.4460876081, 5820316.674289782], [833198.138884567, 5820307.2200894905]]}, "properties": {"id": "56833", "from": "603462042", "to": "603461897", "length_m": 20.060333144608805, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817895.3077354574, 5822343.484483162], [817841.8992596457, 5822212.564011315]]}, "properties": {"id": "56834-56835-56836-56837-56838-56839-56840-56841", "from": "174718870", "to": "174726464", "length_m": 142.1031761908493, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759121.7172109408, 5730467.401995664], [759099.1730296011, 5730375.89718942]]}, "properties": {"id": "5684-5682-5680-5678-5676-5674-5672-5670", "from": "832507882", "to": "312994169", "length_m": 99.55504996834749, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833178.150870724, 5820309.061619351], [833180.4460876081, 5820316.674289782]]}, "properties": {"id": "56844", "from": "603462038", "to": "603462042", "length_m": 7.9511490680868775, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833198.138884567, 5820307.2200894905], [833178.150870724, 5820309.061619351]]}, "properties": {"id": "56845", "from": "603461897", "to": "603462038", "length_m": 20.072666132689537, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759121.7172109408, 5730467.401995664], [759163.019276984, 5730497.765875322]]}, "properties": {"id": "5685-5687-5689-5691", "from": "832507882", "to": "1976126537", "length_m": 53.100705463259025, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759163.019276984, 5730497.765875322], [759121.7172109408, 5730467.401995664]]}, "properties": {"id": "5692-5690-5688-5686", "from": "1976126537", "to": "832507882", "length_m": 53.100705463259025, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789999.1678748333, 5766732.327185061], [790010.1295240424, 5766704.593997886]]}, "properties": {"id": "5693-5694-5695", "from": "428731160", "to": "4198709899", "length_m": 29.839326837396456, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792152.5883109989, 5775765.934372057], [792163.0150209388, 5775771.916947609]]}, "properties": {"id": "5698", "from": "622320061", "to": "268179135", "length_m": 12.021126795105568, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792163.0150209388, 5775771.916947609], [792152.5883109989, 5775765.934372057]]}, "properties": {"id": "5699", "from": "268179135", "to": "622320061", "length_m": 12.021126795105568, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759473.374966743, 5730836.610140299], [759396.8645932279, 5730967.456462092]]}, "properties": {"id": "5700", "from": "832507753", "to": "832509528", "length_m": 151.57373521638442, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759396.8645932279, 5730967.456462092], [759473.374966743, 5730836.610140299]]}, "properties": {"id": "5701", "from": "832509528", "to": "832507753", "length_m": 151.57373521638442, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751408.5080291275, 5843905.49573784], [751417.3636967632, 5843782.084194938]]}, "properties": {"id": "57015-57016-57017-57018", "from": "364002296", "to": "364001816", "length_m": 124.9128220536407, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759130.4288438923, 5730915.246429214], [759056.088249139, 5731004.885118453]]}, "properties": {"id": "5702-5704-5706", "from": "832508590", "to": "1187107446", "length_m": 118.41136209957851, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751879.3022882033, 5843503.308082283], [751575.8534446701, 5843463.350603234]]}, "properties": {"id": "57029-57030-57031-57032-57033", "from": "236430697", "to": "364002141", "length_m": 308.6062883167934, "freespeed_mps": 30.555555555555554, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751575.8534446701, 5843463.350603234], [751458.7395958905, 5843361.914620122]]}, "properties": {"id": "57034-57035-57036-57037", "from": "364002141", "to": "364002146", "length_m": 155.56567452949423, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751458.7395958905, 5843361.914620122], [751439.5819415047, 5843214.213361472]]}, "properties": {"id": "57038-57039-57040-57041-57042-57043", "from": "364002146", "to": "364002222", "length_m": 158.06391432711757, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794299.469622182, 5778287.190854435], [794225.4825959142, 5777901.727007394]]}, "properties": {"id": "57044-55468-55469-55470", "from": "2802468202", "to": "252359243", "length_m": 392.5129599998134, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836261.9678123489, 5813352.081554638], [836576.823303539, 5813751.700303205]]}, "properties": {"id": "57047-57048-57049-57050-57051-57052-57053-57054", "from": "268385195", "to": "268385204", "length_m": 510.2061762988075, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832875.5330422572, 5805001.729341293], [832829.2999867657, 5804797.1099775415]]}, "properties": {"id": "57055-57056-57057-57058-57059-57060-57061-57062", "from": "5642368852", "to": "1745518618", "length_m": 210.03021625005826, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832829.2999867657, 5804797.1099775415], [832814.012822253, 5804740.210402605]]}, "properties": {"id": "57063-57064", "from": "1745518618", "to": "1745518668", "length_m": 58.91899141926545, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832829.2999867657, 5804797.1099775415], [832835.8756561235, 5804736.399339156]]}, "properties": {"id": "57069-57070-57071-57072-57073-57074", "from": "1745518618", "to": "1745493180", "length_m": 62.06503124425634, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759056.088249139, 5731004.885118453], [759130.4288438923, 5730915.246429214]]}, "properties": {"id": "5707-5705-5703", "from": "1187107446", "to": "832508590", "length_m": 118.41136209957851, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758755.7297489693, 5729934.342887223], [758749.8164918063, 5729879.355827033]]}, "properties": {"id": "57075-57077-57079", "from": "2876031918", "to": "832508469", "length_m": 55.37879210376782, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760120.1917413437, 5731582.033403377], [760047.1126852299, 5731635.15108792]]}, "properties": {"id": "5708-5710-5712", "from": "832508707", "to": "832509290", "length_m": 91.0037783005201, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758749.8164918063, 5729879.355827033], [758755.7297489693, 5729934.342887223]]}, "properties": {"id": "57080-57078-57076", "from": "832508469", "to": "2876031918", "length_m": 55.37879210376782, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758749.8164918063, 5729879.355827033], [758847.0926582603, 5729712.599392477]]}, "properties": {"id": "57081-57083-57085-57087-57089-57091", "from": "832508469", "to": "809525740", "length_m": 193.40492874359092, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758847.0926582603, 5729712.599392477], [758749.8164918063, 5729879.355827033]]}, "properties": {"id": "57092-57090-57088-57086-57084-57082", "from": "809525740", "to": "832508469", "length_m": 193.40492874359092, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769024.4096519477, 5753010.559696184], [768574.2432916501, 5753459.353965609]]}, "properties": {"id": "571-569", "from": "534678033", "to": "534677981", "length_m": 642.5217962907128, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833540.3049243456, 5810707.200157939], [833915.935040985, 5811653.186512815]]}, "properties": {"id": "57110-57111-57112-57113-57114-57115-57116-57117-57118-57119-57120-57121-57122-13637", "from": "268219446", "to": "268219475", "length_m": 1025.0532513627206, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832723.6730674452, 5804554.614217233], [832693.0824749942, 5804540.832543845]]}, "properties": {"id": "57123-57124-57125-57126-57127-57128-57129", "from": "254255690", "to": "254255694", "length_m": 41.08580232521928, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760047.1126852299, 5731635.15108792], [760120.1917413437, 5731582.033403377]]}, "properties": {"id": "5713-5711-5709", "from": "832509290", "to": "832508707", "length_m": 91.0037783005201, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832693.0824749942, 5804540.832543845], [832697.4459118845, 5804572.990201252]]}, "properties": {"id": "57130-57131-57132-57133-57134-57135", "from": "254255694", "to": "254255698", "length_m": 38.948194668416136, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832697.4459118845, 5804572.990201252], [832723.6730674452, 5804554.614217233]]}, "properties": {"id": "57136-57137-57138-57139-57140-57141", "from": "254255698", "to": "254255690", "length_m": 38.0055936654706, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759171.5581210997, 5730497.878448516], [759216.0017475699, 5730558.962958543]]}, "properties": {"id": "5714-5716-5718-5720-2738-2740-2918", "from": "75308689", "to": "832510269", "length_m": 79.18734168763389, "freespeed_mps": 15.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817841.8992596457, 5822212.564011315], [817866.6674514161, 5822051.529774898]]}, "properties": {"id": "57142-57143-57144-57145-57146-57147-57148-57149-57150-57151-57152-57153-57154-57155", "from": "174726464", "to": "59961704", "length_m": 167.70275120682427, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833333.0811639366, 5821064.0904963575], [833407.2662277416, 5821067.96416049]]}, "properties": {"id": "57165-57166-57167-57168-57169-57170", "from": "603462869", "to": "603462880", "length_m": 75.93369293397565, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794277.4521924318, 5778313.973076944], [794288.2081672493, 5778308.526868027]]}, "properties": {"id": "57187-57188-57189-57190", "from": "3953492257", "to": "4706134864", "length_m": 12.394496276119117, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794288.2081672493, 5778308.526868027], [794300.9912578121, 5778295.260500646]]}, "properties": {"id": "57191-57192-57193-57194-57195", "from": "4706134864", "to": "621549604", "length_m": 18.991228562740286, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833566.8970061062, 5820966.566695383], [833403.7264960972, 5820992.620972851]]}, "properties": {"id": "57196-57197-57198-57199-57200-57201-57202-57203-57204-57205-57206-57207", "from": "603462846", "to": "603462866", "length_m": 168.2351523097577, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769024.4096519477, 5753010.559696184], [769560.1680228146, 5753278.709133976]]}, "properties": {"id": "572-574-576-578", "from": "534678033", "to": "534678008", "length_m": 602.7123867092391, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837644.4538351796, 5814818.681623589], [837309.4363355136, 5814634.429093782]]}, "properties": {"id": "57215-57216-57217-57218-57219-57220-57221", "from": "33302853", "to": "26475390", "length_m": 385.1009202856392, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833189.8723707068, 5804680.314345196], [833403.5818033325, 5804644.247466371]]}, "properties": {"id": "57222-57223", "from": "254238947", "to": "253337728", "length_m": 216.7327524834265, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757791.5328593472, 5839046.660772184], [757135.0161516013, 5839757.213043742]]}, "properties": {"id": "57224-57225-57226-57227-57228-57229-25417-25418-25419-25420-25421-25422-25423-25424-25425-25426-25427-25428", "from": "1556440093", "to": "364000877", "length_m": 978.5233412309378, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833259.3569538054, 5807050.381062621], [833278.5094088791, 5807048.52525996]]}, "properties": {"id": "57234", "from": "288440664", "to": "36045785", "length_m": 19.242155157100814, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788346.3953935304, 5773520.852506981], [787417.8722606049, 5774171.975829926]]}, "properties": {"id": "57237-57239-57241-57243-57245-57247-57249-57251", "from": "252358954", "to": "177845325", "length_m": 1140.6729579737573, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787417.8722606049, 5774171.975829926], [788346.3953935304, 5773520.852506981]]}, "properties": {"id": "57252-57250-57248-57246-57244-57242-57240-57238", "from": "177845325", "to": "252358954", "length_m": 1140.6729579737573, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787417.8722606049, 5774171.975829926], [786146.1788021403, 5774293.737472678]]}, "properties": {"id": "57253", "from": "177845325", "to": "942275932", "length_m": 1279.3016062439644, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786146.1788021403, 5774293.737472678], [787417.8722606049, 5774171.975829926]]}, "properties": {"id": "57254", "from": "942275932", "to": "177845325", "length_m": 1279.3016062439644, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833276.571008574, 5807034.8828251595], [833257.4274258226, 5807038.695246521]]}, "properties": {"id": "57255", "from": "288440676", "to": "288440694", "length_m": 19.519511113099362, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832975.9175157489, 5808164.241887318], [832976.1645715124, 5808175.995920479]]}, "properties": {"id": "57256", "from": "353640757", "to": "36045765", "length_m": 11.756629285366712, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832987.8172071553, 5808174.467297051], [832986.3000318878, 5808163.587560201]]}, "properties": {"id": "57257", "from": "353640765", "to": "353640763", "length_m": 10.985012271740038, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751439.5819415047, 5843214.213361472], [751388.7923307281, 5843338.216764497]]}, "properties": {"id": "57262-57264-57266-57268", "from": "364002222", "to": "364001786", "length_m": 134.1597705082304, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751388.7923307281, 5843338.216764497], [751439.5819415047, 5843214.213361472]]}, "properties": {"id": "57269-57267-57265-57263", "from": "364001786", "to": "364002222", "length_m": 134.1597705082304, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751388.7923307281, 5843338.216764497], [751376.6196682125, 5843813.364356523]]}, "properties": {"id": "57270-57272-57274-57276-57258-57260-57282-57284-57286-57288-57290", "from": "364001786", "to": "364001724", "length_m": 481.1837197185604, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751376.6196682125, 5843813.364356523], [751417.3636967632, 5843782.084194938]]}, "properties": {"id": "57278-57279-57280-57281", "from": "364001724", "to": "364001816", "length_m": 56.7773553834959, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751376.6196682125, 5843813.364356523], [751388.7923307281, 5843338.216764497]]}, "properties": {"id": "57291-57289-57287-57285-57283-57261-57259-57277-57275-57273-57271", "from": "364001724", "to": "364001786", "length_m": 481.1837197185604, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776602.6695772854, 5741914.981067614], [776955.8777960486, 5741912.255173696]]}, "properties": {"id": "57292-57294", "from": "1851290082", "to": "289884744", "length_m": 353.2352885529003, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776955.8777960486, 5741912.255173696], [776602.6695772854, 5741914.981067614]]}, "properties": {"id": "57295-57293", "from": "289884744", "to": "1851290082", "length_m": 353.2352885529003, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776955.8777960486, 5741912.255173696], [777216.6426440086, 5741901.94466357]]}, "properties": {"id": "57296-57298-57300", "from": "289884744", "to": "1851290080", "length_m": 261.2811812234692, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777216.6426440086, 5741901.94466357], [776955.8777960486, 5741912.255173696]]}, "properties": {"id": "57301-57299-57297", "from": "1851290080", "to": "289884744", "length_m": 261.2811812234692, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776957.711675004, 5742051.761343866], [776955.8777960486, 5741912.255173696]]}, "properties": {"id": "57302", "from": "289884730", "to": "289884744", "length_m": 139.5182232945205, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776955.8777960486, 5741912.255173696], [776957.711675004, 5742051.761343866]]}, "properties": {"id": "57303", "from": "289884744", "to": "289884730", "length_m": 139.5182232945205, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776607.3551754879, 5742057.76702242], [776795.2661672318, 5742053.499784156]]}, "properties": {"id": "57304", "from": "289884728", "to": "289884729", "length_m": 187.959437061249, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776795.2661672318, 5742053.499784156], [776607.3551754879, 5742057.76702242]]}, "properties": {"id": "57305", "from": "289884729", "to": "289884728", "length_m": 187.959437061249, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776795.2661672318, 5742053.499784156], [776957.711675004, 5742051.761343866]]}, "properties": {"id": "57306", "from": "289884729", "to": "289884730", "length_m": 162.45480924329794, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776957.711675004, 5742051.761343866], [776795.2661672318, 5742053.499784156]]}, "properties": {"id": "57307", "from": "289884730", "to": "289884729", "length_m": 162.45480924329794, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776957.711675004, 5742051.761343866], [777313.9865997536, 5742051.29286794]]}, "properties": {"id": "57308-57310-57312-57314", "from": "289884730", "to": "289884735", "length_m": 356.78677828716394, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777313.9865997536, 5742051.29286794], [776957.711675004, 5742051.761343866]]}, "properties": {"id": "57315-57313-57311-57309", "from": "289884735", "to": "289884730", "length_m": 356.78677828716394, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777313.9865997536, 5742051.29286794], [777428.4691040156, 5742198.370705603]]}, "properties": {"id": "57316-57318-57320-57586-57587-57588-57589-33263-33265-33267-33269-33271", "from": "289884735", "to": "289884762", "length_m": 467.53950122504796, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776797.6864178625, 5743015.4520779], [777150.2397742223, 5742925.073292011]]}, "properties": {"id": "57322-57324-57326-57328", "from": "289884724", "to": "289884780", "length_m": 388.64747490929204, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777150.2397742223, 5742925.073292011], [776797.6864178625, 5743015.4520779]]}, "properties": {"id": "57329-57327-57325-57323", "from": "289884780", "to": "289884724", "length_m": 388.64747490929204, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777150.2397742223, 5742925.073292011], [777238.7659359728, 5742805.978685696]]}, "properties": {"id": "57330-57332-57334", "from": "289884780", "to": "289884754", "length_m": 148.39274579524448, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777238.7659359728, 5742805.978685696], [777150.2397742223, 5742925.073292011]]}, "properties": {"id": "57335-57333-57331", "from": "289884754", "to": "289884780", "length_m": 148.39274579524448, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777238.7659359728, 5742805.978685696], [777304.0437524463, 5742713.289266035]]}, "properties": {"id": "57336-57338", "from": "289884754", "to": "1756781507", "length_m": 113.36896352622351, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777304.0437524463, 5742713.289266035], [777238.7659359728, 5742805.978685696]]}, "properties": {"id": "57339-57337", "from": "1756781507", "to": "289884754", "length_m": 113.36896352622351, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777304.0437524463, 5742713.289266035], [777320.1786013027, 5742691.362285223]]}, "properties": {"id": "57340", "from": "1756781507", "to": "4763088570", "length_m": 27.22362642633069, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777320.1786013027, 5742691.362285223], [777304.0437524463, 5742713.289266035]]}, "properties": {"id": "57341", "from": "4763088570", "to": "1756781507", "length_m": 27.22362642633069, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776958.3124202848, 5742287.949382655], [776910.4145721706, 5742220.464733013]]}, "properties": {"id": "57342", "from": "289885224", "to": "289884749", "length_m": 82.75495007625553, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776910.4145721706, 5742220.464733013], [776958.3124202848, 5742287.949382655]]}, "properties": {"id": "57343", "from": "289884749", "to": "289885224", "length_m": 82.75495007625553, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776910.4145721706, 5742220.464733013], [776850.0423161394, 5742138.251201803]]}, "properties": {"id": "57344", "from": "289884749", "to": "289884751", "length_m": 101.99938217879878, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776850.0423161394, 5742138.251201803], [776910.4145721706, 5742220.464733013]]}, "properties": {"id": "57345", "from": "289884751", "to": "289884749", "length_m": 101.99938217879878, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776790.832254655, 5742307.119333974], [776910.4145721706, 5742220.464733013]]}, "properties": {"id": "57346", "from": "289884748", "to": "289884749", "length_m": 147.67853781221447, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776910.4145721706, 5742220.464733013], [776790.832254655, 5742307.119333974]]}, "properties": {"id": "57347", "from": "289884749", "to": "289884748", "length_m": 147.67853781221447, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776910.4145721706, 5742220.464733013], [777289.6264239158, 5742188.024507132]]}, "properties": {"id": "57348-57350-57352", "from": "289884749", "to": "289884750", "length_m": 381.19797650911147, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777289.6264239158, 5742188.024507132], [776910.4145721706, 5742220.464733013]]}, "properties": {"id": "57353-57351-57349", "from": "289884750", "to": "289884749", "length_m": 381.19797650911147, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777289.6264239158, 5742188.024507132], [777429.9516383185, 5742427.805995234]]}, "properties": {"id": "57354-57356-2175-2173-2171", "from": "289884750", "to": "4763088594", "length_m": 356.5819921180452, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776795.2661672318, 5742053.499784156], [776834.4045020142, 5742117.485925392]]}, "properties": {"id": "57358-57360", "from": "289884729", "to": "289884747", "length_m": 76.01346036721097, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776834.4045020142, 5742117.485925392], [776795.2661672318, 5742053.499784156]]}, "properties": {"id": "57361-57359", "from": "289884747", "to": "289884729", "length_m": 76.01346036721097, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777419.2783596937, 5743126.012403074], [777150.2397742223, 5742925.073292011]]}, "properties": {"id": "57362-57364-57366-57368", "from": "289884778", "to": "289884780", "length_m": 342.55092507348877, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777150.2397742223, 5742925.073292011], [777419.2783596937, 5743126.012403074]]}, "properties": {"id": "57369-57367-57365-57363", "from": "289884780", "to": "289884778", "length_m": 342.55092507348877, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777150.2397742223, 5742925.073292011], [776953.0166318936, 5742803.256483499]]}, "properties": {"id": "57370-57372-57374-57376", "from": "289884780", "to": "289884776", "length_m": 232.73745359297405, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776953.0166318936, 5742803.256483499], [777150.2397742223, 5742925.073292011]]}, "properties": {"id": "57377-57375-57373-57371", "from": "289884776", "to": "289884780", "length_m": 232.73745359297405, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776953.0166318936, 5742803.256483499], [776842.3605311206, 5742639.015126746]]}, "properties": {"id": "57378-57380-57382", "from": "289884776", "to": "289884774", "length_m": 199.51079130559376, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776842.3605311206, 5742639.015126746], [776953.0166318936, 5742803.256483499]]}, "properties": {"id": "57383-57381-57379", "from": "289884774", "to": "289884776", "length_m": 199.51079130559376, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776842.3605311206, 5742639.015126746], [776682.6305771382, 5742439.010481323]]}, "properties": {"id": "57384-57386-57388-57390-57392", "from": "289884774", "to": "289884721", "length_m": 265.1725416202831, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776682.6305771382, 5742439.010481323], [776842.3605311206, 5742639.015126746]]}, "properties": {"id": "57393-57391-57389-57387-57385", "from": "289884721", "to": "289884774", "length_m": 265.1725416202831, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776749.364822279, 5742816.824677853], [776953.0166318936, 5742803.256483499]]}, "properties": {"id": "57394-57396-57398", "from": "289884723", "to": "289884776", "length_m": 204.91856806193783, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776953.0166318936, 5742803.256483499], [776749.364822279, 5742816.824677853]]}, "properties": {"id": "57399-57397-57395", "from": "289884776", "to": "289884723", "length_m": 204.91856806193783, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776953.0166318936, 5742803.256483499], [777058.4994580324, 5742689.33649288]]}, "properties": {"id": "57400-57402-57404", "from": "289884776", "to": "289884777", "length_m": 155.3745968721795, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777058.4994580324, 5742689.33649288], [776953.0166318936, 5742803.256483499]]}, "properties": {"id": "57405-57403-57401", "from": "289884777", "to": "289884776", "length_m": 155.3745968721795, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776725.3223119029, 5742651.956519739], [776842.3605311206, 5742639.015126746]]}, "properties": {"id": "57406-57408-57410", "from": "289884722", "to": "289884774", "length_m": 118.0581452642124, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776842.3605311206, 5742639.015126746], [776725.3223119029, 5742651.956519739]]}, "properties": {"id": "57411-57409-57407", "from": "289884774", "to": "289884722", "length_m": 118.0581452642124, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776842.3605311206, 5742639.015126746], [776974.186168105, 5742575.676018266]]}, "properties": {"id": "57412-57414-57416", "from": "289884774", "to": "289884775", "length_m": 146.25712668386802, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776974.186168105, 5742575.676018266], [776842.3605311206, 5742639.015126746]]}, "properties": {"id": "57417-57415-57413", "from": "289884775", "to": "289884774", "length_m": 146.25712668386802, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776974.186168105, 5742575.676018266], [777100.6517833213, 5742515.664297864]]}, "properties": {"id": "57418-57420", "from": "289884775", "to": "4763088610", "length_m": 139.9819938125098, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777100.6517833213, 5742515.664297864], [776974.186168105, 5742575.676018266]]}, "properties": {"id": "57421-57419", "from": "4763088610", "to": "289884775", "length_m": 139.9819938125098, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777972.7992897541, 5743731.69371074], [778107.591522698, 5743778.332973019]]}, "properties": {"id": "57422", "from": "289884823", "to": "289884825", "length_m": 142.63297907523076, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778107.591522698, 5743778.332973019], [777972.7992897541, 5743731.69371074]]}, "properties": {"id": "57423", "from": "289884825", "to": "289884823", "length_m": 142.63297907523076, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751774.7532577317, 5842561.002296355], [751724.5633387776, 5842754.082701926]]}, "properties": {"id": "57424-57425-57426-57427-57428", "from": "364001492", "to": "364001522", "length_m": 203.51478457013812, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777053.4398595064, 5743302.530784038], [777277.91312394, 5743384.555436269]]}, "properties": {"id": "57429-57431", "from": "289884812", "to": "289884810", "length_m": 240.82856114767483, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777277.91312394, 5743384.555436269], [777053.4398595064, 5743302.530784038]]}, "properties": {"id": "57432-57430", "from": "289884810", "to": "289884812", "length_m": 240.82856114767483, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777277.91312394, 5743384.555436269], [777398.2666816936, 5743427.369332519]]}, "properties": {"id": "57433", "from": "289884810", "to": "289885192", "length_m": 127.74196052256923, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777398.2666816936, 5743427.369332519], [777277.91312394, 5743384.555436269]]}, "properties": {"id": "57434", "from": "289885192", "to": "289884810", "length_m": 127.74196052256923, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777398.2666816936, 5743427.369332519], [777475.0859171752, 5743454.180377646]]}, "properties": {"id": "57435", "from": "289885192", "to": "289884835", "length_m": 81.36354861133057, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777475.0859171752, 5743454.180377646], [777398.2666816936, 5743427.369332519]]}, "properties": {"id": "57436", "from": "289884835", "to": "289885192", "length_m": 81.36354861133057, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777475.0859171752, 5743454.180377646], [777635.7833045677, 5743511.124068368]]}, "properties": {"id": "57437", "from": "289884835", "to": "289884813", "length_m": 170.488222607091, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777635.7833045677, 5743511.124068368], [777475.0859171752, 5743454.180377646]]}, "properties": {"id": "57438", "from": "289884813", "to": "289884835", "length_m": 170.488222607091, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777635.7833045677, 5743511.124068368], [777786.363698995, 5743560.890559634]]}, "properties": {"id": "57439", "from": "289884813", "to": "289884842", "length_m": 158.59116839749623, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777786.363698995, 5743560.890559634], [777635.7833045677, 5743511.124068368]]}, "properties": {"id": "57440", "from": "289884842", "to": "289884813", "length_m": 158.59116839749623, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777786.363698995, 5743560.890559634], [777800.9077379241, 5743566.044845551]]}, "properties": {"id": "57441", "from": "289884842", "to": "289884815", "length_m": 15.43035092148829, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777800.9077379241, 5743566.044845551], [777786.363698995, 5743560.890559634]]}, "properties": {"id": "57442", "from": "289884815", "to": "289884842", "length_m": 15.43035092148829, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777800.9077379241, 5743566.044845551], [777876.4415432878, 5743591.752043481]]}, "properties": {"id": "57443", "from": "289884815", "to": "289884816", "length_m": 79.78856898545827, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777876.4415432878, 5743591.752043481], [777800.9077379241, 5743566.044845551]]}, "properties": {"id": "57444", "from": "289884816", "to": "289884815", "length_m": 79.78856898545827, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777876.4415432878, 5743591.752043481], [777912.3796764596, 5743604.435203921]]}, "properties": {"id": "57445", "from": "289884816", "to": "5678581114", "length_m": 38.11052300741265, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777912.3796764596, 5743604.435203921], [777876.4415432878, 5743591.752043481]]}, "properties": {"id": "57446", "from": "5678581114", "to": "289884816", "length_m": 38.11052300741265, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777912.3796764596, 5743604.435203921], [778029.9313113651, 5743645.903472469]]}, "properties": {"id": "57447", "from": "5678581114", "to": "289884817", "length_m": 124.65153056218348, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778029.9313113651, 5743645.903472469], [777912.3796764596, 5743604.435203921]]}, "properties": {"id": "57448", "from": "289884817", "to": "5678581114", "length_m": 124.65153056218348, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778029.9313113651, 5743645.903472469], [778234.4493466204, 5743716.624026579]]}, "properties": {"id": "57449-57451", "from": "289884817", "to": "289884819", "length_m": 216.40026422635518, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778234.4493466204, 5743716.624026579], [778029.9313113651, 5743645.903472469]]}, "properties": {"id": "57452-57450", "from": "289884819", "to": "289884817", "length_m": 216.40026422635518, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778234.4493466204, 5743716.624026579], [778321.9318790442, 5743748.681936831]]}, "properties": {"id": "57453", "from": "289884819", "to": "289884820", "length_m": 93.17136384681652, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778321.9318790442, 5743748.681936831], [778234.4493466204, 5743716.624026579]]}, "properties": {"id": "57454", "from": "289884820", "to": "289884819", "length_m": 93.17136384681652, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777404.4595339326, 5743197.01412235], [776828.3247217068, 5743173.258569376]]}, "properties": {"id": "57455-57457-57459", "from": "289884786", "to": "289884725", "length_m": 582.4340436633288, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776828.3247217068, 5743173.258569376], [777404.4595339326, 5743197.01412235]]}, "properties": {"id": "57460-57458-57456", "from": "289884725", "to": "289884786", "length_m": 582.4340436633288, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832890.9819913823, 5815075.190831019], [832861.5925249858, 5814916.888589293]]}, "properties": {"id": "57461-57462-57463-57464", "from": "30918600", "to": "30918602", "length_m": 161.01075593551096, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832861.5925249858, 5814916.888589293], [832858.7805177483, 5814900.179280497]]}, "properties": {"id": "57465", "from": "30918602", "to": "30918604", "length_m": 16.944272916727726, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832829.7177071951, 5814850.173622707], [832839.4939465562, 5814904.194610063]]}, "properties": {"id": "57468-57469-57470", "from": "1536186796", "to": "30918606", "length_m": 54.900313782015495, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832839.4939465562, 5814904.194610063], [832842.3937314143, 5814920.455614146]]}, "properties": {"id": "57471", "from": "30918606", "to": "30918603", "length_m": 16.517536302443574, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832842.3937314143, 5814920.455614146], [832870.046419675, 5815075.770384115]]}, "properties": {"id": "57472-57473", "from": "30918603", "to": "30918601", "length_m": 157.75736354286244, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832870.046419675, 5815075.770384115], [832871.2478721924, 5815081.903955489]]}, "properties": {"id": "57474", "from": "30918601", "to": "1536201487", "length_m": 6.25013487233233, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750557.7489306123, 5833428.016855061], [750667.9267714021, 5833779.25406776]]}, "properties": {"id": "57475-57477-57479-57481-57483-57485-57487", "from": "2744598325", "to": "363994873", "length_m": 368.6789242038582, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750667.9267714021, 5833779.25406776], [750557.7489306123, 5833428.016855061]]}, "properties": {"id": "57488-57486-57484-57482-57480-57478-57476", "from": "363994873", "to": "2744598325", "length_m": 368.6789242038582, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759466.9223676092, 5729534.257083323], [759530.2587750885, 5729668.372993435]]}, "properties": {"id": "5749-5751-5753", "from": "832510311", "to": "832508116", "length_m": 156.81243448399428, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750163.3730031403, 5832745.88540069], [750252.0501551501, 5832001.604038926]]}, "properties": {"id": "57492-57490-34206-34204-34202-28569-27821-27823-11462-11464-11467", "from": "364001256", "to": "2744576173", "length_m": 758.9731483218046, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750163.3730031403, 5832745.88540069], [750557.7489306123, 5833428.016855061]]}, "properties": {"id": "57493-57495-57497-57499-57501-51424-51426-57525-57527-12434-12436-12438", "from": "364001256", "to": "2744598325", "length_m": 790.9410060081142, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833006.2012943117, 5815827.700463097], [832967.6091168271, 5815614.153377341]]}, "properties": {"id": "57503-57504", "from": "30918490", "to": "1536201638", "length_m": 217.0063306611827, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767724.6539904529, 5778510.5092630405], [768386.1917089843, 5778640.03339154]]}, "properties": {"id": "57508-57506-57532-57530", "from": "364627907", "to": "364627912", "length_m": 674.4286173070145, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767724.6539904529, 5778510.5092630405], [766871.1218870201, 5778652.701660848]]}, "properties": {"id": "57509-57511-57513-57515-57517-57519-57521-57523", "from": "364627907", "to": "364615345", "length_m": 879.066412738233, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766871.1218870201, 5778652.701660848], [767724.6539904529, 5778510.5092630405]]}, "properties": {"id": "57524-57522-57520-57518-57516-57514-57512-57510", "from": "364615345", "to": "364627907", "length_m": 879.066412738233, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768386.1917089843, 5778640.03339154], [767724.6539904529, 5778510.5092630405]]}, "properties": {"id": "57529-57531-57505-57507", "from": "364627912", "to": "364627907", "length_m": 674.4286173070145, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831626.0098074456, 5821484.14861173], [831706.5484488313, 5821469.792441484]]}, "properties": {"id": "57533-57534", "from": "26032503", "to": "1312612514", "length_m": 81.80819646015863, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831706.5484488313, 5821469.792441484], [831889.73994506, 5821435.59611685]]}, "properties": {"id": "57535", "from": "1312612514", "to": "2299094457", "length_m": 186.35587638933512, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831889.73994506, 5821435.59611685], [832086.6569310047, 5821392.315093925]]}, "properties": {"id": "57536-57537-57538-57539-57540", "from": "2299094457", "to": "5931587937", "length_m": 201.6873542967666, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759530.2587750885, 5729668.372993435], [759466.9223676092, 5729534.257083323]]}, "properties": {"id": "5754-5752-5750", "from": "832508116", "to": "832510311", "length_m": 156.81243448399428, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832086.6569310047, 5821392.315093925], [832638.6215847551, 5821277.793855337]]}, "properties": {"id": "57541-28683-28684-28685-28686-28687-28688-28689-28690-28691-28692-28693-28694", "from": "5931587937", "to": "5427790022", "length_m": 564.1952637243163, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778221.0363230378, 5744107.239384856], [778212.608231595, 5744107.03076733]]}, "properties": {"id": "57542", "from": "37684542", "to": "1851185067", "length_m": 8.43067291300079, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778212.608231595, 5744107.03076733], [778221.0363230378, 5744107.239384856]]}, "properties": {"id": "57543", "from": "1851185067", "to": "37684542", "length_m": 8.43067291300079, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778212.608231595, 5744107.03076733], [778183.2308522367, 5744070.728558517]]}, "properties": {"id": "57544-57546", "from": "1851185067", "to": "289884942", "length_m": 48.07619960656319, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778183.2308522367, 5744070.728558517], [778212.608231595, 5744107.03076733]]}, "properties": {"id": "57547-57545", "from": "289884942", "to": "1851185067", "length_m": 48.07619960656319, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778183.2308522367, 5744070.728558517], [778187.9660701097, 5743933.050046112]]}, "properties": {"id": "57548-57550-57552-57554", "from": "289884942", "to": "289884852", "length_m": 144.91811401423422, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838768.2053356663, 5806688.244688246], [838783.4880252517, 5806686.880265867]]}, "properties": {"id": "5755", "from": "244891997", "to": "250287973", "length_m": 15.34347571304418, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778187.9660701097, 5743933.050046112], [778183.2308522367, 5744070.728558517]]}, "properties": {"id": "57555-57553-57551-57549", "from": "289884852", "to": "289884942", "length_m": 144.91811401423422, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777469.2266978307, 5743688.858298585], [777375.9841045944, 5743964.045281683]]}, "properties": {"id": "57556-57558", "from": "1851185152", "to": "289884841", "length_m": 290.55474015199786, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777375.9841045944, 5743964.045281683], [777469.2266978307, 5743688.858298585]]}, "properties": {"id": "57559-57557", "from": "289884841", "to": "1851185152", "length_m": 290.55474015199786, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751781.6663780427, 5840295.770807716], [751790.3766407508, 5841125.994596337]]}, "properties": {"id": "57560-57561-57562-57563-57564-57565-57566-57567-57568-57569-57570-57571-57572-57573-57574-57575-57576-57577", "from": "364001283", "to": "209774399", "length_m": 837.2620296502582, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777899.0398566229, 5743839.650768771], [777860.4803650449, 5743898.182268786]]}, "properties": {"id": "57578", "from": "4763289559", "to": "289884983", "length_m": 70.09116129952376, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777860.4803650449, 5743898.182268786], [777899.0398566229, 5743839.650768771]]}, "properties": {"id": "57579", "from": "289884983", "to": "4763289559", "length_m": 70.09116129952376, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777860.4803650449, 5743898.182268786], [777800.8221916234, 5743989.425838109]]}, "properties": {"id": "57580", "from": "289884983", "to": "289884973", "length_m": 109.01599250686685, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777800.8221916234, 5743989.425838109], [777860.4803650449, 5743898.182268786]]}, "properties": {"id": "57581", "from": "289884973", "to": "289884983", "length_m": 109.01599250686685, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777800.8221916234, 5743989.425838109], [777739.567652176, 5744086.647251598]]}, "properties": {"id": "57582-57584", "from": "289884973", "to": "289545822", "length_m": 114.90918968948596, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777739.567652176, 5744086.647251598], [777800.8221916234, 5743989.425838109]]}, "properties": {"id": "57585-57583", "from": "289545822", "to": "289884973", "length_m": 114.90918968948596, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778029.9313113651, 5743645.903472469], [777972.7992897541, 5743731.69371074]]}, "properties": {"id": "57600", "from": "289884817", "to": "289884823", "length_m": 103.07294936445108, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777972.7992897541, 5743731.69371074], [778029.9313113651, 5743645.903472469]]}, "properties": {"id": "57601", "from": "289884823", "to": "289884817", "length_m": 103.07294936445108, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777972.7992897541, 5743731.69371074], [777905.1286348458, 5743832.394664096]]}, "properties": {"id": "57602", "from": "289884823", "to": "4763289550", "length_m": 121.32600531926643, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777905.1286348458, 5743832.394664096], [777972.7992897541, 5743731.69371074]]}, "properties": {"id": "57603", "from": "4763289550", "to": "289884823", "length_m": 121.32600531926643, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777800.8221916234, 5743989.425838109], [778031.9484822308, 5744066.034433652]]}, "properties": {"id": "57604", "from": "289884973", "to": "289884979", "length_m": 243.491763222537, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778031.9484822308, 5744066.034433652], [777800.8221916234, 5743989.425838109]]}, "properties": {"id": "57605", "from": "289884979", "to": "289884973", "length_m": 243.491763222537, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751796.059391847, 5840283.3595119435], [752017.1273399282, 5839865.846348586]]}, "properties": {"id": "57606-57607-57608-57609-57610-57611-57612-57613-57614-57615", "from": "1140362179", "to": "651421116", "length_m": 474.9917779504923, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777625.7052118967, 5744255.3296814505], [777720.162365406, 5744295.577451912]]}, "properties": {"id": "57616-57618", "from": "294988839", "to": "294988833", "length_m": 103.08839877840774, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777720.162365406, 5744295.577451912], [777625.7052118967, 5744255.3296814505]]}, "properties": {"id": "57619-57617", "from": "294988833", "to": "294988839", "length_m": 103.08839877840774, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777720.162365406, 5744295.577451912], [777951.1420564168, 5744250.793857409]]}, "properties": {"id": "57620-57622-57624-57626-57628-57630", "from": "294988833", "to": "294988801", "length_m": 301.88871503855216, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777951.1420564168, 5744250.793857409], [777720.162365406, 5744295.577451912]]}, "properties": {"id": "57631-57629-57627-57625-57623-57621", "from": "294988801", "to": "294988833", "length_m": 301.88871503855216, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778183.2308522367, 5744070.728558517], [778053.2946747068, 5744068.852868935]]}, "properties": {"id": "57632-57634", "from": "289884942", "to": "289884959", "length_m": 130.0292934595869, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778053.2946747068, 5744068.852868935], [778183.2308522367, 5744070.728558517]]}, "properties": {"id": "57635-57633", "from": "289884959", "to": "289884942", "length_m": 130.0292934595869, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777733.6321053825, 5744761.797462996], [777910.6281051454, 5744720.401941331]]}, "properties": {"id": "57636-57638-57640-57642", "from": "1851184930", "to": "289885106", "length_m": 185.36165882223872, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777910.6281051454, 5744720.401941331], [777733.6321053825, 5744761.797462996]]}, "properties": {"id": "57643-57641-57639-57637", "from": "289885106", "to": "1851184930", "length_m": 185.36165882223872, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778031.7542568139, 5744441.477630816], [777854.0455366899, 5744657.788671308]]}, "properties": {"id": "57644-57646-57648-57650-57652-57654", "from": "289885059", "to": "289885083", "length_m": 288.3137293791769, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777854.0455366899, 5744657.788671308], [778031.7542568139, 5744441.477630816]]}, "properties": {"id": "57655-57653-57651-57649-57647-57645", "from": "289885083", "to": "289885059", "length_m": 288.3137293791769, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777324.6431245841, 5743636.756508176], [777398.2666816936, 5743427.369332519]]}, "properties": {"id": "57656", "from": "289885187", "to": "289885192", "length_m": 221.95363833885185, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777398.2666816936, 5743427.369332519], [777324.6431245841, 5743636.756508176]]}, "properties": {"id": "57657", "from": "289885192", "to": "289885187", "length_m": 221.95363833885185, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778221.501674906, 5744082.263033518], [778212.608231595, 5744107.03076733]]}, "properties": {"id": "57658", "from": "1851185089", "to": "1851185067", "length_m": 26.31604021758296, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778212.608231595, 5744107.03076733], [778204.7361103517, 5744154.000681892]]}, "properties": {"id": "57659-57660", "from": "1851185067", "to": "289545828", "length_m": 47.62502865173354, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777297.6870721284, 5743318.762004374], [777277.91312394, 5743384.555436269]]}, "properties": {"id": "57661", "from": "289884811", "to": "289884810", "length_m": 68.70068933964436, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777277.91312394, 5743384.555436269], [777297.6870721284, 5743318.762004374]]}, "properties": {"id": "57662", "from": "289884810", "to": "289884811", "length_m": 68.70068933964436, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777277.91312394, 5743384.555436269], [777250.5496502684, 5743489.672947949]]}, "properties": {"id": "57663-57665", "from": "289884810", "to": "289884805", "length_m": 109.08488853710831, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777250.5496502684, 5743489.672947949], [777277.91312394, 5743384.555436269]]}, "properties": {"id": "57666-57664", "from": "289884805", "to": "289884810", "length_m": 109.08488853710831, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777250.5496502684, 5743489.672947949], [777238.8171995658, 5743608.6874331385]]}, "properties": {"id": "57667-57669", "from": "289884805", "to": "289885177", "length_m": 119.65698635798725, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777238.8171995658, 5743608.6874331385], [777250.5496502684, 5743489.672947949]]}, "properties": {"id": "57670-57668", "from": "289885177", "to": "289884805", "length_m": 119.65698635798725, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777421.0144318239, 5744734.15282729], [777419.5706997197, 5744727.534749035]]}, "properties": {"id": "57671", "from": "1851184945", "to": "1851184949", "length_m": 6.773722925177368, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777419.5706997197, 5744727.534749035], [777421.0144318239, 5744734.15282729]]}, "properties": {"id": "57672", "from": "1851184949", "to": "1851184945", "length_m": 6.773722925177368, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777419.5706997197, 5744727.534749035], [777417.8636933237, 5744719.114313745]]}, "properties": {"id": "57673", "from": "1851184949", "to": "1851184967", "length_m": 8.591717010120213, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777417.8636933237, 5744719.114313745], [777419.5706997197, 5744727.534749035]]}, "properties": {"id": "57674", "from": "1851184967", "to": "1851184949", "length_m": 8.591717010120213, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778186.2307780745, 5744186.057622862], [778130.3715960969, 5744424.099807144]]}, "properties": {"id": "57675-57677-57679-57681-57683-57685-57687", "from": "289885139", "to": "289885052", "length_m": 246.84644197006844, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778130.3715960969, 5744424.099807144], [778186.2307780745, 5744186.057622862]]}, "properties": {"id": "57688-57686-57684-57682-57680-57678-57676", "from": "289885052", "to": "289885139", "length_m": 246.84644197006844, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778130.3715960969, 5744424.099807144], [778098.3792732633, 5744551.240292962]]}, "properties": {"id": "57689-57691-57693-57695-57697", "from": "289885052", "to": "289885155", "length_m": 132.06998012740496, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778098.3792732633, 5744551.240292962], [778130.3715960969, 5744424.099807144]]}, "properties": {"id": "57698-57696-57694-57692-57690", "from": "289885155", "to": "289885052", "length_m": 132.06998012740496, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777607.6421597226, 5744366.417453531], [777515.6147395857, 5744383.4281958565]]}, "properties": {"id": "57699", "from": "289885122", "to": "294988849", "length_m": 93.58638459156496, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777515.6147395857, 5744383.4281958565], [777607.6421597226, 5744366.417453531]]}, "properties": {"id": "57700", "from": "294988849", "to": "289885122", "length_m": 93.58638459156496, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777515.6147395857, 5744383.4281958565], [777446.5349803296, 5744398.468547346]]}, "properties": {"id": "57701", "from": "294988849", "to": "289885132", "length_m": 70.69812795036927, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777446.5349803296, 5744398.468547346], [777515.6147395857, 5744383.4281958565]]}, "properties": {"id": "57702", "from": "289885132", "to": "294988849", "length_m": 70.69812795036927, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777527.5035392536, 5743553.756945774], [777475.6886718713, 5743691.14695057]]}, "properties": {"id": "57703-57705", "from": "289884839", "to": "297625626", "length_m": 146.83595033516377, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777475.6886718713, 5743691.14695057], [777527.5035392536, 5743553.756945774]]}, "properties": {"id": "57706-57704", "from": "297625626", "to": "289884839", "length_m": 146.83595033516377, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751708.3853423244, 5842786.2755067665], [751656.3812928275, 5842902.664523122]]}, "properties": {"id": "57707-57708-57709-57710", "from": "364001513", "to": "364001512", "length_m": 128.6649838380925, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777475.0859171752, 5743454.180377646], [777399.488882682, 5743664.358811318]]}, "properties": {"id": "57712-57714", "from": "289884835", "to": "289884836", "length_m": 223.36043921860832, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777399.488882682, 5743664.358811318], [777475.0859171752, 5743454.180377646]]}, "properties": {"id": "57715-57713", "from": "289884836", "to": "289884835", "length_m": 223.36043921860832, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751751.3213740302, 5842763.0244974], [751774.7532577317, 5842561.002296355]]}, "properties": {"id": "57716-57717-57718-57719", "from": "673004427", "to": "364001492", "length_m": 204.67729987539357, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777289.2877973332, 5743625.728789839], [777199.7162887926, 5743871.58155972]]}, "properties": {"id": "57720-57722-57724", "from": "289884832", "to": "289884827", "length_m": 262.975648750496, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777199.7162887926, 5743871.58155972], [777289.2877973332, 5743625.728789839]]}, "properties": {"id": "57725-57723-57721", "from": "289884827", "to": "289884832", "length_m": 262.975648750496, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751656.3812928275, 5842902.664523122], [751737.4221228521, 5842801.513217548]]}, "properties": {"id": "57726-57727-57728-57729", "from": "364001512", "to": "364001516", "length_m": 130.29024714604628, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778261.8420660247, 5743835.865886819], [778144.49255334, 5743792.52664692]]}, "properties": {"id": "57730", "from": "37684518", "to": "289884826", "length_m": 125.09675353641937, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778144.49255334, 5743792.52664692], [778261.8420660247, 5743835.865886819]]}, "properties": {"id": "57731", "from": "289884826", "to": "37684518", "length_m": 125.09675353641937, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834713.4999005878, 5812701.72936364], [834707.6507941913, 5812680.318071239]]}, "properties": {"id": "57732", "from": "36713327", "to": "36026393", "length_m": 22.195843888487772, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834707.6507941913, 5812680.318071239], [834713.4999005878, 5812701.72936364]]}, "properties": {"id": "57733", "from": "36026393", "to": "36713327", "length_m": 22.195843888487772, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779057.3494396439, 5744340.435261277], [779068.501765799, 5744305.219332208]]}, "properties": {"id": "57734-57736", "from": "289884857", "to": "289884859", "length_m": 38.25932829962047, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779068.501765799, 5744305.219332208], [779057.3494396439, 5744340.435261277]]}, "properties": {"id": "57737-57735", "from": "289884859", "to": "289884857", "length_m": 38.25932829962047, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779068.501765799, 5744305.219332208], [779113.8430588268, 5744228.58712744]]}, "properties": {"id": "57738", "from": "289884859", "to": "289884860", "length_m": 89.04115719695864, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779113.8430588268, 5744228.58712744], [779068.501765799, 5744305.219332208]]}, "properties": {"id": "57739", "from": "289884860", "to": "289884859", "length_m": 89.04115719695864, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778834.548078346, 5744173.348347332], [778926.7619369375, 5744228.396444549]]}, "properties": {"id": "57740", "from": "289884856", "to": "289884866", "length_m": 107.39501222806508, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778926.7619369375, 5744228.396444549], [778834.548078346, 5744173.348347332]]}, "properties": {"id": "57741", "from": "289884866", "to": "289884856", "length_m": 107.39501222806508, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778926.7619369375, 5744228.396444549], [778998.8746670757, 5744266.092716048]]}, "properties": {"id": "57742", "from": "289884866", "to": "289884861", "length_m": 81.3710924460026, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778998.8746670757, 5744266.092716048], [778926.7619369375, 5744228.396444549]]}, "properties": {"id": "57743", "from": "289884861", "to": "289884866", "length_m": 81.3710924460026, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778998.8746670757, 5744266.092716048], [779068.501765799, 5744305.219332208]]}, "properties": {"id": "57744", "from": "289884861", "to": "289884859", "length_m": 79.8675461478381, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779068.501765799, 5744305.219332208], [778998.8746670757, 5744266.092716048]]}, "properties": {"id": "57745", "from": "289884859", "to": "289884861", "length_m": 79.8675461478381, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778903.7639977289, 5744045.291080654], [778834.548078346, 5744173.348347332]]}, "properties": {"id": "57746-57748", "from": "289884853", "to": "289884856", "length_m": 145.57431598629708, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778834.548078346, 5744173.348347332], [778903.7639977289, 5744045.291080654]]}, "properties": {"id": "57749-57747", "from": "289884856", "to": "289884853", "length_m": 145.57431598629708, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778834.548078346, 5744173.348347332], [778731.9523000671, 5744351.159627951]]}, "properties": {"id": "57750-57752", "from": "289884856", "to": "289885584", "length_m": 205.44146712675976, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778731.9523000671, 5744351.159627951], [778834.548078346, 5744173.348347332]]}, "properties": {"id": "57753-57751", "from": "289885584", "to": "289884856", "length_m": 205.44146712675976, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751737.4221228521, 5842801.513217548], [751751.3213740302, 5842763.0244974]]}, "properties": {"id": "57754-57755-57756-57757-57758-57759-57760", "from": "364001516", "to": "673004427", "length_m": 47.89127056885022, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751751.3213740302, 5842763.0244974], [751724.5633387776, 5842754.082701926]]}, "properties": {"id": "57761-57762-57763", "from": "673004427", "to": "364001522", "length_m": 29.803552795703695, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751724.5633387776, 5842754.082701926], [751708.3853423244, 5842786.2755067665]]}, "properties": {"id": "57764-57765-57766-57767-57768", "from": "364001522", "to": "364001513", "length_m": 40.11527372458724, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751708.3853423244, 5842786.2755067665], [751737.4221228521, 5842801.513217548]]}, "properties": {"id": "57769-57770-57771", "from": "364001513", "to": "364001516", "length_m": 35.50848036468206, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777786.363698995, 5743560.890559634], [777680.1685598858, 5743759.148681329]]}, "properties": {"id": "57772-57774-57776-57778-57780-57782", "from": "289884842", "to": "289884849", "length_m": 245.74953184656837, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838608.5178547159, 5805420.77813541], [838657.057032187, 5805698.422109553]]}, "properties": {"id": "5778-5779-5780-5781-5782", "from": "244891982", "to": "2982440660", "length_m": 281.85765193724745, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777680.1685598858, 5743759.148681329], [777786.363698995, 5743560.890559634]]}, "properties": {"id": "57783-57781-57779-57777-57775-57773", "from": "289884849", "to": "289884842", "length_m": 245.74953184656837, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777800.9077379241, 5743566.044845551], [777838.1243414609, 5743458.050703491]]}, "properties": {"id": "57784", "from": "289884815", "to": "289884872", "length_m": 114.22701221747637, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777838.1243414609, 5743458.050703491], [777800.9077379241, 5743566.044845551]]}, "properties": {"id": "57785", "from": "289884872", "to": "289884815", "length_m": 114.22701221747637, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777838.1243414609, 5743458.050703491], [777848.2499113944, 5743432.75184567]]}, "properties": {"id": "57786", "from": "289884872", "to": "289885351", "length_m": 27.249942669002113, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777848.2499113944, 5743432.75184567], [777838.1243414609, 5743458.050703491]]}, "properties": {"id": "57787", "from": "289885351", "to": "289884872", "length_m": 27.249942669002113, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778998.8746670757, 5744266.092716048], [779061.0409189612, 5744154.670574672]]}, "properties": {"id": "57793", "from": "289884861", "to": "289884865", "length_m": 127.59128691623356, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779061.0409189612, 5744154.670574672], [778998.8746670757, 5744266.092716048]]}, "properties": {"id": "57794", "from": "289884865", "to": "289884861", "length_m": 127.59128691623356, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776309.3144777088, 5743528.875202153], [775686.85396363, 5743775.748926459]]}, "properties": {"id": "57808-57806-57804-57802-57800-57798-57796-58146-58148", "from": "289884792", "to": "519802132", "length_m": 671.3993998915807, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776309.3144777088, 5743528.875202153], [776697.7143334505, 5743383.811256712]]}, "properties": {"id": "57809-57811", "from": "289884792", "to": "289885321", "length_m": 414.6144246807757, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776697.7143334505, 5743383.811256712], [776309.3144777088, 5743528.875202153]]}, "properties": {"id": "57812-57810", "from": "289885321", "to": "289884792", "length_m": 414.6144246807757, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776697.7143334505, 5743383.811256712], [776742.2743269315, 5743363.07478917]]}, "properties": {"id": "57813", "from": "289885321", "to": "289885418", "length_m": 49.14869378516907, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776742.2743269315, 5743363.07478917], [776697.7143334505, 5743383.811256712]]}, "properties": {"id": "57814", "from": "289885418", "to": "289885321", "length_m": 49.14869378516907, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776742.2743269315, 5743363.07478917], [776855.0465931707, 5743312.263179299]]}, "properties": {"id": "57815-57817", "from": "289885418", "to": "289884726", "length_m": 123.81693979026858, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776855.0465931707, 5743312.263179299], [776742.2743269315, 5743363.07478917]]}, "properties": {"id": "57818-57816", "from": "289884726", "to": "289885418", "length_m": 123.81693979026858, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776855.0465931707, 5743312.263179299], [777053.4398595064, 5743302.530784038]]}, "properties": {"id": "57819-57821", "from": "289884726", "to": "289884812", "length_m": 198.6319596361697, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777053.4398595064, 5743302.530784038], [776855.0465931707, 5743312.263179299]]}, "properties": {"id": "57822-57820", "from": "289884812", "to": "289884726", "length_m": 198.6319596361697, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777053.4398595064, 5743302.530784038], [777297.6870721284, 5743318.762004374]]}, "properties": {"id": "57823-57825-57827", "from": "289884812", "to": "289884811", "length_m": 247.84422304142151, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777297.6870721284, 5743318.762004374], [777053.4398595064, 5743302.530784038]]}, "properties": {"id": "57828-57826-57824", "from": "289884811", "to": "289884812", "length_m": 247.84422304142151, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777297.6870721284, 5743318.762004374], [777373.5592198533, 5743336.660493901]]}, "properties": {"id": "57829", "from": "289884811", "to": "289884787", "length_m": 77.95472205661922, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838657.057032187, 5805698.422109553], [838663.5010909018, 5805741.7467607595]]}, "properties": {"id": "5783-5784-5785", "from": "2982440660", "to": "2982440667", "length_m": 43.80509971457397, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777373.5592198533, 5743336.660493901], [777297.6870721284, 5743318.762004374]]}, "properties": {"id": "57830", "from": "289884787", "to": "289884811", "length_m": 77.95472205661922, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777373.5592198533, 5743336.660493901], [777701.6527941726, 5743309.135574145]]}, "properties": {"id": "57831-57833-57835-57837", "from": "289884787", "to": "289884894", "length_m": 344.6615070858684, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777701.6527941726, 5743309.135574145], [777373.5592198533, 5743336.660493901]]}, "properties": {"id": "57838-57836-57834-57832", "from": "289884894", "to": "289884787", "length_m": 344.6615070858684, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777701.6527941726, 5743309.135574145], [778102.5136173023, 5743441.800794633]]}, "properties": {"id": "57839-57841-57843-57845", "from": "289884894", "to": "1851289981", "length_m": 423.9767433119889, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778102.5136173023, 5743441.800794633], [777701.6527941726, 5743309.135574145]]}, "properties": {"id": "57846-57844-57842-57840", "from": "1851289981", "to": "289884894", "length_m": 423.9767433119889, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778029.9313113651, 5743645.903472469], [778062.4327195139, 5743551.317992263]]}, "properties": {"id": "57847", "from": "289884817", "to": "289884889", "length_m": 100.01377213600064, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778062.4327195139, 5743551.317992263], [778029.9313113651, 5743645.903472469]]}, "properties": {"id": "57848", "from": "289884889", "to": "289884817", "length_m": 100.01377213600064, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778062.4327195139, 5743551.317992263], [778102.5136173023, 5743441.800794633]]}, "properties": {"id": "57849-57851", "from": "289884889", "to": "1851289981", "length_m": 116.63777122072828, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778102.5136173023, 5743441.800794633], [778062.4327195139, 5743551.317992263]]}, "properties": {"id": "57852-57850", "from": "1851289981", "to": "289884889", "length_m": 116.63777122072828, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778102.5136173023, 5743441.800794633], [778106.7005339796, 5743434.176835236]]}, "properties": {"id": "57853", "from": "1851289981", "to": "37684442", "length_m": 8.697989906045368, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778106.7005339796, 5743434.176835236], [778102.5136173023, 5743441.800794633]]}, "properties": {"id": "57854", "from": "37684442", "to": "1851289981", "length_m": 8.697989906045368, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777876.4415432878, 5743591.752043481], [778062.4327195139, 5743551.317992263]]}, "properties": {"id": "57855-57857-21340-21342", "from": "289884816", "to": "289884889", "length_m": 258.83667634263526, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751787.5602768132, 5841252.423763211], [751802.1060887701, 5841136.524736266]]}, "properties": {"id": "57859-57860-57861-57862", "from": "364001467", "to": "619565627", "length_m": 117.65152893852142, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838663.5010909018, 5805741.7467607595], [838684.4575825208, 5805857.642460985]]}, "properties": {"id": "5786-5787-5788-5789", "from": "2982440667", "to": "832362788", "length_m": 117.80440906185163, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832503.6691207977, 5812967.057781776], [832507.2793831384, 5812987.159510225]]}, "properties": {"id": "57863", "from": "35084638", "to": "298347710", "length_m": 20.42335624236633, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832507.2793831384, 5812987.159510225], [832514.647109267, 5813037.775481169]]}, "properties": {"id": "57864", "from": "298347710", "to": "1536176332", "length_m": 51.14938806234126, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832514.647109267, 5813037.775481169], [832535.597873927, 5813181.630946062]]}, "properties": {"id": "57865", "from": "1536176332", "to": "463141611", "length_m": 145.37306935849878, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766601.1106787845, 5744654.099732644], [767360.4016636058, 5744708.398441584]]}, "properties": {"id": "57866-57868-57870-57872-57874-57876-57878-57880-57882", "from": "371470633", "to": "845974558", "length_m": 829.4608780090689, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767360.4016636058, 5744708.398441584], [766601.1106787845, 5744654.099732644]]}, "properties": {"id": "57883-57881-57879-57877-57875-57873-57871-57869-57867", "from": "845974558", "to": "371470633", "length_m": 829.4608780090689, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767360.4016636058, 5744708.398441584], [767904.3270061633, 5744715.463051729]]}, "properties": {"id": "57884-57886-57888-57890", "from": "845974558", "to": "524157486", "length_m": 557.5479851517192, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767904.3270061633, 5744715.463051729], [767360.4016636058, 5744708.398441584]]}, "properties": {"id": "57891-57889-57887-57885", "from": "524157486", "to": "845974558", "length_m": 557.5479851517192, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767904.3270061633, 5744715.463051729], [768383.7770351269, 5744563.562461627]]}, "properties": {"id": "57892-57894-57896", "from": "524157486", "to": "524157508", "length_m": 515.3279368186946, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768383.7770351269, 5744563.562461627], [767904.3270061633, 5744715.463051729]]}, "properties": {"id": "57897-57895-57893", "from": "524157508", "to": "524157486", "length_m": 515.3279368186946, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768383.7770351269, 5744563.562461627], [768902.1471392977, 5744501.394433075]]}, "properties": {"id": "57898-57900-57902-57904-57906", "from": "524157508", "to": "524157532", "length_m": 545.7011400180372, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769560.1680228146, 5753278.709133976], [769024.4096519477, 5753010.559696184]]}, "properties": {"id": "579-577-575-573", "from": "534678008", "to": "534678033", "length_m": 602.7123867092391, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768902.1471392977, 5744501.394433075], [768383.7770351269, 5744563.562461627]]}, "properties": {"id": "57907-57905-57903-57901-57899", "from": "524157532", "to": "524157508", "length_m": 545.7011400180372, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768902.1471392977, 5744501.394433075], [769881.3517661234, 5744399.233203]]}, "properties": {"id": "57908-57910-57912-57914-57916-57918-57920-57922-57924-57926-57928-57930-57932", "from": "524157532", "to": "524157553", "length_m": 1029.5193195322795, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769881.3517661234, 5744399.233203], [768902.1471392977, 5744501.394433075]]}, "properties": {"id": "57933-57931-57929-57927-57925-57923-57921-57919-57917-57915-57913-57911-57909", "from": "524157553", "to": "524157532", "length_m": 1029.5193195322795, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769881.3517661234, 5744399.233203], [770248.0024481865, 5744004.753256548]]}, "properties": {"id": "57934-57936-57938-57940-57942", "from": "524157553", "to": "313297931", "length_m": 608.7691999491722, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770248.0024481865, 5744004.753256548], [769881.3517661234, 5744399.233203]]}, "properties": {"id": "57943-57941-57939-57937-57935", "from": "313297931", "to": "524157553", "length_m": 608.7691999491722, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770248.0024481865, 5744004.753256548], [771120.5804035449, 5743925.252104271]]}, "properties": {"id": "57944-57946-57948-57950-57952", "from": "313297931", "to": "313297939", "length_m": 884.2203443918509, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771120.5804035449, 5743925.252104271], [770248.0024481865, 5744004.753256548]]}, "properties": {"id": "57953-57951-57949-57947-57945", "from": "313297939", "to": "313297931", "length_m": 884.2203443918509, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771120.5804035449, 5743925.252104271], [771770.400837348, 5743720.279823206]]}, "properties": {"id": "57954-57956-57958-57960", "from": "313297939", "to": "313297942", "length_m": 684.2781740455578, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771770.400837348, 5743720.279823206], [771120.5804035449, 5743925.252104271]]}, "properties": {"id": "57961-57959-57957-57955", "from": "313297942", "to": "313297939", "length_m": 684.2781740455578, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771770.400837348, 5743720.279823206], [772294.5501682595, 5743783.951844871]]}, "properties": {"id": "57962-57964-57966", "from": "313297942", "to": "524157142", "length_m": 528.3754632382839, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772294.5501682595, 5743783.951844871], [771770.400837348, 5743720.279823206]]}, "properties": {"id": "57967-57965-57963", "from": "524157142", "to": "313297942", "length_m": 528.3754632382839, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772294.5501682595, 5743783.951844871], [772732.8333008399, 5743590.002167813]]}, "properties": {"id": "57968-57970-57972-57974-57976-57978", "from": "524157142", "to": "524157168", "length_m": 560.43507098643, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772732.8333008399, 5743590.002167813], [772294.5501682595, 5743783.951844871]]}, "properties": {"id": "57979-57977-57975-57973-57971-57969", "from": "524157168", "to": "524157142", "length_m": 560.43507098643, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772732.8333008399, 5743590.002167813], [773267.2149506423, 5743516.645610314]]}, "properties": {"id": "57980-57982-57984-57986-57988-57990-57992", "from": "524157168", "to": "313297972", "length_m": 578.8731297628055, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773267.2149506423, 5743516.645610314], [772732.8333008399, 5743590.002167813]]}, "properties": {"id": "57993-57991-57989-57987-57985-57983-57981", "from": "313297972", "to": "524157168", "length_m": 578.8731297628055, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773267.2149506423, 5743516.645610314], [773715.4602114167, 5743897.981138025]]}, "properties": {"id": "57994-57996-57998-58000", "from": "313297972", "to": "295231720", "length_m": 599.3409234878734, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769560.1680228146, 5753278.709133976], [770138.0243630204, 5753580.410487404]]}, "properties": {"id": "580-582-584-586-588-590", "from": "534678008", "to": "534677999", "length_m": 592.959947719441, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773715.4602114167, 5743897.981138025], [773267.2149506423, 5743516.645610314]]}, "properties": {"id": "58001-57999-57997-57995", "from": "295231720", "to": "313297972", "length_m": 599.3409234878734, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773715.4602114167, 5743897.981138025], [773859.216764793, 5744069.890830704]]}, "properties": {"id": "58002", "from": "295231720", "to": "295231719", "length_m": 224.09571358392378, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773859.216764793, 5744069.890830704], [773715.4602114167, 5743897.981138025]]}, "properties": {"id": "58003", "from": "295231719", "to": "295231720", "length_m": 224.09571358392378, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773859.216764793, 5744069.890830704], [774145.0345536757, 5744760.700112969]]}, "properties": {"id": "58004-58006-58008-58010-58012-58014-58016-58018-58020-58022", "from": "295231719", "to": "2558470528", "length_m": 758.4989858373985, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783853.3560840879, 5763750.209773448], [783976.890456976, 5764453.317987577]]}, "properties": {"id": "5802", "from": "1852697862", "to": "370245225", "length_m": 713.8780719460156, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774145.0345536757, 5744760.700112969], [773859.216764793, 5744069.890830704]]}, "properties": {"id": "58023-58021-58019-58017-58015-58013-58011-58009-58007-58005", "from": "2558470528", "to": "295231719", "length_m": 758.4989858373985, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774145.0345536757, 5744760.700112969], [774407.4154549597, 5744997.4961850075]]}, "properties": {"id": "58024-58026-58028-58030-58032-58034-24760-24758-24756-24754", "from": "2558470528", "to": "2558470493", "length_m": 507.7308523198608, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783976.890456976, 5764453.317987577], [783853.3560840879, 5763750.209773448]]}, "properties": {"id": "5803", "from": "370245225", "to": "1852697862", "length_m": 713.8780719460156, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778311.1316607455, 5743505.287024982], [778234.4493466204, 5743716.624026579]]}, "properties": {"id": "58036-58038-58040-58042-58410", "from": "289885407", "to": "289884819", "length_m": 224.86314861671585, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832514.6336607703, 5812946.367058255], [832510.7505673124, 5812924.319420066]]}, "properties": {"id": "58044", "from": "243827556", "to": "36043664", "length_m": 22.386977554286, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832510.7505673124, 5812924.319420066], [832486.0428633252, 5812853.911937407]]}, "properties": {"id": "58045-58046-58047-58048", "from": "36043664", "to": "36043667", "length_m": 74.66952059311836, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778301.1160892976, 5745676.787023855], [778406.8526617982, 5746102.910476372]]}, "properties": {"id": "58049-58051", "from": "289545391", "to": "289545392", "length_m": 64.65203483493693, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778406.8526617982, 5746102.910476372], [778301.1160892976, 5745676.787023855]]}, "properties": {"id": "58052-58050", "from": "289545392", "to": "289545391", "length_m": 64.65203483493693, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778884.8865057648, 5744454.0030662], [778927.9455216096, 5744444.142092929]]}, "properties": {"id": "58053", "from": "289885367", "to": "289885368", "length_m": 44.173721065476975, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778927.9455216096, 5744444.142092929], [778884.8865057648, 5744454.0030662]]}, "properties": {"id": "58054", "from": "289885368", "to": "289885367", "length_m": 44.173721065476975, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778378.1496756917, 5746152.834458806], [778339.0210619126, 5746184.315292586]]}, "properties": {"id": "58055-58056", "from": "289545770", "to": "289545393", "length_m": 50.526267925503774, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778381.6345503386, 5746173.4289147165], [778390.5616909408, 5746175.865152848]]}, "properties": {"id": "58057-58058", "from": "289545763", "to": "289545765", "length_m": 9.686396071299395, "freespeed_mps": 2.7777777777777777, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778390.5616909408, 5746175.865152848], [778399.0671946949, 5746162.56858428]]}, "properties": {"id": "58059-58060", "from": "289545765", "to": "289545766", "length_m": 16.52731595283529, "freespeed_mps": 2.7777777777777777, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778399.0671946949, 5746162.56858428], [778398.5777368189, 5746157.773503601]]}, "properties": {"id": "58061", "from": "289545766", "to": "289545767", "length_m": 4.819996655911543, "freespeed_mps": 2.7777777777777777, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778398.5777368189, 5746157.773503601], [778380.7083820999, 5746148.923041391]]}, "properties": {"id": "58062-58063", "from": "289545767", "to": "289545769", "length_m": 22.716047185078367, "freespeed_mps": 2.7777777777777777, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778380.7083820999, 5746148.923041391], [778378.1496756917, 5746152.834458806]]}, "properties": {"id": "58064", "from": "289545769", "to": "289545770", "length_m": 4.673988098071859, "freespeed_mps": 2.7777777777777777, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778378.1496756917, 5746152.834458806], [778381.6345503386, 5746173.4289147165]]}, "properties": {"id": "58065-58066", "from": "289545770", "to": "289545763", "length_m": 22.805606743328546, "freespeed_mps": 2.7777777777777777, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777731.8525491351, 5744088.091604519], [777467.128340397, 5743995.085946098]]}, "properties": {"id": "58067", "from": "289545800", "to": "289884834", "length_m": 280.5868113283765, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777467.128340397, 5743995.085946098], [777731.8525491351, 5744088.091604519]]}, "properties": {"id": "58068", "from": "289884834", "to": "289545800", "length_m": 280.5868113283765, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777467.128340397, 5743995.085946098], [777375.9841045944, 5743964.045281683]]}, "properties": {"id": "58069", "from": "289884834", "to": "289884841", "length_m": 96.2849651335837, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777375.9841045944, 5743964.045281683], [777467.128340397, 5743995.085946098]]}, "properties": {"id": "58070", "from": "289884841", "to": "289884834", "length_m": 96.2849651335837, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777375.9841045944, 5743964.045281683], [777350.3227066502, 5743954.739362127]]}, "properties": {"id": "58071", "from": "289884841", "to": "148794923", "length_m": 27.29665691468596, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777350.3227066502, 5743954.739362127], [777375.9841045944, 5743964.045281683]]}, "properties": {"id": "58072", "from": "148794923", "to": "289884841", "length_m": 27.29665691468596, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777350.3227066502, 5743954.739362127], [777283.849580371, 5743925.8142747935]]}, "properties": {"id": "58073-58075-58077", "from": "148794923", "to": "289885182", "length_m": 72.652114765459, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777283.849580371, 5743925.8142747935], [777350.3227066502, 5743954.739362127]]}, "properties": {"id": "58078-58076-58074", "from": "289885182", "to": "148794923", "length_m": 72.652114765459, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777283.849580371, 5743925.8142747935], [777199.7162887926, 5743871.58155972]]}, "properties": {"id": "58079-58081-58083", "from": "289885182", "to": "289884827", "length_m": 100.62718879296379, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777199.7162887926, 5743871.58155972], [777283.849580371, 5743925.8142747935]]}, "properties": {"id": "58084-58082-58080", "from": "289884827", "to": "289885182", "length_m": 100.62718879296379, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777199.7162887926, 5743871.58155972], [777146.1564124408, 5743582.453292815]]}, "properties": {"id": "58085-58087-58089-58091-58093-58095-58097-58099", "from": "289884827", "to": "289884830", "length_m": 303.14073651581674, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777146.1564124408, 5743582.453292815], [777199.7162887926, 5743871.58155972]]}, "properties": {"id": "58100-58098-58096-58094-58092-58090-58088-58086", "from": "289884830", "to": "289884827", "length_m": 303.14073651581674, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777146.1564124408, 5743582.453292815], [777142.8071131944, 5743561.631649968]]}, "properties": {"id": "58101-58103", "from": "289884830", "to": "295250958", "length_m": 21.08999595114805, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777142.8071131944, 5743561.631649968], [777146.1564124408, 5743582.453292815]]}, "properties": {"id": "58104-58102", "from": "295250958", "to": "289884830", "length_m": 21.08999595114805, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777142.8071131944, 5743561.631649968], [777097.9252838467, 5743467.205454611]]}, "properties": {"id": "58105-58107-58109", "from": "295250958", "to": "148795031", "length_m": 105.8901227154833, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777097.9252838467, 5743467.205454611], [777142.8071131944, 5743561.631649968]]}, "properties": {"id": "58110-58108-58106", "from": "148795031", "to": "295250958", "length_m": 105.8901227154833, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777097.9252838467, 5743467.205454611], [777090.4455586418, 5743459.984041564]]}, "properties": {"id": "58111", "from": "148795031", "to": "289884803", "length_m": 10.396879111979269, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777090.4455586418, 5743459.984041564], [777097.9252838467, 5743467.205454611]]}, "properties": {"id": "58112", "from": "289884803", "to": "148795031", "length_m": 10.396879111979269, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777090.4455586418, 5743459.984041564], [776749.4967118036, 5743389.764276399]]}, "properties": {"id": "58113-58115-58117-58119-58121-58123-58125", "from": "289884803", "to": "289885417", "length_m": 367.139608102583, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776749.4967118036, 5743389.764276399], [777090.4455586418, 5743459.984041564]]}, "properties": {"id": "58126-58124-58122-58120-58118-58116-58114", "from": "289885417", "to": "289884803", "length_m": 367.139608102583, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776749.4967118036, 5743389.764276399], [776697.7143334505, 5743383.811256712]]}, "properties": {"id": "58127-58129", "from": "289885417", "to": "289885321", "length_m": 53.84950551096412, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776697.7143334505, 5743383.811256712], [776749.4967118036, 5743389.764276399]]}, "properties": {"id": "58130-58128", "from": "289885321", "to": "289885417", "length_m": 53.84950551096412, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778398.5777368189, 5746157.773503601], [778406.8526617982, 5746102.910476372]]}, "properties": {"id": "58131-58132-58133", "from": "289545767", "to": "289545392", "length_m": 56.10186512928472, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776749.4967118036, 5743389.764276399], [776742.2743269315, 5743363.07478917]]}, "properties": {"id": "58134-58136-58138", "from": "289885417", "to": "289885418", "length_m": 27.64944144384195, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776742.2743269315, 5743363.07478917], [776749.4967118036, 5743389.764276399]]}, "properties": {"id": "58139-58137-58135", "from": "289885418", "to": "289885417", "length_m": 27.64944144384195, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778422.6196780534, 5746189.814810973], [778399.0671946949, 5746162.56858428]]}, "properties": {"id": "58140-58141", "from": "289545397", "to": "289545766", "length_m": 36.542395630437866, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778390.5616909408, 5746175.865152848], [778422.6196780534, 5746189.814810973]]}, "properties": {"id": "58142-58143", "from": "289545765", "to": "289545397", "length_m": 34.988876618048046, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778339.0210619126, 5746184.315292586], [778381.6345503386, 5746173.4289147165]]}, "properties": {"id": "58144-58145", "from": "289545393", "to": "289545763", "length_m": 44.11639807226932, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775686.85396363, 5743775.748926459], [776309.3144777088, 5743528.875202153]]}, "properties": {"id": "58149-58147-57795-57797-57799-57801-57803-57805-57807", "from": "519802132", "to": "289884792", "length_m": 671.3993998915807, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775686.85396363, 5743775.748926459], [775132.5632752773, 5743372.850650872]]}, "properties": {"id": "58150-58152-58154-58156-58158-58160-58162-58164-58166-58168-58170-58172-58174-58176", "from": "519802132", "to": "295231724", "length_m": 696.4864298641626, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775132.5632752773, 5743372.850650872], [775686.85396363, 5743775.748926459]]}, "properties": {"id": "58177-58175-58173-58171-58169-58167-58165-58163-58161-58159-58157-58155-58153-58151", "from": "295231724", "to": "519802132", "length_m": 696.4864298641626, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778406.8526617982, 5746102.910476372], [778380.7083820999, 5746148.923041391]]}, "properties": {"id": "58238-58239-58240-58241", "from": "289545392", "to": "289545769", "length_m": 53.40337291315462, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759317.3074312436, 5729966.843173068], [759203.9686264835, 5729959.379337189]]}, "properties": {"id": "58242-58244-58246-58248", "from": "36698729", "to": "832510422", "length_m": 113.5902882101811, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759203.9686264835, 5729959.379337189], [759317.3074312436, 5729966.843173068]]}, "properties": {"id": "58249-58247-58245-58243", "from": "832510422", "to": "36698729", "length_m": 113.5902882101811, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759203.9686264835, 5729959.379337189], [758936.6797323179, 5729942.593591478]]}, "properties": {"id": "58250-58252-58254", "from": "832510422", "to": "312994256", "length_m": 267.8154487269549, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758936.6797323179, 5729942.593591478], [759203.9686264835, 5729959.379337189]]}, "properties": {"id": "58255-58253-58251", "from": "312994256", "to": "832510422", "length_m": 267.8154487269549, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758936.6797323179, 5729942.593591478], [758755.7297489693, 5729934.342887223]]}, "properties": {"id": "58256-58258-58260", "from": "312994256", "to": "2876031918", "length_m": 181.37006229166101, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758755.7297489693, 5729934.342887223], [758936.6797323179, 5729942.593591478]]}, "properties": {"id": "58261-58259-58257", "from": "2876031918", "to": "312994256", "length_m": 181.37006229166101, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758755.7297489693, 5729934.342887223], [758747.9757559404, 5729934.193449805]]}, "properties": {"id": "58262", "from": "2876031918", "to": "36705043", "length_m": 7.7554328953620875, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758747.9757559404, 5729934.193449805], [758755.7297489693, 5729934.342887223]]}, "properties": {"id": "58263", "from": "36705043", "to": "2876031918", "length_m": 7.7554328953620875, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777346.341868582, 5742715.331091522], [777304.0437524463, 5742713.289266035]]}, "properties": {"id": "58264-58266-58268", "from": "289884783", "to": "1756781507", "length_m": 42.521658861174174, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777304.0437524463, 5742713.289266035], [777346.341868582, 5742715.331091522]]}, "properties": {"id": "58269-58267-58265", "from": "1756781507", "to": "289884783", "length_m": 42.521658861174174, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778402.2097854242, 5744394.482900336], [778454.1556064355, 5744413.489172211]]}, "properties": {"id": "58290-58291-58292", "from": "2562476556", "to": "289545349", "length_m": 55.451386330046525, "freespeed_mps": 10.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750667.9267714021, 5833779.25406776], [750802.647891318, 5834686.554145974]]}, "properties": {"id": "58293-58294-58295-58296-58297-58298-58299-58300", "from": "363994873", "to": "363994886", "length_m": 917.6490153224005, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776309.3144777088, 5743528.875202153], [776697.7143334505, 5743383.811256712]]}, "properties": {"id": "58301-58303-58305-58307-58309-58311-58313-58315-58317-58319-58321-58323-58325-58327-58329-58331-58333", "from": "289884792", "to": "289885321", "length_m": 505.26114264606093, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776697.7143334505, 5743383.811256712], [776309.3144777088, 5743528.875202153]]}, "properties": {"id": "58334-58332-58330-58328-58326-58324-58322-58320-58318-58316-58314-58312-58310-58308-58306-58304-58302", "from": "289885321", "to": "289884792", "length_m": 505.26114264606093, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750833.7790568407, 5834890.978827732], [750815.9719305771, 5834684.973231057]]}, "properties": {"id": "58335-58336-58337-58338-58339-58340-58341-58342-58343", "from": "363996325", "to": "364001235", "length_m": 207.35215486481619, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777497.4442310105, 5742698.115748036], [777431.2446181313, 5742438.674487149]]}, "properties": {"id": "58344", "from": "289884771", "to": "4763088551", "length_m": 267.75391032385284, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777431.2446181313, 5742438.674487149], [777497.4442310105, 5742698.115748036]]}, "properties": {"id": "58345", "from": "4763088551", "to": "289884771", "length_m": 267.75391032385284, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778729.0361920143, 5744367.9527751915], [778737.9476969301, 5744405.073500901]]}, "properties": {"id": "58346", "from": "289885595", "to": "289885364", "length_m": 38.17542658894195, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778737.9476969301, 5744405.073500901], [778729.0361920143, 5744367.9527751915]]}, "properties": {"id": "58347", "from": "289885364", "to": "289885595", "length_m": 38.17542658894195, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778454.6292468647, 5744416.562256445], [778467.5942154587, 5744427.071170938]]}, "properties": {"id": "58348-58349-58350", "from": "289545358", "to": "2562476512", "length_m": 17.691476711272493, "freespeed_mps": 5.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778467.5942154587, 5744427.071170938], [778477.6918025098, 5744423.709986823]]}, "properties": {"id": "58351-58352-58353", "from": "2562476512", "to": "37684607", "length_m": 10.874715874724835, "freespeed_mps": 5.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778477.6918025098, 5744423.709986823], [778482.5310595135, 5744410.417760738]]}, "properties": {"id": "58354-58355-58356", "from": "37684607", "to": "2562476531", "length_m": 14.728619542398183, "freespeed_mps": 5.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778482.5310595135, 5744410.417760738], [778481.1478613799, 5744406.331516509]]}, "properties": {"id": "58357", "from": "2562476531", "to": "2562476536", "length_m": 4.3140038146488235, "freespeed_mps": 5.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778481.1478613799, 5744406.331516509], [778466.3088393705, 5744398.776928476]]}, "properties": {"id": "58358-58359-58360", "from": "2562476536", "to": "289545354", "length_m": 17.64945837685454, "freespeed_mps": 5.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778466.3088393705, 5744398.776928476], [778461.4429054882, 5744400.434517557]]}, "properties": {"id": "58361", "from": "289545354", "to": "289545355", "length_m": 5.140516915096239, "freespeed_mps": 5.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778461.4429054882, 5744400.434517557], [778454.1556064355, 5744413.489172211]]}, "properties": {"id": "58362-58363", "from": "289545355", "to": "289545349", "length_m": 15.541835065969499, "freespeed_mps": 5.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778454.1556064355, 5744413.489172211], [778454.6292468647, 5744416.562256445]]}, "properties": {"id": "58364", "from": "289545349", "to": "289545358", "length_m": 3.109370032632937, "freespeed_mps": 5.0, "capacity_vph": 1000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778992.0070892549, 5744354.770477017], [779027.9033395299, 5744503.255056692]]}, "properties": {"id": "58365", "from": "289885356", "to": "289885357", "length_m": 152.76194275680757, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779027.9033395299, 5744503.255056692], [778992.0070892549, 5744354.770477017]]}, "properties": {"id": "58366", "from": "289885357", "to": "289885356", "length_m": 152.76194275680757, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835146.7398185835, 5821219.329882022], [834356.8665141871, 5821886.798149931]]}, "properties": {"id": "5837-5838", "from": "1534939319", "to": "1257432044", "length_m": 1034.1247176572033, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778234.4493466204, 5743716.624026579], [778311.1316607455, 5743505.287024982]]}, "properties": {"id": "58409-58043-58041-58039-58037", "from": "289884819", "to": "289885407", "length_m": 224.86314861671585, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778422.6196780534, 5746189.814810973], [779518.8597198521, 5746545.992302959]]}, "properties": {"id": "58411-58413-58415-58417-58419-58421-58423-58425-58427-58429-58431-58433", "from": "289545397", "to": "298361568", "length_m": 1232.1148142990216, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779518.8597198521, 5746545.992302959], [778422.6196780534, 5746189.814810973]]}, "properties": {"id": "58434-58432-58430-58428-58426-58424-58422-58420-58418-58416-58414-58412", "from": "298361568", "to": "289545397", "length_m": 1232.1148142990216, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779518.8597198521, 5746545.992302959], [780059.1183308262, 5746386.599686763]]}, "properties": {"id": "58435-58437-58439-58441-58443-58445", "from": "298361568", "to": "289545413", "length_m": 563.7251399760997, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780059.1183308262, 5746386.599686763], [779518.8597198521, 5746545.992302959]]}, "properties": {"id": "58446-58444-58442-58440-58438-58436", "from": "289545413", "to": "298361568", "length_m": 563.7251399760997, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778869.8442410394, 5744384.844211961], [778884.8865057648, 5744454.0030662]]}, "properties": {"id": "58447", "from": "289885365", "to": "289885367", "length_m": 70.7758210302088, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778884.8865057648, 5744454.0030662], [778869.8442410394, 5744384.844211961]]}, "properties": {"id": "58448", "from": "289885367", "to": "289885365", "length_m": 70.7758210302088, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778884.8865057648, 5744454.0030662], [778889.5799251477, 5744476.633712065]]}, "properties": {"id": "58449", "from": "289885367", "to": "289885366", "length_m": 23.112211427339965, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778889.5799251477, 5744476.633712065], [778884.8865057648, 5744454.0030662]]}, "properties": {"id": "58450", "from": "289885366", "to": "289885367", "length_m": 23.112211427339965, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778339.0210619126, 5746184.315292586], [778177.1609284302, 5746329.269065791]]}, "properties": {"id": "58451-58453-58455", "from": "289545393", "to": "289545395", "length_m": 220.7935861038777, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778177.1609284302, 5746329.269065791], [778339.0210619126, 5746184.315292586]]}, "properties": {"id": "58456-58454-58452", "from": "289545395", "to": "289545393", "length_m": 220.7935861038777, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778177.1609284302, 5746329.269065791], [778086.0777043533, 5746462.639620782]]}, "properties": {"id": "58457", "from": "289545395", "to": "289545396", "length_m": 161.5049803841074, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778086.0777043533, 5746462.639620782], [778177.1609284302, 5746329.269065791]]}, "properties": {"id": "58458", "from": "289545396", "to": "289545395", "length_m": 161.5049803841074, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778842.724322536, 5744390.329523797], [778926.7619369375, 5744228.396444549]]}, "properties": {"id": "58459-58461-58463-58465", "from": "289884855", "to": "289884866", "length_m": 183.49314274804917, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778926.7619369375, 5744228.396444549], [778842.724322536, 5744390.329523797]]}, "properties": {"id": "58466-58464-58462-58460", "from": "289884866", "to": "289884855", "length_m": 183.49314274804917, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778926.7619369375, 5744228.396444549], [778997.8088092597, 5744098.441119043]]}, "properties": {"id": "58467", "from": "289884866", "to": "289884867", "length_m": 148.10821965519295, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778997.8088092597, 5744098.441119043], [778926.7619369375, 5744228.396444549]]}, "properties": {"id": "58468", "from": "289884867", "to": "289884866", "length_m": 148.10821965519295, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778751.292807213, 5744472.47983847], [778737.9476969301, 5744405.073500901]]}, "properties": {"id": "58469-58470", "from": "37684654", "to": "289885364", "length_m": 69.39067757255994, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778454.6292468647, 5744416.562256445], [778446.6797737188, 5744440.55300635]]}, "properties": {"id": "58471-58472", "from": "289545358", "to": "2562476494", "length_m": 25.95151402867471, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779148.9365726074, 5744322.877348376], [779057.3494396439, 5744340.435261277]]}, "properties": {"id": "58473", "from": "289884858", "to": "289884857", "length_m": 93.25493659562494, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779057.3494396439, 5744340.435261277], [779148.9365726074, 5744322.877348376]]}, "properties": {"id": "58474", "from": "289884857", "to": "289884858", "length_m": 93.25493659562494, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779057.3494396439, 5744340.435261277], [778992.0070892549, 5744354.770477017]]}, "properties": {"id": "58475", "from": "289884857", "to": "289885356", "length_m": 66.89634630838029, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778992.0070892549, 5744354.770477017], [779057.3494396439, 5744340.435261277]]}, "properties": {"id": "58476", "from": "289885356", "to": "289884857", "length_m": 66.89634630838029, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778992.0070892549, 5744354.770477017], [778869.8442410394, 5744384.844211961]]}, "properties": {"id": "58477", "from": "289885356", "to": "289885365", "length_m": 125.81013859575137, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778869.8442410394, 5744384.844211961], [778992.0070892549, 5744354.770477017]]}, "properties": {"id": "58478", "from": "289885365", "to": "289885356", "length_m": 125.81013859575137, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778869.8442410394, 5744384.844211961], [778842.724322536, 5744390.329523797]]}, "properties": {"id": "58479", "from": "289885365", "to": "289884855", "length_m": 27.66909148449296, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778842.724322536, 5744390.329523797], [778869.8442410394, 5744384.844211961]]}, "properties": {"id": "58480", "from": "289884855", "to": "289885365", "length_m": 27.66909148449296, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778842.724322536, 5744390.329523797], [778737.9476969301, 5744405.073500901]]}, "properties": {"id": "58481-58483-58485", "from": "289884855", "to": "289885364", "length_m": 107.89645343515858, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778737.9476969301, 5744405.073500901], [778842.724322536, 5744390.329523797]]}, "properties": {"id": "58486-58484-58482", "from": "289885364", "to": "289884855", "length_m": 107.89645343515858, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790031.1312165265, 5752800.967994779], [790016.3173687742, 5752803.656745918]]}, "properties": {"id": "58487", "from": "148808265", "to": "270452200", "length_m": 15.055878141216839, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790016.3173687742, 5752803.656745918], [790031.1312165265, 5752800.967994779]]}, "properties": {"id": "58488", "from": "270452200", "to": "148808265", "length_m": 15.055878141216839, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762543.3683031901, 5763274.068572266], [762325.3445786788, 5763120.518369329]]}, "properties": {"id": "58489", "from": "559370771", "to": "723899192", "length_m": 266.6683501181684, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762325.3445786788, 5763120.518369329], [762543.3683031901, 5763274.068572266]]}, "properties": {"id": "58490", "from": "723899192", "to": "559370771", "length_m": 266.6683501181684, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762325.3445786788, 5763120.518369329], [762258.8828248063, 5763073.0620518485]]}, "properties": {"id": "58491", "from": "723899192", "to": "559370743", "length_m": 81.66557881080934, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762258.8828248063, 5763073.0620518485], [762325.3445786788, 5763120.518369329]]}, "properties": {"id": "58492", "from": "559370743", "to": "723899192", "length_m": 81.66557881080934, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762258.8828248063, 5763073.0620518485], [762109.1695651878, 5762970.214139063]]}, "properties": {"id": "58493", "from": "559370743", "to": "1852765657", "length_m": 181.63632104106927, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762109.1695651878, 5762970.214139063], [762258.8828248063, 5763073.0620518485]]}, "properties": {"id": "58494", "from": "1852765657", "to": "559370743", "length_m": 181.63632104106927, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761859.3917034415, 5763329.135860463], [761987.3611894252, 5763145.132161613]]}, "properties": {"id": "58495-58497", "from": "1852765565", "to": "1852765621", "length_m": 224.12842644832344, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761987.3611894252, 5763145.132161613], [761859.3917034415, 5763329.135860463]]}, "properties": {"id": "58498-58496", "from": "1852765621", "to": "1852765565", "length_m": 224.12842644832344, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761987.3611894252, 5763145.132161613], [762054.2446534907, 5763051.657744535]]}, "properties": {"id": "58499-58501", "from": "1852765621", "to": "3755251587", "length_m": 114.93852521847401, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762054.2446534907, 5763051.657744535], [761987.3611894252, 5763145.132161613]]}, "properties": {"id": "58502-58500", "from": "3755251587", "to": "1852765621", "length_m": 114.93852521847401, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762054.2446534907, 5763051.657744535], [762109.1695651878, 5762970.214139063]]}, "properties": {"id": "58503", "from": "3755251587", "to": "1852765657", "length_m": 98.23343021649431, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762109.1695651878, 5762970.214139063], [762054.2446534907, 5763051.657744535]]}, "properties": {"id": "58504", "from": "1852765657", "to": "3755251587", "length_m": 98.23343021649431, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762109.1695651878, 5762970.214139063], [762140.2465410153, 5762925.175166685]]}, "properties": {"id": "58505", "from": "1852765657", "to": "1852765669", "length_m": 54.720082790265074, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762140.2465410153, 5762925.175166685], [762109.1695651878, 5762970.214139063]]}, "properties": {"id": "58506", "from": "1852765669", "to": "1852765657", "length_m": 54.720082790265074, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762140.2465410153, 5762925.175166685], [762181.4308322023, 5762869.453258443]]}, "properties": {"id": "58507", "from": "1852765669", "to": "3755251589", "length_m": 69.28980376615007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762181.4308322023, 5762869.453258443], [762140.2465410153, 5762925.175166685]]}, "properties": {"id": "58508", "from": "3755251589", "to": "1852765669", "length_m": 69.28980376615007, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762181.4308322023, 5762869.453258443], [762238.5771649278, 5762785.525504897]]}, "properties": {"id": "58509", "from": "3755251589", "to": "614531127", "length_m": 101.53605847556135, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762238.5771649278, 5762785.525504897], [762181.4308322023, 5762869.453258443]]}, "properties": {"id": "58510", "from": "614531127", "to": "3755251589", "length_m": 101.53605847556135, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761721.1916169021, 5763526.756329525], [761748.4776480645, 5763268.691612593]]}, "properties": {"id": "58516-58514-58512-106-104-102", "from": "559370741", "to": "559370738", "length_m": 339.4347026291954, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761721.1916169021, 5763526.756329525], [761829.9508872704, 5763599.870588534]]}, "properties": {"id": "58517", "from": "559370741", "to": "559370763", "length_m": 131.05065310498867, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761829.9508872704, 5763599.870588534], [761721.1916169021, 5763526.756329525]]}, "properties": {"id": "58518", "from": "559370763", "to": "559370741", "length_m": 131.05065310498867, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761829.9508872704, 5763599.870588534], [761938.6478741316, 5763675.329951526]]}, "properties": {"id": "58519", "from": "559370763", "to": "1852719099", "length_m": 132.32214607917325, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761938.6478741316, 5763675.329951526], [761829.9508872704, 5763599.870588534]]}, "properties": {"id": "58520", "from": "1852719099", "to": "559370763", "length_m": 132.32214607917325, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761938.6478741316, 5763675.329951526], [762005.4990187599, 5763720.665427523]]}, "properties": {"id": "58521-58523", "from": "1852719099", "to": "559370769", "length_m": 80.79994475555681, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762005.4990187599, 5763720.665427523], [761938.6478741316, 5763675.329951526]]}, "properties": {"id": "58524-58522", "from": "559370769", "to": "1852719099", "length_m": 80.79994475555681, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761786.5508161625, 5763220.950312527], [761773.722409228, 5763224.487367583]]}, "properties": {"id": "58525", "from": "1852765606", "to": "559370730", "length_m": 13.307095169428829, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761773.722409228, 5763224.487367583], [761786.5508161625, 5763220.950312527]]}, "properties": {"id": "58526", "from": "559370730", "to": "1852765606", "length_m": 13.307095169428829, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761699.7456935025, 5763778.509830354], [761770.8450444607, 5763685.046723629]]}, "properties": {"id": "58527-58529-58531", "from": "559370766", "to": "917877750", "length_m": 118.03170573799808, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761770.8450444607, 5763685.046723629], [761699.7456935025, 5763778.509830354]]}, "properties": {"id": "58532-58530-58528", "from": "917877750", "to": "559370766", "length_m": 118.03170573799808, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761770.8450444607, 5763685.046723629], [761829.9508872704, 5763599.870588534]]}, "properties": {"id": "58533", "from": "917877750", "to": "559370763", "length_m": 103.6748506422182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761829.9508872704, 5763599.870588534], [761770.8450444607, 5763685.046723629]]}, "properties": {"id": "58534", "from": "559370763", "to": "917877750", "length_m": 103.6748506422182, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761829.9508872704, 5763599.870588534], [761958.8329550175, 5763417.627176956]]}, "properties": {"id": "58535-58537", "from": "559370763", "to": "52483842", "length_m": 223.23387527715164, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761958.8329550175, 5763417.627176956], [761829.9508872704, 5763599.870588534]]}, "properties": {"id": "58538-58536", "from": "52483842", "to": "559370763", "length_m": 223.23387527715164, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761958.8329550175, 5763417.627176956], [761966.4000842249, 5763407.749164905]]}, "properties": {"id": "58539", "from": "52483842", "to": "3188104957", "length_m": 12.443334229132674, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761966.4000842249, 5763407.749164905], [761958.8329550175, 5763417.627176956]]}, "properties": {"id": "58540", "from": "3188104957", "to": "52483842", "length_m": 12.443334229132674, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761966.4000842249, 5763407.749164905], [762096.2096946585, 5763222.684142188]]}, "properties": {"id": "58541-58543-58545", "from": "3188104957", "to": "1852765586", "length_m": 226.15056435732322, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762096.2096946585, 5763222.684142188], [761966.4000842249, 5763407.749164905]]}, "properties": {"id": "58546-58544-58542", "from": "1852765586", "to": "3188104957", "length_m": 226.15056435732322, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762096.2096946585, 5763222.684142188], [762258.8828248063, 5763073.0620518485]]}, "properties": {"id": "58547-58549-58551", "from": "1852765586", "to": "559370743", "length_m": 221.46394925114788, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762258.8828248063, 5763073.0620518485], [762096.2096946585, 5763222.684142188]]}, "properties": {"id": "58552-58550-58548", "from": "559370743", "to": "1852765586", "length_m": 221.46394925114788, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762258.8828248063, 5763073.0620518485], [762432.9988031681, 5762921.154031859]]}, "properties": {"id": "58553-58555", "from": "559370743", "to": "1852765667", "length_m": 231.06799967374576, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762432.9988031681, 5762921.154031859], [762258.8828248063, 5763073.0620518485]]}, "properties": {"id": "58556-58554", "from": "1852765667", "to": "559370743", "length_m": 231.06799967374576, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762432.9988031681, 5762921.154031859], [762863.9395032143, 5762551.0506693665]]}, "properties": {"id": "58557-58559", "from": "1852765667", "to": "917877756", "length_m": 568.0549145598025, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762863.9395032143, 5762551.0506693665], [762432.9988031681, 5762921.154031859]]}, "properties": {"id": "58560-58558", "from": "917877756", "to": "1852765667", "length_m": 568.0549145598025, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762863.9395032143, 5762551.0506693665], [763438.9455643402, 5762060.521038535]]}, "properties": {"id": "58561-58563", "from": "917877756", "to": "614531219", "length_m": 756.5902208391929, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763438.9455643402, 5762060.521038535], [762863.9395032143, 5762551.0506693665]]}, "properties": {"id": "58564-58562", "from": "614531219", "to": "917877756", "length_m": 756.5902208391929, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761538.2126341189, 5763810.91826606], [761584.5651021114, 5763729.356155853]]}, "properties": {"id": "58565-58567-58569-58571-58573-58575-58577-58579", "from": "559370749", "to": "559370757", "length_m": 108.47036175325064, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761584.5651021114, 5763729.356155853], [761538.2126341189, 5763810.91826606]]}, "properties": {"id": "58580-58578-58576-58574-58572-58570-58568-58566", "from": "559370757", "to": "559370749", "length_m": 108.47036175325064, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761584.5651021114, 5763729.356155853], [761620.7589781941, 5763659.1550479755]]}, "properties": {"id": "58581-58583-58585-58587", "from": "559370757", "to": "3755251566", "length_m": 81.66840923128302, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761620.7589781941, 5763659.1550479755], [761584.5651021114, 5763729.356155853]]}, "properties": {"id": "58588-58586-58584-58582", "from": "3755251566", "to": "559370757", "length_m": 81.66840923128302, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761699.7456935025, 5763778.509830354], [761538.2126341189, 5763810.91826606]]}, "properties": {"id": "58589", "from": "559370766", "to": "559370749", "length_m": 164.75204373126437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761538.2126341189, 5763810.91826606], [761699.7456935025, 5763778.509830354]]}, "properties": {"id": "58590", "from": "559370749", "to": "559370766", "length_m": 164.75204373126437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761538.2126341189, 5763810.91826606], [761516.3068496974, 5763814.536975325]]}, "properties": {"id": "58591", "from": "559370749", "to": "3755251562", "length_m": 22.20266753918662, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761516.3068496974, 5763814.536975325], [761538.2126341189, 5763810.91826606]]}, "properties": {"id": "58592", "from": "3755251562", "to": "559370749", "length_m": 22.20266753918662, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761516.3068496974, 5763814.536975325], [761472.1751388834, 5763824.073375043]]}, "properties": {"id": "58593", "from": "3755251562", "to": "559370748", "length_m": 45.15031357545392, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761472.1751388834, 5763824.073375043], [761516.3068496974, 5763814.536975325]]}, "properties": {"id": "58594", "from": "559370748", "to": "3755251562", "length_m": 45.15031357545392, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761472.1751388834, 5763824.073375043], [761516.3068496974, 5763814.536975325]]}, "properties": {"id": "58595-58597-58599-58601-58603-58605-58607-58609-58611-58613", "from": "559370748", "to": "3755251562", "length_m": 131.12528988315898, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789870.4747431411, 5752036.582087515], [789880.4955823782, 5752080.09442991]]}, "properties": {"id": "5860", "from": "270452291", "to": "516044030", "length_m": 47.56744628393841, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789880.4955823782, 5752080.09442991], [789915.5593211458, 5752269.39229059]]}, "properties": {"id": "5861", "from": "516044030", "to": "270452248", "length_m": 192.51791033184386, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761516.3068496974, 5763814.536975325], [761472.1751388834, 5763824.073375043]]}, "properties": {"id": "58614-58612-58610-58608-58606-58604-58602-58600-58598-58596", "from": "3755251562", "to": "559370748", "length_m": 131.12528988315898, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816969.8193084957, 5794520.1126709], [816061.607727426, 5793944.1018423475]]}, "properties": {"id": "5862", "from": "38734871", "to": "38734872", "length_m": 1075.470472989212, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762310.43718046, 5763648.846948086], [762302.0146706298, 5763658.286351789]]}, "properties": {"id": "58621", "from": "3188103032", "to": "559370768", "length_m": 12.650731780082065, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762302.0146706298, 5763658.286351789], [762310.43718046, 5763648.846948086]]}, "properties": {"id": "58622", "from": "559370768", "to": "3188103032", "length_m": 12.650731780082065, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762302.0146706298, 5763658.286351789], [762070.9411398876, 5763708.647310054]]}, "properties": {"id": "58623-58625-58627-58629", "from": "559370768", "to": "1852765544", "length_m": 238.49904243648535, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[816061.607727426, 5793944.1018423475], [815447.7264229169, 5793554.4892396815]]}, "properties": {"id": "5863-5864", "from": "38734872", "to": "253370970", "length_m": 727.0828978768944, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762070.9411398876, 5763708.647310054], [762302.0146706298, 5763658.286351789]]}, "properties": {"id": "58630-58628-58626-58624", "from": "1852765544", "to": "559370768", "length_m": 238.49904243648535, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762070.9411398876, 5763708.647310054], [762005.4990187599, 5763720.665427523]]}, "properties": {"id": "58631", "from": "1852765544", "to": "559370769", "length_m": 66.53650392211723, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762005.4990187599, 5763720.665427523], [762070.9411398876, 5763708.647310054]]}, "properties": {"id": "58632", "from": "559370769", "to": "1852765544", "length_m": 66.53650392211723, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762005.4990187599, 5763720.665427523], [761770.8450444607, 5763685.046723629]]}, "properties": {"id": "58633-58635-58637-58639-58641-58643", "from": "559370769", "to": "917877750", "length_m": 252.634362407578, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761770.8450444607, 5763685.046723629], [762005.4990187599, 5763720.665427523]]}, "properties": {"id": "58644-58642-58640-58638-58636-58634", "from": "917877750", "to": "559370769", "length_m": 252.634362407578, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[815447.7264229169, 5793554.4892396815], [814982.048589342, 5793260.291316724]]}, "properties": {"id": "5865", "from": "253370970", "to": "38734874", "length_m": 550.8250714969003, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760984.5902740286, 5763073.599050321], [761353.2733196514, 5763329.860901261]]}, "properties": {"id": "58653", "from": "559370713", "to": "559370716", "length_m": 448.995905861858, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761353.2733196514, 5763329.860901261], [760984.5902740286, 5763073.599050321]]}, "properties": {"id": "58654", "from": "559370716", "to": "559370713", "length_m": 448.995905861858, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761353.2733196514, 5763329.860901261], [761453.9050356626, 5763399.242253847]]}, "properties": {"id": "58655", "from": "559370716", "to": "723913587", "length_m": 122.2313965011337, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761453.9050356626, 5763399.242253847], [761353.2733196514, 5763329.860901261]]}, "properties": {"id": "58656", "from": "723913587", "to": "559370716", "length_m": 122.2313965011337, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761453.9050356626, 5763399.242253847], [761490.0798414499, 5763423.684094583]]}, "properties": {"id": "58657", "from": "723913587", "to": "917877774", "length_m": 43.657990576323776, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761490.0798414499, 5763423.684094583], [761453.9050356626, 5763399.242253847]]}, "properties": {"id": "58658", "from": "917877774", "to": "723913587", "length_m": 43.657990576323776, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814982.048589342, 5793260.291316724], [814561.9956055935, 5792984.013699831]]}, "properties": {"id": "5866", "from": "38734874", "to": "38734061", "length_m": 502.7661764009287, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760874.9910373404, 5763146.574596284], [760984.5902740286, 5763073.599050321]]}, "properties": {"id": "58660-58662", "from": "2982813927", "to": "559370713", "length_m": 131.67164840657222, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760984.5902740286, 5763073.599050321], [760874.9910373404, 5763146.574596284]]}, "properties": {"id": "58663-58661", "from": "559370713", "to": "2982813927", "length_m": 131.67164840657222, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760984.5902740286, 5763073.599050321], [760992.9926446332, 5763067.86160987]]}, "properties": {"id": "58664", "from": "559370713", "to": "559370710", "length_m": 10.174382288020643, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760992.9926446332, 5763067.86160987], [760984.5902740286, 5763073.599050321]]}, "properties": {"id": "58665", "from": "559370710", "to": "559370713", "length_m": 10.174382288020643, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760992.9926446332, 5763067.86160987], [761095.0872010285, 5763002.703935624]]}, "properties": {"id": "58666", "from": "559370710", "to": "3755251621", "length_m": 121.11490802021387, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761095.0872010285, 5763002.703935624], [760992.9926446332, 5763067.86160987]]}, "properties": {"id": "58667", "from": "3755251621", "to": "559370710", "length_m": 121.11490802021387, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761095.0872010285, 5763002.703935624], [761366.0508759853, 5762879.727788308]]}, "properties": {"id": "58668-58670-58672-58674-58676-58678-58680-58682-58684", "from": "3755251621", "to": "1852765678", "length_m": 304.7787181362191, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814561.9956055935, 5792984.013699831], [813142.2354326653, 5792089.338475131]]}, "properties": {"id": "5867-5868-5869", "from": "38734061", "to": "351095362", "length_m": 1678.2066886198236, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761366.0508759853, 5762879.727788308], [761095.0872010285, 5763002.703935624]]}, "properties": {"id": "58685-58683-58681-58679-58677-58675-58673-58671-58669", "from": "1852765678", "to": "3755251621", "length_m": 304.7787181362191, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760992.9926446332, 5763067.86160987], [761100.7799931498, 5762791.582340685]]}, "properties": {"id": "58686-58688", "from": "559370710", "to": "5857617038", "length_m": 296.5640939776186, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761100.7799931498, 5762791.582340685], [760992.9926446332, 5763067.86160987]]}, "properties": {"id": "58689-58687", "from": "5857617038", "to": "559370710", "length_m": 296.5640939776186, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763642.1272070201, 5768163.628505444], [765462.3579518895, 5769642.755952326]]}, "properties": {"id": "58695-58697-58699-58701-58703-58705-58707", "from": "209025145", "to": "559370796", "length_m": 2347.293413154474, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798193.625207793, 5783073.863043103], [798824.8216068086, 5783683.356557852]]}, "properties": {"id": "5870-5871-5872-5873-5874-5875-5876-5877-5878-5879-5880-5881-5882", "from": "26756204", "to": "617475563", "length_m": 877.5361051546842, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765462.3579518895, 5769642.755952326], [763642.1272070201, 5768163.628505444]]}, "properties": {"id": "58708-58706-58704-58702-58700-58698-58696", "from": "559370796", "to": "209025145", "length_m": 2347.293413154474, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765462.3579518895, 5769642.755952326], [767373.5794890758, 5772450.922294649]]}, "properties": {"id": "58709-58711", "from": "559370796", "to": "475586094", "length_m": 3397.302509484091, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767373.5794890758, 5772450.922294649], [765462.3579518895, 5769642.755952326]]}, "properties": {"id": "58712-58710", "from": "475586094", "to": "559370796", "length_m": 3397.302509484091, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763411.8948055273, 5773164.061414403], [767373.5794890758, 5772450.922294649]]}, "properties": {"id": "58713", "from": "209025166", "to": "475586094", "length_m": 4025.3587279561457, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767373.5794890758, 5772450.922294649], [763411.8948055273, 5773164.061414403]]}, "properties": {"id": "58714", "from": "475586094", "to": "209025166", "length_m": 4025.3587279561457, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833679.6143073484, 5821737.542945661], [833637.6139228091, 5821641.950695332]]}, "properties": {"id": "58753-58754-58755-58756-58757-58758-58759-58760-58761-58762-58763", "from": "2894998245", "to": "1605942470", "length_m": 109.80074915033069, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833592.330487249, 5821545.5570653025], [833648.1545986957, 5821632.985143606]]}, "properties": {"id": "58764-58765-58766-58767-58768-58769-58770-58771-58772-58773-58774", "from": "2894998228", "to": "2894998239", "length_m": 108.72418943819063, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837726.316832454, 5814685.6685413215], [837703.2335568394, 5814568.902506981]]}, "properties": {"id": "58777-58778-58779-58780", "from": "268386636", "to": "356259711", "length_m": 119.73428340718954, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762227.6160295145, 5761055.2328652935], [764399.458657058, 5760655.058588141]]}, "properties": {"id": "58781", "from": "1856653151", "to": "614507351", "length_m": 2208.402100465921, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764399.458657058, 5760655.058588141], [762227.6160295145, 5761055.2328652935]]}, "properties": {"id": "58782", "from": "614507351", "to": "1856653151", "length_m": 2208.402100465921, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837710.8280126436, 5814730.582464546], [837720.9096005738, 5814763.917142937]]}, "properties": {"id": "58783-58784-58785-58786-58787", "from": "268386309", "to": "33302974", "length_m": 35.59568534391774, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763734.6129295283, 5761586.878256776], [763675.0990138848, 5761261.985359354]]}, "properties": {"id": "58788", "from": "1856653135", "to": "1856653140", "length_m": 330.29880544482586, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763675.0990138848, 5761261.985359354], [763734.6129295283, 5761586.878256776]]}, "properties": {"id": "58789", "from": "1856653140", "to": "1856653135", "length_m": 330.29880544482586, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762224.5349000972, 5761844.219772215], [762848.6067886006, 5761761.913186047]]}, "properties": {"id": "58798-58800-58802-58804-58806-58808-58810-58812", "from": "1856653104", "to": "1856653128", "length_m": 643.334015196878, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762848.6067886006, 5761761.913186047], [762224.5349000972, 5761844.219772215]]}, "properties": {"id": "58813-58811-58809-58807-58805-58803-58801-58799", "from": "1856653128", "to": "1856653104", "length_m": 643.334015196878, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837708.3124361427, 5814612.650263548], [837712.7454510888, 5814688.649342974]]}, "properties": {"id": "58814-58815-58816", "from": "1504829803", "to": "268386307", "length_m": 76.15625457023599, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762586.3097756819, 5762104.582010966], [762224.5349000972, 5761844.219772215]]}, "properties": {"id": "58817-58819-58821-58823", "from": "1856653096", "to": "1856653104", "length_m": 447.4114111676925, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762224.5349000972, 5761844.219772215], [762586.3097756819, 5762104.582010966]]}, "properties": {"id": "58824-58822-58820-58818", "from": "1856653104", "to": "1856653096", "length_m": 447.4114111676925, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762224.5349000972, 5761844.219772215], [762227.6160295145, 5761055.2328652935]]}, "properties": {"id": "58825-58827-58829-58831-58833-58835-58837-58839-58841-58843", "from": "1856653104", "to": "1856653151", "length_m": 825.8669773632099, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762227.6160295145, 5761055.2328652935], [762224.5349000972, 5761844.219772215]]}, "properties": {"id": "58844-58842-58840-58838-58836-58834-58832-58830-58828-58826", "from": "1856653151", "to": "1856653104", "length_m": 825.8669773632099, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762227.6160295145, 5761055.2328652935], [762079.1748488825, 5760233.424376036]]}, "properties": {"id": "58845", "from": "1856653151", "to": "1856653154", "length_m": 835.1071647761365, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762079.1748488825, 5760233.424376036], [762227.6160295145, 5761055.2328652935]]}, "properties": {"id": "58846", "from": "1856653154", "to": "1856653151", "length_m": 835.1071647761365, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837606.959552682, 5815035.362322088], [837524.9110243325, 5815239.602435982]]}, "properties": {"id": "58847-58848-58849-58850", "from": "33302745", "to": "299199699", "length_m": 220.1479226554479, "freespeed_mps": 16.666666666666668, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837494.3363143315, 5815334.649741687], [837536.8144731394, 5815246.742577625]]}, "properties": {"id": "58851-58852-58853", "from": "33302738", "to": "33302739", "length_m": 97.72880661323246, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836354.5449951601, 5804066.030879462], [836063.3384668557, 5804121.897970949]]}, "properties": {"id": "58854-58855-58856-58857-58858-7576", "from": "1712176729", "to": "1712459296", "length_m": 296.6953972916475, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794051.8334845464, 5777073.453647568], [794132.8268144501, 5777497.521066876]]}, "properties": {"id": "58859-58860-58861-58862-53164-53165-53166", "from": "319170210", "to": "5711728465", "length_m": 431.74140542731226, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794108.6647027247, 5777268.491650094], [794033.8859067227, 5776871.240964768]]}, "properties": {"id": "58863-53142-53143-53144", "from": "436914587", "to": "867695762", "length_m": 404.23002771289475, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751802.71495956, 5841124.23179201], [751790.3766407508, 5841125.994596337]]}, "properties": {"id": "58864", "from": "364001417", "to": "209774399", "length_m": 12.463610590149921, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838848.4292209256, 5811711.796197753], [838840.8661496639, 5811733.024331492]]}, "properties": {"id": "58865", "from": "289840409", "to": "289840430", "length_m": 22.535166097406115, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838852.9582295616, 5811730.680266859], [838848.4292209256, 5811711.796197753]]}, "properties": {"id": "58877", "from": "289840426", "to": "289840409", "length_m": 19.419577334602398, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836201.7463166444, 5807413.563356491], [836570.7577968261, 5806871.488283988]]}, "properties": {"id": "58886-58887-58888-58889-58890-58891", "from": "347851660", "to": "320854747", "length_m": 655.8719102908877, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832987.8172071553, 5808174.467297051], [833407.3496404917, 5808131.043641276]]}, "properties": {"id": "58892-58893-58894-58895-58896", "from": "353640765", "to": "5642369716", "length_m": 424.95119140367444, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833257.4274258226, 5807038.695246521], [833259.3569538054, 5807050.381062621]]}, "properties": {"id": "58897", "from": "288440694", "to": "288440664", "length_m": 11.844043901118065, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833259.3569538054, 5807050.381062621], [833404.3770636778, 5808087.5770154195]]}, "properties": {"id": "58898-58899-58900-58901-58902-58903-58904", "from": "288440664", "to": "1863014224", "length_m": 1050.7010040224486, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788462.6709074813, 5754089.908465936], [788318.9064852148, 5753889.687286]]}, "properties": {"id": "58905-58907-58909-58911-58913-58915", "from": "515916104", "to": "1658427637", "length_m": 287.87958106800966, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830782.8289244927, 5802065.042786211], [831585.7131935272, 5802129.224933902]]}, "properties": {"id": "5891-5892", "from": "293318333", "to": "293324461", "length_m": 805.4511347731202, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788318.9064852148, 5753889.687286], [788462.6709074813, 5754089.908465936]]}, "properties": {"id": "58916-58914-58912-58910-58908-58906", "from": "1658427637", "to": "515916104", "length_m": 287.87958106800966, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787608.462817047, 5753892.152554889], [788118.8409856232, 5753873.981297638]]}, "properties": {"id": "58917-58919-58921-58923-58925-58927-58929-58931-58933-58935-58937", "from": "515913845", "to": "515915996", "length_m": 522.1840509373039, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831585.7131935272, 5802129.224933902], [832232.4242180574, 5802572.618713571]]}, "properties": {"id": "5893-5894-5895-5896-5897-5898-5899-5900-5901-5902-5903-5904-5905-5906-5907-5908-5909-5910-5911-5912-5913-5914-5915-5916", "from": "293324461", "to": "2300311981", "length_m": 829.3018241339037, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788118.8409856232, 5753873.981297638], [787608.462817047, 5753892.152554889]]}, "properties": {"id": "58938-58936-58934-58932-58930-58928-58926-58924-58922-58920-58918", "from": "515915996", "to": "515913845", "length_m": 522.1840509373039, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788664.668480447, 5754076.929215426], [788462.6709074813, 5754089.908465936]]}, "properties": {"id": "58939-58941-58943-58945-58947", "from": "515916009", "to": "515916104", "length_m": 206.1968390496597, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788462.6709074813, 5754089.908465936], [788664.668480447, 5754076.929215426]]}, "properties": {"id": "58948-58946-58944-58942-58940", "from": "515916104", "to": "515916009", "length_m": 206.1968390496597, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788462.6709074813, 5754089.908465936], [788200.6160130616, 5754394.84219371]]}, "properties": {"id": "58949-58951-58953-58955-58957-58959-58961", "from": "515916104", "to": "1658427356", "length_m": 498.87003230711997, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788200.6160130616, 5754394.84219371], [788462.6709074813, 5754089.908465936]]}, "properties": {"id": "58962-58960-58958-58956-58954-58952-58950", "from": "1658427356", "to": "515916104", "length_m": 498.87003230711997, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787839.0883838665, 5754185.625228328], [787833.9355221377, 5754270.965912658]]}, "properties": {"id": "58963-58965-58967-58969", "from": "515915266", "to": "515915551", "length_m": 86.1459513322599, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787833.9355221377, 5754270.965912658], [787839.0883838665, 5754185.625228328]]}, "properties": {"id": "58970-58968-58966-58964", "from": "515915551", "to": "515915266", "length_m": 86.1459513322599, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787833.9355221377, 5754270.965912658], [787650.7085132687, 5754289.834556565]]}, "properties": {"id": "58971-58973-58975-58977-58979", "from": "515915551", "to": "515915655", "length_m": 186.45553119390587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787650.7085132687, 5754289.834556565], [787833.9355221377, 5754270.965912658]]}, "properties": {"id": "58980-58978-58976-58974-58972", "from": "515915655", "to": "515915551", "length_m": 186.45553119390587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789838.5206001672, 5752837.521158892], [789874.089587366, 5752987.755826856]]}, "properties": {"id": "58981-58983-58985-58987", "from": "516045793", "to": "846538889", "length_m": 155.17385675814683, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789874.089587366, 5752987.755826856], [789838.5206001672, 5752837.521158892]]}, "properties": {"id": "58988-58986-58984-58982", "from": "846538889", "to": "516045793", "length_m": 155.17385675814683, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787833.9355221377, 5754270.965912658], [787869.4942576678, 5754286.124562408]]}, "properties": {"id": "58989-58991", "from": "515915551", "to": "515915768", "length_m": 38.773856973643674, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787869.4942576678, 5754286.124562408], [787833.9355221377, 5754270.965912658]]}, "properties": {"id": "58992-58990", "from": "515915768", "to": "515915551", "length_m": 38.773856973643674, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829910.8498906041, 5801960.167626426], [829233.245843824, 5801773.481681827]]}, "properties": {"id": "58993-28146-28108", "from": "253465604", "to": "125301103", "length_m": 702.8646918620615, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787451.8843982657, 5754333.260996411], [787214.1523624335, 5754369.053365168]]}, "properties": {"id": "58994-58996-58998-59000-59002-59004", "from": "515915145", "to": "515915205", "length_m": 243.28252341715134, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787214.1523624335, 5754369.053365168], [787451.8843982657, 5754333.260996411]]}, "properties": {"id": "59005-59003-59001-58999-58997-58995", "from": "515915205", "to": "515915145", "length_m": 243.28252341715134, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787748.5162424063, 5754135.695606986], [787799.6390891506, 5754041.947375148]]}, "properties": {"id": "59007-59009-59011-59013", "from": "515915243", "to": "515915546", "length_m": 113.88110736923332, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787799.6390891506, 5754041.947375148], [787748.5162424063, 5754135.695606986]]}, "properties": {"id": "59014-59012-59010-59008", "from": "515915546", "to": "515915243", "length_m": 113.88110736923332, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787623.4297944228, 5754092.963432267], [787748.5162424063, 5754135.695606986]]}, "properties": {"id": "59015-59017-59019-59021-59023", "from": "515913892", "to": "515915243", "length_m": 134.42635785348097, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787748.5162424063, 5754135.695606986], [787623.4297944228, 5754092.963432267]]}, "properties": {"id": "59024-59022-59020-59018-59016", "from": "515915243", "to": "515913892", "length_m": 134.42635785348097, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787748.5162424063, 5754135.695606986], [787839.0883838665, 5754185.625228328]]}, "properties": {"id": "59025", "from": "515915243", "to": "515915266", "length_m": 103.42282059951417, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787839.0883838665, 5754185.625228328], [787748.5162424063, 5754135.695606986]]}, "properties": {"id": "59026", "from": "515915266", "to": "515915243", "length_m": 103.42282059951417, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787839.0883838665, 5754185.625228328], [787957.7298641602, 5753994.130021814]]}, "properties": {"id": "59027-59029-59031-59033-59035-59037-59039-59041-59043-59045-59047-59049-59051", "from": "515915266", "to": "515915426", "length_m": 456.1434805952879, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787957.7298641602, 5753994.130021814], [787839.0883838665, 5754185.625228328]]}, "properties": {"id": "59052-59050-59048-59046-59044-59042-59040-59038-59036-59034-59032-59030-59028", "from": "515915426", "to": "515915266", "length_m": 456.1434805952879, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787461.1613197486, 5754110.358793466], [787222.4387655077, 5754157.745986188]]}, "properties": {"id": "59054-59056-59058-59060", "from": "515913917", "to": "515914432", "length_m": 244.9486449667708, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787222.4387655077, 5754157.745986188], [787461.1613197486, 5754110.358793466]]}, "properties": {"id": "59061-59059-59057-59055", "from": "515914432", "to": "515913917", "length_m": 244.9486449667708, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787222.4387655077, 5754157.745986188], [787097.6622120494, 5754166.9533092845]]}, "properties": {"id": "59062-59064", "from": "515914432", "to": "515914467", "length_m": 126.09133124662341, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787097.6622120494, 5754166.9533092845], [787222.4387655077, 5754157.745986188]]}, "properties": {"id": "59065-59063", "from": "515914467", "to": "515914432", "length_m": 126.09133124662341, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749217.4777098726, 5746168.454661843], [749855.5327706411, 5746576.712941924]]}, "properties": {"id": "59085-59083-59081-59079-59077-59075-59073-59071-59067-55456-55454-55452-55450-55448-55446-55444-55442", "from": "811081794", "to": "917846344", "length_m": 854.6966832981824, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[749217.4777098726, 5746168.454661843], [748630.7983409957, 5746227.825774138]]}, "properties": {"id": "59086-59088", "from": "811081794", "to": "1737114793", "length_m": 517.7989823913363, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748630.7983409957, 5746227.825774138], [749217.4777098726, 5746168.454661843]]}, "properties": {"id": "59089-59087", "from": "1737114793", "to": "811081794", "length_m": 517.7989823913363, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[748630.7983409957, 5746227.825774138], [747496.0886335496, 5746435.138690569]]}, "properties": {"id": "59090", "from": "1737114793", "to": "1184254434", "length_m": 1153.492419786367, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747496.0886335496, 5746435.138690569], [748630.7983409957, 5746227.825774138]]}, "properties": {"id": "59091", "from": "1184254434", "to": "1737114793", "length_m": 1153.492419786367, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[747496.0886335496, 5746435.138690569], [746747.8278760244, 5746567.427434722]]}, "properties": {"id": "59092", "from": "1184254434", "to": "177797337", "length_m": 759.8647720973826, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746747.8278760244, 5746567.427434722], [747496.0886335496, 5746435.138690569]]}, "properties": {"id": "59093", "from": "177797337", "to": "1184254434", "length_m": 759.8647720973826, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746747.8278760244, 5746567.427434722], [746305.3703349396, 5746995.581852949]]}, "properties": {"id": "59094-59096-59098-59100-59102-59104-59106-59108-59110-59112-59114-59116-59118-59120-59122-59124-59126-59128-59130-59132", "from": "177797337", "to": "177797342", "length_m": 714.2794204265658, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770138.0243630204, 5753580.410487404], [769560.1680228146, 5753278.709133976]]}, "properties": {"id": "591-589-587-585-583-581", "from": "534677999", "to": "534678008", "length_m": 592.959947719441, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746305.3703349396, 5746995.581852949], [746747.8278760244, 5746567.427434722]]}, "properties": {"id": "59133-59131-59129-59127-59125-59123-59121-59119-59117-59115-59113-59111-59109-59107-59105-59103-59101-59099-59097-59095", "from": "177797342", "to": "177797337", "length_m": 714.2794204265658, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746305.3703349396, 5746995.581852949], [746794.9923759752, 5749822.155405442]]}, "properties": {"id": "59134-59136-59138-59140-59142-59144", "from": "177797342", "to": "1078364902", "length_m": 2870.748191431739, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746794.9923759752, 5749822.155405442], [746305.3703349396, 5746995.581852949]]}, "properties": {"id": "59145-59143-59141-59139-59137-59135", "from": "1078364902", "to": "177797342", "length_m": 2870.748191431739, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746794.9923759752, 5749822.155405442], [746416.3582426526, 5750575.293862972]]}, "properties": {"id": "59146-59148-59150-59152-59154-59156-59158-59160", "from": "1078364902", "to": "2382993578", "length_m": 845.3759353747511, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746416.3582426526, 5750575.293862972], [746794.9923759752, 5749822.155405442]]}, "properties": {"id": "59161-59159-59157-59155-59153-59151-59149-59147", "from": "2382993578", "to": "1078364902", "length_m": 845.3759353747511, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746416.3582426526, 5750575.293862972], [745806.6864639882, 5751653.192074377]]}, "properties": {"id": "59162", "from": "2382993578", "to": "917801325", "length_m": 1238.3716054609572, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745806.6864639882, 5751653.192074377], [746416.3582426526, 5750575.293862972]]}, "properties": {"id": "59163", "from": "917801325", "to": "2382993578", "length_m": 1238.3716054609572, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745806.6864639882, 5751653.192074377], [745199.0772021287, 5752308.449720214]]}, "properties": {"id": "59164-59166-59168-59170-59172-59174-59176", "from": "917801325", "to": "3710493445", "length_m": 543.8308261819568, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832232.4242180574, 5802572.618713571], [832358.4137586583, 5803077.138244425]]}, "properties": {"id": "5917-5918-21470-21449-22337-53180-53181-53182", "from": "2300311981", "to": "293318484", "length_m": 520.3782799425918, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745199.0772021287, 5752308.449720214], [745806.6864639882, 5751653.192074377]]}, "properties": {"id": "59177-59175-59173-59171-59169-59167-59165", "from": "3710493445", "to": "917801325", "length_m": 543.8308261819568, "freespeed_mps": 27.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745199.0772021287, 5752308.449720214], [738199.9323100393, 5756095.983260862]]}, "properties": {"id": "59191-59189-59187-59185-59183-59181-59179", "from": "3710493445", "to": "5527572140", "length_m": 4000.000000000001, "freespeed_mps": 24.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738199.9323100393, 5756095.983260862], [745199.0772021287, 5752308.449720214]]}, "properties": {"id": "59191-999999-1", "from": "5527572140", "to": "3710493445", "length_m": 4000.000000000001, "freespeed_mps": 24.0, "capacity_vph": 2200.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787570.3097120367, 5753684.210160846], [787608.462817047, 5753892.152554889]]}, "properties": {"id": "59194-59196-59198-59200-59202-59204", "from": "515913792", "to": "515913845", "length_m": 213.2218488355951, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770138.0243630204, 5753580.410487404], [770723.9996303837, 5753529.040243473]]}, "properties": {"id": "592-594-596", "from": "534677999", "to": "534677996", "length_m": 592.9066251031952, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787608.462817047, 5753892.152554889], [787570.3097120367, 5753684.210160846]]}, "properties": {"id": "59205-59203-59201-59199-59197-59195", "from": "515913845", "to": "515913792", "length_m": 213.2218488355951, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787608.462817047, 5753892.152554889], [787623.4297944228, 5754092.963432267]]}, "properties": {"id": "59206-59208-59210-59212", "from": "515913845", "to": "515913892", "length_m": 205.11702901668122, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787623.4297944228, 5754092.963432267], [787608.462817047, 5753892.152554889]]}, "properties": {"id": "59213-59211-59209-59207", "from": "515913892", "to": "515913845", "length_m": 205.11702901668122, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787623.4297944228, 5754092.963432267], [787461.1613197486, 5754110.358793466]]}, "properties": {"id": "59214-59216-59218-59220", "from": "515913892", "to": "515913917", "length_m": 165.94068003012438, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787461.1613197486, 5754110.358793466], [787623.4297944228, 5754092.963432267]]}, "properties": {"id": "59221-59219-59217-59215", "from": "515913917", "to": "515913892", "length_m": 165.94068003012438, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787461.1613197486, 5754110.358793466], [787451.8843982657, 5754333.260996411]]}, "properties": {"id": "59222-59224-59226", "from": "515913917", "to": "515915145", "length_m": 223.7679871517933, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787451.8843982657, 5754333.260996411], [787461.1613197486, 5754110.358793466]]}, "properties": {"id": "59227-59225-59223", "from": "515915145", "to": "515913917", "length_m": 223.7679871517933, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787451.8843982657, 5754333.260996411], [787498.9343798915, 5754524.048895891]]}, "properties": {"id": "59228-59230-59232-59234-59236", "from": "515915145", "to": "515915032", "length_m": 198.27407248778567, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787498.9343798915, 5754524.048895891], [787451.8843982657, 5754333.260996411]]}, "properties": {"id": "59237-59235-59233-59231-59229", "from": "515915032", "to": "515915145", "length_m": 198.27407248778567, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752004.7968058551, 5746236.3209108375], [752037.7579072345, 5746167.028533424]]}, "properties": {"id": "59240-59242-59244-59246-59248-59250", "from": "3710136206", "to": "3710136212", "length_m": 81.46397520443045, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752037.7579072345, 5746167.028533424], [752004.7968058551, 5746236.3209108375]]}, "properties": {"id": "59251-59249-59247-59245-59243-59241", "from": "3710136212", "to": "3710136206", "length_m": 81.46397520443045, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[828751.6612713651, 5801667.767218778], [829312.5439055143, 5801821.9766701395]]}, "properties": {"id": "59252-59253", "from": "1824095100", "to": "2283053182", "length_m": 581.6957566380094, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787186.8164361939, 5753956.425553352], [787327.7572141147, 5753918.288935289]]}, "properties": {"id": "59256-59258-59260", "from": "515914565", "to": "515914623", "length_m": 146.83200426982935, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787327.7572141147, 5753918.288935289], [787186.8164361939, 5753956.425553352]]}, "properties": {"id": "59261-59259-59257", "from": "515914623", "to": "515914565", "length_m": 146.83200426982935, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834537.2938620821, 5817597.453915134], [835062.3935128134, 5817544.730188811]]}, "properties": {"id": "59264-59254-59255-53433-53434-53425", "from": "601349794", "to": "309809640", "length_m": 527.7773171394454, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788773.641409717, 5752568.7620949], [788192.6836321515, 5752624.75858685]]}, "properties": {"id": "59271", "from": "845902138", "to": "515913768", "length_m": 583.6501903914664, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788192.6836321515, 5752624.75858685], [788773.641409717, 5752568.7620949]]}, "properties": {"id": "59272", "from": "515913768", "to": "845902138", "length_m": 583.6501903914664, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773550.3132142747, 5837948.551903311], [774390.88634825, 5837517.071446553]]}, "properties": {"id": "59276-59277-59278-59279-15105-15106-15107-15108-15109-15110-15111-15112-15113-15114-15115-15116-15117-15118-15119", "from": "474050246", "to": "35098326", "length_m": 960.5226680807535, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825448.917264903, 5798562.9962338535], [826053.5623519429, 5799160.50555791]]}, "properties": {"id": "59282-59283-59284-59285-59286-59287-59273-59274-59275-40555-40556", "from": "204503685", "to": "204503695", "length_m": 861.7564364039558, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787222.4387655077, 5754157.745986188], [787186.8164361939, 5753956.425553352]]}, "properties": {"id": "59288-59290-59292-59294", "from": "515914432", "to": "515914565", "length_m": 205.65148336392411, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787186.8164361939, 5753956.425553352], [787222.4387655077, 5754157.745986188]]}, "properties": {"id": "59295-59293-59291-59289", "from": "515914565", "to": "515914432", "length_m": 205.65148336392411, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787186.8164361939, 5753956.425553352], [787118.2311697109, 5753966.345609094]]}, "properties": {"id": "59296-59298", "from": "515914565", "to": "515914577", "length_m": 69.90673695376354, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787118.2311697109, 5753966.345609094], [787186.8164361939, 5753956.425553352]]}, "properties": {"id": "59299-59297", "from": "515914577", "to": "515914565", "length_m": 69.90673695376354, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[825462.7083941461, 5798544.914637057], [825042.7179577721, 5798204.811473183]]}, "properties": {"id": "59310", "from": "253363796", "to": "267093718", "length_m": 540.4277244858098, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830428.1771800412, 5802017.633454764], [829910.8498906041, 5801960.167626426]]}, "properties": {"id": "5941-5942-5943-5944", "from": "293346218", "to": "253465604", "length_m": 521.3219551908087, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770723.9996303837, 5753529.040243473], [770138.0243630204, 5753580.410487404]]}, "properties": {"id": "597-595-593", "from": "534677996", "to": "534677999", "length_m": 592.9066251031952, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830224.835088626, 5814272.294931652], [830252.9030833812, 5814254.6243778]]}, "properties": {"id": "5977-5978", "from": "981838892", "to": "981838907", "length_m": 33.167744614560775, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830252.9030833812, 5814254.6243778], [830610.4610357416, 5814030.005945943]]}, "properties": {"id": "5979-5980-5981-5982", "from": "981838907", "to": "981838906", "length_m": 422.2703491143246, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770723.9996303837, 5753529.040243473], [771761.7163944042, 5753230.123337849]]}, "properties": {"id": "598-600-602-604-606-608-610", "from": "534677996", "to": "534678091", "length_m": 1154.8236284476297, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830213.3914907192, 5814258.566682481], [830219.3415682648, 5814275.9620828405]]}, "properties": {"id": "5983", "from": "981835734", "to": "981835755", "length_m": 18.38486810041111, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830219.3415682648, 5814275.9620828405], [830224.835088626, 5814272.294931652]]}, "properties": {"id": "5984", "from": "981835755", "to": "981838892", "length_m": 6.605055920140723, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[812229.5116943968, 5791485.771053156], [812809.5981960003, 5791896.09784885]]}, "properties": {"id": "5985-5991-30759", "from": "174839398", "to": "616951642", "length_m": 710.5618204041562, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[813142.2354326653, 5792089.338475131], [812283.3858857555, 5791493.350102044]]}, "properties": {"id": "5987-5988-5989-5990-5986-30750-30751-30752", "from": "351095362", "to": "351094976", "length_m": 1045.6479232416355, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789972.2114191023, 5766831.463405406], [790025.031285091, 5766748.239649472]]}, "properties": {"id": "5992-5993-5994-5995-5996-5997-5998-5999", "from": "428731182", "to": "264173097", "length_m": 104.93008289810538, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837496.0562663705, 5811958.724975141], [837406.5707092846, 5811971.013859785]]}, "properties": {"id": "6000-6001-6002-6003", "from": "3088534211", "to": "3088534213", "length_m": 90.51482556799371, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786886.4772480339, 5762227.491616901], [787283.0861990207, 5763889.547713383]]}, "properties": {"id": "60000", "from": "5640190001", "to": "148800269", "length_m": 1393.5918494085206, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787283.0861990207, 5763889.547713383], [787771.3277508038, 5764780.531364758]]}, "properties": {"id": "60001", "from": "148800269", "to": "1412037743", "length_m": 1393.59184940852, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787771.3277508038, 5764780.531364758], [787283.0861990207, 5763889.547713383]]}, "properties": {"id": "60002", "from": "1412037743", "to": "148800269", "length_m": 1393.59184940852, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787283.0861990207, 5763889.547713383], [786942.5182324187, 5762225.509085664]]}, "properties": {"id": "60003", "from": "148800269", "to": "669261482", "length_m": 1393.59184940852, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763214.20548805, 5735345.165451918], [762458.9643433231, 5734665.084002238]]}, "properties": {"id": "60005", "from": "37023225", "to": "37022739", "length_m": 538.1678628354011, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762458.9643433231, 5734665.084002238], [763214.20548805, 5735345.165451918]]}, "properties": {"id": "60006", "from": "37022739", "to": "37023225", "length_m": 538.1678628354011, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776522.6815985956, 5745037.454569722], [777026.7941332642, 5744975.541381284]]}, "properties": {"id": "60015", "from": "289545457", "to": "2558470503", "length_m": 514.0, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837406.5707092846, 5811971.013859785], [837394.2128688687, 5811972.69944623]]}, "properties": {"id": "6006", "from": "3088534213", "to": "3088534214", "length_m": 12.47226604518057, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837407.1186620704, 5811975.550458761], [837233.3152208999, 5812004.33900639]]}, "properties": {"id": "6007-6008-6009", "from": "268176964", "to": "33531761", "length_m": 176.17308688687328, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734597.2789932747, 5727382.349852208], [736917.2135775287, 5733410.913138325]]}, "properties": {"id": "60080", "from": "60080-1", "to": "60080", "length_m": 5000.0, "freespeed_mps": 16.0, "capacity_vph": 700.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736917.2135775287, 5733410.913138325], [734597.2789932747, 5727382.349852208]]}, "properties": {"id": "60081", "from": "60080", "to": "60080-1", "length_m": 5000.0, "freespeed_mps": 16.0, "capacity_vph": 700.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737274.0612873232, 5721699.789830206], [734597.2789932747, 5727382.349852208]]}, "properties": {"id": "60082", "from": "60080-2", "to": "60080-1", "length_m": 30000.0, "freespeed_mps": 16.0, "capacity_vph": 700.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[734597.2789932747, 5727382.349852208], [737274.0612873232, 5721699.789830206]]}, "properties": {"id": "60083", "from": "60080-1", "to": "60080-2", "length_m": 30000.0, "freespeed_mps": 16.0, "capacity_vph": 700.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735443.9209468057, 5719343.537588653], [737274.0612873232, 5721699.789830206]]}, "properties": {"id": "60084", "from": "60080-3", "to": "60080-2", "length_m": 3000.000000000001, "freespeed_mps": 16.0, "capacity_vph": 700.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[737274.0612873232, 5721699.789830206], [735443.9209468057, 5719343.537588653]]}, "properties": {"id": "60085", "from": "60080-2", "to": "60080-3", "length_m": 3000.000000000001, "freespeed_mps": 16.0, "capacity_vph": 700.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736835.2638836813, 5714897.2185761], [735443.9209468057, 5719343.537588653]]}, "properties": {"id": "60087", "from": "60085-4", "to": "60080-3", "length_m": 3999.9999999999995, "freespeed_mps": 16.0, "capacity_vph": 700.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735443.9209468057, 5719343.537588653], [736835.2638836813, 5714897.2185761]]}, "properties": {"id": "60088", "from": "60080-3", "to": "60085-4", "length_m": 3999.9999999999995, "freespeed_mps": 16.0, "capacity_vph": 700.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736835.2638836813, 5714897.2185761], [735902.2289527192, 5710319.005280154]]}, "properties": {"id": "60089", "from": "60085-4", "to": "2881089001", "length_m": 4000.0000000000005, "freespeed_mps": 16.0, "capacity_vph": 700.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735902.2289527192, 5710319.005280154], [736835.2638836813, 5714897.2185761]]}, "properties": {"id": "60090", "from": "2881089001", "to": "60085-4", "length_m": 4000.0000000000005, "freespeed_mps": 16.0, "capacity_vph": 700.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837394.2128688687, 5811972.69944623], [837229.9068959779, 5811984.496692212]]}, "properties": {"id": "6012-6013-6014-6015-6016-6017-6018-6019-6020-6021-6022", "from": "3088534214", "to": "268175492", "length_m": 164.9567694329642, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837229.9068959779, 5811984.496692212], [837221.4107922392, 5811985.2230758555]]}, "properties": {"id": "6023", "from": "268175492", "to": "268175485", "length_m": 8.527098652534022, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790597.8876200146, 5751664.068704812], [790568.2139982809, 5751671.695489727]]}, "properties": {"id": "6024-6025", "from": "510171319", "to": "845902161", "length_m": 31.24466692455887, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790069.299090116, 5751646.1088031335], [790323.1555783376, 5751598.9845783785]]}, "properties": {"id": "6026", "from": "510171377", "to": "510171391", "length_m": 258.1933555934204, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790323.1555783376, 5751598.9845783785], [790069.299090116, 5751646.1088031335]]}, "properties": {"id": "6027", "from": "510171391", "to": "510171377", "length_m": 258.1933555934204, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790110.9074878296, 5751528.076206649], [790069.299090116, 5751646.1088031335]]}, "properties": {"id": "6028", "from": "510176154", "to": "510171377", "length_m": 125.15171841594201, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790069.299090116, 5751646.1088031335], [790110.9074878296, 5751528.076206649]]}, "properties": {"id": "6029", "from": "510171377", "to": "510176154", "length_m": 125.15171841594201, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790069.299090116, 5751646.1088031335], [790025.3448122871, 5751768.326664755]]}, "properties": {"id": "6030", "from": "510171377", "to": "510559436", "length_m": 129.88142391463782, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790025.3448122871, 5751768.326664755], [790069.299090116, 5751646.1088031335]]}, "properties": {"id": "6031", "from": "510559436", "to": "510171377", "length_m": 129.88142391463782, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790025.3448122871, 5751768.326664755], [790026.9623022848, 5751778.493859456]]}, "properties": {"id": "6032", "from": "510559436", "to": "510171295", "length_m": 10.295053273165692, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790026.9623022848, 5751778.493859456], [790025.3448122871, 5751768.326664755]]}, "properties": {"id": "6033", "from": "510171295", "to": "510559436", "length_m": 10.295053273165692, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790000.3555770395, 5752009.243257652], [789981.1621693622, 5751901.766890659]]}, "properties": {"id": "6035", "from": "510171539", "to": "510171574", "length_m": 109.17672073443846, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789981.1621693622, 5751901.766890659], [790000.3555770395, 5752009.243257652]]}, "properties": {"id": "6036", "from": "510171574", "to": "510171539", "length_m": 109.17672073443846, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789981.1621693622, 5751901.766890659], [789961.0216808897, 5751791.801558552]]}, "properties": {"id": "6037", "from": "510171574", "to": "510171551", "length_m": 111.79451473593755, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789961.0216808897, 5751791.801558552], [789981.1621693622, 5751901.766890659]]}, "properties": {"id": "6038", "from": "510171551", "to": "510171574", "length_m": 111.79451473593755, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790303.8966285886, 5751484.208670777], [790303.9495410782, 5751490.542067921]]}, "properties": {"id": "6039", "from": "510171490", "to": "510558215", "length_m": 6.333618171658771, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790303.9495410782, 5751490.542067921], [790303.8966285886, 5751484.208670777]]}, "properties": {"id": "6040", "from": "510558215", "to": "510171490", "length_m": 6.333618171658771, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790303.9495410782, 5751490.542067921], [790323.1555783376, 5751598.9845783785]]}, "properties": {"id": "6041", "from": "510558215", "to": "510171391", "length_m": 110.13014995805513, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790323.1555783376, 5751598.9845783785], [790303.9495410782, 5751490.542067921]]}, "properties": {"id": "6042", "from": "510171391", "to": "510558215", "length_m": 110.13014995805513, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790323.1555783376, 5751598.9845783785], [790340.08845961, 5751683.91268234]]}, "properties": {"id": "6043", "from": "510171391", "to": "845902354", "length_m": 86.59968419035162, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790340.08845961, 5751683.91268234], [790323.1555783376, 5751598.9845783785]]}, "properties": {"id": "6044", "from": "845902354", "to": "510171391", "length_m": 86.59968419035162, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752049.456468561, 5746228.178773224], [752037.7579072345, 5746167.028533424]]}, "properties": {"id": "6054", "from": "52485285", "to": "3710136212", "length_m": 62.25920143011151, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752037.7579072345, 5746167.028533424], [752049.456468561, 5746228.178773224]]}, "properties": {"id": "6055", "from": "3710136212", "to": "52485285", "length_m": 62.25920143011151, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752037.7579072345, 5746167.028533424], [752008.3541054343, 5745990.198967284]]}, "properties": {"id": "6056-6058-6060", "from": "3710136212", "to": "75292357", "length_m": 169.89518564060623, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752008.3541054343, 5745990.198967284], [752037.7579072345, 5746167.028533424]]}, "properties": {"id": "6061-6059-6057", "from": "75292357", "to": "3710136212", "length_m": 169.89518564060623, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752008.3541054343, 5745990.198967284], [752028.6567788974, 5745854.542312649]]}, "properties": {"id": "6062-6064-6066-6068", "from": "75292357", "to": "811082460", "length_m": 137.3920659758993, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752028.6567788974, 5745854.542312649], [752008.3541054343, 5745990.198967284]]}, "properties": {"id": "6069-6067-6065-6063", "from": "811082460", "to": "75292357", "length_m": 137.3920659758993, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752028.6567788974, 5745854.542312649], [752365.8662604484, 5745165.275480301]]}, "properties": {"id": "6070-6072-6074-6076-6078-6080-6082-6084-6086-6088-6090-6092-6094", "from": "811082460", "to": "75292425", "length_m": 668.6743818232715, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752365.8662604484, 5745165.275480301], [752028.6567788974, 5745854.542312649]]}, "properties": {"id": "6095-6093-6091-6089-6087-6085-6083-6081-6079-6077-6075-6073-6071", "from": "75292425", "to": "811082460", "length_m": 668.6743818232715, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752365.8662604484, 5745165.275480301], [752587.7104742576, 5744544.859208231]]}, "properties": {"id": "6096-6098-6100-6102-6104-6106-6108-6110-6112-6114-6116-6118-6120-6122-6124-6126-6128", "from": "75292425", "to": "811081732", "length_m": 872.0032437592408, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771761.7163944042, 5753230.123337849], [770723.9996303837, 5753529.040243473]]}, "properties": {"id": "611-609-607-605-603-601-599", "from": "534678091", "to": "534677996", "length_m": 1154.8236284476297, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771761.7163944042, 5753230.123337849], [772210.28519406, 5752867.142703193]]}, "properties": {"id": "612-614-616", "from": "534678091", "to": "534678053", "length_m": 590.5131864163209, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752587.7104742576, 5744544.859208231], [752365.8662604484, 5745165.275480301]]}, "properties": {"id": "6129-6127-6125-6123-6121-6119-6117-6115-6113-6111-6109-6107-6105-6103-6101-6099-6097", "from": "811081732", "to": "75292425", "length_m": 872.0032437592408, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752587.7104742576, 5744544.859208231], [752750.3483682368, 5743803.199929253]]}, "properties": {"id": "6130-6132-6134-6136-6138-6140-6142-6144", "from": "811081732", "to": "75292552", "length_m": 769.5397264374778, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752750.3483682368, 5743803.199929253], [752587.7104742576, 5744544.859208231]]}, "properties": {"id": "6145-6143-6141-6139-6137-6135-6133-6131", "from": "75292552", "to": "811081732", "length_m": 769.5397264374778, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752750.3483682368, 5743803.199929253], [752616.3310900042, 5743076.025260545]]}, "properties": {"id": "6146", "from": "75292552", "to": "5838931153", "length_m": 739.4211447863885, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752616.3310900042, 5743076.025260545], [752750.3483682368, 5743803.199929253]]}, "properties": {"id": "6147", "from": "5838931153", "to": "75292552", "length_m": 739.4211447863885, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752616.3310900042, 5743076.025260545], [752497.3186287675, 5742819.140027054]]}, "properties": {"id": "6148-6150-6152-6154", "from": "5838931153", "to": "917846355", "length_m": 286.40104317559815, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752497.3186287675, 5742819.140027054], [752616.3310900042, 5743076.025260545]]}, "properties": {"id": "6155-6153-6151-6149", "from": "917846355", "to": "5838931153", "length_m": 286.40104317559815, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752497.3186287675, 5742819.140027054], [752304.9069612084, 5742237.090536705]]}, "properties": {"id": "6156-6158-6160-6162-6164-6166-6168-6170-6172", "from": "917846355", "to": "75292652", "length_m": 645.3139054127328, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772210.28519406, 5752867.142703193], [771761.7163944042, 5753230.123337849]]}, "properties": {"id": "617-615-613", "from": "534678053", "to": "534678091", "length_m": 590.5131864163209, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752304.9069612084, 5742237.090536705], [752497.3186287675, 5742819.140027054]]}, "properties": {"id": "6173-6171-6169-6167-6165-6163-6161-6159-6157", "from": "75292652", "to": "917846355", "length_m": 645.3139054127328, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752304.9069612084, 5742237.090536705], [752309.9142495141, 5742215.774035021]]}, "properties": {"id": "6174-6176-6178-6180", "from": "75292652", "to": "75292679", "length_m": 168.0092936110343, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772210.28519406, 5752867.142703193], [772703.464563532, 5752738.273905809]]}, "properties": {"id": "618-620-622", "from": "534678053", "to": "4416304449", "length_m": 512.4580355497903, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752309.9142495141, 5742215.774035021], [752304.9069612084, 5742237.090536705]]}, "properties": {"id": "6181-6179-6177-6175", "from": "75292679", "to": "75292652", "length_m": 168.0092936110343, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752309.9142495141, 5742215.774035021], [753057.872289495, 5741585.529954332]]}, "properties": {"id": "6182-6184-6186-6188-6190-6192-6194-6196", "from": "75292679", "to": "75292751", "length_m": 862.2281301182765, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753057.872289495, 5741585.529954332], [752309.9142495141, 5742215.774035021]]}, "properties": {"id": "6197-6195-6193-6191-6189-6187-6185-6183", "from": "75292751", "to": "75292679", "length_m": 862.2281301182765, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753057.872289495, 5741585.529954332], [753546.471414447, 5741277.1067783795]]}, "properties": {"id": "6198-6200-6202", "from": "75292751", "to": "75292801", "length_m": 589.4574012517227, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753546.471414447, 5741277.1067783795], [753057.872289495, 5741585.529954332]]}, "properties": {"id": "6203-6201-6199", "from": "75292801", "to": "75292751", "length_m": 589.4574012517227, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753546.471414447, 5741277.1067783795], [753601.2743447847, 5740775.588760565]]}, "properties": {"id": "6204-6206-6208-6210-6212-6214", "from": "75292801", "to": "5607598663", "length_m": 524.870252857163, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753601.2743447847, 5740775.588760565], [753546.471414447, 5741277.1067783795]]}, "properties": {"id": "6215-6213-6211-6209-6207-6205", "from": "5607598663", "to": "75292801", "length_m": 524.870252857163, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753601.2743447847, 5740775.588760565], [754515.1716906509, 5739625.6932951445]]}, "properties": {"id": "6216-6218-6220-6222-6224-6226", "from": "5607598663", "to": "75292948", "length_m": 900.0000000000002, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754515.1716906509, 5739625.6932951445], [753601.2743447847, 5740775.588760565]]}, "properties": {"id": "6227-6225-6223-6221-6219-6217", "from": "75292948", "to": "5607598663", "length_m": 797.8339277829147, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754515.1716906509, 5739625.6932951445], [756160.0549316566, 5739336.694142113]]}, "properties": {"id": "6228-6230-6232-6234", "from": "75292948", "to": "75293065", "length_m": 1500.0000000000007, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772703.464563532, 5752738.273905809], [772210.28519406, 5752867.142703193]]}, "properties": {"id": "623-621-619", "from": "4416304449", "to": "534678053", "length_m": 512.4580355497903, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756160.0549316566, 5739336.694142113], [754515.1716906509, 5739625.6932951445]]}, "properties": {"id": "6235-6233-6231-6229", "from": "75293065", "to": "75292948", "length_m": 1500.0000000000007, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756160.0549316566, 5739336.694142113], [756347.0258183323, 5738535.40402723]]}, "properties": {"id": "6236-6238-6240-6242-6244-6246", "from": "75293065", "to": "75293199", "length_m": 999.9999999999998, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772703.464563532, 5752738.273905809], [773259.8674451938, 5752761.216948891]]}, "properties": {"id": "624-626-628-630-632-634-636-638", "from": "4416304449", "to": "2558469841", "length_m": 572.8383259612125, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756347.0258183323, 5738535.40402723], [756160.0549316566, 5739336.694142113]]}, "properties": {"id": "6247-6245-6243-6241-6239-6237", "from": "75293199", "to": "75293065", "length_m": 914.537217813935, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756347.0258183323, 5738535.40402723], [755885.1946600126, 5738204.2595074335]]}, "properties": {"id": "6286-6288-6290-6292-6294-6296-6298-6300-6302", "from": "75293199", "to": "75293453", "length_m": 575.753218112309, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755885.1946600126, 5738204.2595074335], [756347.0258183323, 5738535.40402723]]}, "properties": {"id": "6303-6301-6299-6297-6295-6293-6291-6289-6287", "from": "75293453", "to": "75293199", "length_m": 575.753218112309, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755885.1946600126, 5738204.2595074335], [755653.5305353481, 5737389.6836353475]]}, "properties": {"id": "6304-6306-6308-6310-6312-6314-6316-6318-6320-6322-6324", "from": "75293453", "to": "75320557", "length_m": 897.0559882085194, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755653.5305353481, 5737389.6836353475], [755885.1946600126, 5738204.2595074335]]}, "properties": {"id": "6325-6323-6321-6319-6317-6315-6313-6311-6309-6307-6305", "from": "75320557", "to": "75293453", "length_m": 897.0559882085194, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792984.0625494191, 5754281.472751603], [793226.8897242846, 5754337.165773493]]}, "properties": {"id": "6326-6328-6330-6332-6334-6336-6338-6340-6342-6344-6346-6348-6350", "from": "38411231", "to": "510170730", "length_m": 261.1363625703793, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793226.8897242846, 5754337.165773493], [792984.0625494191, 5754281.472751603]]}, "properties": {"id": "6351-6349-6347-6345-6343-6341-6339-6337-6335-6333-6331-6329-6327", "from": "510170730", "to": "38411231", "length_m": 261.1363625703793, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792584.4724732169, 5754141.171260091], [792533.958260267, 5754159.70777569]]}, "properties": {"id": "6357-6359", "from": "510170753", "to": "518259773", "length_m": 53.80869591366744, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792533.958260267, 5754159.70777569], [792584.4724732169, 5754141.171260091]]}, "properties": {"id": "6360-6358", "from": "518259773", "to": "510170753", "length_m": 53.80869591366744, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792533.958260267, 5754159.70777569], [792523.6621494647, 5754163.882195231]]}, "properties": {"id": "6361", "from": "518259773", "to": "518259722", "length_m": 11.110160909020525, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792523.6621494647, 5754163.882195231], [792533.958260267, 5754159.70777569]]}, "properties": {"id": "6362", "from": "518259722", "to": "518259773", "length_m": 11.110160909020525, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792523.6621494647, 5754163.882195231], [792457.1436784967, 5754180.119485702]]}, "properties": {"id": "6363-6365", "from": "518259722", "to": "518259720", "length_m": 68.47190039712424, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792457.1436784967, 5754180.119485702], [792523.6621494647, 5754163.882195231]]}, "properties": {"id": "6366-6364", "from": "518259720", "to": "518259722", "length_m": 68.47190039712424, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792457.1436784967, 5754180.119485702], [792360.0503260444, 5754216.58113737]]}, "properties": {"id": "6367-6369-6371", "from": "518259720", "to": "518259681", "length_m": 104.83607104734865, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792360.0503260444, 5754216.58113737], [792457.1436784967, 5754180.119485702]]}, "properties": {"id": "6372-6370-6368", "from": "518259681", "to": "518259720", "length_m": 104.83607104734865, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792360.0503260444, 5754216.58113737], [792287.2171124491, 5754264.011406717]]}, "properties": {"id": "6373", "from": "518259681", "to": "518259705", "length_m": 86.91551906605402, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792287.2171124491, 5754264.011406717], [792360.0503260444, 5754216.58113737]]}, "properties": {"id": "6374", "from": "518259705", "to": "518259681", "length_m": 86.91551906605402, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792287.2171124491, 5754264.011406717], [792272.4951853112, 5754272.936142127]]}, "properties": {"id": "6375", "from": "518259705", "to": "518259699", "length_m": 17.215865960270673, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792272.4951853112, 5754272.936142127], [792287.2171124491, 5754264.011406717]]}, "properties": {"id": "6376", "from": "518259699", "to": "518259705", "length_m": 17.215865960270673, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792272.4951853112, 5754272.936142127], [792217.5515901892, 5754307.525014966]]}, "properties": {"id": "6377", "from": "518259699", "to": "518259712", "length_m": 64.92448511191004, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792217.5515901892, 5754307.525014966], [792272.4951853112, 5754272.936142127]]}, "properties": {"id": "6378", "from": "518259712", "to": "518259699", "length_m": 64.92448511191004, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792217.5515901892, 5754307.525014966], [792031.4693448199, 5754377.313366304]]}, "properties": {"id": "6379-6381-6383-6385", "from": "518259712", "to": "518259708", "length_m": 200.44606676596484, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792031.4693448199, 5754377.313366304], [792217.5515901892, 5754307.525014966]]}, "properties": {"id": "6386-6384-6382-6380", "from": "518259708", "to": "518259712", "length_m": 200.44606676596484, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792031.4693448199, 5754377.313366304], [791968.6545613535, 5754389.477781549]]}, "properties": {"id": "6387", "from": "518259708", "to": "3599593678", "length_m": 63.98179432155057, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791968.6545613535, 5754389.477781549], [792031.4693448199, 5754377.313366304]]}, "properties": {"id": "6388", "from": "3599593678", "to": "518259708", "length_m": 63.98179432155057, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773259.8674451938, 5752761.216948891], [772703.464563532, 5752738.273905809]]}, "properties": {"id": "639-637-635-633-631-629-627-625", "from": "2558469841", "to": "4416304449", "length_m": 572.8383259612125, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790400.1956838624, 5751463.424946548], [790476.5729376586, 5751276.00527165]]}, "properties": {"id": "6397-6399", "from": "510171217", "to": "510171242", "length_m": 203.06757962720437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773259.8674451938, 5752761.216948891], [773765.5432260989, 5753240.188173318]]}, "properties": {"id": "640-642-644-646-648-650", "from": "2558469841", "to": "494902440", "length_m": 706.8007805046956, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790476.5729376586, 5751276.00527165], [790400.1956838624, 5751463.424946548]]}, "properties": {"id": "6400-6398", "from": "510171242", "to": "510171217", "length_m": 203.06757962720437, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837454.3580650999, 5813190.395732724], [837507.7457653354, 5813613.13358625]]}, "properties": {"id": "6401-6402-6403-6404-8110-8111-8067-21704-21705-21669-21686-21687-21688-21689-23196-23197-23198-23199", "from": "3088561078", "to": "33531737", "length_m": 429.2673021618078, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790002.7345533876, 5751487.208724698], [790036.4156257978, 5751137.834652068]]}, "properties": {"id": "6405-6407-6409-6411-6413-6415-6417-6419-6421-6423", "from": "270452770", "to": "509915778", "length_m": 363.06479537260174, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790036.4156257978, 5751137.834652068], [790002.7345533876, 5751487.208724698]]}, "properties": {"id": "6424-6422-6420-6418-6416-6414-6412-6410-6408-6406", "from": "509915778", "to": "270452770", "length_m": 363.06479537260174, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792810.4099009339, 5754604.702154344], [792878.863650114, 5754738.275475967]]}, "properties": {"id": "6436-6434-6432-6430-6428-6426-30413-30411-30409", "from": "510169731", "to": "510170489", "length_m": 150.75481992144097, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792810.4099009339, 5754604.702154344], [792806.8107207075, 5754483.747848017]]}, "properties": {"id": "6437-6439-6441-6443-6445-6447-6449-6451-6453-6455-6457-6459-6461-6463", "from": "510169731", "to": "510169843", "length_m": 123.3404492488257, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792806.8107207075, 5754483.747848017], [792810.4099009339, 5754604.702154344]]}, "properties": {"id": "6464-6462-6460-6458-6456-6454-6452-6450-6448-6446-6444-6442-6440-6438", "from": "510169843", "to": "510169731", "length_m": 123.3404492488257, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792806.8107207075, 5754483.747848017], [792773.6791785683, 5754292.963293256]]}, "properties": {"id": "6465-6467-6469-6471-6473-6475-6477-6479-6481-6483-6485-6487-6489-6491-6493-6495-6497-6499", "from": "510169843", "to": "510170094", "length_m": 198.45607004544448, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792773.6791785683, 5754292.963293256], [792806.8107207075, 5754483.747848017]]}, "properties": {"id": "6500-6498-6496-6494-6492-6490-6488-6486-6484-6482-6480-6478-6476-6474-6472-6470-6468-6466", "from": "510170094", "to": "510169843", "length_m": 198.45607004544448, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836371.7493535085, 5804066.070566557], [836354.5449951601, 5804066.030879462]]}, "properties": {"id": "6501-6502-6503-6504", "from": "1669910704", "to": "1712176729", "length_m": 18.16763904262399, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792896.1709786198, 5754833.913074568], [792878.863650114, 5754738.275475967]]}, "properties": {"id": "6505-6507-6509-6511-6513-6515-6517-6519-6521-6523-6525-6527-6529-6531-6533-6535-6537-6539-6541-6543-6545-6547-6549-6551-6553-6555-6557-6559-6561-6563", "from": "510169584", "to": "510170489", "length_m": 344.0690230949213, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773765.5432260989, 5753240.188173318], [773259.8674451938, 5752761.216948891]]}, "properties": {"id": "651-649-647-645-643-641", "from": "494902440", "to": "2558469841", "length_m": 706.8007805046956, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773765.5432260989, 5753240.188173318], [774308.742680985, 5753636.869147261]]}, "properties": {"id": "652-654-656-658-660-662-664-666-668-670-672-674", "from": "494902440", "to": "498837776", "length_m": 741.2701816387143, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792878.863650114, 5754738.275475967], [792896.1709786198, 5754833.913074568]]}, "properties": {"id": "6564-6562-6560-6558-6556-6554-6552-6550-6548-6546-6544-6542-6540-6538-6536-6534-6532-6530-6528-6526-6524-6522-6520-6518-6516-6514-6512-6510-6508-6506", "from": "510170489", "to": "510169584", "length_m": 344.0690230949213, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790956.2306071704, 5754841.530777218], [790837.2414312419, 5754863.234827945]]}, "properties": {"id": "6568", "from": "4696655311", "to": "4698468859", "length_m": 120.95242761936295, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790837.2414312419, 5754863.234827945], [790956.2306071704, 5754841.530777218]]}, "properties": {"id": "6569", "from": "4698468859", "to": "4696655311", "length_m": 120.95242761936295, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793328.2324847061, 5754878.991173749], [793249.4987543743, 5754884.830233409]]}, "properties": {"id": "6570-6572-6574-6576-6578-6580-6582-6584-6586-6588-6590-6592-6594-6596-6598-6600", "from": "510169366", "to": "510169493", "length_m": 107.34266136401604, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793249.4987543743, 5754884.830233409], [793328.2324847061, 5754878.991173749]]}, "properties": {"id": "6601-6599-6597-6595-6593-6591-6589-6587-6585-6583-6581-6579-6577-6575-6573-6571", "from": "510169493", "to": "510169366", "length_m": 107.34266136401604, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792810.4099009339, 5754604.702154344], [792921.3794917176, 5754523.361452861]]}, "properties": {"id": "6602-6604-6606-6608-6610-6612-6614-6616-6618-6620-6622-6624-6626-6628-6630-6632-6634-6636-6638-6640-6642", "from": "510169731", "to": "510170505", "length_m": 145.7166438968788, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792921.3794917176, 5754523.361452861], [792810.4099009339, 5754604.702154344]]}, "properties": {"id": "6643-6641-6639-6637-6635-6633-6631-6629-6627-6625-6623-6621-6619-6617-6615-6613-6611-6609-6607-6605-6603", "from": "510170505", "to": "510169731", "length_m": 145.7166438968788, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792921.3794917176, 5754523.361452861], [792993.078184923, 5754516.346797133]]}, "properties": {"id": "6644-6646-6648", "from": "510170505", "to": "510170513", "length_m": 72.046380151114, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792993.078184923, 5754516.346797133], [792921.3794917176, 5754523.361452861]]}, "properties": {"id": "6649-6647-6645", "from": "510170513", "to": "510170505", "length_m": 72.046380151114, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792921.3794917176, 5754523.361452861], [792806.8107207075, 5754483.747848017]]}, "properties": {"id": "6650-6652-6654-6656-6658-6660-6662-6664-6666-6668-6670-6672-6674-6676-6678-6680-6682-6684-6686", "from": "510170505", "to": "510169843", "length_m": 127.96347240287342, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792806.8107207075, 5754483.747848017], [792921.3794917176, 5754523.361452861]]}, "properties": {"id": "6687-6685-6683-6681-6679-6677-6675-6673-6671-6669-6667-6665-6663-6661-6659-6657-6655-6653-6651", "from": "510169843", "to": "510170505", "length_m": 127.96347240287342, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793648.6157750499, 5754616.09132089], [793558.5586656006, 5754657.524246119]]}, "properties": {"id": "6688-6690-6692-6694-6696", "from": "510168941", "to": "510168897", "length_m": 99.60541312913624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793558.5586656006, 5754657.524246119], [793648.6157750499, 5754616.09132089]]}, "properties": {"id": "6697-6695-6693-6691-6689", "from": "510168897", "to": "510168941", "length_m": 99.60541312913624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793558.5586656006, 5754657.524246119], [793420.1090072895, 5754651.620639284]]}, "properties": {"id": "6698-6700-6702-6704-6706-6708-6710-6712", "from": "510168897", "to": "38411236", "length_m": 139.59137425201524, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791010.4713681766, 5753052.269915621], [791053.0573084746, 5753044.6763459025]]}, "properties": {"id": "67-65-63-61-59-57-55-53-51-49", "from": "848692885", "to": "848692546", "length_m": 309.6039641790936, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793420.1090072895, 5754651.620639284], [793558.5586656006, 5754657.524246119]]}, "properties": {"id": "6713-6711-6709-6707-6705-6703-6701-6699", "from": "38411236", "to": "510168897", "length_m": 139.59137425201524, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793420.1090072895, 5754651.620639284], [793204.4576276044, 5754668.581420734]]}, "properties": {"id": "6714-6716-6718-6720-6722-6724-6726-6728-6730-6732-6734-6736-6738", "from": "38411236", "to": "38411238", "length_m": 220.01274841422537, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793204.4576276044, 5754668.581420734], [793420.1090072895, 5754651.620639284]]}, "properties": {"id": "6739-6737-6735-6733-6731-6729-6727-6725-6723-6721-6719-6717-6715", "from": "38411238", "to": "38411236", "length_m": 220.01274841422537, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833017.3263255623, 5804595.462555777], [832701.2828701447, 5804334.039079243]]}, "properties": {"id": "6740-6741-6742-6743-6744-6745-6746-6747-6748-6749-6750-6751-6752-6753-6754", "from": "825691612", "to": "825693262", "length_m": 416.4825783968242, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774308.742680985, 5753636.869147261], [773765.5432260989, 5753240.188173318]]}, "properties": {"id": "675-673-671-669-667-665-663-661-659-657-655-653", "from": "498837776", "to": "494902440", "length_m": 741.2701816387143, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832706.406803817, 5808219.648627348], [832766.095564199, 5808196.015881652]]}, "properties": {"id": "6755-6756-6757-6758-6759-6760-6761-6762-6763", "from": "1791673336", "to": "75155390", "length_m": 68.85044126280745, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774308.742680985, 5753636.869147261], [774887.5730796221, 5753921.134234725]]}, "properties": {"id": "676-678-680-682-684-686-688-690-692-694", "from": "498837776", "to": "2558469795", "length_m": 649.3785339918094, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795324.6294191709, 5771388.66269678], [795314.9064504567, 5771392.550968155]]}, "properties": {"id": "6766", "from": "705055387", "to": "705055388", "length_m": 10.47161754974041, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795314.9064504567, 5771392.550968155], [795014.813899396, 5771512.555287271]]}, "properties": {"id": "6767-6768-6769", "from": "705055388", "to": "705054511", "length_m": 323.1974808522756, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795014.813899396, 5771512.555287271], [794888.3700566895, 5771562.93158372]]}, "properties": {"id": "6770-6771", "from": "705054511", "to": "705053897", "length_m": 136.1100670504472, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836354.5449951601, 5804066.030879462], [836350.8524963763, 5804088.232668992]]}, "properties": {"id": "6772-6773-6774-6775-6776", "from": "1712176729", "to": "1763046594", "length_m": 25.13907095304333, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793462.0684162247, 5754543.459023193], [793420.1090072895, 5754651.620639284]]}, "properties": {"id": "6777", "from": "38411235", "to": "38411236", "length_m": 116.0152025654975, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793420.1090072895, 5754651.620639284], [793462.0684162247, 5754543.459023193]]}, "properties": {"id": "6778", "from": "38411236", "to": "38411235", "length_m": 116.0152025654975, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792697.644018434, 5754943.336076749], [792648.4536340327, 5754674.062811098]]}, "properties": {"id": "6779-6781", "from": "5421425614", "to": "510169352", "length_m": 273.7297953023267, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792648.4536340327, 5754674.062811098], [792697.644018434, 5754943.336076749]]}, "properties": {"id": "6782-6780", "from": "510169352", "to": "5421425614", "length_m": 273.7297953023267, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792697.644018434, 5754943.336076749], [792712.2096495875, 5755027.424956515]]}, "properties": {"id": "6783", "from": "5421425614", "to": "510169323", "length_m": 85.34106458204377, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792712.2096495875, 5755027.424956515], [792697.644018434, 5754943.336076749]]}, "properties": {"id": "6784", "from": "510169323", "to": "5421425614", "length_m": 85.34106458204377, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793558.5586656006, 5754657.524246119], [793548.0616010723, 5754814.181628826]]}, "properties": {"id": "6785-6787-6789-6791-6793-6795", "from": "510168897", "to": "510169134", "length_m": 158.12011018435214, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793548.0616010723, 5754814.181628826], [793558.5586656006, 5754657.524246119]]}, "properties": {"id": "6796-6794-6792-6790-6788-6786", "from": "510169134", "to": "510168897", "length_m": 158.12011018435214, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793614.5942495733, 5754821.3320869515], [793548.0616010723, 5754814.181628826]]}, "properties": {"id": "6797-6799-6801-6803", "from": "510169138", "to": "510169134", "length_m": 67.04945626060803, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790626.159767611, 5767153.236900155], [791439.3444399606, 5767950.435178403]]}, "properties": {"id": "68-69-70-71-72-73-74-75-76-77", "from": "267124456", "to": "317915554", "length_m": 1142.2966039472863, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793548.0616010723, 5754814.181628826], [793614.5942495733, 5754821.3320869515]]}, "properties": {"id": "6804-6802-6800-6798", "from": "510169134", "to": "510169138", "length_m": 67.04945626060803, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793548.0616010723, 5754814.181628826], [793328.2324847061, 5754878.991173749]]}, "properties": {"id": "6805-6807-6809-6811-6813-6815-6817-6819-6821-6823-6825-6827", "from": "510169134", "to": "510169366", "length_m": 230.7901457044603, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793328.2324847061, 5754878.991173749], [793548.0616010723, 5754814.181628826]]}, "properties": {"id": "6828-6826-6824-6822-6820-6818-6816-6814-6812-6810-6808-6806", "from": "510169366", "to": "510169134", "length_m": 230.7901457044603, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793328.2324847061, 5754878.991173749], [793249.4987543743, 5754884.830233409]]}, "properties": {"id": "6829-6831-6833-6835-6837-6839-6841-6843-6845-6847", "from": "510169366", "to": "510169493", "length_m": 80.43300784679813, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793249.4987543743, 5754884.830233409], [793328.2324847061, 5754878.991173749]]}, "properties": {"id": "6848-6846-6844-6842-6840-6838-6836-6834-6832-6830", "from": "510169493", "to": "510169366", "length_m": 80.43300784679813, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793249.4987543743, 5754884.830233409], [792875.7929980741, 5754941.399122335]]}, "properties": {"id": "6849-6851-6853-6855-6857-6859-6861-6863-6865-6867-6869-6871-6873-6875-6877-6879-6881-6883-6885-6887-6889-6891-6893-6895-6897", "from": "510169493", "to": "510169519", "length_m": 382.31268123851225, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792875.7929980741, 5754941.399122335], [793249.4987543743, 5754884.830233409]]}, "properties": {"id": "6898-6896-6894-6892-6890-6888-6886-6884-6882-6880-6878-6876-6874-6872-6870-6868-6866-6864-6862-6860-6858-6856-6854-6852-6850", "from": "510169519", "to": "510169493", "length_m": 382.31268123851225, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792875.7929980741, 5754941.399122335], [792697.644018434, 5754943.336076749]]}, "properties": {"id": "6899-6901-6903", "from": "510169519", "to": "5421425614", "length_m": 180.12451926847174, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792697.644018434, 5754943.336076749], [792875.7929980741, 5754941.399122335]]}, "properties": {"id": "6904-6902-6900", "from": "5421425614", "to": "510169519", "length_m": 180.12451926847174, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792697.644018434, 5754943.336076749], [792653.0488127156, 5754950.132227032]]}, "properties": {"id": "6905", "from": "5421425614", "to": "5421425615", "length_m": 45.11008779739743, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792653.0488127156, 5754950.132227032], [792697.644018434, 5754943.336076749]]}, "properties": {"id": "6906", "from": "5421425615", "to": "5421425614", "length_m": 45.11008779739743, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789549.1666422528, 5766577.426625212], [789878.8663680522, 5766680.415674631]]}, "properties": {"id": "6907-6908-6909-6910", "from": "3332966053", "to": "264173098", "length_m": 345.53612210524443, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789878.8663680522, 5766680.415674631], [789986.5149662865, 5766726.033635433]]}, "properties": {"id": "6911-6912-6913-6914", "from": "264173098", "to": "331122806", "length_m": 116.98254555698477, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835215.2099520916, 5804299.135102371], [835208.8751803963, 5804284.149000556]]}, "properties": {"id": "6928", "from": "293664305", "to": "244892179", "length_m": 16.269990132118085, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834769.0983546503, 5804368.865269564], [834368.1735266715, 5804466.106797399]]}, "properties": {"id": "6931-6932-6933-6934-6935-6936-6937-6938-6939-6940-6941-6942-6943-6944", "from": "354777626", "to": "825684718", "length_m": 412.8593498244433, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834368.1735266715, 5804466.106797399], [833946.6936023396, 5804537.911557989]]}, "properties": {"id": "6945-6946-6947", "from": "825684718", "to": "599450927", "length_m": 427.55313109413544, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838394.5038094587, 5807383.304886721], [837244.3398621154, 5807028.453156353]]}, "properties": {"id": "6948-6949-6950-6951-6952-6953-6954-6955-6956-54843-54844", "from": "2100835025", "to": "1833721691", "length_m": 1203.6986702386812, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774887.5730796221, 5753921.134234725], [774308.742680985, 5753636.869147261]]}, "properties": {"id": "695-693-691-689-687-685-683-681-679-677", "from": "2558469795", "to": "498837776", "length_m": 649.3785339918094, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835032.639335938, 5804332.255794129], [835208.2453158834, 5804300.242484202]]}, "properties": {"id": "6957-6958-6959", "from": "825561116", "to": "825571561", "length_m": 178.51706750799258, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774887.5730796221, 5753921.134234725], [775463.6511048349, 5753839.526736439]]}, "properties": {"id": "696-698-700-702-704-706-708-710", "from": "2558469795", "to": "494902936", "length_m": 582.4017165936366, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837123.223841357, 5806939.085788556], [837097.0715565702, 5806777.732879393]]}, "properties": {"id": "6960-6961", "from": "1833721693", "to": "254257364", "length_m": 163.4613400428948, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837097.0715565702, 5806777.732879393], [837095.5431302601, 5806768.432775339]]}, "properties": {"id": "6962", "from": "254257364", "to": "254228083", "length_m": 9.424861915864048, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837095.5431302601, 5806768.432775339], [837076.5582440456, 5806661.127938522]]}, "properties": {"id": "6963-6964", "from": "254228083", "to": "254228084", "length_m": 108.97250772223019, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838617.7567029183, 5807475.840463055], [838394.5038094587, 5807383.304886721]]}, "properties": {"id": "6965-6966-6967-6968-6969-6970", "from": "320853352", "to": "2100835025", "length_m": 244.7392056129166, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837244.3398621154, 5807028.453156353], [837124.4923575546, 5806988.894764103]]}, "properties": {"id": "6971-6972", "from": "1833721691", "to": "4006753156", "length_m": 126.20761688392392, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777284.7746389541, 5744335.477510445], [777224.3743224109, 5744313.854828828]]}, "properties": {"id": "6973", "from": "289545831", "to": "289545830", "length_m": 64.15402230075097, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777224.3743224109, 5744313.854828828], [777284.7746389541, 5744335.477510445]]}, "properties": {"id": "6974", "from": "289545830", "to": "289545831", "length_m": 64.15402230075097, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793853.1507578699, 5772791.123493175], [793865.3252693308, 5772793.794985903]]}, "properties": {"id": "6975", "from": "250444530", "to": "3066144030", "length_m": 12.464172703467554, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775264.5504119578, 5761740.032271103], [774869.2798601588, 5759525.870737054]]}, "properties": {"id": "6976-6978-6980-6982", "from": "474125970", "to": "1835206957", "length_m": 2249.5815864170963, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774869.2798601588, 5759525.870737054], [775264.5504119578, 5761740.032271103]]}, "properties": {"id": "6983-6981-6979-6977", "from": "1835206957", "to": "474125970", "length_m": 2249.5815864170963, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[750865.3616278877, 5836743.280041555], [750861.7774776841, 5836723.582764633]]}, "properties": {"id": "7-8-9-10-11-12-13", "from": "5642242410", "to": "5642242409", "length_m": 22.32755305213046, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727909.4322011643, 5753671.369045679], [733814.3676213988, 5750982.622713566]]}, "properties": {"id": "70045", "from": "632016236", "to": "70045-1", "length_m": 5000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733814.3676213988, 5750982.622713566], [727909.4322011643, 5753671.369045679]]}, "properties": {"id": "70046", "from": "70045-1", "to": "632016236", "length_m": 5000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733814.3676213988, 5750982.622713566], [735839.9488720796, 5743396.247657791]]}, "properties": {"id": "70047", "from": "70045-1", "to": "70045-2", "length_m": 8000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735839.9488720796, 5743396.247657791], [733814.3676213988, 5750982.622713566]]}, "properties": {"id": "70048", "from": "70045-2", "to": "70045-1", "length_m": 8000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[735839.9488720796, 5743396.247657791], [733164.8278629796, 5736675.448078691]]}, "properties": {"id": "70049", "from": "70045-2", "to": "70045-3", "length_m": 7999.999999999997, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833443.6316759831, 5808086.061625561], [833278.5094088791, 5807048.52525996]]}, "properties": {"id": "7005-7006-7007-7008-7009-7010-7011-7012", "from": "5642369714", "to": "36045785", "length_m": 1051.935476967185, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733164.8278629796, 5736675.448078691], [735839.9488720796, 5743396.247657791]]}, "properties": {"id": "70050", "from": "70045-3", "to": "70045-2", "length_m": 7999.999999999997, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[733164.8278629796, 5736675.448078691], [736917.2135775287, 5733410.913138325]]}, "properties": {"id": "70051", "from": "70045-3", "to": "60080", "length_m": 8000.000000000002, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736917.2135775287, 5733410.913138325], [733164.8278629796, 5736675.448078691]]}, "properties": {"id": "70052", "from": "60080", "to": "70045-3", "length_m": 8000.000000000002, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745199.0772021287, 5752308.449720214], [743436.1410364665, 5749624.799207684]]}, "properties": {"id": "70145", "from": "3710493445", "to": "70145-1", "length_m": 5000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743436.1410364665, 5749624.799207684], [745199.0772021287, 5752308.449720214]]}, "properties": {"id": "70146", "from": "70145-1", "to": "3710493445", "length_m": 5000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[743436.1410364665, 5749624.799207684], [741857.0975801933, 5738391.103962447]]}, "properties": {"id": "70147", "from": "70145-1", "to": "70145-2", "length_m": 5000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741857.0975801933, 5738391.103962447], [743436.1410364665, 5749624.799207684]]}, "properties": {"id": "70148", "from": "70145-2", "to": "70145-1", "length_m": 5000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[741857.0975801933, 5738391.103962447], [738680.1130666233, 5737391.530601182]]}, "properties": {"id": "70149", "from": "70145-2", "to": "70145-3", "length_m": 5000.0, "freespeed_mps": 16.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738680.1130666233, 5737391.530601182], [741857.0975801933, 5738391.103962447]]}, "properties": {"id": "70150", "from": "70145-3", "to": "70145-2", "length_m": 5000.0, "freespeed_mps": 16.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[738680.1130666233, 5737391.530601182], [736917.2135775287, 5733410.913138325]]}, "properties": {"id": "70151", "from": "70145-3", "to": "60080", "length_m": 5000.0, "freespeed_mps": 22.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[736917.2135775287, 5733410.913138325], [738680.1130666233, 5737391.530601182]]}, "properties": {"id": "70152", "from": "60080", "to": "70145-3", "length_m": 5000.0, "freespeed_mps": 22.0, "capacity_vph": 800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833278.5094088791, 5807048.52525996], [833276.571008574, 5807034.8828251595]]}, "properties": {"id": "7019", "from": "36045785", "to": "288440676", "length_m": 13.779456554865138, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801110.0495525922, 5785222.773702656], [800336.6028909878, 5784809.797461578]]}, "properties": {"id": "7029-53078", "from": "2134404317", "to": "27266296", "length_m": 876.7999520857459, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830742.6023681674, 5813945.865634203], [830732.4603003438, 5813929.395026807]]}, "properties": {"id": "7080", "from": "256040845", "to": "35082905", "length_m": 19.34276207452583, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836377.6777708188, 5804083.9971426735], [836371.7493535085, 5804066.070566557]]}, "properties": {"id": "7082-7083-7084-7085", "from": "1763046592", "to": "1669910704", "length_m": 20.244038799085533, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838186.5402364456, 5806602.689253868], [837493.3995301405, 5806595.089980076]]}, "properties": {"id": "7099-7100-7101-7102-7103", "from": "250290115", "to": "254257128", "length_m": 693.5821306437033, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837493.3995301405, 5806595.089980076], [836812.2305496635, 5806615.697280673]]}, "properties": {"id": "7104-33916-33917-33918-56311", "from": "254257128", "to": "26476109", "length_m": 681.4843852072325, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771177.1397268486, 5739119.898655685], [771168.1075926195, 5739016.468865144]]}, "properties": {"id": "7105-7107-7109", "from": "524155270", "to": "524155309", "length_m": 110.42142301891911, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775463.6511048349, 5753839.526736439], [774887.5730796221, 5753921.134234725]]}, "properties": {"id": "711-709-707-705-703-701-699-697", "from": "494902936", "to": "2558469795", "length_m": 582.4017165936366, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771168.1075926195, 5739016.468865144], [771177.1397268486, 5739119.898655685]]}, "properties": {"id": "7110-7108-7106", "from": "524155309", "to": "524155270", "length_m": 110.42142301891911, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836350.8524963763, 5804088.232668992], [836355.6138751844, 5804092.318565446]]}, "properties": {"id": "7117-7118", "from": "1763046594", "to": "1712176876", "length_m": 6.307121436203862, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788057.3339568697, 5751239.453398141], [788055.7722306425, 5751234.69670349]]}, "properties": {"id": "712", "from": "509914425", "to": "848692492", "length_m": 5.0065090259938305, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762962.1701195902, 5764303.226149406], [762894.4121219954, 5763925.576423416]]}, "properties": {"id": "7122-7120-21502", "from": "1852769489", "to": "1852769522", "length_m": 383.6831925999286, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762962.1701195902, 5764303.226149406], [763148.8585847984, 5765324.4584330795]]}, "properties": {"id": "7123-7125-7127", "from": "1852769489", "to": "5706612802", "length_m": 1038.1593218972305, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763148.8585847984, 5765324.4584330795], [762962.1701195902, 5764303.226149406]]}, "properties": {"id": "7128-7126-7124", "from": "5706612802", "to": "1852769489", "length_m": 1038.1593218972305, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763148.8585847984, 5765324.4584330795], [763239.9750722663, 5765845.590414889]]}, "properties": {"id": "7129-7131-7133-7135-7137", "from": "5706612802", "to": "5706612798", "length_m": 529.0558232316718, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788055.7722306425, 5751234.69670349], [788057.3339568697, 5751239.453398141]]}, "properties": {"id": "713", "from": "848692492", "to": "509914425", "length_m": 5.0065090259938305, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763239.9750722663, 5765845.590414889], [763148.8585847984, 5765324.4584330795]]}, "properties": {"id": "7138-7136-7134-7132-7130", "from": "5706612798", "to": "5706612802", "length_m": 529.0558232316718, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763239.9750722663, 5765845.590414889], [763401.863006674, 5766749.949403382]]}, "properties": {"id": "7139-7141-7143-7145", "from": "5706612798", "to": "5706612794", "length_m": 918.7379598139469, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835787.964372823, 5817919.772351824], [835832.8199785601, 5817855.342802602]]}, "properties": {"id": "714-715-716-717-718-719-720-721", "from": "268387327", "to": "268387329", "length_m": 86.62031940247407, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763401.863006674, 5766749.949403382], [763239.9750722663, 5765845.590414889]]}, "properties": {"id": "7146-7144-7142-7140", "from": "5706612794", "to": "5706612798", "length_m": 918.7379598139469, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763401.863006674, 5766749.949403382], [763493.4681106769, 5767258.475292139]]}, "properties": {"id": "7147-7149-7151-7153", "from": "5706612794", "to": "5706612792", "length_m": 516.7341082235289, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763493.4681106769, 5767258.475292139], [763401.863006674, 5766749.949403382]]}, "properties": {"id": "7154-7152-7150-7148", "from": "5706612792", "to": "5706612794", "length_m": 516.7341082235289, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763493.4681106769, 5767258.475292139], [763642.1272070201, 5768163.628505444]]}, "properties": {"id": "7155-7157-7159-7161-7163-7165-7167-7169-7171-7173-7175-7177-7179", "from": "5706612792", "to": "209025145", "length_m": 918.2100838911155, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763642.1272070201, 5768163.628505444], [763493.4681106769, 5767258.475292139]]}, "properties": {"id": "7180-7178-7176-7174-7172-7170-7168-7166-7164-7162-7160-7158-7156", "from": "209025145", "to": "5706612792", "length_m": 918.2100838911155, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763642.1272070201, 5768163.628505444], [763367.9076125224, 5768876.973605771]]}, "properties": {"id": "7181-7183-7185-7187-7189-7191-7193", "from": "209025145", "to": "5706612778", "length_m": 765.7165390645089, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763367.9076125224, 5768876.973605771], [763642.1272070201, 5768163.628505444]]}, "properties": {"id": "7194-7192-7190-7188-7186-7184-7182", "from": "5706612778", "to": "209025145", "length_m": 765.7165390645089, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763367.9076125224, 5768876.973605771], [763170.7885265616, 5769369.41889681]]}, "properties": {"id": "7195-7197-7199-7201", "from": "5706612778", "to": "5706612774", "length_m": 530.4834106480243, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763170.7885265616, 5769369.41889681], [763367.9076125224, 5768876.973605771]]}, "properties": {"id": "7202-7200-7198-7196", "from": "5706612774", "to": "5706612778", "length_m": 530.4834106480243, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763170.7885265616, 5769369.41889681], [762943.7500813873, 5769933.714017762]]}, "properties": {"id": "7203-7205-7207", "from": "5706612774", "to": "5652424660", "length_m": 608.2671993209243, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762943.7500813873, 5769933.714017762], [763170.7885265616, 5769369.41889681]]}, "properties": {"id": "7208-7206-7204", "from": "5652424660", "to": "5706612774", "length_m": 608.2671993209243, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762943.7500813873, 5769933.714017762], [762969.9038877701, 5770863.998000833]]}, "properties": {"id": "7209-7211-7213-7215-7217-7219-7221-7223-7225-7227-7229-7231-7233-7235", "from": "5652424660", "to": "5706612763", "length_m": 956.2423348738025, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762969.9038877701, 5770863.998000833], [762943.7500813873, 5769933.714017762]]}, "properties": {"id": "7236-7234-7232-7230-7228-7226-7224-7222-7220-7218-7216-7214-7212-7210", "from": "5706612763", "to": "5652424660", "length_m": 956.2423348738025, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762969.9038877701, 5770863.998000833], [763288.0456254077, 5772617.592910932]]}, "properties": {"id": "7237", "from": "5706612763", "to": "5652435317", "length_m": 1782.2203207960029, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763288.0456254077, 5772617.592910932], [762969.9038877701, 5770863.998000833]]}, "properties": {"id": "7238", "from": "5652435317", "to": "5706612763", "length_m": 1782.2203207960029, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763288.0456254077, 5772617.592910932], [763411.8948055273, 5773164.061414403]]}, "properties": {"id": "7239-7241-7243-7245-7247-7249-7251", "from": "5652435317", "to": "209025166", "length_m": 563.3522832423707, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763411.8948055273, 5773164.061414403], [763288.0456254077, 5772617.592910932]]}, "properties": {"id": "7252-7250-7248-7246-7244-7242-7240", "from": "209025166", "to": "5652435317", "length_m": 563.3522832423707, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763411.8948055273, 5773164.061414403], [765962.1700482604, 5775253.915523235]]}, "properties": {"id": "7253-7255-7257-7259", "from": "209025166", "to": "5706612762", "length_m": 3298.4388405279715, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765962.1700482604, 5775253.915523235], [763411.8948055273, 5773164.061414403]]}, "properties": {"id": "7260-7258-7256-7254", "from": "5706612762", "to": "209025166", "length_m": 3298.4388405279715, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[765962.1700482604, 5775253.915523235], [766840.1971021246, 5775396.551995923]]}, "properties": {"id": "7261-7263-7265-7267-7269-7271-7273-7275-7277-7279-7281-7283-7285", "from": "5706612762", "to": "5706612757", "length_m": 947.3649847973403, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766840.1971021246, 5775396.551995923], [765962.1700482604, 5775253.915523235]]}, "properties": {"id": "7286-7284-7282-7280-7278-7276-7274-7272-7270-7268-7266-7264-7262", "from": "5706612757", "to": "5706612762", "length_m": 947.3649847973403, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[766840.1971021246, 5775396.551995923], [767932.0694846931, 5775618.983549098]]}, "properties": {"id": "7287-7289-7291-7293-7295-7297-7299-7301-7303-7305-7307-7309-7311-7313", "from": "5706612757", "to": "475586118", "length_m": 1202.783011115782, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795519.9331009754, 5780444.652706167], [795499.1104092493, 5780456.5121036945]]}, "properties": {"id": "729", "from": "619754853", "to": "267115807", "length_m": 23.96309245673736, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767932.0694846931, 5775618.983549098], [766840.1971021246, 5775396.551995923]]}, "properties": {"id": "7314-7312-7310-7308-7306-7304-7302-7300-7298-7296-7294-7292-7290-7288", "from": "475586118", "to": "5706612757", "length_m": 1202.783011115782, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767932.0694846931, 5775618.983549098], [768447.2730052272, 5776082.124835857]]}, "properties": {"id": "7315-7317-7319", "from": "475586118", "to": "475586101", "length_m": 692.8358136298111, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768447.2730052272, 5776082.124835857], [767932.0694846931, 5775618.983549098]]}, "properties": {"id": "7320-7318-7316", "from": "475586101", "to": "475586118", "length_m": 692.8358136298111, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768447.2730052272, 5776082.124835857], [768531.0547465535, 5776523.978087722]]}, "properties": {"id": "7321-7323-7325-7327-7329-7331-7333-7335-7337-7339-7341-7343-7345-7347-7349-7351-7353", "from": "475586101", "to": "209212577", "length_m": 474.67061405425125, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768531.0547465535, 5776523.978087722], [768447.2730052272, 5776082.124835857]]}, "properties": {"id": "7354-7352-7350-7348-7346-7344-7342-7340-7338-7336-7334-7332-7330-7328-7326-7324-7322", "from": "209212577", "to": "475586101", "length_m": 474.67061405425125, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768531.0547465535, 5776523.978087722], [768335.9499883549, 5777196.222184613]]}, "properties": {"id": "7355-7357-7359-7361-7363-7365-7367-7369-7371-29791", "from": "209212577", "to": "1944283975", "length_m": 706.2419631049966, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790103.3288178295, 5751517.43436344], [790110.9074878296, 5751528.076206649]]}, "properties": {"id": "7373-7374-7375-7376", "from": "37693748", "to": "510176154", "length_m": 13.9695603058844, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790110.9074878296, 5751528.076206649], [790123.7207640486, 5751522.891568637]]}, "properties": {"id": "7377-7378-7379-7380", "from": "510176154", "to": "510176267", "length_m": 14.905035111751804, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790123.7207640486, 5751522.891568637], [790121.1114808377, 5751509.492387099]]}, "properties": {"id": "7381-7382-7383-7384", "from": "510176267", "to": "510176169", "length_m": 14.709043759507468, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790121.1114808377, 5751509.492387099], [790103.3288178295, 5751517.43436344]]}, "properties": {"id": "7385-7386-7387-7388-7389-7390", "from": "510176169", "to": "37693748", "length_m": 24.034499714245122, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831432.2718052659, 5813508.839957625], [831937.9328577635, 5813190.162358822]]}, "properties": {"id": "7391-7392-54903", "from": "1536068073", "to": "369130238", "length_m": 597.703308988231, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790548.01831481, 5751432.614603723], [790436.9798394159, 5751456.60963111]]}, "properties": {"id": "7393-7394-7395-7396", "from": "509915763", "to": "510559316", "length_m": 113.65514058062632, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790436.9798394159, 5751456.60963111], [790423.4319204593, 5751459.376043234]]}, "properties": {"id": "7397", "from": "510559316", "to": "510171623", "length_m": 13.827477823719965, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790423.4319204593, 5751459.376043234], [790400.1956838624, 5751463.424946548]]}, "properties": {"id": "7398", "from": "510171623", "to": "510171217", "length_m": 23.58635850285219, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790400.1956838624, 5751463.424946548], [790303.8966285886, 5751484.208670777]]}, "properties": {"id": "7399", "from": "510171217", "to": "510171490", "length_m": 98.51634991951407, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790303.8966285886, 5751484.208670777], [790121.1114808377, 5751509.492387099]]}, "properties": {"id": "7400-7401", "from": "510171490", "to": "510176169", "length_m": 185.50000067903386, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763364.6574370936, 5761643.719523931], [763734.6129295283, 5761586.878256776]]}, "properties": {"id": "7402-7404-7406-7408", "from": "614531167", "to": "1856653135", "length_m": 374.31343841918135, "freespeed_mps": 27.77777777777778, "capacity_vph": 1800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763734.6129295283, 5761586.878256776], [763364.6574370936, 5761643.719523931]]}, "properties": {"id": "7409-7407-7405-7403", "from": "1856653135", "to": "614531167", "length_m": 374.31343841918135, "freespeed_mps": 27.77777777777778, "capacity_vph": 1800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[763734.6129295283, 5761586.878256776], [764541.8294021031, 5761436.809462007]]}, "properties": {"id": "7410", "from": "1856653135", "to": "535080931", "length_m": 821.0475472306699, "freespeed_mps": 27.77777777777778, "capacity_vph": 1800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764541.8294021031, 5761436.809462007], [763734.6129295283, 5761586.878256776]]}, "properties": {"id": "7411", "from": "535080931", "to": "1856653135", "length_m": 821.0475472306699, "freespeed_mps": 27.77777777777778, "capacity_vph": 1800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[764541.8294021031, 5761436.809462007], [769540.25556486, 5760534.010715193]]}, "properties": {"id": "7412", "from": "535080931", "to": "614531246", "length_m": 5079.302078496141, "freespeed_mps": 27.77777777777778, "capacity_vph": 1800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769540.25556486, 5760534.010715193], [764541.8294021031, 5761436.809462007]]}, "properties": {"id": "7413", "from": "614531246", "to": "535080931", "length_m": 5079.302078496141, "freespeed_mps": 27.77777777777778, "capacity_vph": 1800.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837636.3370698491, 5811932.719000312], [837496.0562663705, 5811958.724975141]]}, "properties": {"id": "7421-7422-7423", "from": "268181355", "to": "3088534211", "length_m": 142.6714946012683, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837496.0562663705, 5811958.724975141], [837407.1186620704, 5811975.550458761]]}, "properties": {"id": "7424-7425", "from": "3088534211", "to": "268176964", "length_m": 90.51516122325224, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833685.0141963714, 5809758.654494615], [833540.3049243456, 5810707.200157939]]}, "properties": {"id": "7426-57093-57094-57095-57096-57097-57098-57099-57100-57101-57102-57103-57104-57105-57106-57107-57108-57109", "from": "26475876", "to": "268219446", "length_m": 999.883516642824, "freespeed_mps": 27.77777777777778, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788977.843238871, 5750871.76239402], [788981.4930288255, 5750862.962340205]]}, "properties": {"id": "7428-7429-7430", "from": "508067821", "to": "510558714", "length_m": 11.702810207712538, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788981.4930288255, 5750862.962340205], [788970.808022897, 5750864.745721301]]}, "properties": {"id": "7431-7432-7433", "from": "510558714", "to": "510175833", "length_m": 12.61013173872216, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788970.808022897, 5750864.745721301], [788977.843238871, 5750871.76239402]]}, "properties": {"id": "7434-7435-7427", "from": "510175833", "to": "508067821", "length_m": 12.020910046506062, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837639.5100051787, 5811952.393000003], [838262.156217112, 5811837.663566866]]}, "properties": {"id": "7436-7437-7438-7439-7440-7441", "from": "268181332", "to": "289870592", "length_m": 633.1371100338386, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795046.0203861399, 5757236.136668639], [794894.667357305, 5756422.839469023]]}, "properties": {"id": "7449", "from": "5320786925", "to": "510175115", "length_m": 827.2605837641936, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794894.667357305, 5756422.839469023], [795046.0203861399, 5757236.136668639]]}, "properties": {"id": "7450", "from": "510175115", "to": "5320786925", "length_m": 827.2605837641936, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792219.1126689105, 5764550.374817952], [792202.7507302337, 5764553.288129876]]}, "properties": {"id": "7452-25122", "from": "186879856", "to": "270450183", "length_m": 16.619278934944873, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768184.4690295539, 5738137.4217308285], [767993.6927770162, 5738035.504521874]]}, "properties": {"id": "7453-7455-7457-7459-7461-7463-7465-7467-7469-7471-7473-7475-7477-7479-7481-7483", "from": "5605062466", "to": "5605062319", "length_m": 234.69767689866552, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836241.1107096265, 5817349.819297614], [836228.8604716426, 5817383.343794756]]}, "properties": {"id": "747", "from": "30928482", "to": "2045235431", "length_m": 35.69257967236547, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836242.816628228, 5817391.191694821], [836260.4283536137, 5817351.410542287]]}, "properties": {"id": "748-749", "from": "2045235497", "to": "30928483", "length_m": 43.50532138288178, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767993.6927770162, 5738035.504521874], [768184.4690295539, 5738137.4217308285]]}, "properties": {"id": "7484-7482-7480-7478-7476-7474-7472-7470-7468-7466-7464-7462-7460-7458-7456-7454", "from": "5605062319", "to": "5605062466", "length_m": 234.69767689866552, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767993.6927770162, 5738035.504521874], [767991.6042474856, 5738023.973209258]]}, "properties": {"id": "7485-7487-7489-7491-7493-7495-7497", "from": "5605062319", "to": "5605062312", "length_m": 50.91567985285101, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767991.6042474856, 5738023.973209258], [767993.6927770162, 5738035.504521874]]}, "properties": {"id": "7498-7496-7494-7492-7490-7488-7486", "from": "5605062312", "to": "5605062319", "length_m": 50.91567985285101, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767991.6042474856, 5738023.973209258], [767993.6927770162, 5738035.504521874]]}, "properties": {"id": "7499", "from": "5605062312", "to": "5605062319", "length_m": 11.718921706838914, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836260.4283536137, 5817351.410542287], [836267.3905718743, 5817335.036639225]]}, "properties": {"id": "750", "from": "30928483", "to": "30928522", "length_m": 17.79261604963406, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767993.6927770162, 5738035.504521874], [767991.6042474856, 5738023.973209258]]}, "properties": {"id": "7500", "from": "5605062319", "to": "5605062312", "length_m": 11.718921706838914, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[768184.4690295539, 5738137.4217308285], [767818.6935827064, 5737838.081970976]]}, "properties": {"id": "7501-7503-7505-7507-7509-7511-7513-7515-7517-7519-7521-7523-7525-7527-7529-7531-7533-7535-7537-7539-7541-7543-7545-7547-7549-7551-7553-7555-7557-7559-7561-7563", "from": "5605062466", "to": "524151823", "length_m": 610.2661406310646, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836282.8789856674, 5817353.596642908], [836731.1986858044, 5817524.407791577]]}, "properties": {"id": "751-752-753-754-755-756-757-758", "from": "2045235436", "to": "1502841904", "length_m": 480.5703218304291, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[767818.6935827064, 5737838.081970976], [768184.4690295539, 5738137.4217308285]]}, "properties": {"id": "7564-7562-7560-7558-7556-7554-7552-7550-7548-7546-7544-7542-7540-7538-7536-7534-7532-7530-7528-7526-7524-7522-7520-7518-7516-7514-7512-7510-7508-7506-7504-7502", "from": "524151823", "to": "5605062466", "length_m": 610.2661406310646, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 0.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838617.7567029183, 5807475.840463055], [838617.8657100154, 5807527.699546196]]}, "properties": {"id": "7565-7566-7567-7568-7569", "from": "320853352", "to": "2100804683", "length_m": 54.163931422821996, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836063.3384668557, 5804121.897970949], [835971.2022724114, 5804138.614662262]]}, "properties": {"id": "7570", "from": "1712459296", "to": "825545303", "length_m": 93.64040808481752, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835971.2022724114, 5804138.614662262], [835902.91405353, 5804152.029968366]]}, "properties": {"id": "7571", "from": "825545303", "to": "825545291", "length_m": 69.59347126848846, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836066.2128686176, 5804137.825933013], [836350.8524963763, 5804088.232668992]]}, "properties": {"id": "7572-7573-7574-7575-48876-48877-48878-48879-48880-48881", "from": "1712459570", "to": "1763046594", "length_m": 289.99519584644435, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794894.667357305, 5756422.839469023], [795030.6023249429, 5755472.0156289395]]}, "properties": {"id": "7577-7579-7581-7583-8718-8707", "from": "510175115", "to": "2574037173", "length_m": 967.2892281179186, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835906.0151445933, 5804168.549133418], [835962.0685781857, 5804157.591869753]]}, "properties": {"id": "7585", "from": "825545062", "to": "825545647", "length_m": 57.11435040164674, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835962.0685781857, 5804157.591869753], [836066.2128686176, 5804137.825933013]]}, "properties": {"id": "7586", "from": "825545647", "to": "1712459570", "length_m": 106.00342163439733, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[783692.2880987604, 5762833.403781643], [782097.7264761489, 5763134.096675325]]}, "properties": {"id": "759", "from": "616999271", "to": "476151607", "length_m": 1622.6653920859294, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792593.3567091885, 5757702.230488126], [795046.0203861399, 5757236.136668639]]}, "properties": {"id": "7596", "from": "510175008", "to": "5320786925", "length_m": 2496.558137466194, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795046.0203861399, 5757236.136668639], [792593.3567091885, 5757702.230488126]]}, "properties": {"id": "7597", "from": "5320786925", "to": "510175008", "length_m": 2496.558137466194, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731932.912737311, 5707256.270641802], [732072.1405797028, 5706548.412548565]]}, "properties": {"id": "7598-7600-7602-7604-7606-41414-41416-41418-41420-41422-41424-41426-41428-41430-41432-41434-41436", "from": "249074021", "to": "861264206", "length_m": 731.8316227973843, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782097.7264761489, 5763134.096675325], [783692.2880987604, 5762833.403781643]]}, "properties": {"id": "760", "from": "476151607", "to": "616999271", "length_m": 1622.6653920859294, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837635.2119836821, 5815015.522819051], [837675.233502741, 5814905.47594903]]}, "properties": {"id": "7608-15388", "from": "33302748", "to": "33302754", "length_m": 117.16863623364375, "freespeed_mps": 16.666666666666668, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829796.0125734959, 5821824.184299948], [829782.9540282522, 5821822.1934585]]}, "properties": {"id": "7609-7610", "from": "2960825842", "to": "2960825844", "length_m": 13.384002898978192, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782097.7264761489, 5763134.096675325], [781501.9881138932, 5763244.364797217]]}, "properties": {"id": "761-763-765-767-769-771-773-775-777-779-781-783-785-787-789-791-793-795-797-799", "from": "476151607", "to": "1835206842", "length_m": 623.8135745136797, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829796.0125734959, 5821824.184299948], [829787.1777867177, 5821847.407878037]]}, "properties": {"id": "7611-7612-7613-7614", "from": "2960825842", "to": "605209721", "length_m": 31.46155062111994, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793800.3657867633, 5772515.147416129], [793802.0574451623, 5772524.300171909]]}, "properties": {"id": "7615-7616", "from": "3957457797", "to": "3957457792", "length_m": 9.308672499308553, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817778.5567941092, 5821916.098451991], [817806.4956746385, 5822088.764938584]]}, "properties": {"id": "7629-7630-7631", "from": "1412762902", "to": "303686090", "length_m": 174.96112600270325, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838617.8657100154, 5807527.699546196], [838656.1067934013, 5807663.354641225]]}, "properties": {"id": "7634-7635", "from": "2100804683", "to": "2100804675", "length_m": 140.94228753808284, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793802.0574451623, 5772524.300171909], [793853.1507578699, 5772791.123493175]]}, "properties": {"id": "7636-7637-7638-18686-18687", "from": "3957457792", "to": "250444530", "length_m": 271.67426500115016, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789655.0642847737, 5754960.541641], [790533.0064540841, 5755620.299590529]]}, "properties": {"id": "7645-30728-30730-30732-30734-30736-30738-30740-30742", "from": "2833528508", "to": "512196786", "length_m": 1139.778148484433, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789655.0642847737, 5754960.541641], [788709.0735785139, 5754294.815039228]]}, "properties": {"id": "7646-7670-7672-7674", "from": "2833528508", "to": "510174776", "length_m": 1157.8067176809266, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838656.1067934013, 5807663.354641225], [838617.7567029183, 5807475.840463055]]}, "properties": {"id": "7654-7655-7656-7632-7633", "from": "2100804675", "to": "320853352", "length_m": 191.61832882874535, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788709.0735785139, 5754294.815039228], [789655.0642847737, 5754960.541641]]}, "properties": {"id": "7675-7673-7671-7647", "from": "510174776", "to": "2833528508", "length_m": 1157.8067176809266, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793449.7287163507, 5768833.146242249], [793676.6114116593, 5769521.545850031]]}, "properties": {"id": "7679-7680-7681-7682-7683-7684-7685-7686-7687-24800-24801-24802-24803-24804-14651-24792", "from": "880526853(1)", "to": "880526921", "length_m": 676.9998111854117, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791654.3485565202, 5753529.3824169235], [791734.22973693, 5753640.209481127]]}, "properties": {"id": "7690-7692-7694-7696", "from": "512198151", "to": "510173184", "length_m": 143.41519094446735, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791734.22973693, 5753640.209481127], [791654.3485565202, 5753529.3824169235]]}, "properties": {"id": "7697-7695-7693-7691", "from": "510173184", "to": "512198151", "length_m": 143.41519094446735, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791734.22973693, 5753640.209481127], [791747.6125114566, 5753708.3478501905]]}, "properties": {"id": "7698", "from": "510173184", "to": "510174353", "length_m": 69.4401612024075, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791747.6125114566, 5753708.3478501905], [791734.22973693, 5753640.209481127]]}, "properties": {"id": "7699", "from": "510174353", "to": "510173184", "length_m": 69.4401612024075, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791747.6125114566, 5753708.3478501905], [791751.8945354412, 5753734.023616008]]}, "properties": {"id": "7700", "from": "510174353", "to": "510174122", "length_m": 26.030379922742874, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791751.8945354412, 5753734.023616008], [791747.6125114566, 5753708.3478501905]]}, "properties": {"id": "7701", "from": "510174122", "to": "510174353", "length_m": 26.030379922742874, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791751.8945354412, 5753734.023616008], [791751.3165196503, 5753857.073134729]]}, "properties": {"id": "7702-7704-7706", "from": "510174122", "to": "510173213", "length_m": 126.91943678832939, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791751.3165196503, 5753857.073134729], [791751.8945354412, 5753734.023616008]]}, "properties": {"id": "7707-7705-7703", "from": "510173213", "to": "510174122", "length_m": 126.91943678832939, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791751.3165196503, 5753857.073134729], [791539.5070823702, 5753889.557479992]]}, "properties": {"id": "7708-7710-7712-7714-7716-7718", "from": "510173213", "to": "510173298", "length_m": 221.11197641138554, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791539.5070823702, 5753889.557479992], [791751.3165196503, 5753857.073134729]]}, "properties": {"id": "7719-7717-7715-7713-7711-7709", "from": "510173298", "to": "510173213", "length_m": 221.11197641138554, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791539.5070823702, 5753889.557479992], [791444.8268799379, 5753904.791997131]]}, "properties": {"id": "7720", "from": "510173298", "to": "510172328", "length_m": 95.89802502512728, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791444.8268799379, 5753904.791997131], [791539.5070823702, 5753889.557479992]]}, "properties": {"id": "7721", "from": "510172328", "to": "510173298", "length_m": 95.89802502512728, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791444.8268799379, 5753904.791997131], [791376.2583363515, 5753915.148120197]]}, "properties": {"id": "7722-7724", "from": "510172328", "to": "510173363", "length_m": 69.72069456408624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791376.2583363515, 5753915.148120197], [791444.8268799379, 5753904.791997131]]}, "properties": {"id": "7725-7723", "from": "510173363", "to": "510172328", "length_m": 69.72069456408624, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791376.2583363515, 5753915.148120197], [791310.2439620972, 5753886.85476343]]}, "properties": {"id": "7726", "from": "510173363", "to": "510173401", "length_m": 71.8220829678178, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791310.2439620972, 5753886.85476343], [791376.2583363515, 5753915.148120197]]}, "properties": {"id": "7727", "from": "510173401", "to": "510173363", "length_m": 71.8220829678178, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791310.2439620972, 5753886.85476343], [791265.958901906, 5753834.147007788]]}, "properties": {"id": "7728-7730-7732", "from": "510173401", "to": "510173431", "length_m": 72.18755407256054, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791265.958901906, 5753834.147007788], [791310.2439620972, 5753886.85476343]]}, "properties": {"id": "7733-7731-7729", "from": "510173431", "to": "510173401", "length_m": 72.18755407256054, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791265.958901906, 5753834.147007788], [791239.9572615933, 5753735.06477427]]}, "properties": {"id": "7734-7736", "from": "510173431", "to": "510173498", "length_m": 102.4690035278713, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791239.9572615933, 5753735.06477427], [791265.958901906, 5753834.147007788]]}, "properties": {"id": "7737-7735", "from": "510173498", "to": "510173431", "length_m": 102.4690035278713, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791747.6125114566, 5753708.3478501905], [791840.2728573969, 5753692.2933902405]]}, "properties": {"id": "7738", "from": "510174353", "to": "510174385", "length_m": 94.04087066059003, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791840.2728573969, 5753692.2933902405], [791747.6125114566, 5753708.3478501905]]}, "properties": {"id": "7739", "from": "510174385", "to": "510174353", "length_m": 94.04087066059003, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834027.7866649952, 5817625.939208036], [834028.4046544645, 5817641.403026483]]}, "properties": {"id": "7740", "from": "601357373", "to": "601357359", "length_m": 15.476162058217357, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834028.4046544645, 5817641.403026483], [834027.7866649952, 5817625.939208036]]}, "properties": {"id": "7741", "from": "601357359", "to": "601357373", "length_m": 15.476162058217357, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789979.6025029168, 5752524.9133673115], [790493.8848355606, 5752429.230771815]]}, "properties": {"id": "7742", "from": "510173165", "to": "510173177", "length_m": 523.1075182000272, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790493.8848355606, 5752429.230771815], [789979.6025029168, 5752524.9133673115]]}, "properties": {"id": "7743", "from": "510173177", "to": "510173165", "length_m": 523.1075182000272, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791634.7144673116, 5753719.775298459], [791734.22973693, 5753640.209481127]]}, "properties": {"id": "7753-7755-7757-7759-7761", "from": "510174329", "to": "510173184", "length_m": 137.86987202402244, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791734.22973693, 5753640.209481127], [791634.7144673116, 5753719.775298459]]}, "properties": {"id": "7762-7760-7758-7756-7754", "from": "510173184", "to": "510174329", "length_m": 137.86987202402244, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791204.4390411105, 5753742.548454266], [791184.2505257475, 5753658.939097893]]}, "properties": {"id": "7770", "from": "510173530", "to": "512198983", "length_m": 86.01221201086707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791184.2505257475, 5753658.939097893], [791204.4390411105, 5753742.548454266]]}, "properties": {"id": "7771", "from": "512198983", "to": "510173530", "length_m": 86.01221201086707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791184.2505257475, 5753658.939097893], [791172.5823295376, 5753605.665328863]]}, "properties": {"id": "7772", "from": "512198983", "to": "512198428", "length_m": 54.53660481388239, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791172.5823295376, 5753605.665328863], [791184.2505257475, 5753658.939097893]]}, "properties": {"id": "7773", "from": "512198428", "to": "512198983", "length_m": 54.53660481388239, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791172.5823295376, 5753605.665328863], [791161.7455350058, 5753558.685778785]]}, "properties": {"id": "7774", "from": "512198428", "to": "510173557", "length_m": 48.21321642319455, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791161.7455350058, 5753558.685778785], [791172.5823295376, 5753605.665328863]]}, "properties": {"id": "7775", "from": "510173557", "to": "512198428", "length_m": 48.21321642319455, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791161.7455350058, 5753558.685778785], [791126.8189392092, 5753462.403917573]]}, "properties": {"id": "7776-7778-7780", "from": "510173557", "to": "510173768", "length_m": 102.94754176384482, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791126.8189392092, 5753462.403917573], [791161.7455350058, 5753558.685778785]]}, "properties": {"id": "7781-7779-7777", "from": "510173768", "to": "510173557", "length_m": 102.94754176384482, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791751.8945354412, 5753734.023616008], [791628.3370956734, 5753807.911805646]]}, "properties": {"id": "7782-7784-7786-7788-7790", "from": "510174122", "to": "510174232", "length_m": 149.49215665940645, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791628.3370956734, 5753807.911805646], [791751.8945354412, 5753734.023616008]]}, "properties": {"id": "7791-7789-7787-7785-7783", "from": "510174232", "to": "510174122", "length_m": 149.49215665940645, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790922.0994026486, 5753597.516069159], [790979.3575253708, 5753530.73132175]]}, "properties": {"id": "7792-7794-7796", "from": "510173805", "to": "510173937", "length_m": 87.97274541830961, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790979.3575253708, 5753530.73132175], [790922.0994026486, 5753597.516069159]]}, "properties": {"id": "7797-7795-7793", "from": "510173937", "to": "510173805", "length_m": 87.97274541830961, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790979.3575253708, 5753530.73132175], [791037.7290587164, 5753492.659427126]]}, "properties": {"id": "7798-7800-7802", "from": "510173937", "to": "510174036", "length_m": 69.91892106174748, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[761773.722409228, 5763224.487367583], [761748.4776480645, 5763268.691612593]]}, "properties": {"id": "78-79-80", "from": "559370730", "to": "559370738", "length_m": 52.18593515230306, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791037.7290587164, 5753492.659427126], [790979.3575253708, 5753530.73132175]]}, "properties": {"id": "7803-7801-7799", "from": "510174036", "to": "510173937", "length_m": 69.91892106174748, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791037.7290587164, 5753492.659427126], [791126.8189392092, 5753462.403917573]]}, "properties": {"id": "7804-7806-7808", "from": "510174036", "to": "510173768", "length_m": 94.18863850464975, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791126.8189392092, 5753462.403917573], [791037.7290587164, 5753492.659427126]]}, "properties": {"id": "7809-7807-7805", "from": "510173768", "to": "510174036", "length_m": 94.18863850464975, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791126.8189392092, 5753462.403917573], [791147.2001829317, 5753448.475520755]]}, "properties": {"id": "7810", "from": "510173768", "to": "512197939", "length_m": 24.6859339204576, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791147.2001829317, 5753448.475520755], [791126.8189392092, 5753462.403917573]]}, "properties": {"id": "7811", "from": "512197939", "to": "510173768", "length_m": 24.6859339204576, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791147.2001829317, 5753448.475520755], [791221.9566398622, 5753423.837645143]]}, "properties": {"id": "7812-7814", "from": "512197939", "to": "512197958", "length_m": 79.00833268212594, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791221.9566398622, 5753423.837645143], [791147.2001829317, 5753448.475520755]]}, "properties": {"id": "7815-7813", "from": "512197958", "to": "512197939", "length_m": 79.00833268212594, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791221.9566398622, 5753423.837645143], [791355.3014450624, 5753373.50963489]]}, "properties": {"id": "7816-7818-7820", "from": "512197958", "to": "512197970", "length_m": 142.8899792873452, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791355.3014450624, 5753373.50963489], [791221.9566398622, 5753423.837645143]]}, "properties": {"id": "7821-7819-7817", "from": "512197970", "to": "512197958", "length_m": 142.8899792873452, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791355.3014450624, 5753373.50963489], [791460.5195251406, 5753256.506903434]]}, "properties": {"id": "7822-7824-7826", "from": "512197970", "to": "512197989", "length_m": 157.85112837109386, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791460.5195251406, 5753256.506903434], [791355.3014450624, 5753373.50963489]]}, "properties": {"id": "7827-7825-7823", "from": "512197989", "to": "512197970", "length_m": 157.85112837109386, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790265.6256255661, 5752982.437450363], [790242.6673800835, 5752861.937212239]]}, "properties": {"id": "7828", "from": "510172866", "to": "512196731", "length_m": 122.66779693460539, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790242.6673800835, 5752861.937212239], [790265.6256255661, 5752982.437450363]]}, "properties": {"id": "7829", "from": "512196731", "to": "510172866", "length_m": 122.66779693460539, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790242.6673800835, 5752861.937212239], [790224.3932384045, 5752765.031297897]]}, "properties": {"id": "7830", "from": "512196731", "to": "510172901", "length_m": 98.61389597299302, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790224.3932384045, 5752765.031297897], [790242.6673800835, 5752861.937212239]]}, "properties": {"id": "7831", "from": "510172901", "to": "512196731", "length_m": 98.61389597299302, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790206.8645727546, 5753199.528251291], [790187.133552404, 5753100.574043072]]}, "properties": {"id": "7832-7834", "from": "2315693194", "to": "510172986", "length_m": 100.90261220496329, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790187.133552404, 5753100.574043072], [790206.8645727546, 5753199.528251291]]}, "properties": {"id": "7835-7833", "from": "510172986", "to": "2315693194", "length_m": 100.90261220496329, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790187.133552404, 5753100.574043072], [790169.343709733, 5753001.538885217]]}, "properties": {"id": "7836", "from": "510172986", "to": "510172965", "length_m": 100.62028117788587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790169.343709733, 5753001.538885217], [790187.133552404, 5753100.574043072]]}, "properties": {"id": "7837", "from": "510172965", "to": "510172986", "length_m": 100.62028117788587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758826.6881441276, 5762506.929853397], [759204.7394419289, 5763798.562376358]]}, "properties": {"id": "7838-7840-7842-7844-7846-7848-7850", "from": "1012039865", "to": "1743089371", "length_m": 1421.801437790277, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759204.7394419289, 5763798.562376358], [758826.6881441276, 5762506.929853397]]}, "properties": {"id": "7851-7849-7847-7845-7843-7841-7839", "from": "1743089371", "to": "1012039865", "length_m": 1421.801437790277, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759204.7394419289, 5763798.562376358], [759330.0993331124, 5764358.94073809]]}, "properties": {"id": "7852-7854-7856-7858-7860-7862", "from": "1743089371", "to": "1012039850", "length_m": 582.9793092639425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759330.0993331124, 5764358.94073809], [759204.7394419289, 5763798.562376358]]}, "properties": {"id": "7863-7861-7859-7857-7855-7853", "from": "1012039850", "to": "1743089371", "length_m": 582.9793092639425, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791277.2797567027, 5777124.890286564], [791256.2845936441, 5777151.427116953]]}, "properties": {"id": "7868-7869", "from": "318028180", "to": "318028182", "length_m": 33.84257451662589, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790049.5934782743, 5752898.300832069], [790242.6673800835, 5752861.937212239]]}, "properties": {"id": "7870", "from": "510172769", "to": "512196731", "length_m": 196.46843066510553, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790242.6673800835, 5752861.937212239], [790049.5934782743, 5752898.300832069]]}, "properties": {"id": "7871", "from": "512196731", "to": "510172769", "length_m": 196.46843066510553, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790242.6673800835, 5752861.937212239], [790563.5304820155, 5752802.8173892]]}, "properties": {"id": "7872", "from": "512196731", "to": "512196730", "length_m": 326.2641310371392, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790563.5304820155, 5752802.8173892], [790242.6673800835, 5752861.937212239]]}, "properties": {"id": "7873", "from": "512196730", "to": "512196731", "length_m": 326.2641310371392, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790563.5304820155, 5752802.8173892], [790747.8844693546, 5752768.011301217]]}, "properties": {"id": "7874", "from": "512196730", "to": "510172840", "length_m": 187.61091720871585, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790747.8844693546, 5752768.011301217], [790563.5304820155, 5752802.8173892]]}, "properties": {"id": "7875", "from": "510172840", "to": "512196730", "length_m": 187.61091720871585, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751470.3213642278, 5759497.987423494], [751477.4914358857, 5759537.603940264]]}, "properties": {"id": "7876", "from": "1012039873", "to": "5817935479", "length_m": 40.26013322264385, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751477.4914358857, 5759537.603940264], [751470.3213642278, 5759497.987423494]]}, "properties": {"id": "7877", "from": "5817935479", "to": "1012039873", "length_m": 40.26013322264385, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751477.4914358857, 5759537.603940264], [752071.8064087746, 5762822.998821889]]}, "properties": {"id": "7878-7880", "from": "5817935479", "to": "2106853864", "length_m": 3338.716790849029, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752071.8064087746, 5762822.998821889], [751477.4914358857, 5759537.603940264]]}, "properties": {"id": "7881-7879", "from": "2106853864", "to": "5817935479", "length_m": 3338.716790849029, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752071.8064087746, 5762822.998821889], [752180.2925604396, 5763422.623037493]]}, "properties": {"id": "7882", "from": "2106853864", "to": "1012039852", "length_m": 609.3590442744504, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752180.2925604396, 5763422.623037493], [752071.8064087746, 5762822.998821889]]}, "properties": {"id": "7883", "from": "1012039852", "to": "2106853864", "length_m": 609.3590442744504, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752180.2925604396, 5763422.623037493], [752288.4475226835, 5764026.445136943]]}, "properties": {"id": "7884", "from": "1012039852", "to": "1012039874", "length_m": 613.4318409114783, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752288.4475226835, 5764026.445136943], [752180.2925604396, 5763422.623037493]]}, "properties": {"id": "7885", "from": "1012039874", "to": "1012039852", "length_m": 613.4318409114783, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752288.4475226835, 5764026.445136943], [752611.7554593919, 5765850.941078944]]}, "properties": {"id": "7886", "from": "1012039874", "to": "1012039856", "length_m": 1852.920252589995, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752611.7554593919, 5765850.941078944], [752288.4475226835, 5764026.445136943]]}, "properties": {"id": "7887", "from": "1012039856", "to": "1012039874", "length_m": 1852.920252589995, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752611.7554593919, 5765850.941078944], [752712.422325917, 5766399.578115652]]}, "properties": {"id": "7888", "from": "1012039856", "to": "1012039835", "length_m": 557.7960343112587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752712.422325917, 5766399.578115652], [752611.7554593919, 5765850.941078944]]}, "properties": {"id": "7889", "from": "1012039835", "to": "1012039856", "length_m": 557.7960343112587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752712.422325917, 5766399.578115652], [752950.3375940288, 5767662.765761363]]}, "properties": {"id": "7890-7892-7894-7896", "from": "1012039835", "to": "1012039836", "length_m": 1286.7586449065436, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752950.3375940288, 5767662.765761363], [752712.422325917, 5766399.578115652]]}, "properties": {"id": "7897-7895-7893-7891", "from": "1012039836", "to": "1012039835", "length_m": 1286.7586449065436, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[752180.2925604396, 5763422.623037493], [753567.1696542065, 5763172.861101316]]}, "properties": {"id": "7898", "from": "1012039852", "to": "5605052097", "length_m": 1409.187387559087, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753567.1696542065, 5763172.861101316], [752180.2925604396, 5763422.623037493]]}, "properties": {"id": "7899", "from": "5605052097", "to": "1012039852", "length_m": 1409.187387559087, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753567.1696542065, 5763172.861101316], [754961.7166114553, 5762921.469311016]]}, "properties": {"id": "7900", "from": "5605052097", "to": "1012039848", "length_m": 1417.024715143183, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754961.7166114553, 5762921.469311016], [753567.1696542065, 5763172.861101316]]}, "properties": {"id": "7901", "from": "1012039848", "to": "5605052097", "length_m": 1417.024715143183, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754961.7166114553, 5762921.469311016], [758303.0582791984, 5762342.161209261]]}, "properties": {"id": "7902-7904-7906-7908-7910", "from": "1012039848", "to": "1012039861", "length_m": 3395.5161036801314, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758303.0582791984, 5762342.161209261], [754961.7166114553, 5762921.469311016]]}, "properties": {"id": "7911-7909-7907-7905-7903", "from": "1012039861", "to": "1012039848", "length_m": 3395.5161036801314, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758303.0582791984, 5762342.161209261], [758826.6881441276, 5762506.929853397]]}, "properties": {"id": "7912", "from": "1012039861", "to": "1012039865", "length_m": 548.9416546393082, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758826.6881441276, 5762506.929853397], [758303.0582791984, 5762342.161209261]]}, "properties": {"id": "7913", "from": "1012039865", "to": "1012039861", "length_m": 548.9416546393082, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758826.6881441276, 5762506.929853397], [758911.2569720795, 5762038.726505709]]}, "properties": {"id": "7914-7916-7918-7920-7922-7924-7926-7928-7930", "from": "1012039865", "to": "5857617067", "length_m": 483.9849961427476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758911.2569720795, 5762038.726505709], [758826.6881441276, 5762506.929853397]]}, "properties": {"id": "7931-7929-7927-7925-7923-7921-7919-7917-7915", "from": "5857617067", "to": "1012039865", "length_m": 483.9849961427476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758911.2569720795, 5762038.726505709], [758926.2829776981, 5762006.436173584]]}, "properties": {"id": "7932-7934-7936", "from": "5857617067", "to": "1096015556", "length_m": 35.93564141753233, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758926.2829776981, 5762006.436173584], [758911.2569720795, 5762038.726505709]]}, "properties": {"id": "7937-7935-7933", "from": "1096015556", "to": "5857617067", "length_m": 35.93564141753233, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790005.4004527288, 5752663.639705548], [790520.0420657897, 5752569.177072372]]}, "properties": {"id": "7938", "from": "510173127", "to": "510173156", "length_m": 523.2391210559991, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790520.0420657897, 5752569.177072372], [790005.4004527288, 5752663.639705548]]}, "properties": {"id": "7939", "from": "510173156", "to": "510173127", "length_m": 523.2391210559991, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754961.7166114553, 5762921.469311016], [755377.2079896299, 5765220.01245935]]}, "properties": {"id": "7940-7942", "from": "1012039848", "to": "1012039857", "length_m": 2335.819326096902, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755377.2079896299, 5765220.01245935], [754961.7166114553, 5762921.469311016]]}, "properties": {"id": "7943-7941", "from": "1012039857", "to": "1012039848", "length_m": 2335.819326096902, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755377.2079896299, 5765220.01245935], [755559.8553528162, 5766243.466592105]]}, "properties": {"id": "7944-7946", "from": "1012039857", "to": "916681381", "length_m": 1039.624364361103, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[755559.8553528162, 5766243.466592105], [755377.2079896299, 5765220.01245935]]}, "properties": {"id": "7947-7945", "from": "916681381", "to": "1012039857", "length_m": 1039.624364361103, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778634.1460288137, 5786300.398651317], [779016.2724485166, 5785885.331136827]]}, "properties": {"id": "7948-7958-7960", "from": "3520911304", "to": "60303855", "length_m": 564.182768053418, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790187.133552404, 5753100.574043072], [790382.7949071795, 5752962.027366301]]}, "properties": {"id": "7950-7952-7954-7956", "from": "510172986", "to": "510173099", "length_m": 318.1776567955106, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790382.7949071795, 5752962.027366301], [790187.133552404, 5753100.574043072]]}, "properties": {"id": "7957-7955-7953-7951", "from": "510173099", "to": "510172986", "length_m": 318.1776567955106, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779016.2724485166, 5785885.331136827], [778634.1460288137, 5786300.398651317]]}, "properties": {"id": "7961-7959-7949", "from": "60303855", "to": "3520911304", "length_m": 564.182768053418, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779016.2724485166, 5785885.331136827], [779485.4509375296, 5785377.191611858]]}, "properties": {"id": "7962", "from": "60303855", "to": "60303856", "length_m": 691.6171136444104, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779485.4509375296, 5785377.191611858], [779016.2724485166, 5785885.331136827]]}, "properties": {"id": "7963", "from": "60303856", "to": "60303855", "length_m": 691.6171136444104, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779485.4509375296, 5785377.191611858], [780086.2562971099, 5784711.955525137]]}, "properties": {"id": "7964-7966-7968", "from": "60303856", "to": "60303857", "length_m": 896.3861142995789, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780086.2562971099, 5784711.955525137], [779485.4509375296, 5785377.191611858]]}, "properties": {"id": "7969-7967-7965", "from": "60303857", "to": "60303856", "length_m": 896.3861142995789, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780086.2562971099, 5784711.955525137], [780628.6782010256, 5784114.729964216]]}, "properties": {"id": "7970-7972", "from": "60303857", "to": "3520907439", "length_m": 806.7836718367072, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780628.6782010256, 5784114.729964216], [780086.2562971099, 5784711.955525137]]}, "properties": {"id": "7973-7971", "from": "3520907439", "to": "60303857", "length_m": 806.7836718367072, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790683.2909606788, 5752905.436678666], [790700.6584768917, 5753005.453480356]]}, "properties": {"id": "7974", "from": "510172448", "to": "510172706", "length_m": 101.51350269446212, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790700.6584768917, 5753005.453480356], [790683.2909606788, 5752905.436678666]]}, "properties": {"id": "7975", "from": "510172706", "to": "510172448", "length_m": 101.51350269446212, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790700.6584768917, 5753005.453480356], [790719.5335190252, 5753105.504864164]]}, "properties": {"id": "7976", "from": "510172706", "to": "510172516", "length_m": 101.8162394014665, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790719.5335190252, 5753105.504864164], [790700.6584768917, 5753005.453480356]]}, "properties": {"id": "7977", "from": "510172516", "to": "510172706", "length_m": 101.8162394014665, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791099.252232005, 5754091.841093761], [791444.8268799379, 5753904.791997131]]}, "properties": {"id": "7978-7980-7982-7984-7986-7988", "from": "510172121", "to": "510172328", "length_m": 489.40425376146015, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791444.8268799379, 5753904.791997131], [791099.252232005, 5754091.841093761]]}, "properties": {"id": "7989-7987-7985-7983-7981-7979", "from": "510172328", "to": "510172121", "length_m": 489.40425376146015, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781501.9881138932, 5763244.364797217], [782097.7264761489, 5763134.096675325]]}, "properties": {"id": "800-798-796-794-792-790-788-786-784-782-780-778-776-774-772-770-768-766-764-762", "from": "1835206842", "to": "476151607", "length_m": 623.8135745136797, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793470.0323020095, 5768823.591613743], [799600.7794668928, 5768842.383132759]]}, "properties": {"id": "800000", "from": "880526853(2)", "to": "277046788(1)", "length_m": 5000.0, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799600.7794668928, 5768842.383132759], [793470.0323020095, 5768823.591613743]]}, "properties": {"id": "800001", "from": "277046788(1)", "to": "880526853(2)", "length_m": 5000.0, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[799600.7794668928, 5768842.383132759], [799610.0375305526, 5768859.602905247]]}, "properties": {"id": "800002(1)", "from": "277046788(1)", "to": "277046788(2)", "length_m": 50.0, "freespeed_mps": 11.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793470.0323020095, 5768823.591613743], [793449.7287163507, 5768833.146242249]]}, "properties": {"id": "800004(1)", "from": "880526853(2)", "to": "880526853(1)", "length_m": 50.00000000000001, "freespeed_mps": 11.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797421.4517125557, 5757015.6106647495], [797862.0696307991, 5759220.853536836]]}, "properties": {"id": "800010", "from": "2574033455", "to": "916567973", "length_m": 1000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797862.0696307991, 5759220.853536836], [797421.4517125557, 5757015.6106647495]]}, "properties": {"id": "800011", "from": "916567973", "to": "2574033455", "length_m": 1000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[797862.0696307991, 5759220.853536836], [798038.8826308153, 5760162.185087783]]}, "properties": {"id": "800012", "from": "916567973", "to": "1708194377", "length_m": 500.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798038.8826308153, 5760162.185087783], [797862.0696307991, 5759220.853536836]]}, "properties": {"id": "800013", "from": "1708194377", "to": "916567973", "length_m": 500.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798038.8826308153, 5760162.185087783], [801457.424319939, 5759140.806240022]]}, "properties": {"id": "800014", "from": "1708194377", "to": "331151419(1)", "length_m": 4999.999999999999, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801457.424319939, 5759140.806240022], [798038.8826308153, 5760162.185087783]]}, "properties": {"id": "800015", "from": "331151419(1)", "to": "1708194377", "length_m": 4999.999999999999, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804361.4077979573, 5758258.043320442], [801457.424319939, 5759140.806240022]]}, "properties": {"id": "800017(0)", "from": "80001700000090", "to": "331151419(1)", "length_m": 5000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[801457.424319939, 5759140.806240022], [804361.4077979573, 5758258.043320442]]}, "properties": {"id": "800017(2)", "from": "331151419(1)", "to": "80001700000090", "length_m": 5000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[809372.5737725361, 5759730.738132382], [804361.4077979573, 5758258.043320442]]}, "properties": {"id": "8000170000005", "from": "800017000000005", "to": "80001700000090", "length_m": 8000.000000000001, "freespeed_mps": 14.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[804361.4077979573, 5758258.043320442], [809372.5737725361, 5759730.738132382]]}, "properties": {"id": "8000170000006", "from": "80001700000090", "to": "800017000000005", "length_m": 8000.000000000001, "freespeed_mps": 14.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810019.9070225715, 5762984.081983536], [809372.5737725361, 5759730.738132382]]}, "properties": {"id": "800020", "from": "800017000011", "to": "800017000000005", "length_m": 5000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[809372.5737725361, 5759730.738132382], [810019.9070225715, 5762984.081983536]]}, "properties": {"id": "800021", "from": "800017000000005", "to": "800017000011", "length_m": 5000.0, "freespeed_mps": 27.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810072.7269992471, 5763148.939190099], [810019.9070225715, 5762984.081983536]]}, "properties": {"id": "800022", "from": "380240420", "to": "800017000011", "length_m": 50.00000000000002, "freespeed_mps": 11.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[810019.9070225715, 5762984.081983536], [810037.5282417508, 5763162.271333115]]}, "properties": {"id": "800023", "from": "800017000011", "to": "380240426", "length_m": 50.00000000000001, "freespeed_mps": 11.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[781501.9881138932, 5763244.364797217], [780560.0343553331, 5763452.976569278]]}, "properties": {"id": "801-803-805-807-809-811", "from": "1835206842", "to": "480636127", "length_m": 972.6696205809855, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790700.6584768917, 5753005.453480356], [790904.4284646369, 5752964.5762730045]]}, "properties": {"id": "8024-8026", "from": "510172706", "to": "510172738", "length_m": 208.90914455578758, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790904.4284646369, 5752964.5762730045], [790700.6584768917, 5753005.453480356]]}, "properties": {"id": "8027-8025", "from": "510172738", "to": "510172706", "length_m": 208.90914455578758, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790685.9872120136, 5752680.647074892], [790747.8844693546, 5752768.011301217]]}, "properties": {"id": "8030-8032", "from": "510172571", "to": "510172840", "length_m": 107.72585323935564, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790747.8844693546, 5752768.011301217], [790685.9872120136, 5752680.647074892]]}, "properties": {"id": "8033-8031", "from": "510172840", "to": "510172571", "length_m": 107.72585323935564, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790747.8844693546, 5752768.011301217], [790827.120755098, 5752882.625576702]]}, "properties": {"id": "8034", "from": "510172840", "to": "512196732", "length_m": 139.33707698461546, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790827.120755098, 5752882.625576702], [790747.8844693546, 5752768.011301217]]}, "properties": {"id": "8035", "from": "512196732", "to": "510172840", "length_m": 139.33707698461546, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790827.120755098, 5752882.625576702], [790904.4284646369, 5752964.5762730045]]}, "properties": {"id": "8036-8038", "from": "512196732", "to": "510172738", "length_m": 112.93758129365587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790904.4284646369, 5752964.5762730045], [790827.120755098, 5752882.625576702]]}, "properties": {"id": "8039-8037", "from": "510172738", "to": "512196732", "length_m": 112.93758129365587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790904.4284646369, 5752964.5762730045], [790995.8315068836, 5753054.209488024]]}, "properties": {"id": "8040-8042-8044", "from": "510172738", "to": "510172682", "length_m": 129.20780624708777, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790995.8315068836, 5753054.209488024], [790904.4284646369, 5752964.5762730045]]}, "properties": {"id": "8045-8043-8041", "from": "510172682", "to": "510172738", "length_m": 129.20780624708777, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790447.9883118743, 5752168.7575142635], [790357.7680962591, 5752186.943671391]]}, "properties": {"id": "8049-8051", "from": "510171852", "to": "510171714", "length_m": 92.03569132721057, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790357.7680962591, 5752186.943671391], [790447.9883118743, 5752168.7575142635]]}, "properties": {"id": "8052-8050", "from": "510171714", "to": "510171852", "length_m": 92.03569132721057, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790357.7680962591, 5752186.943671391], [789931.2758940725, 5752266.271063677]]}, "properties": {"id": "8053-8055-8057-8059", "from": "510171714", "to": "270452270", "length_m": 433.8069581064203, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789931.2758940725, 5752266.271063677], [790357.7680962591, 5752186.943671391]]}, "properties": {"id": "8060-8058-8056-8054", "from": "270452270", "to": "510171714", "length_m": 433.8069581064203, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790316.0569810831, 5751949.948951881], [790335.1972124798, 5752067.252123432]]}, "properties": {"id": "8061", "from": "2315614119", "to": "512196734", "length_m": 118.85445932477707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790335.1972124798, 5752067.252123432], [790316.0569810831, 5751949.948951881]]}, "properties": {"id": "8062", "from": "512196734", "to": "2315614119", "length_m": 118.85445932477707, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790335.1972124798, 5752067.252123432], [790357.7680962591, 5752186.943671391]]}, "properties": {"id": "8063-8065", "from": "512196734", "to": "510171714", "length_m": 121.8026919649115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790357.7680962591, 5752186.943671391], [790335.1972124798, 5752067.252123432]]}, "properties": {"id": "8066-8064", "from": "510171714", "to": "512196734", "length_m": 121.8026919649115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790447.9883118743, 5752168.7575142635], [790469.3649510584, 5752283.923823569]]}, "properties": {"id": "8068", "from": "510171852", "to": "510558639", "length_m": 117.13342600294547, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790469.3649510584, 5752283.923823569], [790447.9883118743, 5752168.7575142635]]}, "properties": {"id": "8069", "from": "510558639", "to": "510171852", "length_m": 117.13342600294547, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790784.586066827, 5752228.274865853], [790726.1319844492, 5752239.518098917]]}, "properties": {"id": "8070", "from": "510171813", "to": "5678574451", "length_m": 59.52554092071079, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790726.1319844492, 5752239.518098917], [790784.586066827, 5752228.274865853]]}, "properties": {"id": "8071", "from": "5678574451", "to": "510171813", "length_m": 59.52554092071079, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790726.1319844492, 5752239.518098917], [790666.3476100529, 5752251.020008919]]}, "properties": {"id": "8072", "from": "5678574451", "to": "510171673", "length_m": 60.88074688393039, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790666.3476100529, 5752251.020008919], [790726.1319844492, 5752239.518098917]]}, "properties": {"id": "8073", "from": "510171673", "to": "5678574451", "length_m": 60.88074688393039, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790666.3476100529, 5752251.020008919], [790598.3594935518, 5752263.972931435]]}, "properties": {"id": "8074-8076", "from": "510171673", "to": "510171675", "length_m": 69.21099748968417, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790598.3594935518, 5752263.972931435], [790666.3476100529, 5752251.020008919]]}, "properties": {"id": "8077-8075", "from": "510171675", "to": "510171673", "length_m": 69.21099748968417, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790598.3594935518, 5752263.972931435], [790477.2289539655, 5752289.086777283]]}, "properties": {"id": "8078-8080-8082", "from": "510171675", "to": "510558574", "length_m": 123.8328858075374, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790477.2289539655, 5752289.086777283], [790598.3594935518, 5752263.972931435]]}, "properties": {"id": "8083-8081-8079", "from": "510558574", "to": "510171675", "length_m": 123.8328858075374, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790423.4319204593, 5751459.376043234], [790426.3839960112, 5751469.639631448]]}, "properties": {"id": "8084", "from": "510171623", "to": "510558231", "length_m": 10.679700045964205, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790426.3839960112, 5751469.639631448], [790432.680787195, 5751506.902339065]]}, "properties": {"id": "8085", "from": "510558231", "to": "518638174", "length_m": 37.790990419528065, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790432.680787195, 5751506.902339065], [790448.1668645529, 5751587.3587915115]]}, "properties": {"id": "8086", "from": "518638174", "to": "518638236", "length_m": 81.93326139420955, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790448.1668645529, 5751587.3587915115], [790464.7851009927, 5751679.555910474]]}, "properties": {"id": "8087", "from": "518638236", "to": "510559279", "length_m": 93.68284004058002, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789981.1621693622, 5751901.766890659], [790366.4282338871, 5751829.754471624]]}, "properties": {"id": "8088", "from": "510171574", "to": "510171596", "length_m": 391.93842415959614, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790366.4282338871, 5751829.754471624], [789981.1621693622, 5751901.766890659]]}, "properties": {"id": "8089", "from": "510171596", "to": "510171574", "length_m": 391.93842415959614, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790666.3476100529, 5752251.020008919], [790649.1156892753, 5752161.546041556]]}, "properties": {"id": "8090-8092-8094", "from": "510171673", "to": "5678574449", "length_m": 91.11943294537835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790649.1156892753, 5752161.546041556], [790666.3476100529, 5752251.020008919]]}, "properties": {"id": "8095-8093-8091", "from": "5678574449", "to": "510171673", "length_m": 91.11943294537835, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790649.1156892753, 5752161.546041556], [790580.0819130163, 5752165.622661791]]}, "properties": {"id": "8096-54917-54919", "from": "5678574449", "to": "510171674", "length_m": 75.45567075520269, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790580.0819130163, 5752165.622661791], [790598.3594935518, 5752263.972931435]]}, "properties": {"id": "8098-8100-8102-8104-8106", "from": "510171674", "to": "510171675", "length_m": 100.04072869733602, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790598.3594935518, 5752263.972931435], [790580.0819130163, 5752165.622661791]]}, "properties": {"id": "8107-8105-8103-8101-8099", "from": "510171675", "to": "510171674", "length_m": 100.04072869733602, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790522.9182062058, 5751911.29062555], [790491.7019565206, 5752038.243140384]]}, "properties": {"id": "8108-10885", "from": "510171662", "to": "510171670", "length_m": 170.41096788515236, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790491.7019565206, 5752038.243140384], [790335.1972124798, 5752067.252123432]]}, "properties": {"id": "8112", "from": "510171670", "to": "512196734", "length_m": 159.1705246001572, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790335.1972124798, 5752067.252123432], [790491.7019565206, 5752038.243140384]]}, "properties": {"id": "8113", "from": "512196734", "to": "510171670", "length_m": 159.1705246001572, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790335.1972124798, 5752067.252123432], [789909.067044357, 5752146.488100954]]}, "properties": {"id": "8114-8116", "from": "512196734", "to": "510171672", "length_m": 433.43428368460053, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789909.067044357, 5752146.488100954], [790335.1972124798, 5752067.252123432]]}, "properties": {"id": "8117-8115", "from": "510171672", "to": "512196734", "length_m": 433.43428368460053, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834443.7956112371, 5812953.640115054], [834388.7734815119, 5812882.900868851]]}, "properties": {"id": "8118-8119-8120-8121", "from": "268219074", "to": "268170277", "length_m": 89.99887116320811, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780560.0343553331, 5763452.976569278], [781501.9881138932, 5763244.364797217]]}, "properties": {"id": "812-810-808-806-804-802", "from": "480636127", "to": "1835206842", "length_m": 972.6696205809855, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791133.0059356494, 5776834.065884154], [791043.5949965888, 5777271.8062144825]]}, "properties": {"id": "8122-8123-8124-8125-8126-8127-8128-8129", "from": "639606175", "to": "334409508", "length_m": 450.5563019334434, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780560.0343553331, 5763452.976569278], [780539.5773407002, 5763473.266779754]]}, "properties": {"id": "813-815", "from": "480636127", "to": "475483153", "length_m": 28.844583458354034, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834275.9068943686, 5812943.4501140695], [834542.1590923003, 5813110.826070331]]}, "properties": {"id": "8130-8131-8132-8133-8134", "from": "268218863", "to": "4989023975", "length_m": 316.10086138827535, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784010.9739709505, 5780359.6020880565], [783896.9249654983, 5780492.493044929]]}, "properties": {"id": "8135-8136-8137-8138-8139", "from": "4451687166", "to": "318039525", "length_m": 175.82278413831907, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834574.894702612, 5813076.893429015], [834465.4634647281, 5812982.269832222]]}, "properties": {"id": "8140-8141", "from": "268219071", "to": "268219073", "length_m": 144.9809787923739, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834542.1590923003, 5813110.826070331], [834634.6252867342, 5813148.307546269]]}, "properties": {"id": "8142-8143", "from": "4989023975", "to": "268218803", "length_m": 99.98510333613393, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778245.5514273599, 5744212.544850425], [778232.9970431023, 5744189.363492939]]}, "properties": {"id": "8144-8146", "from": "294984815", "to": "4763108782", "length_m": 26.367639627083708, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778232.9970431023, 5744189.363492939], [778245.5514273599, 5744212.544850425]]}, "properties": {"id": "8147-8145", "from": "4763108782", "to": "294984815", "length_m": 26.367639627083708, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778232.9970431023, 5744189.363492939], [778223.6321256177, 5744152.713746558]]}, "properties": {"id": "8148-8150", "from": "4763108782", "to": "289545826", "length_m": 37.92170989361502, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778223.6321256177, 5744152.713746558], [778232.9970431023, 5744189.363492939]]}, "properties": {"id": "8151-8149", "from": "289545826", "to": "4763108782", "length_m": 37.92170989361502, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778223.6321256177, 5744152.713746558], [778221.0363230378, 5744107.239384856]]}, "properties": {"id": "8152", "from": "289545826", "to": "37684542", "length_m": 45.548389257799045, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778221.0363230378, 5744107.239384856], [778223.6321256177, 5744152.713746558]]}, "properties": {"id": "8153", "from": "37684542", "to": "289545826", "length_m": 45.548389257799045, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778221.0363230378, 5744107.239384856], [778221.501674906, 5744082.263033518]]}, "properties": {"id": "8154", "from": "37684542", "to": "1851185089", "length_m": 24.980686114974027, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778221.501674906, 5744082.263033518], [778221.0363230378, 5744107.239384856]]}, "properties": {"id": "8155", "from": "1851185089", "to": "37684542", "length_m": 24.980686114974027, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778221.501674906, 5744082.263033518], [778234.6921294122, 5743946.359055776]]}, "properties": {"id": "8156-8158-8160", "from": "1851185089", "to": "1851185093", "length_m": 136.5425924758278, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780539.5773407002, 5763473.266779754], [780560.0343553331, 5763452.976569278]]}, "properties": {"id": "816-814", "from": "475483153", "to": "480636127", "length_m": 28.844583458354034, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778234.6921294122, 5743946.359055776], [778221.501674906, 5744082.263033518]]}, "properties": {"id": "8161-8159-8157", "from": "1851185093", "to": "1851185089", "length_m": 136.5425924758278, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778234.6921294122, 5743946.359055776], [778261.8420660247, 5743835.865886819]]}, "properties": {"id": "8162-8164-8166-8168-8170", "from": "1851185093", "to": "37684518", "length_m": 114.43957861905777, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836189.5358583229, 5817348.765816394], [836241.1107096265, 5817349.819297614]]}, "properties": {"id": "817-818-819", "from": "268386958", "to": "30928482", "length_m": 51.62540588660455, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778261.8420660247, 5743835.865886819], [778234.6921294122, 5743946.359055776]]}, "properties": {"id": "8171-8169-8167-8165-8163", "from": "37684518", "to": "1851185093", "length_m": 114.43957861905777, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778261.8420660247, 5743835.865886819], [778321.9318790442, 5743748.681936831]]}, "properties": {"id": "8172", "from": "37684518", "to": "289884820", "length_m": 105.88591401687816, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778321.9318790442, 5743748.681936831], [778261.8420660247, 5743835.865886819]]}, "properties": {"id": "8173", "from": "289884820", "to": "37684518", "length_m": 105.88591401687816, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778321.9318790442, 5743748.681936831], [778311.1316607455, 5743505.287024982]]}, "properties": {"id": "8174-8176-8178-8180-8182-8184-8186-8188-8190-8192-8194-8196-8198", "from": "289884820", "to": "289885407", "length_m": 200.0, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778311.1316607455, 5743505.287024982], [778321.9318790442, 5743748.681936831]]}, "properties": {"id": "8199-8197-8195-8193-8191-8189-8187-8185-8183-8181-8179-8177-8175", "from": "289885407", "to": "289884820", "length_m": 200.0, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836241.1107096265, 5817349.819297614], [836260.4283536137, 5817351.410542287]]}, "properties": {"id": "820", "from": "30928482", "to": "30928483", "length_m": 19.383070603212953, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778311.1316607455, 5743505.287024982], [778106.7005339796, 5743434.176835236]]}, "properties": {"id": "8200-8202-8204-8206-8208-8210-8212", "from": "289885407", "to": "37684442", "length_m": 217.57541733018724, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778106.7005339796, 5743434.176835236], [778311.1316607455, 5743505.287024982]]}, "properties": {"id": "8213-8211-8209-8207-8205-8203-8201", "from": "37684442", "to": "289885407", "length_m": 217.57541733018724, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778106.7005339796, 5743434.176835236], [777694.4066064168, 5743126.374281386]]}, "properties": {"id": "8214-8216-8218-8220-8222-8224-8226-8228-8230-8232", "from": "37684442", "to": "294977513", "length_m": 535.4605201587868, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777694.4066064168, 5743126.374281386], [778106.7005339796, 5743434.176835236]]}, "properties": {"id": "8233-8231-8229-8227-8225-8223-8221-8219-8217-8215", "from": "294977513", "to": "37684442", "length_m": 535.4605201587868, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777694.4066064168, 5743126.374281386], [777360.4358413843, 5742931.817626092]]}, "properties": {"id": "8234-8236-8238-8240-8242-8244-8246-8248-8250-8252-8254-8256-8258-8260-8262-8264-8266-8268-8270-8272-8274-8276", "from": "294977513", "to": "289885504", "length_m": 450.43133498691327, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836496.818049027, 5816941.315821949], [836949.81054335, 5816220.170248752]]}, "properties": {"id": "826-827-828-21195-21196-21197-21181-21182-21206-21207-21208-21209-21210-21211-21212-21213", "from": "2045249226", "to": "33302638", "length_m": 855.0692074588275, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777360.4358413843, 5742931.817626092], [777694.4066064168, 5743126.374281386]]}, "properties": {"id": "8277-8275-8273-8271-8269-8267-8265-8263-8261-8259-8257-8255-8253-8251-8249-8247-8245-8243-8241-8239-8237-8235", "from": "289885504", "to": "294977513", "length_m": 450.43133498691327, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777360.4358413843, 5742931.817626092], [777238.7659359728, 5742805.978685696]]}, "properties": {"id": "8278-8280-8282-8284-8286-8288", "from": "289885504", "to": "289884754", "length_m": 177.24759276471855, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777238.7659359728, 5742805.978685696], [777360.4358413843, 5742931.817626092]]}, "properties": {"id": "8289-8287-8285-8283-8281-8279", "from": "289884754", "to": "289885504", "length_m": 177.24759276471855, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836217.846701961, 5817332.243668985], [835889.6315970593, 5817382.44574091]]}, "properties": {"id": "829-830-831-832-833-834", "from": "2045235442", "to": "30928479", "length_m": 332.3664996890479, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777238.7659359728, 5742805.978685696], [777058.4994580324, 5742689.33649288]]}, "properties": {"id": "8290-8292-8294-8296", "from": "289884754", "to": "289884777", "length_m": 214.97130015117892, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777058.4994580324, 5742689.33649288], [777238.7659359728, 5742805.978685696]]}, "properties": {"id": "8297-8295-8293-8291", "from": "289884777", "to": "289884754", "length_m": 214.97130015117892, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777058.4994580324, 5742689.33649288], [776974.186168105, 5742575.676018266]]}, "properties": {"id": "8298-8300-8302-8304-8306", "from": "289884777", "to": "289884775", "length_m": 142.8482589954216, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776974.186168105, 5742575.676018266], [777058.4994580324, 5742689.33649288]]}, "properties": {"id": "8307-8305-8303-8301-8299", "from": "289884775", "to": "289884777", "length_m": 142.8482589954216, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776974.186168105, 5742575.676018266], [776790.832254655, 5742307.119333974]]}, "properties": {"id": "8308-8310-8312-8314-8316", "from": "289884775", "to": "289884748", "length_m": 325.78562694993326, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776790.832254655, 5742307.119333974], [776974.186168105, 5742575.676018266]]}, "properties": {"id": "8317-8315-8313-8311-8309", "from": "289884748", "to": "289884775", "length_m": 325.78562694993326, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776790.832254655, 5742307.119333974], [776623.4157919532, 5742145.974347032]]}, "properties": {"id": "8318-8320-8322", "from": "289884748", "to": "289884720", "length_m": 232.78451784231498, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[776623.4157919532, 5742145.974347032], [776790.832254655, 5742307.119333974]]}, "properties": {"id": "8323-8321-8319", "from": "289884720", "to": "289884748", "length_m": 232.78451784231498, "freespeed_mps": 13.88888888888889, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834465.4634647281, 5812982.269832222], [834443.7956112371, 5812953.640115054]]}, "properties": {"id": "8324", "from": "268219073", "to": "268219074", "length_m": 35.904826519314064, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834713.4999005878, 5812701.72936364], [834872.0100701007, 5812580.89486629]]}, "properties": {"id": "8325-8326", "from": "36713327", "to": "3088525626", "length_m": 199.31497601368795, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834872.0100701007, 5812580.89486629], [834884.11589747, 5812571.695685061]]}, "properties": {"id": "8327", "from": "3088525626", "to": "3088525624", "length_m": 15.204472736367517, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834884.11589747, 5812571.695685061], [835104.65113266, 5812439.157621052]]}, "properties": {"id": "8328-8329-8330-8331-8332-8333-8334", "from": "3088525624", "to": "2044984878", "length_m": 258.9415401410604, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835104.65113266, 5812439.157621052], [835595.6695794595, 5812338.170335744]]}, "properties": {"id": "8335-8336-8337-23073-23074", "from": "2044984878", "to": "2045001473", "length_m": 501.46391823046497, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[775132.5632752773, 5743372.850650872], [774708.2470039652, 5743578.3837427655]]}, "properties": {"id": "8338-8340-8342-8344-8346-8348-8350-8352-8354-8356-8358", "from": "295231724", "to": "2558470557", "length_m": 546.724555802784, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835879.3157123256, 5817384.378477151], [834902.6961150325, 5817543.2830037465]]}, "properties": {"id": "835-836-837-838-839-840-46722-46723-4704-4705-4706-53426-53499", "from": "299196565", "to": "309809588", "length_m": 989.906346576054, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774708.2470039652, 5743578.3837427655], [775132.5632752773, 5743372.850650872]]}, "properties": {"id": "8359-8357-8355-8353-8351-8349-8347-8345-8343-8341-8339", "from": "2558470557", "to": "295231724", "length_m": 546.724555802784, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[774708.2470039652, 5743578.3837427655], [773859.216764793, 5744069.890830704]]}, "properties": {"id": "8360-8362-8364-8366-8368-8370-8372-8374-8376-8378-8380-8382-8384-8386-8388-8390-8392-8394", "from": "2558470557", "to": "295231719", "length_m": 1021.3954016283745, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773859.216764793, 5744069.890830704], [774708.2470039652, 5743578.3837427655]]}, "properties": {"id": "8395-8393-8391-8389-8387-8385-8383-8381-8379-8377-8375-8373-8371-8369-8367-8365-8363-8361", "from": "295231719", "to": "2558470557", "length_m": 1021.3954016283745, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818383.5041046061, 5821722.658374531], [817814.3940275678, 5821676.443231557]]}, "properties": {"id": "8396-8397-8398-8399-8400-8401-8402-8403-8404-8405-8406-8407-8408-8409-8410-8411-8412", "from": "34610823", "to": "1412762875", "length_m": 597.2208813127561, "freespeed_mps": 30.555555555555554, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836228.8604716426, 5817383.343794756], [836206.1239926631, 5817438.222821554]]}, "properties": {"id": "841", "from": "2045235431", "to": "3475958012", "length_m": 59.40248374812338, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817814.3940275678, 5821676.443231557], [817735.1566383328, 5821643.788308984]]}, "properties": {"id": "8413-8414-8415-8416-8417-8418-8419", "from": "1412762875", "to": "360521334", "length_m": 89.33236007016255, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836206.1239926631, 5817438.222821554], [836124.1137030347, 5817583.718687852]]}, "properties": {"id": "842-843-844-845-846-847", "from": "3475958012", "to": "268387338", "length_m": 168.71541588296193, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791008.5323634036, 5777415.465955882], [791058.6521099056, 5777410.082414365]]}, "properties": {"id": "8420-8421-8422", "from": "334409520", "to": "334409524", "length_m": 54.71277686643283, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794219.4370305487, 5777862.8004460875], [794161.3969552558, 5777540.023182388]]}, "properties": {"id": "8423-8424-8425", "from": "857118603", "to": "867695760", "length_m": 327.9709564087732, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794161.3969552558, 5777540.023182388], [794108.6647027247, 5777268.491650094]]}, "properties": {"id": "8426-8427", "from": "867695760", "to": "436914587", "length_m": 276.6049311968612, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791051.1992730225, 5777379.007397777], [791058.6521099056, 5777410.082414365]]}, "properties": {"id": "8428-8429", "from": "318035139", "to": "334409524", "length_m": 32.23117223067881, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791058.6521099056, 5777410.082414365], [791157.6317151487, 5777875.598994448]]}, "properties": {"id": "8430-8431-8432-8433", "from": "334409524", "to": "318036347", "length_m": 475.97082504666946, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794123.1008736282, 5776371.906920165], [794001.3611173193, 5775608.764783437]]}, "properties": {"id": "8440-8441-8442-8443-8444-8445-8446-8447-8448-8449-8450-8451-8452-8453-8454-8455-8456-8457-8458-8459-8460-8461-8462-8463-8464-8465", "from": "26756061", "to": "26755975", "length_m": 779.0073660252206, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772644.1412263517, 5779098.736049196], [773634.775772284, 5778510.304958284]]}, "properties": {"id": "8479-8477-8475-8473-8471-8469-8467-39172-39170-39168-39166", "from": "177850204", "to": "334409637", "length_m": 1155.9561365711997, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836124.1137030347, 5817583.718687852], [835957.5694657888, 5817738.075146657]]}, "properties": {"id": "848-849-850-851-852", "from": "268387338", "to": "30929290", "length_m": 227.09304468067134, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772644.1412263517, 5779098.736049196], [772036.196866162, 5779218.647217362]]}, "properties": {"id": "8480-8482-8484-8486-43215-43217-43219", "from": "177850204", "to": "177850205", "length_m": 621.1996801634087, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770253.2659019527, 5770270.64261213], [770552.2136948489, 5771916.5332711935]]}, "properties": {"id": "8488-8490", "from": "2830954405", "to": "559367582", "length_m": 1672.820342899353, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770552.2136948489, 5771916.5332711935], [770253.2659019527, 5770270.64261213]]}, "properties": {"id": "8491-8489", "from": "559367582", "to": "2830954405", "length_m": 1672.820342899353, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788034.3366792393, 5764818.733751845], [788458.7463766936, 5764822.833887594]]}, "properties": {"id": "8492-8494-8496-8498-8500-8502-8504-8506-8508-8510-48985-48987-48989-48991-48993", "from": "2936482100", "to": "2478529562", "length_m": 438.58585019967296, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788034.3366792393, 5764818.733751845], [787866.809728794, 5764789.025259718]]}, "properties": {"id": "8512-8513-8514-8515-8516-8517-8518-8519-8520-8521", "from": "2936482100", "to": "1412037714", "length_m": 175.953558407253, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778245.5514273599, 5744212.544850425], [778402.2097854242, 5744394.482900336]]}, "properties": {"id": "8523-24093-24091-24089-24087-24085-24083-24081-24079-24077", "from": "294984815", "to": "2562476556", "length_m": 244.470316643796, "freespeed_mps": 13.0, "capacity_vph": 1000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754820.8352246886, 5761033.916551041], [754822.3862244976, 5761068.13121027]]}, "properties": {"id": "8526", "from": "5857617066", "to": "5857617065", "length_m": 34.249795723899354, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754822.3862244976, 5761068.13121027], [754820.8352246886, 5761033.916551041]]}, "properties": {"id": "8527", "from": "5857617065", "to": "5857617066", "length_m": 34.249795723899354, "freespeed_mps": 13.88888888888889, "capacity_vph": 4000.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754822.3862244976, 5761068.13121027], [754598.1166524381, 5761481.844493655]]}, "properties": {"id": "8528-8530-8532-8534", "from": "5857617065", "to": "1743089376", "length_m": 557.3504064032544, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[754598.1166524381, 5761481.844493655], [754822.3862244976, 5761068.13121027]]}, "properties": {"id": "8535-8533-8531-8529", "from": "1743089376", "to": "5857617065", "length_m": 557.3504064032544, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838597.7103167826, 5817709.437669811], [839122.619635982, 5817604.166121807]]}, "properties": {"id": "8536-8538-8540-8542-8544-8546-8548-8550-8552-8554-8556-8558-8560-8562-8564-8566-8568-8570-8572-8574-8576-8578-8580-8582-8584-8586-8588", "from": "1511360212", "to": "1511360330", "length_m": 543.1567346870513, "freespeed_mps": 19.444444444444443, "capacity_vph": 2250.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[839122.619635982, 5817604.166121807], [838597.7103167826, 5817709.437669811]]}, "properties": {"id": "8589-8587-8585-8583-8581-8579-8577-8575-8573-8571-8569-8567-8565-8563-8561-8559-8557-8555-8553-8551-8549-8547-8545-8543-8541-8539-8537", "from": "1511360330", "to": "1511360212", "length_m": 543.1567346870513, "freespeed_mps": 19.444444444444443, "capacity_vph": 2250.0, "lanes": 1.5, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838925.4580457627, 5817765.886132558], [838749.9422272125, 5817921.273324609]]}, "properties": {"id": "8590-8591-8592-8593", "from": "236890911", "to": "236890918", "length_m": 234.69068540302894, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[839219.12446716, 5817591.1648696195], [839051.3988008781, 5817681.0767842345]]}, "properties": {"id": "8594-8595-8596-8597-8598-8599", "from": "241860885", "to": "1511360327", "length_m": 190.40503644992694, "freespeed_mps": 22.22222222222222, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758269.5947732355, 5763964.35355872], [759204.7394419289, 5763798.562376358]]}, "properties": {"id": "8600", "from": "1743089369", "to": "1743089371", "length_m": 949.7274688719485, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759204.7394419289, 5763798.562376358], [758269.5947732355, 5763964.35355872]]}, "properties": {"id": "8601", "from": "1743089371", "to": "1743089369", "length_m": 949.7274688719485, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838749.9422272125, 5817921.273324609], [838065.3999783618, 5818874.502504079]]}, "properties": {"id": "8616-8617-8618-8619-8620-8621-8622-8623-29657-29677-29678-29679-29680-29681-29682-29683", "from": "236890918", "to": "30928585", "length_m": 1174.8620595027019, "freespeed_mps": 22.22222222222222, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760382.8642311927, 5775772.07343361], [760331.8752181225, 5776099.786388625]]}, "properties": {"id": "8624-8626-8628", "from": "1743089313", "to": "1743089305", "length_m": 344.05383010989647, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760331.8752181225, 5776099.786388625], [760382.8642311927, 5775772.07343361]]}, "properties": {"id": "8629-8627-8625", "from": "1743089305", "to": "1743089313", "length_m": 344.05383010989647, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830546.0636367323, 5821699.2316797115], [830640.4560746527, 5821655.934658539]]}, "properties": {"id": "863-864-865-866-867-868-869-870-871", "from": "2868271426", "to": "2868271434", "length_m": 119.0912973706552, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759152.5666029732, 5767593.453005351], [758360.5008478699, 5767737.053566494]]}, "properties": {"id": "8630", "from": "916681406", "to": "1743089367", "length_m": 804.9778132883869, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758360.5008478699, 5767737.053566494], [759152.5666029732, 5767593.453005351]]}, "properties": {"id": "8631", "from": "1743089367", "to": "916681406", "length_m": 804.9778132883869, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[758360.5008478699, 5767737.053566494], [757587.1028408171, 5767996.928077328]]}, "properties": {"id": "8632-8634-8636-8638-8640-8642-8644-8646-8648", "from": "1743089367", "to": "1743089350", "length_m": 970.6155483773192, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757587.1028408171, 5767996.928077328], [758360.5008478699, 5767737.053566494]]}, "properties": {"id": "8649-8647-8645-8643-8641-8639-8637-8635-8633", "from": "1743089350", "to": "1743089367", "length_m": 970.6155483773192, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834027.7866649952, 5817625.939208036], [833879.1422700256, 5817626.970671378]]}, "properties": {"id": "8650-8651-8652-8653-8654-8655-8656-8657-8658-8659-8660", "from": "601357373", "to": "601349706", "length_m": 148.82197248175783, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838559.6027189624, 5817741.560341916], [838597.7103167826, 5817709.437669811]]}, "properties": {"id": "8661-8663-8665-8667", "from": "170074256", "to": "1511360212", "length_m": 50.00055819049791, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838597.7103167826, 5817709.437669811], [838559.6027189624, 5817741.560341916]]}, "properties": {"id": "8668-8666-8664-8662", "from": "1511360212", "to": "170074256", "length_m": 50.00055819049791, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[839051.3988008781, 5817681.0767842345], [838925.4580457627, 5817765.886132558]]}, "properties": {"id": "8679-8680-8681-8682-8683", "from": "1511360327", "to": "236890911", "length_m": 151.84640182388728, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794307.0213219412, 5778326.4630213715], [794288.2081672493, 5778308.526868027]]}, "properties": {"id": "8684-8685-8686-8687-8688", "from": "621549688", "to": "4706134864", "length_m": 27.04716713710153, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794288.2081672493, 5778308.526868027], [794276.6204831498, 5778309.435107843]]}, "properties": {"id": "8689-8690", "from": "4706134864", "to": "502710903", "length_m": 11.661395822699916, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794270.3498689033, 5778278.863689505], [794289.5835381532, 5778295.073029304]]}, "properties": {"id": "8698-8699-8700-8701-8702-8703", "from": "621549608", "to": "4706134851", "length_m": 25.916384541698083, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794289.5835381532, 5778295.073029304], [794300.9912578121, 5778295.260500646]]}, "properties": {"id": "8704-8705-8706", "from": "4706134851", "to": "621549604", "length_m": 11.552470071444931, "freespeed_mps": 16.0, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[795030.6023249429, 5755472.0156289395], [794894.667357305, 5756422.839469023]]}, "properties": {"id": "8708-8719-7584-7582-7580-7578", "from": "2574037173", "to": "510175115", "length_m": 967.2892281179186, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791168.3093382941, 5777813.966922678], [791169.0304555253, 5777530.4202126255]]}, "properties": {"id": "8709-8710-8711-8712-8713-8714-8715", "from": "334409391", "to": "334409408", "length_m": 283.80111007314764, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789528.8667102167, 5766553.211802248], [789519.4158031279, 5766550.359705338]]}, "properties": {"id": "8716", "from": "3332965299", "to": "266584658", "length_m": 9.87188438775004, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789523.6842053789, 5766570.168198056], [789549.1666422528, 5766577.426625212]]}, "properties": {"id": "8717", "from": "3332965297", "to": "3332966053", "length_m": 26.496025165056952, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792799.0609463349, 5767741.71539737], [792966.4372078024, 5768619.5859526945]]}, "properties": {"id": "872-943-944-945-946-947-948-949-950-951", "from": "270450185", "to": "3914372761", "length_m": 893.7048016344932, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833698.5334243954, 5821877.421201184], [833711.8881618675, 5821873.578815381]]}, "properties": {"id": "8720", "from": "1534937610", "to": "1534937583", "length_m": 13.89650822618638, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833711.8881618675, 5821873.578815381], [833698.5334243954, 5821877.421201184]]}, "properties": {"id": "8721", "from": "1534937583", "to": "1534937610", "length_m": 13.89650822618638, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835314.3384839299, 5819185.433857445], [835330.4359698454, 5819179.43080884]]}, "properties": {"id": "8726", "from": "5129696677", "to": "30929318", "length_m": 17.180385449456256, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832871.2478721924, 5815081.903955489], [832989.0679593838, 5815830.650373744]]}, "properties": {"id": "8727-8728-8729-8730-8731-8732-8733-8734-57466-57467", "from": "1536201487", "to": "30918593", "length_m": 758.5459974361173, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730263.148957628, 5788250.772410269], [730982.1162021853, 5788290.160213216]]}, "properties": {"id": "8740-8738-8736-8912-48403-48401-48399", "from": "1966526712", "to": "2852231213", "length_m": 720.5862190086262, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[730263.148957628, 5788250.772410269], [729262.6134103143, 5787948.732454295]]}, "properties": {"id": "8741-8743-8745-8747-8749-8751-8753-8755-8757-8759", "from": "1966526712", "to": "1966526732", "length_m": 1051.974632397173, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770156.0070888563, 5839748.003563828], [771135.2671217378, 5839533.863098528]]}, "properties": {"id": "876-877-878-879-880-881", "from": "291557473", "to": "291557500", "length_m": 1006.8552801895036, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729262.6134103143, 5787948.732454295], [730263.148957628, 5788250.772410269]]}, "properties": {"id": "8760-8758-8756-8754-8752-8750-8748-8746-8744-8742", "from": "1966526732", "to": "1966526712", "length_m": 1051.974632397173, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[729262.6134103143, 5787948.732454295], [728652.9750242431, 5788291.493001844]]}, "properties": {"id": "8761-8763-8765-8767-8769-8771-8773-8775-8777-8779-8781-8783-8785-8787", "from": "1966526732", "to": "1966526713", "length_m": 710.4079323521132, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728652.9750242431, 5788291.493001844], [729262.6134103143, 5787948.732454295]]}, "properties": {"id": "8788-8786-8784-8782-8780-8778-8776-8774-8772-8770-8768-8766-8764-8762", "from": "1966526713", "to": "1966526732", "length_m": 710.4079323521132, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[728652.9750242431, 5788291.493001844], [727652.7291035386, 5788686.72814377]]}, "properties": {"id": "8789", "from": "1966526713", "to": "177850268", "length_m": 1075.501147479261, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727652.7291035386, 5788686.72814377], [728652.9750242431, 5788291.493001844]]}, "properties": {"id": "8790", "from": "177850268", "to": "1966526713", "length_m": 1075.501147479261, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[727652.7291035386, 5788686.72814377], [726117.6982500745, 5789293.076252275]]}, "properties": {"id": "8791-8793", "from": "177850268", "to": "177850269", "length_m": 1650.4477427819365, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726117.6982500745, 5789293.076252275], [727652.7291035386, 5788686.72814377]]}, "properties": {"id": "8794-8792", "from": "177850269", "to": "177850268", "length_m": 1650.4477427819365, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[726117.6982500745, 5789293.076252275], [725309.1267135913, 5789606.204409012]]}, "properties": {"id": "8795-8797-8799", "from": "177850269", "to": "317719388", "length_m": 867.1315418806853, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[725309.1267135913, 5789606.204409012], [726117.6982500745, 5789293.076252275]]}, "properties": {"id": "8800-8798-8796", "from": "317719388", "to": "177850269", "length_m": 867.1315418806853, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[725309.1267135913, 5789606.204409012], [724818.3580849222, 5790129.151985507]]}, "properties": {"id": "8801-8803-8805-8807-8809", "from": "317719388", "to": "598478961", "length_m": 738.3568749777048, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[724818.3580849222, 5790129.151985507], [725309.1267135913, 5789606.204409012]]}, "properties": {"id": "8810-8808-8806-8804-8802", "from": "598478961", "to": "317719388", "length_m": 738.3568749777048, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[724818.3580849222, 5790129.151985507], [724264.5517965435, 5790471.987014366]]}, "properties": {"id": "8811-8813-8815", "from": "598478961", "to": "317719394", "length_m": 653.9991790064099, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[724264.5517965435, 5790471.987014366], [724818.3580849222, 5790129.151985507]]}, "properties": {"id": "8816-8814-8812", "from": "317719394", "to": "598478961", "length_m": 653.9991790064099, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[724264.5517965435, 5790471.987014366], [723861.3536913205, 5791005.778665329]]}, "properties": {"id": "8817-8819-8821-8823", "from": "317719394", "to": "598478963", "length_m": 677.0878622350967, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771135.2671217378, 5839533.863098528], [771709.2069804369, 5839237.682363311]]}, "properties": {"id": "882-883-884-885-886", "from": "291557500", "to": "3953417522", "length_m": 647.0119433029529, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[723861.3536913205, 5791005.778665329], [724264.5517965435, 5790471.987014366]]}, "properties": {"id": "8824-8822-8820-8818", "from": "598478963", "to": "317719394", "length_m": 677.0878622350967, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[723861.3536913205, 5791005.778665329], [723579.257932523, 5791621.18306998]]}, "properties": {"id": "8825-8827", "from": "598478963", "to": "317719397", "length_m": 676.9835169660372, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[723579.257932523, 5791621.18306998], [723861.3536913205, 5791005.778665329]]}, "properties": {"id": "8828-8826", "from": "317719397", "to": "598478963", "length_m": 676.9835169660372, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[723579.257932523, 5791621.18306998], [723024.7224620425, 5792063.219957841]]}, "properties": {"id": "8829-8831-8833-8835", "from": "317719397", "to": "177850286", "length_m": 737.09333070045, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[723024.7224620425, 5792063.219957841], [723579.257932523, 5791621.18306998]]}, "properties": {"id": "8836-8834-8832-8830", "from": "177850286", "to": "317719397", "length_m": 737.09333070045, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[723024.7224620425, 5792063.219957841], [722262.2260423203, 5792344.773023604]]}, "properties": {"id": "8837", "from": "177850286", "to": "177850288", "length_m": 812.8178875724658, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[722262.2260423203, 5792344.773023604], [723024.7224620425, 5792063.219957841]]}, "properties": {"id": "8838", "from": "177850288", "to": "177850286", "length_m": 812.8178875724658, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[722262.2260423203, 5792344.773023604], [720399.2460216144, 5793034.178623319]]}, "properties": {"id": "8839-8841", "from": "177850288", "to": "177850289", "length_m": 1986.4477438373021, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[720399.2460216144, 5793034.178623319], [722262.2260423203, 5792344.773023604]]}, "properties": {"id": "8842-8840", "from": "177850289", "to": "177850288", "length_m": 1986.4477438373021, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[720399.2460216144, 5793034.178623319], [718578.9999390708, 5793703.803581664]]}, "properties": {"id": "8843", "from": "177850289", "to": "1124738475", "length_m": 1939.5085415091842, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[718578.9999390708, 5793703.803581664], [720399.2460216144, 5793034.178623319]]}, "properties": {"id": "8844", "from": "1124738475", "to": "177850289", "length_m": 1939.5085415091842, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[718578.9999390708, 5793703.803581664], [717855.9383223625, 5793966.42246089]]}, "properties": {"id": "8845", "from": "1124738475", "to": "317718411", "length_m": 769.2767881328226, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[717855.9383223625, 5793966.42246089], [718578.9999390708, 5793703.803581664]]}, "properties": {"id": "8846", "from": "317718411", "to": "1124738475", "length_m": 769.2767881328226, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[717855.9383223625, 5793966.42246089], [717095.1096684121, 5794467.568674547]]}, "properties": {"id": "8847-8849-8851", "from": "317718411", "to": "317718412", "length_m": 911.5072069004553, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[717095.1096684121, 5794467.568674547], [717855.9383223625, 5793966.42246089]]}, "properties": {"id": "8852-8850-8848", "from": "317718412", "to": "317718411", "length_m": 911.5072069004553, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[717095.1096684121, 5794467.568674547], [716170.5156622202, 5794800.146388955]]}, "properties": {"id": "8853-8855-8857-8859-8861-8863-8865-8867-8869", "from": "317718412", "to": "177850297", "length_m": 1003.029216766329, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771709.2069804369, 5839237.682363311], [772518.6030641566, 5838632.931273608]]}, "properties": {"id": "887-888-467", "from": "3953417522", "to": "35098321", "length_m": 1010.5041876305964, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[716170.5156622202, 5794800.146388955], [717095.1096684121, 5794467.568674547]]}, "properties": {"id": "8870-8868-8866-8864-8862-8860-8858-8856-8854", "from": "177850297", "to": "317718412", "length_m": 1003.029216766329, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[716170.5156622202, 5794800.146388955], [715645.6051252601, 5795154.421563511]]}, "properties": {"id": "8871", "from": "177850297", "to": "317718416", "length_m": 633.2787467129299, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[715645.6051252601, 5795154.421563511], [716170.5156622202, 5794800.146388955]]}, "properties": {"id": "8872", "from": "317718416", "to": "177850297", "length_m": 633.2787467129299, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[715645.6051252601, 5795154.421563511], [714790.5433117012, 5795323.462453825]]}, "properties": {"id": "8873-8875-8877-8879", "from": "317718416", "to": "317718418", "length_m": 877.2517549276288, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[714790.5433117012, 5795323.462453825], [715645.6051252601, 5795154.421563511]]}, "properties": {"id": "8880-8878-8876-8874", "from": "317718418", "to": "317718416", "length_m": 877.2517549276288, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[714790.5433117012, 5795323.462453825], [714273.6650516838, 5795439.980112954]]}, "properties": {"id": "8881-8883", "from": "317718418", "to": "177850303", "length_m": 529.9592901281129, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[714273.6650516838, 5795439.980112954], [714790.5433117012, 5795323.462453825]]}, "properties": {"id": "8884-8882", "from": "177850303", "to": "317718418", "length_m": 529.9592901281129, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[714273.6650516838, 5795439.980112954], [713181.485109444, 5795720.268600863]]}, "properties": {"id": "8885", "from": "177850303", "to": "177850304", "length_m": 1127.572020512276, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[713181.485109444, 5795720.268600863], [714273.6650516838, 5795439.980112954]]}, "properties": {"id": "8886", "from": "177850304", "to": "177850303", "length_m": 1127.572020512276, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[713181.485109444, 5795720.268600863], [712685.4707053123, 5795847.38829454]]}, "properties": {"id": "8887", "from": "177850304", "to": "2157175172", "length_m": 512.0446322172444, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[712685.4707053123, 5795847.38829454], [713181.485109444, 5795720.268600863]]}, "properties": {"id": "8888", "from": "2157175172", "to": "177850304", "length_m": 512.0446322172444, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[712685.4707053123, 5795847.38829454], [710201.4325949072, 5796483.544071027]]}, "properties": {"id": "8889-8891", "from": "2157175172", "to": "177850305", "length_m": 2564.2034864979523, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777717.4524470258, 5761588.104956909], [777594.5150325545, 5761611.138080242]]}, "properties": {"id": "889-891-893", "from": "1534281124", "to": "4698497684", "length_m": 125.82065441641167, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[710201.4325949072, 5796483.544071027], [712685.4707053123, 5795847.38829454]]}, "properties": {"id": "8892-8890", "from": "177850305", "to": "2157175172", "length_m": 2564.2034864979523, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[710201.4325949072, 5796483.544071027], [709577.70097829, 5796645.187781506]]}, "properties": {"id": "8893-8895-8897-8899", "from": "177850305", "to": "317718419", "length_m": 644.3402876457853, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[709577.70097829, 5796645.187781506], [710201.4325949072, 5796483.544071027]]}, "properties": {"id": "8900-8898-8896-8894", "from": "317718419", "to": "177850305", "length_m": 644.3402876457853, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[709577.70097829, 5796645.187781506], [709069.3281815359, 5796795.373163097]]}, "properties": {"id": "8901-8903-8905-8907-8909", "from": "317718419", "to": "3700609869", "length_m": 530.3724589415108, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[709069.3281815359, 5796795.373163097], [709577.70097829, 5796645.187781506]]}, "properties": {"id": "8910-8908-8906-8904-8902", "from": "3700609869", "to": "317718419", "length_m": 530.3724589415108, "freespeed_mps": 27.77777777777778, "capacity_vph": 2300.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833410.4314504482, 5821016.2111620745], [833403.7264960972, 5820992.620972851]]}, "properties": {"id": "8917", "from": "255031354", "to": "603462866", "length_m": 24.52454766110007, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833403.7264960972, 5820992.620972851], [833285.5035286194, 5820606.3911232725]]}, "properties": {"id": "8918-8919-53161-53162-53163-53242-8913-8914-8915-8916", "from": "603462866", "to": "599479818", "length_m": 404.00663916553424, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833011.0100573318, 5804795.286675062], [832945.3869682685, 5804721.338037869]]}, "properties": {"id": "8920-8921-8922-8923-8924-8925-8926-8927-8928-8929-8930-8931-8932-8933-8934-8935-8936-8937-8938", "from": "254239173", "to": "1745493149", "length_m": 122.80245481121888, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786906.548261402, 5749763.276912094], [787267.7418555445, 5749724.981817894]]}, "properties": {"id": "8939-8941-8943-8945-8947-8949-8951-8953-8955", "from": "976342870", "to": "509914511", "length_m": 386.83847321561456, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777594.5150325545, 5761611.138080242], [777717.4524470258, 5761588.104956909]]}, "properties": {"id": "894-892-890", "from": "4698497684", "to": "1534281124", "length_m": 125.82065441641167, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777594.5150325545, 5761611.138080242], [777420.1117046126, 5761730.803622816]]}, "properties": {"id": "895-897-899-901-903-905-907", "from": "4698497684", "to": "476151595", "length_m": 273.705726855093, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787267.7418555445, 5749724.981817894], [786906.548261402, 5749763.276912094]]}, "properties": {"id": "8956-8954-8952-8950-8948-8946-8944-8942-8940", "from": "509914511", "to": "976342870", "length_m": 386.83847321561456, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787240.195379534, 5751500.7223419435], [787167.143006895, 5750980.291238882]]}, "properties": {"id": "8957-8959-8961-8963-8965-8967", "from": "976342869", "to": "976342867", "length_m": 526.4885391290834, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787167.143006895, 5750980.291238882], [787240.195379534, 5751500.7223419435]]}, "properties": {"id": "8968-8966-8964-8962-8960-8958", "from": "976342867", "to": "976342869", "length_m": 526.4885391290834, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787167.143006895, 5750980.291238882], [787081.907607176, 5750581.882752031]]}, "properties": {"id": "8969-8971-8973-8975", "from": "976342867", "to": "976342877", "length_m": 407.4988530228931, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787081.907607176, 5750581.882752031], [787167.143006895, 5750980.291238882]]}, "properties": {"id": "8976-8974-8972-8970", "from": "976342877", "to": "976342867", "length_m": 407.4988530228931, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[787081.907607176, 5750581.882752031], [786981.3059913993, 5750157.81370845]]}, "properties": {"id": "8977-8979-8981", "from": "976342877", "to": "976342888", "length_m": 435.8837146701753, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786981.3059913993, 5750157.81370845], [787081.907607176, 5750581.882752031]]}, "properties": {"id": "8982-8980-8978", "from": "976342888", "to": "976342877", "length_m": 435.8837146701753, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[786825.942054317, 5749335.82774009], [787330.6599929046, 5749149.200284193]]}, "properties": {"id": "8983-8985-8987-8989-8991-8993-8995-8997-8999-9001-9003-9005-22511-22513", "from": "976342882", "to": "310176879", "length_m": 579.7133471381755, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759239.4141916581, 5728303.821202017], [759473.678566121, 5728338.6079379795]]}, "properties": {"id": "900000040", "from": "863350152", "to": "863350933", "length_m": 500.95898030583317, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759473.678566121, 5728338.6079379795], [759239.4141916581, 5728303.821202017]]}, "properties": {"id": "900000041", "from": "863350933", "to": "863350152", "length_m": 500.95898030583317, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788392.0096767723, 5770360.879937013], [788201.1926814767, 5770329.244345059]]}, "properties": {"id": "900000090", "from": "475541964", "to": "421192905", "length_m": 49.999999999999986, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788201.1926814767, 5770329.244345059], [788392.0096767723, 5770360.879937013]]}, "properties": {"id": "900000091", "from": "421192905", "to": "475541964", "length_m": 49.999999999999986, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746758.609843526, 5713714.097889741], [746117.7148732641, 5713620.681378776]]}, "properties": {"id": "90000010", "from": "2880904431", "to": "2880904441", "length_m": 702.7194436692307, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746117.7148732641, 5713620.681378776], [746758.609843526, 5713714.097889741]]}, "properties": {"id": "90000011", "from": "2880904441", "to": "2880904431", "length_m": 702.7194436692307, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[745610.3608696798, 5713686.148761139], [744864.0020805555, 5713619.815241135]]}, "properties": {"id": "90000012", "from": "2880923456", "to": "2880948328", "length_m": 861.620414136436, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[744864.0020805555, 5713619.815241135], [745610.3608696798, 5713686.148761139]]}, "properties": {"id": "90000013", "from": "2880948328", "to": "2880923456", "length_m": 861.620414136436, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753499.471983874, 5750144.09967423], [753957.6886796223, 5749313.861084356]]}, "properties": {"id": "90000015", "from": "982267895", "to": "982267961", "length_m": 989.5787289923569, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[753957.6886796223, 5749313.861084356], [753499.471983874, 5750144.09967423]]}, "properties": {"id": "90000016", "from": "982267961", "to": "982267895", "length_m": 989.5787289923569, "freespeed_mps": 8.0, "capacity_vph": 20.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788201.1926814767, 5770329.244345059], [782596.3032496165, 5770317.2744491305]]}, "properties": {"id": "9000002", "from": "421192905", "to": "942276035", "length_m": 5000.0, "freespeed_mps": 20.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759473.678566121, 5728338.6079379795], [760096.7287953434, 5728771.771984256]]}, "properties": {"id": "90000020", "from": "863350933", "to": "832509749", "length_m": 833.3010791690504, "freespeed_mps": 15.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[760096.7287953434, 5728771.771984256], [759473.678566121, 5728338.6079379795]]}, "properties": {"id": "90000021", "from": "832509749", "to": "863350933", "length_m": 833.3010791690504, "freespeed_mps": 15.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746758.609843526, 5713714.097889741], [746961.3106038189, 5714665.513525365]]}, "properties": {"id": "90000025", "from": "2880904431", "to": "234824969", "length_m": 1084.263798300726, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[746961.3106038189, 5714665.513525365], [746758.609843526, 5713714.097889741]]}, "properties": {"id": "90000026", "from": "234824969", "to": "2880904431", "length_m": 1084.263798300726, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759032.6908518835, 5727198.688510917], [759239.4141916581, 5728303.821202017]]}, "properties": {"id": "90000030", "from": "863349822", "to": "863350152", "length_m": 1293.1382411383183, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[759239.4141916581, 5728303.821202017], [759032.6908518835, 5727198.688510917]]}, "properties": {"id": "90000031", "from": "863350152", "to": "863349822", "length_m": 1293.1382411383183, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[739983.0077384823, 5712195.507973968], [739277.9319763144, 5711725.428871704]]}, "properties": {"id": "9000004", "from": "2881089034", "to": "2881088277", "length_m": 988.6506514613924, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[739277.9319763144, 5711725.428871704], [739983.0077384823, 5712195.507973968]]}, "properties": {"id": "9000005", "from": "2881088277", "to": "2881089034", "length_m": 988.6506514613924, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[756708.1189834061, 5728761.965487596], [757860.178371186, 5729163.378291735]]}, "properties": {"id": "9000006", "from": "809524532", "to": "5334282904", "length_m": 1520.2019976451459, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[757860.178371186, 5729163.378291735], [756708.1189834061, 5728761.965487596]]}, "properties": {"id": "9000007", "from": "5334282904", "to": "809524532", "length_m": 1520.2019976451459, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836812.2305496635, 5806615.697280673], [835483.8705103041, 5806888.486334165]]}, "properties": {"id": "9000008", "from": "26476109", "to": "254224862", "length_m": 1520.999659041236, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[782596.3032496165, 5770317.2744491305], [788201.1926814767, 5770329.244345059]]}, "properties": {"id": "900001", "from": "942276035", "to": "421192905", "length_m": 5000.0, "freespeed_mps": 20.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[772751.9019503884, 5774817.784024241], [773473.6110997581, 5774676.792649852]]}, "properties": {"id": "900002", "from": "5604428464", "to": "5604438397", "length_m": 666.0802445049803, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[773473.6110997581, 5774676.792649852], [772751.9019503884, 5774817.784024241]]}, "properties": {"id": "900003", "from": "5604438397", "to": "5604428464", "length_m": 666.0802445049803, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836253.7924046852, 5806054.257506223], [836404.1889481007, 5806035.686654037]]}, "properties": {"id": "9007-9008", "from": "1537726915", "to": "1537726802", "length_m": 151.61318840028554, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838556.9677269123, 5805137.653784006], [838608.5178547159, 5805420.77813541]]}, "properties": {"id": "9009-931-932", "from": "615241055", "to": "244891982", "length_m": 287.77910694590196, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836404.1889481007, 5806035.686654037], [836440.2879932945, 5806030.326598107]]}, "properties": {"id": "9010", "from": "1537726802", "to": "1537726893", "length_m": 36.49481128223939, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838487.9154809832, 5804679.443685349], [838413.9629350647, 5804261.178489683]]}, "properties": {"id": "9011-9012-9013-21976-23106-3005", "from": "3189541011", "to": "250287575", "length_m": 424.7588775969486, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836443.314286815, 5806021.962886101], [836402.3958903878, 5806028.087543443]]}, "properties": {"id": "9014-9015", "from": "1537726656", "to": "573105362", "length_m": 41.374307290196676, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836402.3958903878, 5806028.087543443], [836253.7924046852, 5806054.257506223]]}, "properties": {"id": "9016-9017", "from": "573105362", "to": "1537726915", "length_m": 150.93755285902282, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836440.2879932945, 5806030.326598107], [836448.2764903512, 5806028.9873277685]]}, "properties": {"id": "9018", "from": "1537726893", "to": "1537726641", "length_m": 8.099983350206935, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817673.1659560916, 5821691.753707917], [817499.6127009967, 5821823.796471376]]}, "properties": {"id": "9019-9020-9021-9022-9023-9024", "from": "1346779137", "to": "1412762821", "length_m": 219.82106034206197, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818999.9041265707, 5823261.597998297], [818969.6970822226, 5823261.83143555]]}, "properties": {"id": "9027", "from": "1412762837", "to": "303685798", "length_m": 30.207946211986545, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818969.6970822226, 5823261.83143555], [818999.9041265707, 5823261.597998297]]}, "properties": {"id": "9028", "from": "303685798", "to": "1412762837", "length_m": 30.207946211986545, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817866.6674514161, 5822051.529774898], [818037.2049001972, 5821892.337351226]]}, "properties": {"id": "9029-9030-9031-9032-9033-9034-9035", "from": "59961704", "to": "1412762806", "length_m": 235.2240775692181, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817752.2135865605, 5822071.123284263], [817806.4956746385, 5822088.764938584]]}, "properties": {"id": "9036-9037-9038-9039-9040-9041", "from": "59961700", "to": "303686090", "length_m": 60.32846464805815, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817473.4672565339, 5821931.044166807], [817712.4300193858, 5822044.363246607]]}, "properties": {"id": "9042-9043-9044-9045-9046-9047", "from": "59961698", "to": "1412762807", "length_m": 267.07554788330424, "freespeed_mps": 30.555555555555554, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817778.5567941092, 5821916.098451991], [817757.5173992804, 5821801.462061206]]}, "properties": {"id": "9053-25120-9057", "from": "1412762902", "to": "1412762778", "length_m": 116.55854750789227, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818794.7420014301, 5823266.110763626], [818792.9002168502, 5823255.70987962]]}, "properties": {"id": "9054", "from": "772690766", "to": "1412762949", "length_m": 10.562696553389458, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818792.9002168502, 5823255.70987962], [818794.7420014301, 5823266.110763626]]}, "properties": {"id": "9055", "from": "1412762949", "to": "772690766", "length_m": 10.562696553389458, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817757.5173992804, 5821801.462061206], [817778.5567941092, 5821916.098451991]]}, "properties": {"id": "9056-25119-9052", "from": "1412762778", "to": "1412762902", "length_m": 116.55854750789227, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835626.8826900513, 5818047.222898331], [835483.3407112347, 5818190.167728373]]}, "properties": {"id": "9058-9059-9060-33985-33986", "from": "268387838", "to": "268387502", "length_m": 202.63524942093835, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817499.6127009967, 5821823.796471376], [817045.3654273516, 5821903.038157165]]}, "properties": {"id": "9061-9062-9063-9064-9065-9066-9067-9068", "from": "1412762821", "to": "34610825", "length_m": 463.13771088399767, "freespeed_mps": 30.555555555555554, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777420.1117046126, 5761730.803622816], [777594.5150325545, 5761611.138080242]]}, "properties": {"id": "908-906-904-902-900-898-896", "from": "476151595", "to": "4698497684", "length_m": 273.705726855093, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835887.7290241228, 5817398.168220634], [836189.5358583229, 5817348.765816394]]}, "properties": {"id": "910-936-937", "from": "299196615", "to": "268386958", "length_m": 305.89163435182655, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731943.3017647101, 5706145.972115315], [732072.1405797028, 5706548.412548565]]}, "properties": {"id": "9103-9101-9099-9097-9095-9093-9091-9089-9087-9085-9083-9081-9079-9077-41441-41439", "from": "364228817", "to": "861264206", "length_m": 553.3956955616363, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731943.3017647101, 5706145.972115315], [731578.3813339998, 5705573.6314926185]]}, "properties": {"id": "9104-9106-9108-9110-29360-29397-29399", "from": "364228817", "to": "364228810", "length_m": 679.8147061869738, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771904.4197305993, 5839052.630635783], [771211.5502995249, 5839464.529980617]]}, "properties": {"id": "911-912-913-914-915", "from": "317109204", "to": "3953417520", "length_m": 808.384464492028, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817823.9217450217, 5822186.39853817], [817849.7473681576, 5822350.041806903]]}, "properties": {"id": "9120-9121-9122-9123-9124-9125-9126-9127", "from": "59961701", "to": "303686027", "length_m": 168.92305521576293, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835635.5587573366, 5818040.353671061], [835626.8826900513, 5818047.222898331]]}, "properties": {"id": "9128", "from": "30929292", "to": "268387838", "length_m": 11.066183923762427, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818627.1761056023, 5823264.509448486], [818794.7420014301, 5823266.110763626]]}, "properties": {"id": "9129-9130-9131", "from": "1412762814", "to": "772690766", "length_m": 167.57358055075395, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818792.9002168502, 5823255.70987962], [818097.9409644387, 5823001.544474388]]}, "properties": {"id": "9132-9133-9134-9135-9136-9137-9138-9139-9140-9141-9142-9143-9144-9145-9146-9147-9148-9149-9150-9151-9152-9153-9154-9155-9156", "from": "1412762949", "to": "1412762886", "length_m": 802.9389342079642, "freespeed_mps": 19.444444444444443, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835643.1107194122, 5818055.546423493], [835787.964372823, 5817919.772351824]]}, "properties": {"id": "9157-9158-9159", "from": "30929283", "to": "268387327", "length_m": 198.61618587435552, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[771211.5502995249, 5839464.529980617], [770702.2849835422, 5839634.550601212]]}, "properties": {"id": "916-917-918-919", "from": "3953417520", "to": "3953417521", "length_m": 537.3323816046413, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835787.964372823, 5817919.772351824], [835933.7991239177, 5817782.39849395]]}, "properties": {"id": "9160-9161", "from": "268387327", "to": "30929285", "length_m": 200.34810220168174, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791451.6546619035, 5767938.567088706], [791098.7070557799, 5767552.088143435]]}, "properties": {"id": "9162-9163", "from": "297103218", "to": "355158093", "length_m": 523.390870651061, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791098.7070557799, 5767552.088143435], [790637.9115216653, 5767137.2999942675]]}, "properties": {"id": "9164-9165-9166-9167-9168-9169-9170-9171-9172", "from": "355158093", "to": "262916737", "length_m": 622.0727495182031, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[817971.9593548009, 5822720.877739355], [817959.4168566959, 5822724.607011689]]}, "properties": {"id": "9173", "from": "1412762932", "to": "1412762736", "length_m": 13.085172145791264, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[818037.2049001972, 5821892.337351226], [818596.3205186182, 5821648.5986647615]]}, "properties": {"id": "9175-9176-9177-9178-9179-9180-9181-9182-9183-9184-9185-9186-9187", "from": "1412762806", "to": "59961470", "length_m": 612.0488820795484, "freespeed_mps": 30.555555555555554, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830546.0636367323, 5821699.2316797115], [830664.9905330553, 5821675.75418146]]}, "properties": {"id": "9189-9190", "from": "2868271426", "to": "26030574", "length_m": 121.22210812099473, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835957.5694657888, 5817738.075146657], [835832.8199785601, 5817855.342802602]]}, "properties": {"id": "9191-9192", "from": "30929290", "to": "268387329", "length_m": 171.22084769304897, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835832.8199785601, 5817855.342802602], [835635.5587573366, 5818040.353671061]]}, "properties": {"id": "9193-9194-9195-9196", "from": "268387329", "to": "30929292", "length_m": 270.4482754317599, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731244.0432855765, 5704605.884011816], [731439.0153384788, 5705065.62613594]]}, "properties": {"id": "9199-9201-9203-9205-29428-29426-29424-29422-29420", "from": "357068979", "to": "249074035", "length_m": 535.9465506889945, "freespeed_mps": 16.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770702.2849835422, 5839634.550601212], [770098.8706083004, 5839718.8773093615]]}, "properties": {"id": "920-921-922-923-924", "from": "3953417521", "to": "291557421", "length_m": 610.1248039546285, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[731932.912737311, 5707256.270641802], [732074.4638974043, 5707722.182440526]]}, "properties": {"id": "9212-9210-32218-32216-32214", "from": "249074021", "to": "861264089", "length_m": 487.5869086258461, "freespeed_mps": 13.88888888888889, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[829979.0023083003, 5821784.480715966], [829782.9540282522, 5821822.1934585]]}, "properties": {"id": "9224-9225-5219", "from": "2960825840", "to": "2960825844", "length_m": 199.65272337827088, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832208.121067426, 5813044.842102315], [832202.1827242847, 5813030.89412297]]}, "properties": {"id": "9240", "from": "1536081348", "to": "298348141", "length_m": 15.159486993747642, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832202.1827242847, 5813030.89412297], [832208.121067426, 5813044.842102315]]}, "properties": {"id": "9241", "from": "298348141", "to": "1536081348", "length_m": 15.159486993747642, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[770098.8706083004, 5839718.8773093615], [768978.9868999543, 5839697.173502397]]}, "properties": {"id": "925-930-55165-55166", "from": "291557421", "to": "3953417009", "length_m": 1120.2477917037083, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790133.6085390514, 5754035.761061681], [790118.226569819, 5754037.32541556]]}, "properties": {"id": "9251", "from": "52493086", "to": "270451591", "length_m": 15.461312332627157, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790118.226569819, 5754037.32541556], [790133.6085390514, 5754035.761061681]]}, "properties": {"id": "9252", "from": "270451591", "to": "52493086", "length_m": 15.461312332627157, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792817.0983574117, 5767779.909207989], [792670.9310835886, 5766985.008325792]]}, "properties": {"id": "926-928-929-13556-13557-35657", "from": "610643258", "to": "967743152", "length_m": 808.2507756047693, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[769114.2596375011, 5839732.816780118], [770156.0070888563, 5839748.003563828]]}, "properties": {"id": "927-874-875", "from": "186317540", "to": "291557473", "length_m": 1042.2906728191274, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837343.1915837566, 5812005.882703651], [837639.5100051787, 5811952.393000003]]}, "properties": {"id": "9276-9277-9278-9279-9280", "from": "268175994", "to": "268181332", "length_m": 301.11702550534466, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[794569.0347441917, 5779535.019348324], [795499.1104092493, 5780456.5121036945]]}, "properties": {"id": "9282-9283-9284-9285-9286-9287-9288-9289-9290-9291-9292-9293-9294-9295-9296", "from": "3955050483", "to": "267115807", "length_m": 1310.0280438399407, "freespeed_mps": 22.22222222222222, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[798238.3918192913, 5783077.559607344], [798017.2688826979, 5782832.809692617]]}, "properties": {"id": "9297-9298-9299-9300", "from": "617475616", "to": "253493700", "length_m": 330.02945384068397, "freespeed_mps": 27.77777777777778, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[793738.175447996, 5774032.864176403], [793814.2408981437, 5773749.549239832]]}, "properties": {"id": "9325-9326-9327-9328", "from": "318039799", "to": "26755994", "length_m": 293.7487095642556, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751790.3626810793, 5841137.780734507], [751802.1060887701, 5841136.524736266]]}, "properties": {"id": "9329", "from": "619565625", "to": "619565627", "length_m": 11.810383338520793, "freespeed_mps": 27.77777777777778, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838619.0024609313, 5805419.033449526], [838568.4734273204, 5805135.444441798]]}, "properties": {"id": "933-934-935", "from": "608107551", "to": "250287616", "length_m": 288.06652893664995, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751790.3766407508, 5841125.994596337], [751790.3626810793, 5841137.780734507]]}, "properties": {"id": "9330", "from": "209774399", "to": "619565625", "length_m": 11.78614644020556, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751790.3626810793, 5841137.780734507], [751787.5602768132, 5841252.423763211]]}, "properties": {"id": "9331-9332", "from": "619565625", "to": "364001467", "length_m": 114.6773281227639, "freespeed_mps": 19.444444444444443, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751802.1060887701, 5841136.524736266], [751802.71495956, 5841124.23179201]]}, "properties": {"id": "9333", "from": "619565627", "to": "364001417", "length_m": 12.308013736892466, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[751802.71495956, 5841124.23179201], [751794.9890976109, 5840292.389579629]]}, "properties": {"id": "9334-9335-9336-9337-9338-9339-9340-9341-9342-9343-9344-9345", "from": "364001417", "to": "356613593", "length_m": 838.2935271881528, "freespeed_mps": 16.666666666666668, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837224.6062253031, 5812005.685700946], [836935.9269013682, 5812058.268923914]]}, "properties": {"id": "9346-9347-9348-9349-9350", "from": "1387206041", "to": "268176174", "length_m": 293.52491739782425, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837343.7933730388, 5812612.0362281045], [837244.9692358018, 5812097.644514551]]}, "properties": {"id": "9364-9362-9360-9358-9356-9354-9352-27739", "from": "33531752", "to": "1387186631", "length_m": 523.8431360536388, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790939.911270553, 5754757.592576578], [790954.8941842476, 5754835.3103216505]]}, "properties": {"id": "9365", "from": "2548347241", "to": "2548347208", "length_m": 79.14881929341082, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790954.8941842476, 5754835.3103216505], [790939.911270553, 5754757.592576578]]}, "properties": {"id": "9366", "from": "2548347208", "to": "2548347241", "length_m": 79.14881929341082, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790822.2782161571, 5754779.2254201835], [790837.2414312419, 5754863.234827945]]}, "properties": {"id": "9367", "from": "4696656434", "to": "4698468859", "length_m": 85.3315790960891, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790837.2414312419, 5754863.234827945], [790822.2782161571, 5754779.2254201835]]}, "properties": {"id": "9368", "from": "4698468859", "to": "4696656434", "length_m": 85.3315790960891, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790837.2414312419, 5754863.234827945], [790964.5066330384, 5754927.792818386]]}, "properties": {"id": "9369-9371-9373-18485-18487-18489-18491", "from": "4698468859", "to": "4696655308", "length_m": 198.72319794396532, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833401.5423666255, 5804627.907152027], [833397.0054483223, 5804603.484519261]]}, "properties": {"id": "9375-9376", "from": "253337733", "to": "253337738", "length_m": 24.85924517260484, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[833397.0054483223, 5804603.484519261], [833017.3263255623, 5804595.462555777]]}, "properties": {"id": "9377-9378-9379-9380-9381-9382-9383-9384-9385-9386-9387-9388-9389-9390-9391-9392-9393-9394-9395-9396-9397-9398-9399-9400-9401-9402", "from": "253337738", "to": "825691612", "length_m": 407.43350526259144, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836317.7661698414, 5817342.40992586], [836267.3905718743, 5817335.036639225]]}, "properties": {"id": "938-939-940", "from": "2045235491", "to": "30928522", "length_m": 50.91520276907025, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836123.0696170216, 5808289.6389526725], [836025.9627852805, 5807734.618572827]]}, "properties": {"id": "9403-9404-9405-9406-9407-9408-9409-9410", "from": "4067819120", "to": "75148588", "length_m": 564.3157955441567, "freespeed_mps": 22.22222222222222, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[836267.3905718743, 5817335.036639225], [836246.9506851488, 5817332.779568829]]}, "properties": {"id": "941", "from": "30928522", "to": "30928521", "length_m": 20.56412728112928, "freespeed_mps": 19.444444444444443, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792584.4724732169, 5754141.171260091], [792542.8766246845, 5754056.394837408]]}, "properties": {"id": "9411-9413", "from": "510170753", "to": "518259656", "length_m": 94.43664500110778, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792542.8766246845, 5754056.394837408], [792584.4724732169, 5754141.171260091]]}, "properties": {"id": "9414-9412", "from": "518259656", "to": "510170753", "length_m": 94.43664500110778, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792542.8766246845, 5754056.394837408], [792529.6164717686, 5753980.961392687]]}, "properties": {"id": "9415-9417", "from": "518259656", "to": "518259658", "length_m": 76.61666233900849, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792529.6164717686, 5753980.961392687], [792542.8766246845, 5754056.394837408]]}, "properties": {"id": "9418-9416", "from": "518259658", "to": "518259656", "length_m": 76.61666233900849, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792529.6164717686, 5753980.961392687], [792529.755111709, 5753902.641500872]]}, "properties": {"id": "9419-9421", "from": "518259658", "to": "518259652", "length_m": 78.48090658212938, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[814510.0171703724, 5822356.907747858], [814080.1872104456, 5822629.305295948]]}, "properties": {"id": "942-51939-51940-51941-51942-51943-51944-51945-51946-51947-51948-51949-51950-51951-51952", "from": "35091512", "to": "1834826158", "length_m": 523.106432801696, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792529.755111709, 5753902.641500872], [792529.6164717686, 5753980.961392687]]}, "properties": {"id": "9422-9420", "from": "518259652", "to": "518259658", "length_m": 78.48090658212938, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792529.755111709, 5753902.641500872], [792540.1180176117, 5753856.350638688]]}, "properties": {"id": "9423", "from": "518259652", "to": "518259649", "length_m": 47.43662873062653, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792540.1180176117, 5753856.350638688], [792529.755111709, 5753902.641500872]]}, "properties": {"id": "9424", "from": "518259649", "to": "518259652", "length_m": 47.43662873062653, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778770.5315707204, 5744535.32556597], [779041.2850348623, 5744595.5981001165]]}, "properties": {"id": "9425-9427-9429-9431-9433-9435-9437-9439-9441-9443", "from": "294988706", "to": "294988770", "length_m": 309.257878368688, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779041.2850348623, 5744595.5981001165], [778770.5315707204, 5744535.32556597]]}, "properties": {"id": "9444-9442-9440-9438-9436-9434-9432-9430-9428-9426", "from": "294988770", "to": "294988706", "length_m": 309.257878368688, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779041.2850348623, 5744595.5981001165], [779150.8975944117, 5744571.202935654]]}, "properties": {"id": "9445", "from": "294988770", "to": "2394990000", "length_m": 112.29442202271034, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779150.8975944117, 5744571.202935654], [779041.2850348623, 5744595.5981001165]]}, "properties": {"id": "9446", "from": "2394990000", "to": "294988770", "length_m": 112.29442202271034, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779150.8975944117, 5744571.202935654], [779225.3591847618, 5744435.0592903895]]}, "properties": {"id": "9447-9449-16840-16842-16844-16846-16848-16850-16852", "from": "2394990000", "to": "294988769", "length_m": 203.94109108852587, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792546.0552682568, 5753804.896184428], [792547.9777932644, 5753810.583962405]]}, "properties": {"id": "9451-9452", "from": "845901929", "to": "845902235", "length_m": 6.150787977586717, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792547.9777932644, 5753810.583962405], [792557.7209823094, 5753814.843416376]]}, "properties": {"id": "9453-9454-9455-9456", "from": "845902235", "to": "38411214", "length_m": 11.120400411471605, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792557.7209823094, 5753814.843416376], [792563.3038951673, 5753812.3180369185]]}, "properties": {"id": "9457-9458", "from": "38411214", "to": "845902294", "length_m": 6.193883914970357, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792563.3038951673, 5753812.3180369185], [792566.1515594895, 5753801.011081071]]}, "properties": {"id": "9459-9460-9461-9462", "from": "845902294", "to": "845901810", "length_m": 12.341860499300594, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792566.1515594895, 5753801.011081071], [792550.0232407365, 5753796.471819058]]}, "properties": {"id": "9463-9464-9465-9466-9467-9468", "from": "845901810", "to": "845902426", "length_m": 19.40098937530818, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792550.0232407365, 5753796.471819058], [792546.0552682568, 5753804.896184428]]}, "properties": {"id": "9469-9470-9471", "from": "845902426", "to": "845901929", "length_m": 9.609893150399273, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778069.9334980338, 5744183.910438203], [778065.4614293217, 5744271.848041656]]}, "properties": {"id": "9472-9474-9476-9478", "from": "294988786", "to": "294988793", "length_m": 94.8086877834148, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778065.4614293217, 5744271.848041656], [778069.9334980338, 5744183.910438203]]}, "properties": {"id": "9479-9477-9475-9473", "from": "294988793", "to": "294988786", "length_m": 94.8086877834148, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834199.8015480221, 5812285.2375922], [833830.7130415575, 5811461.47103769]]}, "properties": {"id": "9480-9481-9482-9483-9484-9485-9486-9487-9488-50180-50181", "from": "268169658", "to": "268169790", "length_m": 920.9256609359716, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778060.9215071702, 5744279.395220421], [778065.4614293217, 5744271.848041656]]}, "properties": {"id": "9489", "from": "294988795", "to": "294988793", "length_m": 8.807428727495344, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778065.4614293217, 5744271.848041656], [778060.9215071702, 5744279.395220421]]}, "properties": {"id": "9490", "from": "294988793", "to": "294988795", "length_m": 8.807428727495344, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778065.4614293217, 5744271.848041656], [778073.8373630898, 5744268.013431987]]}, "properties": {"id": "9491", "from": "294988793", "to": "294988797", "length_m": 9.21197579239726, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778073.8373630898, 5744268.013431987], [778065.4614293217, 5744271.848041656]]}, "properties": {"id": "9492", "from": "294988797", "to": "294988793", "length_m": 9.21197579239726, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791968.6545613535, 5754389.477781549], [791952.3451394106, 5754311.186561789]]}, "properties": {"id": "9493-9495", "from": "3599593678", "to": "845902169", "length_m": 79.98089342852973, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791952.3451394106, 5754311.186561789], [791968.6545613535, 5754389.477781549]]}, "properties": {"id": "9496-9494", "from": "845902169", "to": "3599593678", "length_m": 79.98089342852973, "freespeed_mps": 16.666666666666668, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834177.5630598802, 5812233.157947851], [834634.6252867342, 5813148.307546269]]}, "properties": {"id": "9497-9498-9499-9500-9501-9502-9503-9504-9505-9506-9507-9508-9509-9510-50200-50201-50202-50203-50204-12791-12792-12793-12794-12795-12796-12797-12798", "from": "268220025", "to": "268218803", "length_m": 1105.5054390929654, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779041.2850348623, 5744595.5981001165], [779020.7809978905, 5744525.5841733385]]}, "properties": {"id": "9511-9513", "from": "294988770", "to": "2562476417", "length_m": 73.46861190301954, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779020.7809978905, 5744525.5841733385], [779041.2850348623, 5744595.5981001165]]}, "properties": {"id": "9514-9512", "from": "2562476417", "to": "294988770", "length_m": 73.46861190301954, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789931.2758940725, 5752266.271063677], [789909.067044357, 5752146.488100954]]}, "properties": {"id": "9515", "from": "270452270", "to": "510171672", "length_m": 121.82442755927087, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789909.067044357, 5752146.488100954], [789896.495129361, 5752076.818577846]]}, "properties": {"id": "9516", "from": "510171672", "to": "845902267", "length_m": 70.79474197014524, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789896.495129361, 5752076.818577846], [789888.1336890581, 5752030.515999783]]}, "properties": {"id": "9517", "from": "845902267", "to": "270452290", "length_m": 47.05148686944123, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789888.1336890581, 5752030.515999783], [789864.1523999549, 5751812.188837564]]}, "properties": {"id": "9518-9519-9520-9521-9522", "from": "270452290", "to": "510171345", "length_m": 221.52219669302823, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792966.4372078024, 5768619.5859526945], [792972.9105766522, 5768653.796026314]]}, "properties": {"id": "952-953", "from": "3914372761", "to": "270450174", "length_m": 34.81714687216848, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789864.1523999549, 5751812.188837564], [789872.3183250879, 5751785.587318997]]}, "properties": {"id": "9523-9524", "from": "510171345", "to": "4553047633", "length_m": 27.859339939870164, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789872.3183250879, 5751785.587318997], [789942.5169218365, 5751539.833916272]]}, "properties": {"id": "9525-9526-9527-9528-9529-9530-9531-5883-5884-5885-5886-5887", "from": "4553047633", "to": "270452466", "length_m": 267.46806838932423, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[792972.9105766522, 5768653.796026314], [792979.8529818259, 5768666.74927451]]}, "properties": {"id": "954", "from": "270450174", "to": "36692770", "length_m": 14.69638145032007, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[835254.1697304295, 5808841.017665703], [835252.6913528542, 5808307.499622606]]}, "properties": {"id": "9544-9545-9546-9547", "from": "291667121", "to": "75156957", "length_m": 533.5366094589488, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[834452.617077715, 5809520.6482612835], [835254.1697304295, 5808841.017665703]]}, "properties": {"id": "9548-9549-9550-9551-9552-9553-9554-9555-9556-9532-9533-9534-9535-9536-9537-9538-9539-9540-9541-9542-9543", "from": "366741775", "to": "291667121", "length_m": 1179.817317884549, "freespeed_mps": 27.77777777777778, "capacity_vph": 8000.0, "lanes": 4.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832488.4078520985, 5812881.858380308], [832494.1182149815, 5812916.363247303]]}, "properties": {"id": "9557", "from": "1536091938", "to": "243827559", "length_m": 34.97419175293383, "freespeed_mps": 16.666666666666668, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832494.1182149815, 5812916.363247303], [832500.0660126747, 5812949.53536205]]}, "properties": {"id": "9558-9559", "from": "243827559", "to": "35082902", "length_m": 33.70719808179227, "freespeed_mps": 16.666666666666668, "capacity_vph": 4500.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791392.8514662655, 5754586.318163821], [791386.0973982333, 5754590.629921899]]}, "properties": {"id": "9560", "from": "518259871", "to": "2548347253", "length_m": 8.013032689428147, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[791410.7084113853, 5754588.75231082], [791429.4870665962, 5754582.028022979]]}, "properties": {"id": "9561", "from": "518259897", "to": "2548347255", "length_m": 19.94627627695286, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832535.597873927, 5813181.630946062], [832549.363196021, 5813267.80252995]]}, "properties": {"id": "9562-9563", "from": "463141611", "to": "243827562", "length_m": 87.26412052602134, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[832549.363196021, 5813267.80252995], [832586.4915825361, 5813503.54725668]]}, "properties": {"id": "9564-9565-9566-9567-19978-2742-2743", "from": "243827562", "to": "243827566", "length_m": 238.69818485031948, "freespeed_mps": 19.444444444444443, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777192.4880242331, 5744625.4304665], [777295.0794092205, 5744606.814985134]]}, "properties": {"id": "9568", "from": "294989031", "to": "294989032", "length_m": 104.2666215850184, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777295.0794092205, 5744606.814985134], [777192.4880242331, 5744625.4304665]]}, "properties": {"id": "9569", "from": "294989032", "to": "294989031", "length_m": 104.2666215850184, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830024.7154819675, 5825619.541855964], [830049.3898746156, 5825737.133007878]]}, "properties": {"id": "9570-9571-9572-9573-9574-9575-9576-9577-9578-9579-9580-9581-9582-9583-9584-9585-9586-9587", "from": "348188443", "to": "348188448", "length_m": 173.2342052071445, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777557.4329937056, 5744791.34822102], [777527.4903178264, 5744730.0031640455]]}, "properties": {"id": "9588-9590-9592-9594-9596-9598", "from": "294989021", "to": "294989012", "length_m": 69.75917067709896, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777527.4903178264, 5744730.0031640455], [777557.4329937056, 5744791.34822102]]}, "properties": {"id": "9599-9597-9595-9593-9591-9589", "from": "294989012", "to": "294989021", "length_m": 69.75917067709896, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777527.4903178264, 5744730.0031640455], [777752.1475886789, 5744550.331069024]]}, "properties": {"id": "9600-9602-9604-9606-9608-9610", "from": "294989012", "to": "294989025", "length_m": 294.7462696470118, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777752.1475886789, 5744550.331069024], [777527.4903178264, 5744730.0031640455]]}, "properties": {"id": "9611-9609-9607-9605-9603-9601", "from": "294989025", "to": "294989012", "length_m": 294.7462696470118, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777222.2151137454, 5744702.686744682], [777417.6550949238, 5744641.2854014095]]}, "properties": {"id": "9616-9618-9620-9622-9624", "from": "294989030", "to": "294989028", "length_m": 208.3149019138196, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777417.6550949238, 5744641.2854014095], [777222.2151137454, 5744702.686744682]]}, "properties": {"id": "9625-9623-9621-9619-9617", "from": "294989028", "to": "294989030", "length_m": 208.3149019138196, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777417.6550949238, 5744641.2854014095], [777509.8887206636, 5744604.809903426]]}, "properties": {"id": "9626-9628-9630-9632", "from": "294989028", "to": "294989006", "length_m": 99.44624603960159, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777509.8887206636, 5744604.809903426], [777417.6550949238, 5744641.2854014095]]}, "properties": {"id": "9633-9631-9629-9627", "from": "294989006", "to": "294989028", "length_m": 99.44624603960159, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777509.8887206636, 5744604.809903426], [777671.418422539, 5744463.256787674]]}, "properties": {"id": "9634-9636-9638", "from": "294989006", "to": "294989008", "length_m": 215.30456161278474, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777671.418422539, 5744463.256787674], [777509.8887206636, 5744604.809903426]]}, "properties": {"id": "9639-9637-9635", "from": "294989008", "to": "294989006", "length_m": 215.30456161278474, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[831994.5752244237, 5813131.615699295], [831983.7133778888, 5813161.452253938]]}, "properties": {"id": "9640-9641-9642-9643-9644", "from": "4737299340", "to": "4117890894", "length_m": 38.15692016248586, "freespeed_mps": 22.22222222222222, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762743.9473208773, 5763092.973579995], [762800.1536210526, 5763408.244353955]]}, "properties": {"id": "9645-9647-9649", "from": "1852765624", "to": "1852765556", "length_m": 320.62228503379976, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762800.1536210526, 5763408.244353955], [762743.9473208773, 5763092.973579995]]}, "properties": {"id": "9650-9648-9646", "from": "1852765556", "to": "1852765624", "length_m": 320.62228503379976, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762800.1536210526, 5763408.244353955], [762872.4393322511, 5763797.0473142]]}, "properties": {"id": "9651-9653", "from": "1852765556", "to": "2378832534", "length_m": 395.465927466316, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762872.4393322511, 5763797.0473142], [762800.1536210526, 5763408.244353955]]}, "properties": {"id": "9654-9652", "from": "2378832534", "to": "1852765556", "length_m": 395.465927466316, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762872.4393322511, 5763797.0473142], [762875.3488005808, 5763813.50816024]]}, "properties": {"id": "9655", "from": "2378832534", "to": "209025086", "length_m": 16.71599407884767, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[762875.3488005808, 5763813.50816024], [762872.4393322511, 5763797.0473142]]}, "properties": {"id": "9656", "from": "209025086", "to": "2378832534", "length_m": 16.71599407884767, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777417.6550949238, 5744641.2854014095], [777374.7997913391, 5744591.664901726]]}, "properties": {"id": "9657", "from": "294989028", "to": "294989033", "length_m": 65.5650136289238, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777374.7997913391, 5744591.664901726], [777417.6550949238, 5744641.2854014095]]}, "properties": {"id": "9658", "from": "294989033", "to": "294989028", "length_m": 65.5650136289238, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790548.01831481, 5751432.614603723], [790548.9096713937, 5751443.019095423]]}, "properties": {"id": "9670-9671-9672", "from": "509915763", "to": "510558097", "length_m": 11.158189809227956, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790548.9096713937, 5751443.019095423], [790557.1932180319, 5751445.510403483]]}, "properties": {"id": "9673-9674-9675", "from": "510558097", "to": "37693772", "length_m": 9.012656367035476, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790557.1932180319, 5751445.510403483], [790557.5196795283, 5751429.06014986]]}, "properties": {"id": "9676-9677-9678-9679-9680-9681-9682", "from": "37693772", "to": "234686648", "length_m": 22.217566345126983, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790557.5196795283, 5751429.06014986], [790548.01831481, 5751432.614603723]]}, "properties": {"id": "9683-9684-9685-9669", "from": "234686648", "to": "509915763", "length_m": 10.806072830074957, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790010.1295240424, 5766704.593997886], [789999.0309521258, 5766698.845013445]]}, "properties": {"id": "97-98-99-100", "from": "4198709899", "to": "4198707179", "length_m": 12.54659845386822, "freespeed_mps": 19.444444444444443, "capacity_vph": 2500.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830987.9083765405, 5813767.922735041], [830990.8581295849, 5813788.373739739]]}, "properties": {"id": "972", "from": "360504702", "to": "360504707", "length_m": 20.66263865468484, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[830990.8581295849, 5813788.373739739], [830987.9083765405, 5813767.922735041]]}, "properties": {"id": "973", "from": "360504707", "to": "360504702", "length_m": 20.66263865468484, "freespeed_mps": 27.77777777777778, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777174.1498334974, 5744539.36919221], [777509.8887206636, 5744604.809903426]]}, "properties": {"id": "9746-9748-9750-9752-9754-9756", "from": "294988999", "to": "294989006", "length_m": 384.08758780739544, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777509.8887206636, 5744604.809903426], [777174.1498334974, 5744539.36919221]]}, "properties": {"id": "9757-9755-9753-9751-9749-9747", "from": "294989006", "to": "294988999", "length_m": 384.08758780739544, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777681.1536262009, 5744171.712253553], [777515.6147395857, 5744383.4281958565]]}, "properties": {"id": "9758-9760-9762-9764-9766", "from": "294988843", "to": "294988849", "length_m": 392.6759946813446, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777515.6147395857, 5744383.4281958565], [777681.1536262009, 5744171.712253553]]}, "properties": {"id": "9767-9765-9763-9761-9759", "from": "294988849", "to": "294988843", "length_m": 392.6759946813446, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777720.162365406, 5744295.577451912], [777701.1935020374, 5744354.042769428]]}, "properties": {"id": "9768", "from": "294988833", "to": "294988864", "length_m": 61.465528028892535, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777701.1935020374, 5744354.042769428], [777720.162365406, 5744295.577451912]]}, "properties": {"id": "9769", "from": "294988864", "to": "294988833", "length_m": 61.465528028892535, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777689.689657612, 5744158.581939293], [777951.1420564168, 5744250.793857409]]}, "properties": {"id": "9770", "from": "294988841", "to": "294988801", "length_m": 277.2370722261742, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777951.1420564168, 5744250.793857409], [777689.689657612, 5744158.581939293]]}, "properties": {"id": "9771", "from": "294988801", "to": "294988841", "length_m": 277.2370722261742, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837598.1397840637, 5818694.387606069], [837547.0194751972, 5818722.578589456]]}, "properties": {"id": "9772", "from": "169812102", "to": "303682972", "length_m": 58.37822810325607, "freespeed_mps": 16.666666666666668, "capacity_vph": 3000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789797.263130618, 5753582.972012815], [789963.930434078, 5753432.641282858]]}, "properties": {"id": "9773-9775-9777-9779", "from": "509915452", "to": "509915561", "length_m": 304.48862683478893, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789963.930434078, 5753432.641282858], [789797.263130618, 5753582.972012815]]}, "properties": {"id": "9780-9778-9776-9774", "from": "509915561", "to": "509915452", "length_m": 304.48862683478893, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790067.286693206, 5753360.272396913], [789955.2533790104, 5753379.770299866]]}, "properties": {"id": "9781", "from": "509915571", "to": "509915593", "length_m": 113.71733224028267, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789955.2533790104, 5753379.770299866], [790067.286693206, 5753360.272396913]]}, "properties": {"id": "9782", "from": "509915593", "to": "509915571", "length_m": 113.71733224028267, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777350.3227066502, 5743954.739362127], [777224.3743224109, 5744313.854828828]]}, "properties": {"id": "9783", "from": "148794923", "to": "289545830", "length_m": 380.5613146152328, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777224.3743224109, 5744313.854828828], [777350.3227066502, 5743954.739362127]]}, "properties": {"id": "9784", "from": "289545830", "to": "148794923", "length_m": 380.5613146152328, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777224.3743224109, 5744313.854828828], [777197.2333451989, 5744396.904514945]]}, "properties": {"id": "9785", "from": "289545830", "to": "294977517", "length_m": 87.37209520006056, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777197.2333451989, 5744396.904514945], [777224.3743224109, 5744313.854828828]]}, "properties": {"id": "9786", "from": "294977517", "to": "289545830", "length_m": 87.37209520006056, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777197.2333451989, 5744396.904514945], [777165.264636951, 5744489.599805604]]}, "properties": {"id": "9787-9789", "from": "294977517", "to": "289884990", "length_m": 98.08212491312693, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777165.264636951, 5744489.599805604], [777197.2333451989, 5744396.904514945]]}, "properties": {"id": "9790-9788", "from": "289884990", "to": "294977517", "length_m": 98.08212491312693, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777165.264636951, 5744489.599805604], [777141.2767550682, 5744784.322119898]]}, "properties": {"id": "9791-9793-9795-9797-9799-9801-9803-9805", "from": "289884990", "to": "294988946", "length_m": 350.6807384683997, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777141.2767550682, 5744784.322119898], [777165.264636951, 5744489.599805604]]}, "properties": {"id": "9806-9804-9802-9800-9798-9796-9794-9792", "from": "294988946", "to": "289884990", "length_m": 350.6807384683997, "freespeed_mps": 10.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788114.6740451555, 5750386.705217203], [788110.6890463945, 5750221.333335924]]}, "properties": {"id": "9830", "from": "509914453", "to": "508067953", "length_m": 165.419887982993, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788110.6890463945, 5750221.333335924], [788114.6740451555, 5750386.705217203]]}, "properties": {"id": "9831", "from": "508067953", "to": "509914453", "length_m": 165.419887982993, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790433.3930906839, 5761543.000421805], [790442.4530547608, 5761564.403764447]]}, "properties": {"id": "9832-9833-9834-9835", "from": "837417555", "to": "837417422", "length_m": 23.507441772363666, "freespeed_mps": 22.0, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789535.3925925824, 5753629.883110485], [789515.6547843716, 5753518.068879015]]}, "properties": {"id": "9836", "from": "509915255", "to": "3577715662", "length_m": 113.54295847635719, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789515.6547843716, 5753518.068879015], [789535.3925925824, 5753629.883110485]]}, "properties": {"id": "9837", "from": "3577715662", "to": "509915255", "length_m": 113.54295847635719, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789515.6547843716, 5753518.068879015], [789480.2194647661, 5753342.598670933]]}, "properties": {"id": "9838-13328", "from": "3577715662", "to": "844859922", "length_m": 179.3646170761051, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789962.6197301978, 5753619.378247747], [789951.6711562902, 5753555.1965463]]}, "properties": {"id": "9862", "from": "509915382", "to": "509915405", "length_m": 65.1088478607875, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789951.6711562902, 5753555.1965463], [789962.6197301978, 5753619.378247747]]}, "properties": {"id": "9863", "from": "509915405", "to": "509915382", "length_m": 65.1088478607875, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777286.79672013, 5836263.883940572], [775189.7456061256, 5837392.031639196]]}, "properties": {"id": "9864-10443", "from": "35095681", "to": "317109057", "length_m": 2381.535069053348, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[790095.1896629541, 5753518.517797712], [789982.1110408532, 5753537.497721353]]}, "properties": {"id": "9865-9867", "from": "509915428", "to": "509915297", "length_m": 115.34013334577563, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789982.1110408532, 5753537.497721353], [790095.1896629541, 5753518.517797712]]}, "properties": {"id": "9868-9866", "from": "509915297", "to": "509915428", "length_m": 115.34013334577563, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780042.7693962115, 5834762.107695909], [779195.699589448, 5834915.390944013]]}, "properties": {"id": "9873-9874-9875", "from": "317108826", "to": "317108907", "length_m": 861.2123403689448, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779195.699589448, 5834915.390944013], [778583.0925515154, 5835306.298050714]]}, "properties": {"id": "9876-9877-9878-9879-9880", "from": "317108907", "to": "35095679", "length_m": 732.579636674072, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778583.0925515154, 5835306.298050714], [777985.193356447, 5835806.451288572]]}, "properties": {"id": "9881", "from": "35095679", "to": "317108977", "length_m": 779.5105572423417, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777985.193356447, 5835806.451288572], [777286.79672013, 5836263.883940572]]}, "properties": {"id": "9882-9883-9884-9885-9886", "from": "317108977", "to": "35095681", "length_m": 837.5273096849459, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789535.3925925824, 5753629.883110485], [789654.3955586225, 5753608.563023168]]}, "properties": {"id": "9887", "from": "509915255", "to": "3577715659", "length_m": 120.8976922445848, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789654.3955586225, 5753608.563023168], [789535.3925925824, 5753629.883110485]]}, "properties": {"id": "9888", "from": "3577715659", "to": "509915255", "length_m": 120.8976922445848, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789654.3955586225, 5753608.563023168], [789691.0588496891, 5753602.000945976]]}, "properties": {"id": "9889", "from": "3577715659", "to": "3577715663", "length_m": 37.24590934668859, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789691.0588496891, 5753602.000945976], [789654.3955586225, 5753608.563023168]]}, "properties": {"id": "9890", "from": "3577715663", "to": "3577715659", "length_m": 37.24590934668859, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789691.0588496891, 5753602.000945976], [789777.9398104765, 5753586.433419247]]}, "properties": {"id": "9891", "from": "3577715663", "to": "3577715665", "length_m": 88.26465434356345, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789777.9398104765, 5753586.433419247], [789691.0588496891, 5753602.000945976]]}, "properties": {"id": "9892", "from": "3577715665", "to": "3577715663", "length_m": 88.26465434356345, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789777.9398104765, 5753586.433419247], [789797.263130618, 5753582.972012815]]}, "properties": {"id": "9893", "from": "3577715665", "to": "509915452", "length_m": 19.630894890485223, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789797.263130618, 5753582.972012815], [789777.9398104765, 5753586.433419247]]}, "properties": {"id": "9894", "from": "509915452", "to": "3577715665", "length_m": 19.630894890485223, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789797.263130618, 5753582.972012815], [789865.4994914994, 5753571.240670877]]}, "properties": {"id": "9895", "from": "509915452", "to": "509915360", "length_m": 69.23745596970235, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789865.4994914994, 5753571.240670877], [789797.263130618, 5753582.972012815]]}, "properties": {"id": "9896", "from": "509915360", "to": "509915452", "length_m": 69.23745596970235, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789865.4994914994, 5753571.240670877], [789951.6711562902, 5753555.1965463]]}, "properties": {"id": "9897", "from": "509915360", "to": "509915405", "length_m": 87.65255110124475, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789951.6711562902, 5753555.1965463], [789865.4994914994, 5753571.240670877]]}, "properties": {"id": "9898", "from": "509915405", "to": "509915360", "length_m": 87.65255110124475, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789951.6711562902, 5753555.1965463], [789982.1110408532, 5753537.497721353]]}, "properties": {"id": "9899-9901-9903", "from": "509915405", "to": "509915297", "length_m": 36.645969811271115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789982.1110408532, 5753537.497721353], [789951.6711562902, 5753555.1965463]]}, "properties": {"id": "9904-9902-9900", "from": "509915297", "to": "509915405", "length_m": 36.645969811271115, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789982.1110408532, 5753537.497721353], [789973.1302866775, 5753485.682421386]]}, "properties": {"id": "9905", "from": "509915297", "to": "5956023053", "length_m": 52.58782419756862, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789973.1302866775, 5753485.682421386], [789982.1110408532, 5753537.497721353]]}, "properties": {"id": "9906", "from": "5956023053", "to": "509915297", "length_m": 52.58782419756862, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789973.1302866775, 5753485.682421386], [789963.930434078, 5753432.641282858]]}, "properties": {"id": "9907", "from": "5956023053", "to": "509915561", "length_m": 53.833072187744705, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789963.930434078, 5753432.641282858], [789973.1302866775, 5753485.682421386]]}, "properties": {"id": "9908", "from": "509915561", "to": "5956023053", "length_m": 53.833072187744705, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789963.930434078, 5753432.641282858], [789955.2533790104, 5753379.770299866]]}, "properties": {"id": "9909", "from": "509915561", "to": "509915593", "length_m": 53.57828034052998, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789955.2533790104, 5753379.770299866], [789963.930434078, 5753432.641282858]]}, "properties": {"id": "9910", "from": "509915593", "to": "509915561", "length_m": 53.57828034052998, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789955.2533790104, 5753379.770299866], [789945.8797244999, 5753331.147845601]]}, "properties": {"id": "9911", "from": "509915593", "to": "3577715618", "length_m": 49.51775899937141, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789945.8797244999, 5753331.147845601], [789955.2533790104, 5753379.770299866]]}, "properties": {"id": "9912", "from": "3577715618", "to": "509915593", "length_m": 49.51775899937141, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789945.8797244999, 5753331.147845601], [789930.884737618, 5753252.06252616]]}, "properties": {"id": "9913-9915", "from": "3577715618", "to": "509915327", "length_m": 80.49433293448539, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789930.884737618, 5753252.06252616], [789945.8797244999, 5753331.147845601]]}, "properties": {"id": "9916-9914", "from": "509915327", "to": "3577715618", "length_m": 80.49433293448539, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789881.9560034384, 5753664.455613325], [789865.4994914994, 5753571.240670877]]}, "properties": {"id": "9921", "from": "509915349", "to": "509915360", "length_m": 94.65644338449094, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[789865.4994914994, 5753571.240670877], [789881.9560034384, 5753664.455613325]]}, "properties": {"id": "9922", "from": "509915360", "to": "509915349", "length_m": 94.65644338449094, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[777768.1010970664, 5836018.899124195], [778208.4297289021, 5835662.769144122]]}, "properties": {"id": "9925-9926", "from": "317109025", "to": "35098333", "length_m": 566.4962175461266, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778208.4297289021, 5835662.769144122], [778870.0546277307, 5835116.040846222]]}, "properties": {"id": "9927", "from": "35098333", "to": "35098334", "length_m": 858.2886102556106, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[778870.0546277307, 5835116.040846222], [779446.9377417138, 5834894.075489346]]}, "properties": {"id": "9928-9929-9930-9931-9932-9933", "from": "35098334", "to": "35098336", "length_m": 625.4990810148518, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[779446.9377417138, 5834894.075489346], [780105.8713411449, 5834787.942014851]]}, "properties": {"id": "9934", "from": "35098336", "to": "35098337", "length_m": 667.4262514845861, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[780105.8713411449, 5834787.942014851], [780971.769605366, 5834831.11151074]]}, "properties": {"id": "9935-9936-9937-9938-27729-27720-27728-27659-27660", "from": "35098337", "to": "35098339", "length_m": 869.4203611671901, "freespeed_mps": 30.555555555555554, "capacity_vph": 4000.0, "lanes": 2.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788242.1521437928, 5751306.714642396], [788057.3339568697, 5751239.453398141]]}, "properties": {"id": "9939-9941-9943", "from": "509914428", "to": "509914425", "length_m": 196.96433082833693, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788057.3339568697, 5751239.453398141], [788242.1521437928, 5751306.714642396]]}, "properties": {"id": "9944-9942-9940", "from": "509914425", "to": "509914428", "length_m": 196.96433082833693, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788057.3339568697, 5751239.453398141], [788052.5823884853, 5751246.358393384]]}, "properties": {"id": "9945", "from": "509914425", "to": "848692738", "length_m": 8.381906775040841, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788052.5823884853, 5751246.358393384], [788057.3339568697, 5751239.453398141]]}, "properties": {"id": "9946", "from": "848692738", "to": "509914425", "length_m": 8.381906775040841, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838793.5740077336, 5808399.022435313], [838061.3131795124, 5808535.879803186]]}, "properties": {"id": "9947-9949-9951-9953-9955", "from": "250291495", "to": "3138343362", "length_m": 744.9553749641074, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[838061.3131795124, 5808535.879803186], [838793.5740077336, 5808399.022435313]]}, "properties": {"id": "9956-9954-9952-9950-9948", "from": "3138343362", "to": "250291495", "length_m": 744.9553749641074, "freespeed_mps": 16.666666666666668, "capacity_vph": 1600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788549.1604882726, 5751183.490878152], [788315.9173221127, 5751224.421241212]]}, "properties": {"id": "9957", "from": "509914035", "to": "509914036", "length_m": 236.8072400968331, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788315.9173221127, 5751224.421241212], [788549.1604882726, 5751183.490878152]]}, "properties": {"id": "9958", "from": "509914036", "to": "509914035", "length_m": 236.8072400968331, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788315.9173221127, 5751224.421241212], [788231.3704871673, 5751247.527358414]]}, "properties": {"id": "9959-9961-9963", "from": "509914036", "to": "509914037", "length_m": 87.87495831490877, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788231.3704871673, 5751247.527358414], [788315.9173221127, 5751224.421241212]]}, "properties": {"id": "9964-9962-9960", "from": "509914037", "to": "509914036", "length_m": 87.87495831490877, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788566.1145610578, 5751274.444161004], [788324.2733074337, 5751317.104834992]]}, "properties": {"id": "9965", "from": "509914436", "to": "509914437", "length_m": 245.57508997248374, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[788324.2733074337, 5751317.104834992], [788566.1145610578, 5751274.444161004]]}, "properties": {"id": "9966", "from": "509914437", "to": "509914436", "length_m": 245.57508997248374, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785389.4632569688, 5753025.022046961], [784628.7571400607, 5753167.866766654]]}, "properties": {"id": "9976-9974-9972-9970-9968-10013-10011-10009", "from": "148800346", "to": "1708444920", "length_m": 774.4976737850642, "freespeed_mps": 13.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[785389.4632569688, 5753025.022046961], [785866.9347157924, 5752933.254858104]]}, "properties": {"id": "9977-9979-2264-2266-2268", "from": "148800346", "to": "1708444886", "length_m": 486.43196180942374, "freespeed_mps": 13.0, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837227.2876563801, 5812022.221915591], [837235.9813228645, 5812020.931446921]]}, "properties": {"id": "9981", "from": "268175488", "to": "268175490", "length_m": 8.788921750298295, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[837235.9813228645, 5812020.931446921], [837343.1915837566, 5812005.882703651]]}, "properties": {"id": "9982-9983", "from": "268175490", "to": "268175994", "length_m": 108.2619098079866, "freespeed_mps": 19.444444444444443, "capacity_vph": 6000.0, "lanes": 3.0, "modes": "car"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[784714.1349667116, 5752286.706481231], [784981.6229587398, 5752517.286654734]]}, "properties": {"id": "9986-9988-9990-9992-9994-9996-9998-10000-10002-10004-10006", "from": "509915122", "to": "148800372", "length_m": 414.81091700693713, "freespeed_mps": 13.88888888888889, "capacity_vph": 600.0, "lanes": 1.0, "modes": "car"}}]} \ No newline at end of file diff --git a/ees/scenarios/surf-coast-shire/network-nodes.geojson b/ees/scenarios/surf-coast-shire/network-nodes.geojson new file mode 100644 index 00000000..3596428e --- /dev/null +++ b/ees/scenarios/surf-coast-shire/network-nodes.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "name": "network-nodes", "crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:EPSG::32754"}}, "features": [{"type": "Feature", "geometry": {"type": "Point", "coordinates": [788371.9653189037, 5769833.152696605]}, "properties": {"id": "-125853"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752712.422325917, 5766399.578115652]}, "properties": {"id": "1012039835"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752950.3375940288, 5767662.765761363]}, "properties": {"id": "1012039836"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754961.7166114553, 5762921.469311016]}, "properties": {"id": "1012039848"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759330.0993331124, 5764358.94073809]}, "properties": {"id": "1012039850"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752180.2925604396, 5763422.623037493]}, "properties": {"id": "1012039852"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752611.7554593919, 5765850.941078944]}, "properties": {"id": "1012039856"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755377.2079896299, 5765220.01245935]}, "properties": {"id": "1012039857"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758303.0582791984, 5762342.161209261]}, "properties": {"id": "1012039861"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758826.6881441276, 5762506.929853397]}, "properties": {"id": "1012039865"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751470.3213642278, 5759497.987423494]}, "properties": {"id": "1012039873"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752288.4475226835, 5764026.445136943]}, "properties": {"id": "1012039874"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755729.0982484919, 5758473.307643506]}, "properties": {"id": "1012123549"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756859.3015121373, 5756556.640186069]}, "properties": {"id": "1012123567"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756551.2541751927, 5754880.450814186]}, "properties": {"id": "1012123616"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756776.018870421, 5756977.0395828225]}, "properties": {"id": "1012123632"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765491.1081977978, 5815895.882295314]}, "properties": {"id": "1013261100"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767787.5553209658, 5810861.740124112]}, "properties": {"id": "1013273062"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768102.4083189693, 5810400.686860565]}, "properties": {"id": "1013273076"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791837.838559542, 5762586.942940703]}, "properties": {"id": "1017986072"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755422.5452783246, 5828782.644563265]}, "properties": {"id": "1019519149"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [813043.2350049758, 5822836.10958661]}, "properties": {"id": "1024308084"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756835.1049876831, 5839041.148093397]}, "properties": {"id": "1034557512"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758934.6787224987, 5838582.704971528]}, "properties": {"id": "1034577842"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757745.6672412053, 5775487.69669767]}, "properties": {"id": "1037998269"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756915.3156312018, 5775964.559313802]}, "properties": {"id": "1037998271"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789431.1796055003, 5753105.397904726]}, "properties": {"id": "1058352938"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781362.8942845099, 5758934.4227577755]}, "properties": {"id": "1078364895"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747332.1912980346, 5749743.161179188]}, "properties": {"id": "1078364897"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746794.9923759752, 5749822.155405442]}, "properties": {"id": "1078364902"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [825806.7437776839, 5822504.617258871]}, "properties": {"id": "1080119487"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [825944.586511422, 5822481.408331982]}, "properties": {"id": "1080119490"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [825989.4181534853, 5822459.514425036]}, "properties": {"id": "1080119513"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826265.2068378299, 5822416.207898628]}, "properties": {"id": "1080119539"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826122.2700997626, 5822436.132655673]}, "properties": {"id": "1080119546"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780863.2284407124, 5747460.954246154]}, "properties": {"id": "1083026063"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758926.2829776981, 5762006.436173584]}, "properties": {"id": "1096015556"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760556.8196751565, 5761424.307094015]}, "properties": {"id": "1096015558"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [718578.9999390708, 5793703.803581664]}, "properties": {"id": "1124738475"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [726054.3872049438, 5825994.113909578]}, "properties": {"id": "1124738522"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753609.8173184205, 5842616.245301897]}, "properties": {"id": "1140333230"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751796.059391847, 5840283.3595119435]}, "properties": {"id": "1140362179"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750058.0905419933, 5836302.136644589]}, "properties": {"id": "1140594080"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751723.2676403994, 5838038.822022971]}, "properties": {"id": "1140763089"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751248.6336365705, 5837501.2096072305]}, "properties": {"id": "1140763095"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751221.2010755367, 5837458.652550371]}, "properties": {"id": "1140763112"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810207.949088463, 5790227.060939358]}, "properties": {"id": "1173113225"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810213.9639818718, 5790203.810515659]}, "properties": {"id": "1173113227"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747496.0886335496, 5746435.138690569]}, "properties": {"id": "1184254434"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759056.088249139, 5731004.885118453]}, "properties": {"id": "1187107446"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770677.1835645072, 5802955.259538905]}, "properties": {"id": "1201434984"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836269.0483596874, 5817281.306727197]}, "properties": {"id": "1208302360"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758383.1349607029, 5826785.952581027]}, "properties": {"id": "1215845548"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [729606.6773100153, 5754820.493076938]}, "properties": {"id": "1228824820"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826838.1451004129, 5801145.120304722]}, "properties": {"id": "125287423"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826228.5769566986, 5800198.084696901]}, "properties": {"id": "125289616"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826291.2937965405, 5800785.3158637155]}, "properties": {"id": "125290846"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829233.245843824, 5801773.481681827]}, "properties": {"id": "125301103"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833894.9097144709, 5822052.284320282]}, "properties": {"id": "1257431998"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834356.8665141871, 5821886.798149931]}, "properties": {"id": "1257432044"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833812.0593624666, 5822035.177219472]}, "properties": {"id": "1257432128"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833551.7166143686, 5822608.320306225]}, "properties": {"id": "1257432185"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833779.171457748, 5822014.425285319]}, "properties": {"id": "1257432190"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787304.5387106524, 5764792.842501673]}, "properties": {"id": "1270758456"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786400.2462653454, 5764895.843825157]}, "properties": {"id": "1270758465"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785683.6712950005, 5765454.697071742]}, "properties": {"id": "1270758466"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785802.0339875701, 5765338.306950789]}, "properties": {"id": "1270758476"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786406.4559506364, 5764914.495433213]}, "properties": {"id": "1270758478"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787247.7409632091, 5764762.715810174]}, "properties": {"id": "1270758480"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788254.4111639413, 5765313.568393441]}, "properties": {"id": "1270758492"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787745.4206071688, 5764911.558063916]}, "properties": {"id": "1270758496"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788216.9884942293, 5765253.739676239]}, "properties": {"id": "1270758517"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831706.5484488313, 5821469.792441484]}, "properties": {"id": "1312612514"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831844.3990732379, 5821423.543773826]}, "properties": {"id": "1312612515"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790509.3624438904, 5752152.0649939515]}, "properties": {"id": "1321582051"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790508.783643635, 5752160.788553623]}, "properties": {"id": "1321582130"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [805757.2233619791, 5824772.925791279]}, "properties": {"id": "1340916883"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [805733.746389298, 5824599.356429143]}, "properties": {"id": "1340916957"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [803154.2492193717, 5825988.228887504]}, "properties": {"id": "1341259752"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817673.1659560916, 5821691.753707917]}, "properties": {"id": "1346779137"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789446.5097481234, 5766623.049804277]}, "properties": {"id": "1357342798"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830893.0273379248, 5813827.831874043]}, "properties": {"id": "1363214351"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748757.1838676509, 5770118.21989809]}, "properties": {"id": "1369826889"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747144.1906338868, 5774456.082153794]}, "properties": {"id": "1369826922"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752227.1968749044, 5768084.605018137]}, "properties": {"id": "1369826943"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747050.2736303483, 5772648.197992036]}, "properties": {"id": "1369826944"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750442.507914509, 5775520.435923426]}, "properties": {"id": "1372421468"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749718.8004316855, 5770850.550645131]}, "properties": {"id": "1372490766"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749209.7838668805, 5769844.26995865]}, "properties": {"id": "1372490768"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750360.4262062275, 5781321.666431916]}, "properties": {"id": "1372490770"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837244.9692358018, 5812097.644514551]}, "properties": {"id": "1387186631"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837224.6062253031, 5812005.685700946]}, "properties": {"id": "1387206041"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787876.3282868057, 5764833.820746156]}, "properties": {"id": "1412037704"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787866.809728794, 5764789.025259718]}, "properties": {"id": "1412037714"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787744.1616736475, 5765073.321817973]}, "properties": {"id": "1412037725"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787837.1307048574, 5764874.657357141]}, "properties": {"id": "1412037731"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787703.1905117494, 5765043.791571635]}, "properties": {"id": "1412037741"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787771.3277508038, 5764780.531364758]}, "properties": {"id": "1412037743"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787778.0755587625, 5764853.138765428]}, "properties": {"id": "1412037748"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828267.8892998332, 5822070.72425456]}, "properties": {"id": "1412723324"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826122.3991558035, 5822449.013120173]}, "properties": {"id": "1412723341"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [825395.6243962484, 5822579.160054384]}, "properties": {"id": "1412723425"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [824214.586865132, 5822786.987565253]}, "properties": {"id": "1412733078"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [824874.4905785678, 5822674.11113384]}, "properties": {"id": "1412733100"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [823572.3355577646, 5822904.620800364]}, "properties": {"id": "1412733111"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [822533.0896834265, 5823101.426167605]}, "properties": {"id": "1412733125"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [821735.5394246256, 5823293.1156922635]}, "properties": {"id": "1412733133"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [824655.0368507528, 5822711.151722778]}, "properties": {"id": "1412733139"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [819285.3995677417, 5821034.077447663]}, "properties": {"id": "1412733140"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [821081.0079857123, 5823448.580450462]}, "properties": {"id": "1412733142"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820618.3060718633, 5819676.996676713]}, "properties": {"id": "1412737863"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817959.4168566959, 5822724.607011689]}, "properties": {"id": "1412762736"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817757.5173992804, 5821801.462061206]}, "properties": {"id": "1412762778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818037.2049001972, 5821892.337351226]}, "properties": {"id": "1412762806"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817712.4300193858, 5822044.363246607]}, "properties": {"id": "1412762807"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818627.1761056023, 5823264.509448486]}, "properties": {"id": "1412762814"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817499.6127009967, 5821823.796471376]}, "properties": {"id": "1412762821"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818999.9041265707, 5823261.597998297]}, "properties": {"id": "1412762837"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818798.9650909746, 5823256.042617123]}, "properties": {"id": "1412762872"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817814.3940275678, 5821676.443231557]}, "properties": {"id": "1412762875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818097.9409644387, 5823001.544474388]}, "properties": {"id": "1412762886"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818046.6529527827, 5823022.341383537]}, "properties": {"id": "1412762889"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817778.5567941092, 5821916.098451991]}, "properties": {"id": "1412762902"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817971.9593548009, 5822720.877739355]}, "properties": {"id": "1412762932"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818032.4829219151, 5822979.943604699]}, "properties": {"id": "1412762947"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818792.9002168502, 5823255.70987962]}, "properties": {"id": "1412762949"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817868.6513146348, 5821834.5112247765]}, "properties": {"id": "1412763787"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817987.1654747454, 5821857.558569857]}, "properties": {"id": "1412779624"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820443.6191299157, 5819848.820643711]}, "properties": {"id": "1412789208"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [823933.7060203659, 5817034.608184316]}, "properties": {"id": "1412789220"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [822655.6018970057, 5817963.664423859]}, "properties": {"id": "1412789222"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820469.7039475632, 5819877.122693767]}, "properties": {"id": "1412789226"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744384.829382828, 5835293.709103658]}, "properties": {"id": "1416197972"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746021.1044331355, 5835988.4329272825]}, "properties": {"id": "1416210977"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750727.6214979319, 5830841.065325098]}, "properties": {"id": "1416377831"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [741370.9887512806, 5833926.47591251]}, "properties": {"id": "1416490286"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751196.2012842455, 5830519.351297021]}, "properties": {"id": "1416644873"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750426.0009828111, 5831462.572699441]}, "properties": {"id": "1416648943"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752446.6511977168, 5830083.313400341]}, "properties": {"id": "1417428774"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793712.9605337498, 5772045.396643253]}, "properties": {"id": "143215342"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793725.8281757724, 5772044.697678714]}, "properties": {"id": "143215349"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [815769.4465196204, 5759068.848715881]}, "properties": {"id": "143236890"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817311.5069183436, 5757764.622414809]}, "properties": {"id": "143570153"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746483.7925584012, 5774579.005773719]}, "properties": {"id": "1436219892"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747627.9927882053, 5771882.256087959]}, "properties": {"id": "1436219937"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768849.7524513744, 5808569.784926187]}, "properties": {"id": "1450543585"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766868.8430699075, 5812929.002526077]}, "properties": {"id": "1450589649"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777350.3227066502, 5743954.739362127]}, "properties": {"id": "148794923"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777097.9252838467, 5743467.205454611]}, "properties": {"id": "148795031"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787283.0861990207, 5763889.547713383]}, "properties": {"id": "148800269"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786449.2076800466, 5759858.098654566]}, "properties": {"id": "148800276"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786039.7341945036, 5759191.592995398]}, "properties": {"id": "148800312"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786092.0549969081, 5758073.897508104]}, "properties": {"id": "148800320"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785425.4989994026, 5753348.995793971]}, "properties": {"id": "148800334"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785389.4632569688, 5753025.022046961]}, "properties": {"id": "148800346"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784981.6229587398, 5752517.286654734]}, "properties": {"id": "148800372"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790031.1312165265, 5752800.967994779]}, "properties": {"id": "148808265"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789775.2768928094, 5752847.184082781]}, "properties": {"id": "148808268"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789604.8476581076, 5752814.614266621]}, "properties": {"id": "148808274"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789991.5042837171, 5752587.849305163]}, "properties": {"id": "148808280"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793002.1662336318, 5754528.343295757]}, "properties": {"id": "1492271628"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792999.4087414185, 5754499.422520641]}, "properties": {"id": "1492271787"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837489.0458081276, 5818822.226040943]}, "properties": {"id": "1502841861"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837394.2940817024, 5818402.972531017]}, "properties": {"id": "1502841890"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837363.413364894, 5818138.590557268]}, "properties": {"id": "1502841898"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836731.1986858044, 5817524.407791577]}, "properties": {"id": "1502841904"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837351.4366055543, 5818162.331751705]}, "properties": {"id": "1502841906"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836735.5756970644, 5817513.298490877]}, "properties": {"id": "1502841925"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836519.9795090425, 5817420.418555528]}, "properties": {"id": "1502841931"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831113.9788960565, 5824553.213357198]}, "properties": {"id": "1503514919"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837708.3124361427, 5814612.650263548]}, "properties": {"id": "1504829803"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837367.3230535418, 5815501.033172658]}, "properties": {"id": "1504829816"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837368.9550202194, 5815524.273016153]}, "properties": {"id": "1504829875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835293.2511150159, 5820293.197556057]}, "properties": {"id": "1505945018"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837479.2182196034, 5818767.297477125]}, "properties": {"id": "1505977492"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835784.0964722001, 5820256.0605074875]}, "properties": {"id": "1505977524"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837185.6428590356, 5819029.388173642]}, "properties": {"id": "1505977542"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835901.8565466432, 5820213.871171499]}, "properties": {"id": "1505977546"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835824.5059572747, 5820236.324168191]}, "properties": {"id": "1505977547"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835781.930380203, 5820249.510491621]}, "properties": {"id": "1505977560"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835762.5172204566, 5820259.618772296]}, "properties": {"id": "1505977585"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835826.8789849044, 5820243.833127288]}, "properties": {"id": "1505977629"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836961.9521470134, 5819325.460453972]}, "properties": {"id": "1510910441"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836727.6145782004, 5819622.326493301]}, "properties": {"id": "1510910458"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836854.908430949, 5819449.6575156255]}, "properties": {"id": "1510910459"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836956.9326793435, 5819321.306757279]}, "properties": {"id": "1510910487"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837196.6151960685, 5819016.674600739]}, "properties": {"id": "1510910501"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837076.8859449411, 5819168.325620558]}, "properties": {"id": "1510910504"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837511.4993843158, 5818761.583674584]}, "properties": {"id": "1511218216"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838423.9451692898, 5818010.580489237]}, "properties": {"id": "1511218319"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838282.2545549661, 5818202.140580451]}, "properties": {"id": "1511218385"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838361.4257660969, 5818092.920133915]}, "properties": {"id": "1511218462"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837960.3666954106, 5818442.630592603]}, "properties": {"id": "1511218538"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837987.9377723048, 5818447.237856751]}, "properties": {"id": "1511218545"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837493.6882033781, 5818845.865187058]}, "properties": {"id": "1511218599"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837902.3238265247, 5818491.290014842]}, "properties": {"id": "1511218706"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838204.1104524132, 5818282.629130857]}, "properties": {"id": "1511218711"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838597.7103167826, 5817709.437669811]}, "properties": {"id": "1511360212"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837582.3161923954, 5819266.414248854]}, "properties": {"id": "1511360297"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [839051.3988008781, 5817681.0767842345]}, "properties": {"id": "1511360327"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [839122.619635982, 5817604.166121807]}, "properties": {"id": "1511360330"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777717.4524470258, 5761588.104956909]}, "properties": {"id": "1534281124"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834118.9902961713, 5822403.358652301]}, "properties": {"id": "1534925726"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834046.0897673577, 5822311.687149234]}, "properties": {"id": "1534925766"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833711.8881618675, 5821873.578815381]}, "properties": {"id": "1534937583"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833698.5334243954, 5821877.421201184]}, "properties": {"id": "1534937610"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833502.6933461423, 5821305.976741356]}, "properties": {"id": "1534937622"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833521.3153615682, 5821362.297354398]}, "properties": {"id": "1534937817"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835146.7398185835, 5821219.329882022]}, "properties": {"id": "1534939319"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832127.4447968733, 5810411.377566129]}, "properties": {"id": "1535010246"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829132.9006826726, 5814837.927601106]}, "properties": {"id": "1536031862"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828822.5123128057, 5814796.428480172]}, "properties": {"id": "1536031865"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832671.6003989235, 5812932.8503591195]}, "properties": {"id": "1536031875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832396.2030549049, 5812235.102948552]}, "properties": {"id": "1536031888"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832897.6263883365, 5812872.060741429]}, "properties": {"id": "1536031891"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831738.8507389568, 5813292.334063589]}, "properties": {"id": "1536031911"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832065.9902858518, 5813085.492619151]}, "properties": {"id": "1536031942"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831432.2718052659, 5813508.839957625]}, "properties": {"id": "1536068073"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832208.121067426, 5813044.842102315]}, "properties": {"id": "1536081348"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832488.4078520985, 5812881.858380308]}, "properties": {"id": "1536091938"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832514.647109267, 5813037.775481169]}, "properties": {"id": "1536176332"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832531.1548389154, 5813045.480939448]}, "properties": {"id": "1536176345"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832829.7177071951, 5814850.173622707]}, "properties": {"id": "1536186796"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832871.2478721924, 5815081.903955489]}, "properties": {"id": "1536201487"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832967.6091168271, 5815614.153377341]}, "properties": {"id": "1536201638"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833210.7297011408, 5816899.348041574]}, "properties": {"id": "1536231964"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833145.9873730416, 5816694.820010578]}, "properties": {"id": "1536231975"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833229.995824689, 5816985.096641668]}, "properties": {"id": "1536231997"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833065.2871005839, 5816141.879362093]}, "properties": {"id": "1536232001"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833045.6527647176, 5816140.860912975]}, "properties": {"id": "1536232002"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832189.6612392014, 5808297.310973873]}, "properties": {"id": "1536458758"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832428.0848359752, 5808261.626213737]}, "properties": {"id": "1536458838"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833613.3569325394, 5806442.005795076]}, "properties": {"id": "1537726593"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833691.4303395291, 5806441.001435753]}, "properties": {"id": "1537726596"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833809.7370994396, 5806412.630672406]}, "properties": {"id": "1537726625"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836448.2764903512, 5806028.9873277685]}, "properties": {"id": "1537726641"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833515.528733209, 5806467.128948106]}, "properties": {"id": "1537726653"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833689.8620773914, 5806430.190515437]}, "properties": {"id": "1537726655"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836443.314286815, 5806021.962886101]}, "properties": {"id": "1537726656"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834026.4421513089, 5806380.789343518]}, "properties": {"id": "1537726671"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836554.0719584909, 5806013.631333584]}, "properties": {"id": "1537726679"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836582.5157252252, 5806005.69333309]}, "properties": {"id": "1537726732"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835106.3713547278, 5806224.754924854]}, "properties": {"id": "1537726744"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834982.8308828734, 5806242.116793818]}, "properties": {"id": "1537726758"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833614.9826871083, 5806452.280658141]}, "properties": {"id": "1537726774"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836404.1889481007, 5806035.686654037]}, "properties": {"id": "1537726802"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833735.5609933664, 5806423.3739340175]}, "properties": {"id": "1537726834"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833976.5896664225, 5806399.318396719]}, "properties": {"id": "1537726839"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833952.1726933788, 5806402.891234826]}, "properties": {"id": "1537726843"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833974.8839838662, 5806388.390767297]}, "properties": {"id": "1537726853"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833737.1615970598, 5806434.328088291]}, "properties": {"id": "1537726855"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835081.3798068287, 5806228.499215582]}, "properties": {"id": "1537726864"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833950.3934437409, 5806391.888760837]}, "properties": {"id": "1537726866"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836440.2879932945, 5806030.326598107]}, "properties": {"id": "1537726893"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836253.7924046852, 5806054.257506223]}, "properties": {"id": "1537726915"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833811.3883762127, 5806423.52716631]}, "properties": {"id": "1537726926"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833693.4045802956, 5804595.6397118345]}, "properties": {"id": "1537828670"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831845.9838414626, 5802200.720721112]}, "properties": {"id": "1537828680"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792910.4279270213, 5774511.585993617]}, "properties": {"id": "1548463854"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792919.5593301923, 5774517.458615918]}, "properties": {"id": "1548463856"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759749.8202396099, 5838659.907920992]}, "properties": {"id": "1555084483"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760876.757163645, 5838971.6776117515]}, "properties": {"id": "1555084567"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759437.5777384588, 5838570.743865479]}, "properties": {"id": "1555084610"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762592.1382873221, 5839461.831665914]}, "properties": {"id": "1555084631"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760871.0615995585, 5838995.574815173]}, "properties": {"id": "1555084641"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763156.7041991493, 5839599.596954661]}, "properties": {"id": "1555084666"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762599.1748987441, 5839434.613205612]}, "properties": {"id": "1555084675"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760090.5608611311, 5838775.473357743]}, "properties": {"id": "1555084721"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759371.5790964649, 5838572.941416856]}, "properties": {"id": "1555084722"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761781.4094817273, 5839221.886029096]}, "properties": {"id": "1555084724"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757546.5833345, 5839074.187757807]}, "properties": {"id": "1556440055"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757557.977728913, 5839047.8282806985]}, "properties": {"id": "1556440079"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757791.5328593472, 5839046.660772184]}, "properties": {"id": "1556440093"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757801.7154643342, 5839066.984506555]}, "properties": {"id": "1556440095"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793729.0270928104, 5774073.629579565]}, "properties": {"id": "1557825485"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [809079.0432170993, 5823017.345081918]}, "properties": {"id": "1579258902"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790300.2811341684, 5754815.329584787]}, "properties": {"id": "1580591273"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790347.6468616365, 5754818.616605818]}, "properties": {"id": "1580591289"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790282.3039593311, 5754822.455762995]}, "properties": {"id": "1580591301"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790269.7239557349, 5754723.944684677]}, "properties": {"id": "1580591323"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790262.6954585994, 5754834.630956954]}, "properties": {"id": "1580591326"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790318.097645988, 5754810.798818617]}, "properties": {"id": "1580591387"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790360.8121063283, 5754937.5128159]}, "properties": {"id": "1580591389"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790549.1311712906, 5755135.367020636]}, "properties": {"id": "1580591507"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790476.6997569152, 5754800.847897258]}, "properties": {"id": "1580591524"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790348.5366147961, 5754805.369466977]}, "properties": {"id": "1580591542"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796894.2786527616, 5781848.277437776]}, "properties": {"id": "1586628677"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797009.3747870498, 5782066.954091974]}, "properties": {"id": "1586646565"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796749.3250920852, 5760420.961903152]}, "properties": {"id": "1586767394"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [821005.8030322031, 5819358.3654812705]}, "properties": {"id": "1593124107"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787863.9306695075, 5764858.256452981]}, "properties": {"id": "1600806069"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793216.2008135305, 5761076.015611994]}, "properties": {"id": "1604837584"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833637.6139228091, 5821641.950695332]}, "properties": {"id": "1605942470"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833110.9517731881, 5822978.987488106]}, "properties": {"id": "1608495081"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789949.6155541097, 5767077.028413036]}, "properties": {"id": "1611301330"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788909.6479653236, 5766033.645602863]}, "properties": {"id": "1611301414"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789938.7841820274, 5767239.849605784]}, "properties": {"id": "1611301461"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [803767.740259167, 5825882.778759639]}, "properties": {"id": "1640164760"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788200.6160130616, 5754394.84219371]}, "properties": {"id": "1658427356"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787199.8889304977, 5754366.382252296]}, "properties": {"id": "1658427366"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787641.0923285375, 5754283.408724711]}, "properties": {"id": "1658427394"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787038.4758054324, 5754276.242674278]}, "properties": {"id": "1658427408"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786925.3515551249, 5754261.526501683]}, "properties": {"id": "1658427419"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786780.8754882063, 5754238.564765605]}, "properties": {"id": "1658427435"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787085.9254443098, 5754172.283217466]}, "properties": {"id": "1658427454"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786747.1253374466, 5754063.995106015]}, "properties": {"id": "1658427558"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786836.2719249525, 5754052.8585724775]}, "properties": {"id": "1658427561"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787951.4027376003, 5754002.580281448]}, "properties": {"id": "1658427567"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786944.4922505824, 5754031.695982064]}, "properties": {"id": "1658427578"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786752.6724141535, 5754008.172169711]}, "properties": {"id": "1658427603"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786935.0242091191, 5753973.994868402]}, "properties": {"id": "1658427618"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786741.1497914841, 5753950.766237114]}, "properties": {"id": "1658427635"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788318.9064852148, 5753889.687286]}, "properties": {"id": "1658427637"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787332.1318555144, 5753921.634139394]}, "properties": {"id": "1658427652"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786722.607923297, 5753911.192112768]}, "properties": {"id": "1658427668"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752956.4440428894, 5843269.862930076]}, "properties": {"id": "1667975920"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753634.3436057338, 5842637.490674095]}, "properties": {"id": "1667976026"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784220.831245782, 5765705.708645124]}, "properties": {"id": "1669796596"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836371.7493535085, 5804066.070566557]}, "properties": {"id": "1669910704"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837760.8551220401, 5819234.483550636]}, "properties": {"id": "169794583"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837682.846559681, 5819128.640330331]}, "properties": {"id": "169795563"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837598.1397840637, 5818694.387606069]}, "properties": {"id": "169812102"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837974.4443402977, 5818456.798024318]}, "properties": {"id": "169812730"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781755.0807545127, 5765719.349550952]}, "properties": {"id": "1699442592"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783220.5136637674, 5765719.681984783]}, "properties": {"id": "1699442595"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838132.886646843, 5818337.202075012]}, "properties": {"id": "170074240"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838252.2002371561, 5818226.547433369]}, "properties": {"id": "170074244"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838322.0448970112, 5818140.13860595]}, "properties": {"id": "170074245"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838559.6027189624, 5817741.560341916]}, "properties": {"id": "170074256"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [812683.88356919, 5761306.000479563]}, "properties": {"id": "1707204481"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798038.8826308153, 5760162.185087783]}, "properties": {"id": "1708194377"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796950.1948005741, 5760369.461863139]}, "properties": {"id": "1708194419"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789726.8456660245, 5761696.380627897]}, "properties": {"id": "1708355616"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793548.5412072206, 5761014.790698574]}, "properties": {"id": "1708355623"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790450.287909512, 5761562.91103283]}, "properties": {"id": "1708355672"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793216.972086132, 5761022.092319809]}, "properties": {"id": "1708355693"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788460.5240080915, 5761905.693426844]}, "properties": {"id": "1708355755"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788463.3367912428, 5761933.945228253]}, "properties": {"id": "1708355795"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786755.7447048641, 5762256.283853861]}, "properties": {"id": "1708361647"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791631.5191072009, 5761355.22055219]}, "properties": {"id": "1708365711"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785362.0386514103, 5754094.759439745]}, "properties": {"id": "1708406362"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786724.5812655629, 5761314.119245183]}, "properties": {"id": "1708406368"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786553.7171851086, 5760412.735796318]}, "properties": {"id": "1708406406"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785471.0864013715, 5754078.1221365845]}, "properties": {"id": "1708406428"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779440.9865462212, 5756015.753961453]}, "properties": {"id": "1708444833"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782591.7839138226, 5755434.510674173]}, "properties": {"id": "1708444859"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779280.527416292, 5756044.464346213]}, "properties": {"id": "1708444873"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785866.9347157924, 5752933.254858104]}, "properties": {"id": "1708444886"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784628.7571400607, 5753167.866766654]}, "properties": {"id": "1708444920"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770658.0508804024, 5806093.519418413]}, "properties": {"id": "1709378175"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764483.0286328425, 5817422.094927242]}, "properties": {"id": "1709380735"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764254.7925879498, 5817871.642302317]}, "properties": {"id": "1709380884"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762729.4474124302, 5822910.355888726]}, "properties": {"id": "1709431632"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838193.3512414579, 5803903.381407796]}, "properties": {"id": "1711589037"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838433.9332622738, 5803802.387447147]}, "properties": {"id": "1711589445"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838349.8489067254, 5803854.950639611]}, "properties": {"id": "1711589481"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838189.2669790476, 5803892.429771372]}, "properties": {"id": "1711589514"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838328.1701803391, 5803861.449173602]}, "properties": {"id": "1711589533"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838402.7715694334, 5804262.640864216]}, "properties": {"id": "1711589579"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838320.0179013144, 5803839.7343668705]}, "properties": {"id": "1711589661"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837348.9161513284, 5803887.79657206]}, "properties": {"id": "1712171666"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837347.0363320836, 5803903.408333317]}, "properties": {"id": "1712171695"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837339.5680556255, 5803889.470863191]}, "properties": {"id": "1712171768"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836354.5449951601, 5804066.030879462]}, "properties": {"id": "1712176729"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836397.2296372915, 5804080.2154254755]}, "properties": {"id": "1712176732"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836355.6138751844, 5804092.318565446]}, "properties": {"id": "1712176876"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836384.9779252087, 5804129.7891116]}, "properties": {"id": "1712176905"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836063.3384668557, 5804121.897970949]}, "properties": {"id": "1712459296"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836066.2128686176, 5804137.825933013]}, "properties": {"id": "1712459570"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759216.131323684, 5730417.901745824]}, "properties": {"id": "1724462873"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759209.8687168894, 5730427.7156579355]}, "properties": {"id": "1724462893"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748630.7983409957, 5746227.825774138]}, "properties": {"id": "1737114793"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770873.9993888125, 5738221.331795187]}, "properties": {"id": "1737115065"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787324.7286513428, 5750452.85426527]}, "properties": {"id": "1738887820"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787346.101274071, 5750434.654287634]}, "properties": {"id": "1738887826"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760331.8752181225, 5776099.786388625]}, "properties": {"id": "1743089305"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760382.8642311927, 5775772.07343361]}, "properties": {"id": "1743089313"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758242.2757841309, 5770852.718557268]}, "properties": {"id": "1743089322"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758478.5557442863, 5770427.047286884]}, "properties": {"id": "1743089325"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757587.1028408171, 5767996.928077328]}, "properties": {"id": "1743089350"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758360.5008478699, 5767737.053566494]}, "properties": {"id": "1743089367"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758269.5947732355, 5763964.35355872]}, "properties": {"id": "1743089369"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759204.7394419289, 5763798.562376358]}, "properties": {"id": "1743089371"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757369.475822267, 5761420.80735704]}, "properties": {"id": "1743089375"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754598.1166524381, 5761481.844493655]}, "properties": {"id": "1743089376"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832811.1891028311, 5804784.9462359985]}, "properties": {"id": "1744184795"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832804.4911057143, 5804707.628166513]}, "properties": {"id": "1745493118"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833157.1845438138, 5804773.675478286]}, "properties": {"id": "1745493123"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832945.3869682685, 5804721.338037869]}, "properties": {"id": "1745493149"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832891.4226020027, 5804713.053066495]}, "properties": {"id": "1745493156"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832921.7209367836, 5804753.076171871]}, "properties": {"id": "1745493158"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833034.5373992644, 5804689.088448403]}, "properties": {"id": "1745493160"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832835.8756561235, 5804736.399339156]}, "properties": {"id": "1745493180"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833541.0060984937, 5804933.290794583]}, "properties": {"id": "1745493186"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832920.3059213652, 5804724.935268931]}, "properties": {"id": "1745493191"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832829.2999867657, 5804797.1099775415]}, "properties": {"id": "1745518618"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832814.012822253, 5804740.210402605]}, "properties": {"id": "1745518668"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832795.4159144392, 5804729.7564693075]}, "properties": {"id": "1745518698"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832810.340925606, 5804727.071888331]}, "properties": {"id": "1745518706"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832798.9026734572, 5804743.113760565]}, "properties": {"id": "1745600780"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832789.280290337, 5804656.518573191]}, "properties": {"id": "1745600783"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832779.0321318433, 5804676.248209673]}, "properties": {"id": "1745600786"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818084.3647461827, 5822964.704454472]}, "properties": {"id": "174713243"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817905.7917493938, 5822390.904582992]}, "properties": {"id": "174717943"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817895.3077354574, 5822343.484483162]}, "properties": {"id": "174718870"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817841.8992596457, 5822212.564011315]}, "properties": {"id": "174726464"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792368.5766337909, 5832302.633234998]}, "properties": {"id": "174742065"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [804692.7289066319, 5787172.438725374]}, "properties": {"id": "174828888"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [812229.5116943968, 5791485.771053156]}, "properties": {"id": "174839398"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798780.1042179911, 5826012.3172181565]}, "properties": {"id": "175089739"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798772.4932869412, 5826044.211909806]}, "properties": {"id": "175089846"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [799299.2456302391, 5826015.24287311]}, "properties": {"id": "175091141"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797083.3804257602, 5828410.958707405]}, "properties": {"id": "175092565"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796997.6696074025, 5828854.3983194]}, "properties": {"id": "175092822"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796842.1762693947, 5829028.932560701]}, "properties": {"id": "175092986"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777304.0437524463, 5742713.289266035]}, "properties": {"id": "1756781507"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836374.5662673359, 5804089.1841860665]}, "properties": {"id": "1763046589"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836377.6777708188, 5804083.9971426735]}, "properties": {"id": "1763046592"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836350.8524963763, 5804088.232668992]}, "properties": {"id": "1763046594"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833100.3774562611, 5806021.9121865695]}, "properties": {"id": "1763048089"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833081.6154428171, 5806028.766751358]}, "properties": {"id": "1763048090"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833074.6555765241, 5806005.031653911]}, "properties": {"id": "1763048091"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833095.4302577311, 5806001.486793896]}, "properties": {"id": "1763048099"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832956.272900773, 5805441.5542461965]}, "properties": {"id": "1763048103"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832969.4418486184, 5805438.807318656]}, "properties": {"id": "1763048114"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829482.3883653067, 5814626.773193162]}, "properties": {"id": "1764268034"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829485.5805364068, 5814671.241676876]}, "properties": {"id": "1764268037"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829471.0349137184, 5814632.697878911]}, "properties": {"id": "1764268289"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829473.390112578, 5814676.988605773]}, "properties": {"id": "1764268339"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810107.6634890167, 5763137.462340241]}, "properties": {"id": "177776104"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781750.579010268, 5765752.52337172]}, "properties": {"id": "177784989"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781576.1067095948, 5764900.208549793]}, "properties": {"id": "177785793"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780074.0918219553, 5763220.760836806]}, "properties": {"id": "177785797"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777914.2313082339, 5762715.18469935]}, "properties": {"id": "177785803"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772275.271665052, 5759643.005251568]}, "properties": {"id": "177786909"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767874.9737372489, 5757761.719530386]}, "properties": {"id": "177786920"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762878.5046976395, 5756995.646958774]}, "properties": {"id": "177787407"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760657.4903283372, 5756748.507106248]}, "properties": {"id": "177787414"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759037.1694120292, 5756096.00772621]}, "properties": {"id": "177788318"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754940.7664048502, 5754055.155984361]}, "properties": {"id": "177788321"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754382.2950487888, 5753815.901298133]}, "properties": {"id": "177788322"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753763.9877717652, 5753786.907693256]}, "properties": {"id": "177788323"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749210.4800037156, 5753930.358701434]}, "properties": {"id": "177788324"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747765.6679102984, 5753273.810508217]}, "properties": {"id": "177788327"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750368.9464126641, 5746532.442333419]}, "properties": {"id": "177797327"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746747.8278760244, 5746567.427434722]}, "properties": {"id": "177797337"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746305.3703349396, 5746995.581852949]}, "properties": {"id": "177797342"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [800716.8145647829, 5758437.171650403]}, "properties": {"id": "177826999"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [800205.8370475557, 5757997.476384194]}, "properties": {"id": "177827013"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787417.8722606049, 5774171.975829926]}, "properties": {"id": "177845325"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783523.0156859977, 5775453.0821815245]}, "properties": {"id": "177845334"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779610.1293891629, 5776217.451310864]}, "properties": {"id": "177845339"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778451.3701664637, 5776573.902245652]}, "properties": {"id": "177845341"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776082.6455701777, 5777545.403158704]}, "properties": {"id": "177845353"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775468.3789459642, 5777657.098640085]}, "properties": {"id": "177845354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772644.1412263517, 5779098.736049196]}, "properties": {"id": "177850204"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772036.196866162, 5779218.647217362]}, "properties": {"id": "177850205"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771532.6934100472, 5779121.938700316]}, "properties": {"id": "177850208"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763489.8081912824, 5779504.357970702]}, "properties": {"id": "177850214"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761561.0658644747, 5780017.150667999]}, "properties": {"id": "177850216"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758899.5999834657, 5780652.409679967]}, "properties": {"id": "177850220"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757708.4725466018, 5780840.461352226]}, "properties": {"id": "177850221"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755130.3456960917, 5780960.425905665]}, "properties": {"id": "177850227"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752286.7967518927, 5781142.448038442]}, "properties": {"id": "177850229"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749085.1609137233, 5781496.159575515]}, "properties": {"id": "177850232"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748410.5964136139, 5781592.188593604]}, "properties": {"id": "177850233"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747022.8022753852, 5781663.00750658]}, "properties": {"id": "177850240"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [745244.642834781, 5782253.997470735]}, "properties": {"id": "177850241"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [734499.6540881407, 5787578.322112429]}, "properties": {"id": "177850254"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [727652.7291035386, 5788686.72814377]}, "properties": {"id": "177850268"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [726117.6982500745, 5789293.076252275]}, "properties": {"id": "177850269"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [723024.7224620425, 5792063.219957841]}, "properties": {"id": "177850286"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [722262.2260423203, 5792344.773023604]}, "properties": {"id": "177850288"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [720399.2460216144, 5793034.178623319]}, "properties": {"id": "177850289"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [716170.5156622202, 5794800.146388955]}, "properties": {"id": "177850297"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [714273.6650516838, 5795439.980112954]}, "properties": {"id": "177850303"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [713181.485109444, 5795720.268600863]}, "properties": {"id": "177850304"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [710201.4325949072, 5796483.544071027]}, "properties": {"id": "177850305"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832706.406803817, 5808219.648627348]}, "properties": {"id": "1791673336"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828751.6612713651, 5801667.767218778]}, "properties": {"id": "1824095100"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836630.653760158, 5806840.633489327]}, "properties": {"id": "1833721396"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837244.3398621154, 5807028.453156353]}, "properties": {"id": "1833721691"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837123.223841357, 5806939.085788556]}, "properties": {"id": "1833721693"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [839902.9077270374, 5808211.42186505]}, "properties": {"id": "1833869065"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788632.1731043614, 5771336.756416974]}, "properties": {"id": "1833870335"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788449.3778608032, 5769841.265110927]}, "properties": {"id": "1833870384"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788827.2549360564, 5769156.523998261]}, "properties": {"id": "1833870406"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788823.7764029987, 5769131.7636440005]}, "properties": {"id": "1833870407"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789249.9369055433, 5768729.618091677]}, "properties": {"id": "1833870416"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789286.5231603405, 5768719.921898262]}, "properties": {"id": "1833870417"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789678.8844032653, 5768172.904605901]}, "properties": {"id": "1833870432"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789731.933130149, 5768120.261974738]}, "properties": {"id": "1833870433"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836726.2295275416, 5819603.335484241]}, "properties": {"id": "1834050708"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834559.7508885547, 5809478.7490844615]}, "properties": {"id": "1834824664"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [814932.1953813316, 5822509.185195341]}, "properties": {"id": "1834826154"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [814080.1872104456, 5822629.305295948]}, "properties": {"id": "1834826158"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781501.9881138932, 5763244.364797217]}, "properties": {"id": "1835206842"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780437.6903719747, 5762936.279552477]}, "properties": {"id": "1835206882"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753468.1446837215, 5760434.477755032]}, "properties": {"id": "1835206936"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774869.2798601588, 5759525.870737054]}, "properties": {"id": "1835206957"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770918.2993372807, 5759564.824651232]}, "properties": {"id": "1835206964"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774798.896923234, 5759126.40340134]}, "properties": {"id": "1835206965"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781255.1343747815, 5758365.406166038]}, "properties": {"id": "1835206995"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750041.8593101774, 5759010.33671028]}, "properties": {"id": "1835207004"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749390.7760888054, 5758748.936974738]}, "properties": {"id": "1835207005"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748896.3704921264, 5758476.731607656]}, "properties": {"id": "1835207007"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776447.8327060825, 5759249.816206499]}, "properties": {"id": "1835233310"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776020.8761033611, 5756658.958526211]}, "properties": {"id": "1835233311"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775625.7449357805, 5754427.175424639]}, "properties": {"id": "1835233316"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775501.6054058776, 5753681.920331543]}, "properties": {"id": "1835233324"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776235.6438361364, 5751636.811683112]}, "properties": {"id": "1835233341"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776837.0775131152, 5751202.665974728]}, "properties": {"id": "1835233349"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778064.6869707645, 5751052.038201426]}, "properties": {"id": "1835233364"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778480.2330192212, 5750732.408507778]}, "properties": {"id": "1835233368"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778828.1557447779, 5750330.656005716]}, "properties": {"id": "1835233372"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779648.7249087391, 5748854.827855059]}, "properties": {"id": "1835233386"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779944.1498977963, 5748403.792148835]}, "properties": {"id": "1835233387"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780172.85483148, 5747660.459108772]}, "properties": {"id": "1835233396"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780148.3426288108, 5747140.428032581]}, "properties": {"id": "1835233410"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749816.589378332, 5717697.217616223]}, "properties": {"id": "1835377403"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749428.045766605, 5717112.550497479]}, "properties": {"id": "1835377465"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [743268.332741592, 5713163.00367752]}, "properties": {"id": "1835377946"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793812.7329042836, 5772512.966030635]}, "properties": {"id": "1838774363"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833885.990643557, 5809682.543426071]}, "properties": {"id": "1839737571"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752049.0157286815, 5838384.778248543]}, "properties": {"id": "1840300860"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826507.6604884019, 5800969.302085801]}, "properties": {"id": "1840911745"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751218.3477105228, 5837477.400674425]}, "properties": {"id": "1841114204"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837006.6911266545, 5810716.697486488]}, "properties": {"id": "1843397341"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837047.5995407479, 5810929.341182457]}, "properties": {"id": "1843397346"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837065.9453036231, 5811035.237926805]}, "properties": {"id": "1843397347"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837038.7703398518, 5810930.525936924]}, "properties": {"id": "1843397349"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837063.5921137227, 5811085.261689321]}, "properties": {"id": "1843397352"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837016.5401234665, 5810807.141476365]}, "properties": {"id": "1843397353"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837056.2993839174, 5811038.891372072]}, "properties": {"id": "1843397354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833632.5357206455, 5810958.431863496]}, "properties": {"id": "1843397641"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833596.3327334016, 5810763.847580891]}, "properties": {"id": "1843397643"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756507.7646766041, 5840292.504004855]}, "properties": {"id": "1844189644"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754419.6946357661, 5829087.328940734]}, "properties": {"id": "1845458262"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754444.8884880715, 5829079.121964242]}, "properties": {"id": "1845458264"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [742287.2079484131, 5834249.885495203]}, "properties": {"id": "1848349218"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [740535.7024181567, 5833478.87525164]}, "properties": {"id": "1848367796"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [739679.7723880444, 5833337.814793084]}, "properties": {"id": "1848367816"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [742946.351100145, 5834300.040287113]}, "properties": {"id": "1848368573"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777319.1223263047, 5762520.145554707]}, "properties": {"id": "1851048861"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777144.5577633188, 5762461.283205491]}, "properties": {"id": "1851048862"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777406.4097715829, 5762382.490035468]}, "properties": {"id": "1851048871"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777264.2519150758, 5762191.522939254]}, "properties": {"id": "1851048875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777117.4512386613, 5762146.277969117]}, "properties": {"id": "1851048876"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777541.7511348359, 5762094.219006888]}, "properties": {"id": "1851048879"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777219.9225405441, 5762082.748252223]}, "properties": {"id": "1851048880"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777108.4886610645, 5762057.561197714]}, "properties": {"id": "1851048882"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777048.7491491691, 5762044.060262882]}, "properties": {"id": "1851048883"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779267.672624354, 5749469.781276995]}, "properties": {"id": "1851088582"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777733.6321053825, 5744761.797462996]}, "properties": {"id": "1851184930"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777421.0144318239, 5744734.15282729]}, "properties": {"id": "1851184945"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777419.5706997197, 5744727.534749035]}, "properties": {"id": "1851184949"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777417.8636933237, 5744719.114313745]}, "properties": {"id": "1851184967"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777353.2812911086, 5744421.776334635]}, "properties": {"id": "1851185037"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778212.608231595, 5744107.03076733]}, "properties": {"id": "1851185067"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778221.501674906, 5744082.263033518]}, "properties": {"id": "1851185089"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778234.6921294122, 5743946.359055776]}, "properties": {"id": "1851185093"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777469.2266978307, 5743688.858298585]}, "properties": {"id": "1851185152"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778102.5136173023, 5743441.800794633]}, "properties": {"id": "1851289981"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777216.6426440086, 5741901.94466357]}, "properties": {"id": "1851290080"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776602.6695772854, 5741914.981067614]}, "properties": {"id": "1851290082"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783853.3560840879, 5763750.209773448]}, "properties": {"id": "1852697862"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763760.9563035037, 5763877.979553994]}, "properties": {"id": "1852719081"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761938.6478741316, 5763675.329951526]}, "properties": {"id": "1852719099"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762066.1167680691, 5763493.04160228]}, "properties": {"id": "1852719101"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761755.0993567139, 5763189.746082453]}, "properties": {"id": "1852719103"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762053.9067711644, 5762864.505960189]}, "properties": {"id": "1852719140"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762152.208425781, 5762725.569426483]}, "properties": {"id": "1852719143"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762510.8060288841, 5762213.04161245]}, "properties": {"id": "1852719151"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762178.1084137332, 5763901.817432974]}, "properties": {"id": "1852765525"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763306.3094426173, 5763843.046560869]}, "properties": {"id": "1852765526"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762195.8558447524, 5763791.178335271]}, "properties": {"id": "1852765541"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762070.9411398876, 5763708.647310054]}, "properties": {"id": "1852765544"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762641.0711333831, 5763619.337746172]}, "properties": {"id": "1852765547"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762173.8025527061, 5763568.086201548]}, "properties": {"id": "1852765552"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762415.5317420869, 5763447.022212588]}, "properties": {"id": "1852765554"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762800.1536210526, 5763408.244353955]}, "properties": {"id": "1852765556"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762311.8665914289, 5763369.528273043]}, "properties": {"id": "1852765558"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763237.1695511758, 5763326.089062874]}, "properties": {"id": "1852765559"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761859.3917034415, 5763329.135860463]}, "properties": {"id": "1852765565"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762205.0454086454, 5763295.446450687]}, "properties": {"id": "1852765568"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762096.2096946585, 5763222.684142188]}, "properties": {"id": "1852765586"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761786.5508161625, 5763220.950312527]}, "properties": {"id": "1852765606"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761765.7736143917, 5763184.089886236]}, "properties": {"id": "1852765616"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761604.0428504902, 5763169.608307021]}, "properties": {"id": "1852765617"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761987.3611894252, 5763145.132161613]}, "properties": {"id": "1852765621"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762743.9473208773, 5763092.973579995]}, "properties": {"id": "1852765624"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761891.4611047932, 5763076.359696528]}, "properties": {"id": "1852765642"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762109.1695651878, 5762970.214139063]}, "properties": {"id": "1852765657"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761610.9022440135, 5762950.236706625]}, "properties": {"id": "1852765666"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762432.9988031681, 5762921.154031859]}, "properties": {"id": "1852765667"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762140.2465410153, 5762925.175166685]}, "properties": {"id": "1852765669"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761366.0508759853, 5762879.727788308]}, "properties": {"id": "1852765678"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763080.3646071388, 5762799.159398859]}, "properties": {"id": "1852765679"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763129.9802997587, 5762755.824519284]}, "properties": {"id": "1852765682"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761734.0599117628, 5762783.047543106]}, "properties": {"id": "1852765684"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761291.1634847301, 5762688.840392803]}, "properties": {"id": "1852765688"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761209.5904157212, 5762660.71917489]}, "properties": {"id": "1852765691"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761107.5258339306, 5762631.59177534]}, "properties": {"id": "1852765697"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761348.0677874777, 5762606.427317185]}, "properties": {"id": "1852765701"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761091.8827881867, 5762542.165897077]}, "properties": {"id": "1852765705"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761191.1749214204, 5762523.439843621]}, "properties": {"id": "1852765706"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761286.9500801944, 5762507.603799269]}, "properties": {"id": "1852765707"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761737.1271504792, 5762433.589954867]}, "properties": {"id": "1852765708"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761788.2001357945, 5762272.419187574]}, "properties": {"id": "1852765710"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760997.0623634779, 5762067.706113052]}, "properties": {"id": "1852765711"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761186.9058674378, 5762027.469694758]}, "properties": {"id": "1852765724"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761144.7293343095, 5761861.124822973]}, "properties": {"id": "1852765740"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761558.8691358458, 5761713.105072887]}, "properties": {"id": "1852765741"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760731.2398171665, 5761676.856493042]}, "properties": {"id": "1852765743"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761379.4109357957, 5761532.187773385]}, "properties": {"id": "1852765790"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761293.8939105982, 5761492.296039697]}, "properties": {"id": "1852765792"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761821.0241033116, 5764743.3520999085]}, "properties": {"id": "1852769453"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762642.9203420238, 5764329.543566128]}, "properties": {"id": "1852769484"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762962.1701195902, 5764303.226149406]}, "properties": {"id": "1852769489"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762444.4467332016, 5764308.19084525]}, "properties": {"id": "1852769491"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762821.340243181, 5764000.914540907]}, "properties": {"id": "1852769502"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762894.4121219954, 5763925.576423416]}, "properties": {"id": "1852769522"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762747.0243527251, 5763928.3279205775]}, "properties": {"id": "1852769523"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762699.2677161302, 5763929.322170627]}, "properties": {"id": "1852769526"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765840.397476858, 5764273.292603728]}, "properties": {"id": "1852770876"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764007.9250329419, 5779369.478030788]}, "properties": {"id": "1852782776"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763463.8136039785, 5776301.509906619]}, "properties": {"id": "1852782778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760429.2588850536, 5772722.599938016]}, "properties": {"id": "1852782814"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760911.3336672753, 5771724.204466145]}, "properties": {"id": "1852782816"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759963.6099172321, 5765923.740046583]}, "properties": {"id": "1852782832"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760326.9579133167, 5765067.83086541]}, "properties": {"id": "1852782833"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760682.9421134213, 5764298.331502301]}, "properties": {"id": "1852782850"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762586.3097756819, 5762104.582010966]}, "properties": {"id": "1856653096"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762224.5349000972, 5761844.219772215]}, "properties": {"id": "1856653104"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762848.6067886006, 5761761.913186047]}, "properties": {"id": "1856653128"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763734.6129295283, 5761586.878256776]}, "properties": {"id": "1856653135"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763675.0990138848, 5761261.985359354]}, "properties": {"id": "1856653140"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762227.6160295145, 5761055.2328652935]}, "properties": {"id": "1856653151"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762079.1748488825, 5760233.424376036]}, "properties": {"id": "1856653154"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765157.7454760022, 5779074.125347875]}, "properties": {"id": "1856694813"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763852.5670059314, 5778496.32375329]}, "properties": {"id": "1856694832"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763643.2951192999, 5777312.881528459]}, "properties": {"id": "1856694862"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770778.0409588878, 5764217.152405518]}, "properties": {"id": "1856823181"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767052.6637487011, 5764276.0784707805]}, "properties": {"id": "1856823182"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774029.7988279634, 5763924.754083958]}, "properties": {"id": "1856823184"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833404.3770636778, 5808087.5770154195]}, "properties": {"id": "1863014224"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769626.1050374177, 5839946.790995307]}, "properties": {"id": "186317531"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769114.2596375011, 5839732.816780118]}, "properties": {"id": "186317540"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793863.6398949777, 5772847.394812441]}, "properties": {"id": "1863863726"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757034.3221473898, 5827883.055165072]}, "properties": {"id": "186779446"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756003.9376011745, 5828632.477634373]}, "properties": {"id": "186780279"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781878.8417412366, 5755565.164373754]}, "properties": {"id": "186873034"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778420.389280318, 5765477.544012043]}, "properties": {"id": "186874517"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779371.10614317, 5756041.942613101]}, "properties": {"id": "186877142"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779288.527469353, 5756624.556887407]}, "properties": {"id": "186877152"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779467.9543330567, 5758667.73407336]}, "properties": {"id": "186877160"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777419.1040315313, 5759106.8715537945]}, "properties": {"id": "186877171"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777368.1311746584, 5759696.864241728]}, "properties": {"id": "186877177"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792219.1126689105, 5764550.374817952]}, "properties": {"id": "186879856"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759980.9717830395, 5760600.912240503]}, "properties": {"id": "1882041560"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761169.5863025773, 5760382.773145459]}, "properties": {"id": "1882041564"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [732180.6411031487, 5756144.913985684]}, "properties": {"id": "1907999050"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830167.8305321445, 5810765.585914669]}, "properties": {"id": "1928863175"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795530.4005544446, 5780453.942405894]}, "properties": {"id": "1941528972"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768335.9499883549, 5777196.222184613]}, "properties": {"id": "1944283975"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768916.9902448782, 5778716.505196447]}, "properties": {"id": "1952250930"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833967.1450719287, 5820863.066601317]}, "properties": {"id": "1959669511"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [730263.148957628, 5788250.772410269]}, "properties": {"id": "1966526712"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [728652.9750242431, 5788291.493001844]}, "properties": {"id": "1966526713"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [729262.6134103143, 5787948.732454295]}, "properties": {"id": "1966526732"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793813.9630647713, 5772521.735361089]}, "properties": {"id": "1967591735"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794232.5176832967, 5771828.497638156]}, "properties": {"id": "1967618657"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [732825.8525877103, 5826614.906554924]}, "properties": {"id": "1969410820"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [728238.9168748879, 5826519.4050572505]}, "properties": {"id": "1969410839"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [731562.5808499246, 5826421.947091788]}, "properties": {"id": "1969410841"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [732245.2497332756, 5826384.666713352]}, "properties": {"id": "1969410847"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [729630.6909986511, 5826419.193138124]}, "properties": {"id": "1969410855"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [730958.009197306, 5826342.29341574]}, "properties": {"id": "1969410867"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [730219.4471630304, 5826230.359347225]}, "properties": {"id": "1969410905"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759334.8373762902, 5730674.206115661]}, "properties": {"id": "1976126489"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759329.2541173245, 5730663.764554764]}, "properties": {"id": "1976126500"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759341.4176312832, 5730652.637250714]}, "properties": {"id": "1976126508"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759310.7512898925, 5730642.985618209]}, "properties": {"id": "1976126515"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759163.019276984, 5730497.765875322]}, "properties": {"id": "1976126537"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759186.6332186171, 5730469.123640102]}, "properties": {"id": "1976126541"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830968.3995221352, 5821589.351075603]}, "properties": {"id": "2029060795"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [821475.9648535864, 5796746.552351841]}, "properties": {"id": "204454011"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835104.65113266, 5812439.157621052]}, "properties": {"id": "2044984878"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835664.0406667364, 5812306.692746315]}, "properties": {"id": "2045001471"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835595.6695794595, 5812338.170335744]}, "properties": {"id": "2045001473"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [825448.917264903, 5798562.9962338535]}, "properties": {"id": "204503685"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826053.5623519429, 5799160.50555791]}, "properties": {"id": "204503695"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826212.2526759431, 5799636.290533798]}, "properties": {"id": "204503698"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836228.8604716426, 5817383.343794756]}, "properties": {"id": "2045235431"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836282.8789856674, 5817353.596642908]}, "properties": {"id": "2045235436"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836217.846701961, 5817332.243668985]}, "properties": {"id": "2045235442"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836278.3427549632, 5817308.014289737]}, "properties": {"id": "2045235488"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836317.7661698414, 5817342.40992586]}, "properties": {"id": "2045235491"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836242.816628228, 5817391.191694821]}, "properties": {"id": "2045235497"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836496.818049027, 5816941.315821949]}, "properties": {"id": "2045249226"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836482.8545424694, 5816932.846009671]}, "properties": {"id": "2045249255"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793062.2179200517, 5772656.691665424]}, "properties": {"id": "2054201371"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796649.5484200488, 5781567.623501042]}, "properties": {"id": "2069599529"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791821.5632977043, 5753504.964576266]}, "properties": {"id": "2075578416"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788693.7879860906, 5750690.8418073]}, "properties": {"id": "2075585998"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785418.2585006749, 5751639.286186104]}, "properties": {"id": "2085414782"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796800.7624009554, 5760393.676203492]}, "properties": {"id": "2085445771"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796765.0594281587, 5760387.094535409]}, "properties": {"id": "2085445772"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762875.3488005808, 5763813.50816024]}, "properties": {"id": "209025086"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763642.1272070201, 5768163.628505444]}, "properties": {"id": "209025145"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763411.8948055273, 5773164.061414403]}, "properties": {"id": "209025166"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835371.2911220524, 5812363.877455634]}, "properties": {"id": "2090569510"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768531.0547465535, 5776523.978087722]}, "properties": {"id": "209212577"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751790.3766407508, 5841125.994596337]}, "properties": {"id": "209774399"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832861.485748704, 5805025.849548473]}, "properties": {"id": "2097822450"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838762.1326635845, 5806587.870160166]}, "properties": {"id": "2099022778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835342.2184219875, 5807837.783835185]}, "properties": {"id": "2100470530"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835381.710634989, 5807292.505771585]}, "properties": {"id": "2100479247"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836817.4235803667, 5805950.879593558]}, "properties": {"id": "2100483163"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836276.0458112652, 5806635.949497155]}, "properties": {"id": "2100656002"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835929.4421901386, 5806453.119370765]}, "properties": {"id": "2100690846"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835797.2678321695, 5806328.471244406]}, "properties": {"id": "2100692687"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838656.1067934013, 5807663.354641225]}, "properties": {"id": "2100804675"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838617.8657100154, 5807527.699546196]}, "properties": {"id": "2100804683"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838394.5038094587, 5807383.304886721]}, "properties": {"id": "2100835025"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837162.9985461768, 5806576.96070029]}, "properties": {"id": "2100854657"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838347.5898898635, 5803857.9016512865]}, "properties": {"id": "2100895685"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832808.7443853486, 5821207.766990917]}, "properties": {"id": "2101262410"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752662.4338883172, 5775119.658344267]}, "properties": {"id": "2106853224"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749704.403122836, 5771401.493747058]}, "properties": {"id": "2106853502"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749342.6049574406, 5769766.844215729]}, "properties": {"id": "2106853665"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749275.7224759888, 5768828.51944819]}, "properties": {"id": "2106853691"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749206.2350789763, 5768178.6163836345]}, "properties": {"id": "2106853694"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748161.2640284628, 5767225.285661259]}, "properties": {"id": "2106853698"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749007.021560133, 5767072.129410734]}, "properties": {"id": "2106853716"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748589.1210327805, 5764758.616771474]}, "properties": {"id": "2106853817"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [745569.7710602619, 5764404.86425054]}, "properties": {"id": "2106853830"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746488.4707362487, 5764238.949997508]}, "properties": {"id": "2106853834"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747077.0368977732, 5764133.980051945]}, "properties": {"id": "2106853839"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748119.5100205716, 5763947.500432504]}, "properties": {"id": "2106853846"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748643.0533555496, 5763848.327953739]}, "properties": {"id": "2106853852"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748677.5739071849, 5763426.756166052]}, "properties": {"id": "2106853857"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752071.8064087746, 5762822.998821889]}, "properties": {"id": "2106853864"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747890.072658058, 5758991.475959797]}, "properties": {"id": "2106853867"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747863.732174803, 5758077.926866322]}, "properties": {"id": "2106853884"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801087.4583071457, 5785251.685085669]}, "properties": {"id": "2134404316"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801110.0495525922, 5785222.773702656]}, "properties": {"id": "2134404317"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [734054.9431468036, 5827566.422785373]}, "properties": {"id": "214442350"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [736207.2965295642, 5829678.319481959]}, "properties": {"id": "214442660"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [743767.7131600915, 5834717.889980435]}, "properties": {"id": "214444165"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752224.9835290052, 5720154.48231776]}, "properties": {"id": "2147393109"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751675.6764292442, 5719898.123003637]}, "properties": {"id": "2147393176"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753606.9060846745, 5781058.06834338]}, "properties": {"id": "2151278136"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747853.5743907449, 5781574.582921077]}, "properties": {"id": "2151398458"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [731956.0216720946, 5788131.077226033]}, "properties": {"id": "2152827783"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [712685.4707053123, 5795847.38829454]}, "properties": {"id": "2157175172"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759221.9790320438, 5730417.379132754]}, "properties": {"id": "2220026250"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790733.8628593504, 5754431.568100855]}, "properties": {"id": "2244716744"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790941.2635966778, 5754671.672621358]}, "properties": {"id": "2244716746"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790903.7556122448, 5754679.226271742]}, "properties": {"id": "2244716749"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791396.2029847789, 5754579.695119023]}, "properties": {"id": "2244716755"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791132.9875064094, 5754538.920973915]}, "properties": {"id": "2244716762"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791102.8551994977, 5754633.448104694]}, "properties": {"id": "2244716773"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791106.6967616731, 5754651.092932455]}, "properties": {"id": "2244716775"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791396.4081518055, 5754593.869990795]}, "properties": {"id": "2244716781"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791113.37087481, 5754629.7456273055]}, "properties": {"id": "2244716789"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790907.6235498171, 5754498.830710604]}, "properties": {"id": "2244716799"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791122.4853907843, 5754643.043433463]}, "properties": {"id": "2244716804"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791409.4755929041, 5754581.772362708]}, "properties": {"id": "2244716806"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791025.6836909351, 5754656.770371386]}, "properties": {"id": "2244716811"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790987.6142439133, 5754402.162685961]}, "properties": {"id": "2244716815"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790954.6319580999, 5754525.278591678]}, "properties": {"id": "2244716817"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791103.555132783, 5754648.972188385]}, "properties": {"id": "2244716818"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790895.6694850286, 5754417.902808451]}, "properties": {"id": "2244716820"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791119.4677417963, 5754648.731788765]}, "properties": {"id": "2244716825"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751783.1632370076, 5840285.350391282]}, "properties": {"id": "2282481505"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829312.5439055143, 5801821.9766701395]}, "properties": {"id": "2283053182"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831889.73994506, 5821435.59611685]}, "properties": {"id": "2299094457"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831990.867182188, 5821391.67816001]}, "properties": {"id": "2299094462"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833289.9508399584, 5817332.296552749]}, "properties": {"id": "2299094483"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833274.8850644374, 5817330.548715977]}, "properties": {"id": "2299094484"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832232.4242180574, 5802572.618713571]}, "properties": {"id": "2300311981"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756937.8617915732, 5838991.94234752]}, "properties": {"id": "2303505756"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [727400.689946638, 5704568.158970474]}, "properties": {"id": "2305744261"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [727035.3993690589, 5704930.853882062]}, "properties": {"id": "2305744269"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [726523.9248714596, 5705268.607275196]}, "properties": {"id": "2305744273"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [726428.318770752, 5706161.232113956]}, "properties": {"id": "2305744285"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [725558.0848717899, 5706899.456672263]}, "properties": {"id": "2305744289"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [724785.1632093905, 5707681.586925085]}, "properties": {"id": "2305744292"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [724883.7646185517, 5708202.084080222]}, "properties": {"id": "2305744304"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [724295.7808902721, 5708737.722200987]}, "properties": {"id": "2305744315"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [723854.8214503783, 5709051.25996063]}, "properties": {"id": "2305744317"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [722920.6092566182, 5708835.030364038]}, "properties": {"id": "2305744344"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [722594.7156617434, 5708213.0175421005]}, "properties": {"id": "2305744346"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [721940.661905488, 5707559.565094198]}, "properties": {"id": "2305744355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829951.8107943865, 5812975.454410006]}, "properties": {"id": "2308974808"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [737698.6115414539, 5831178.41433952]}, "properties": {"id": "2315437912"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [736570.0149203071, 5829755.560368266]}, "properties": {"id": "2315437913"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [726470.7343532529, 5826332.7066647075]}, "properties": {"id": "2315437914"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [737885.5528549846, 5831425.255343078]}, "properties": {"id": "2315437915"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747448.0606676108, 5835923.6837337725]}, "properties": {"id": "2315437916"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [733703.7081307115, 5827298.523860816]}, "properties": {"id": "2315437917"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [727191.1139090688, 5826432.000568859]}, "properties": {"id": "2315437918"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [734333.2488094836, 5828014.29247183]}, "properties": {"id": "2315437919"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [734592.8627293153, 5828499.436868425]}, "properties": {"id": "2315437920"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790316.0569810831, 5751949.948951881]}, "properties": {"id": "2315614119"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790389.7096812981, 5751936.105136447]}, "properties": {"id": "2315614121"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790206.8645727546, 5753199.528251291]}, "properties": {"id": "2315693194"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [733005.502237871, 5787954.355966018]}, "properties": {"id": "2321615733"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833288.2776247002, 5817323.02429594]}, "properties": {"id": "232342716"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836193.5691161893, 5807425.195610007]}, "properties": {"id": "2325319134"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836183.4448730396, 5807418.137625741]}, "properties": {"id": "2325319136"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789426.9187328254, 5753118.910278276]}, "properties": {"id": "2332735781"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789422.1498447459, 5753106.544280384]}, "properties": {"id": "2332735787"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789506.7843826052, 5753054.871199646]}, "properties": {"id": "2332735794"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789535.9956832503, 5753047.6211406095]}, "properties": {"id": "2332735795"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789587.216792705, 5753043.0042751115]}, "properties": {"id": "2332735797"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789590.5748713661, 5752984.833025364]}, "properties": {"id": "2332735811"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789385.1274983779, 5752920.1942179045]}, "properties": {"id": "2332735818"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789320.6067109624, 5752834.448747785]}, "properties": {"id": "2332735822"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789366.4452632193, 5752817.233492598]}, "properties": {"id": "2332735826"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790557.5196795283, 5751429.06014986]}, "properties": {"id": "234686648"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757758.7742315399, 5726191.608951215]}, "properties": {"id": "234756825"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757259.3862462043, 5726137.910599171]}, "properties": {"id": "234756841"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756817.7588007492, 5726184.204222365]}, "properties": {"id": "234756853"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756556.9510996161, 5725775.700793191]}, "properties": {"id": "234756862"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756100.3207053088, 5725483.364133755]}, "properties": {"id": "234756876"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755701.1439125303, 5725193.466693288]}, "properties": {"id": "234756902"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755438.8496691342, 5724864.524068289]}, "properties": {"id": "234756933"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754893.652923482, 5724682.008673077]}, "properties": {"id": "234756953"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754492.819558824, 5724299.012844376]}, "properties": {"id": "234756989"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754229.3395069544, 5723880.699119]}, "properties": {"id": "234757016"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754360.0340941923, 5723385.431269397]}, "properties": {"id": "234757044"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754222.5089265928, 5722935.431478431]}, "properties": {"id": "234757071"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753924.5090453724, 5722377.091868017]}, "properties": {"id": "234757089"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753834.0604922336, 5721911.258164158]}, "properties": {"id": "234757122"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753483.222477491, 5721511.2142576715]}, "properties": {"id": "234757145"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753241.473111164, 5721101.709646673]}, "properties": {"id": "234757187"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753017.8368593523, 5720674.203782788]}, "properties": {"id": "234757228"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752622.6158671504, 5720342.433141421]}, "properties": {"id": "234757265"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751685.8280701502, 5719417.558507812]}, "properties": {"id": "234757429"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751763.528324594, 5718998.437281063]}, "properties": {"id": "234757500"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751286.1573598229, 5718909.7463285485]}, "properties": {"id": "234757549"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763666.6790975935, 5736140.237217732]}, "properties": {"id": "234773261"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750942.245374555, 5718531.51278844]}, "properties": {"id": "234824530"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750175.6777260393, 5718034.674882088]}, "properties": {"id": "234824596"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749181.2878697568, 5716521.704953693]}, "properties": {"id": "234824704"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749051.003245512, 5716008.488159791]}, "properties": {"id": "234824744"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749028.9637338513, 5715773.38120576]}, "properties": {"id": "234824793"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748592.9878882248, 5715505.565922509]}, "properties": {"id": "234824822"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748100.2589442392, 5715431.35964857]}, "properties": {"id": "234824852"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747611.1212079264, 5715253.975869291]}, "properties": {"id": "234824873"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747193.2294946231, 5715075.453988148]}, "properties": {"id": "234824925"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746961.3106038189, 5714665.513525365]}, "properties": {"id": "234824969"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [742753.5971982137, 5713081.433765965]}, "properties": {"id": "234959041"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751879.3022882033, 5843503.308082283]}, "properties": {"id": "236430697"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [839286.4619602594, 5817533.683078646]}, "properties": {"id": "236890836"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838925.4580457627, 5817765.886132558]}, "properties": {"id": "236890911"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838749.9422272125, 5817921.273324609]}, "properties": {"id": "236890918"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781754.6633009452, 5765652.640538543]}, "properties": {"id": "2373877365"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784197.9169948344, 5765636.164176198]}, "properties": {"id": "2373877380"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784178.1463224073, 5765737.712591191]}, "properties": {"id": "2373877381"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784178.6780367118, 5765706.376149778]}, "properties": {"id": "2373877387"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782572.3936058001, 5765722.266208435]}, "properties": {"id": "2373877390"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782567.0082005314, 5765748.614704877]}, "properties": {"id": "2373877391"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776409.7207889357, 5765809.114538183]}, "properties": {"id": "2373877401"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777078.8383803753, 5765792.657572309]}, "properties": {"id": "2373877409"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776411.8507669428, 5765781.8606379675]}, "properties": {"id": "2373877414"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769357.7345098874, 5765630.77544302]}, "properties": {"id": "2373877419"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769966.1071315059, 5765825.012851767]}, "properties": {"id": "2373877423"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768768.7134820923, 5765426.408016327]}, "properties": {"id": "2373877428"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768163.6544033239, 5765174.785136898]}, "properties": {"id": "2373877430"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768782.0809883557, 5765394.151900214]}, "properties": {"id": "2373877432"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768178.1103399785, 5765144.638660441]}, "properties": {"id": "2373877435"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765528.5683751379, 5764153.156497525]}, "properties": {"id": "2373877441"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762872.4393322511, 5763797.0473142]}, "properties": {"id": "2378832534"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780538.4343577591, 5765805.224667833]}, "properties": {"id": "2379162950"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780495.8443364865, 5765805.132461635]}, "properties": {"id": "2379162951"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780502.124038629, 5765774.287543627]}, "properties": {"id": "2379162957"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780540.4910855377, 5765772.959005691]}, "properties": {"id": "2379162958"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778499.3941488238, 5765714.4863377195]}, "properties": {"id": "2379162967"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778496.9183123087, 5765883.996826496]}, "properties": {"id": "2379162968"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778516.1721591211, 5765823.281483502]}, "properties": {"id": "2379162969"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778479.6260310685, 5765821.959668274]}, "properties": {"id": "2379162971"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778481.4027670252, 5765785.904320066]}, "properties": {"id": "2379162976"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778519.9418139562, 5765784.501642166]}, "properties": {"id": "2379162979"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769375.2569090434, 5765724.308672354]}, "properties": {"id": "2379163012"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769341.1527695141, 5765664.128467548]}, "properties": {"id": "2379163023"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769395.7729847103, 5765646.8780458355]}, "properties": {"id": "2379163027"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769377.9858597239, 5765585.7219683435]}, "properties": {"id": "2379163031"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766418.8585431844, 5764417.616281193]}, "properties": {"id": "2379163040"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766441.140509706, 5764353.2150301235]}, "properties": {"id": "2379163041"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766382.1252331135, 5764404.557850281]}, "properties": {"id": "2379163043"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766371.1918535376, 5764434.551501552]}, "properties": {"id": "2379163053"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766400.7768500876, 5764446.122915753]}, "properties": {"id": "2379163057"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771083.5779031635, 5765832.298825209]}, "properties": {"id": "2379163063"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771098.2942578373, 5765961.882002459]}, "properties": {"id": "2379163064"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771069.9665784709, 5765880.879819605]}, "properties": {"id": "2379163073"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771102.3700648957, 5765880.117757097]}, "properties": {"id": "2379163074"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771073.8436922983, 5765912.907853914]}, "properties": {"id": "2379163081"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771104.1563538245, 5765912.538000349]}, "properties": {"id": "2379163082"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774372.4785961679, 5765880.757305695]}, "properties": {"id": "2379273320"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774370.4180341151, 5765727.244368837]}, "properties": {"id": "2379273321"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774390.9996591997, 5765834.291885143]}, "properties": {"id": "2379273322"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774351.6914062819, 5765833.389618133]}, "properties": {"id": "2379273323"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774355.3057410555, 5765796.952314047]}, "properties": {"id": "2379273324"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774395.4950495517, 5765795.657811601]}, "properties": {"id": "2379273325"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746416.3582426526, 5750575.293862972]}, "properties": {"id": "2382993578"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837061.5805383045, 5811072.356371882]}, "properties": {"id": "2384163598"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837057.3526929957, 5811045.6423141435]}, "properties": {"id": "2384163600"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779150.8975944117, 5744571.202935654]}, "properties": {"id": "2394990000"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781988.177432845, 5767073.527759831]}, "properties": {"id": "2400330342"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778037.2928692137, 5786955.9804683495]}, "properties": {"id": "2405820993"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748032.7482310506, 5758151.417079317]}, "properties": {"id": "2406598004"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [741469.4340837556, 5757089.836376441]}, "properties": {"id": "2406598028"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789691.9590826475, 5764884.168607788]}, "properties": {"id": "2411604969"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790287.7255711413, 5765088.30146917]}, "properties": {"id": "2411604974"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [839243.7522368915, 5817580.521275794]}, "properties": {"id": "241860884"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [839219.12446716, 5817591.1648696195]}, "properties": {"id": "241860885"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832514.6336607703, 5812946.367058255]}, "properties": {"id": "243827556"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832517.6670087862, 5812963.767954101]}, "properties": {"id": "243827557"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832494.1182149815, 5812916.363247303]}, "properties": {"id": "243827559"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832549.363196021, 5813267.80252995]}, "properties": {"id": "243827562"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832586.4915825361, 5813503.54725668]}, "properties": {"id": "243827566"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838608.5178547159, 5805420.77813541]}, "properties": {"id": "244891982"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838799.2078336844, 5806558.862934565]}, "properties": {"id": "244891985"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838768.2053356663, 5806688.244688246]}, "properties": {"id": "244891997"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835208.8751803963, 5804284.149000556]}, "properties": {"id": "244892179"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828905.6670948996, 5814846.108193727]}, "properties": {"id": "2449311782"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829065.1006501734, 5814703.347547127]}, "properties": {"id": "2449311783"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788458.7463766936, 5764822.833887594]}, "properties": {"id": "2478529562"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [731932.912737311, 5707256.270641802]}, "properties": {"id": "249074021"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [731439.0153384788, 5705065.62613594]}, "properties": {"id": "249074035"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838413.9629350647, 5804261.178489683]}, "properties": {"id": "250287575"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838566.3795566997, 5805122.097826294]}, "properties": {"id": "250287615"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838568.4734273204, 5805135.444441798]}, "properties": {"id": "250287616"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838673.6700674526, 5805727.638481267]}, "properties": {"id": "250287618"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838783.4880252517, 5806686.880265867]}, "properties": {"id": "250287973"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838811.0968353498, 5806585.560848644]}, "properties": {"id": "250287974"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838788.2839502892, 5806383.895227282]}, "properties": {"id": "250287977"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838795.443737746, 5806587.563347765]}, "properties": {"id": "250290113"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838186.5402364456, 5806602.689253868]}, "properties": {"id": "250290115"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838285.8362063044, 5806632.993111454]}, "properties": {"id": "250290129"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759780.6812726057, 5729526.971653542]}, "properties": {"id": "250291479"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759344.9946651093, 5729796.488753505]}, "properties": {"id": "250291483"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838793.5740077336, 5808399.022435313]}, "properties": {"id": "250291495"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [730791.8922293419, 5704276.4017431345]}, "properties": {"id": "250292073"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [729874.4366506861, 5703949.506367208]}, "properties": {"id": "250292076"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [729128.8480924809, 5703855.440660694]}, "properties": {"id": "250292080"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [728554.3937195963, 5704152.908378329]}, "properties": {"id": "250292082"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [728045.4483935782, 5704320.648502148]}, "properties": {"id": "250292084"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [726052.1359069505, 5706564.7163029425]}, "properties": {"id": "250292112"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [722083.2284079748, 5707952.45043864]}, "properties": {"id": "250292180"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [721805.2252684474, 5706972.327562067]}, "properties": {"id": "250292444"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793853.1507578699, 5772791.123493175]}, "properties": {"id": "250444530"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793863.7918555218, 5772785.136664435]}, "properties": {"id": "250444534"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836725.5678682034, 5805407.990097676]}, "properties": {"id": "2506831437"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788346.3953935304, 5773520.852506981]}, "properties": {"id": "252358954"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794205.2736740815, 5777905.392251887]}, "properties": {"id": "252359226"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794225.4825959142, 5777901.727007394]}, "properties": {"id": "252359243"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837071.3983052073, 5819535.626160823]}, "properties": {"id": "2528926492"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833657.2207092715, 5804958.110704516]}, "properties": {"id": "253337672"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833415.4272342643, 5804701.408532207]}, "properties": {"id": "253337722"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833403.5818033325, 5804644.247466371]}, "properties": {"id": "253337728"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833401.5423666255, 5804627.907152027]}, "properties": {"id": "253337733"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833575.1068861452, 5804615.549525798]}, "properties": {"id": "253337734"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833397.0054483223, 5804603.484519261]}, "properties": {"id": "253337738"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [825462.7083941461, 5798544.914637057]}, "properties": {"id": "253363796"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820998.2427599189, 5796566.418514031]}, "properties": {"id": "253367484"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820474.2316237655, 5796361.8009912735]}, "properties": {"id": "253367488"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816050.8022371193, 5793967.920918897]}, "properties": {"id": "253370968"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [815447.7264229169, 5793554.4892396815]}, "properties": {"id": "253370970"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [815437.4289029147, 5793577.353973598]}, "properties": {"id": "253370971"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [814970.1914184038, 5793280.391778425]}, "properties": {"id": "253370972"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829910.8498906041, 5801960.167626426]}, "properties": {"id": "253465604"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [807868.0095821167, 5788871.521734129]}, "properties": {"id": "253491504"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [807866.6647091903, 5788843.559993658]}, "properties": {"id": "253491505"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798017.2688826979, 5782832.809692617]}, "properties": {"id": "253493700"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792713.2023863964, 5774831.041201365]}, "properties": {"id": "253506644"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837065.8488579642, 5806971.820115928]}, "properties": {"id": "253521108"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838541.2531940751, 5807452.617487937]}, "properties": {"id": "253525719"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835445.060777294, 5805963.847708598]}, "properties": {"id": "254224704"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835483.8705103041, 5806888.486334165]}, "properties": {"id": "254224862"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835930.4880820944, 5806387.926798664]}, "properties": {"id": "254225264"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836804.8518836317, 5806637.294221914]}, "properties": {"id": "254226145"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837095.5431302601, 5806768.432775339]}, "properties": {"id": "254228083"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837076.5582440456, 5806661.127938522]}, "properties": {"id": "254228084"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837061.9228350432, 5806573.181982636]}, "properties": {"id": "254228085"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836919.9044745833, 5806236.032809185]}, "properties": {"id": "254230076"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836962.9087554938, 5806287.798497807]}, "properties": {"id": "254230084"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837036.3665570645, 5806421.5899469815]}, "properties": {"id": "254230219"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837034.3184199426, 5806413.378670441]}, "properties": {"id": "254230220"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836914.0581267634, 5806251.751420008]}, "properties": {"id": "254231554"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836783.0939073141, 5805978.508341422]}, "properties": {"id": "254237430"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836820.0955865036, 5805979.247643378]}, "properties": {"id": "254237434"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836781.3263190612, 5805958.20948418]}, "properties": {"id": "254237440"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836710.2592961313, 5805984.0200977735]}, "properties": {"id": "254237557"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835649.9734997075, 5806152.733548442]}, "properties": {"id": "254238018"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837005.4092225533, 5806388.089117462]}, "properties": {"id": "254238270"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835195.3080786682, 5806211.383716868]}, "properties": {"id": "254238538"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835002.8677418549, 5806239.497895848]}, "properties": {"id": "254238565"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833189.8723707068, 5804680.314345196]}, "properties": {"id": "254238947"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833011.0100573318, 5804795.286675062]}, "properties": {"id": "254239173"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832723.6730674452, 5804554.614217233]}, "properties": {"id": "254255690"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832693.0824749942, 5804540.832543845]}, "properties": {"id": "254255694"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832697.4459118845, 5804572.990201252]}, "properties": {"id": "254255698"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833426.0717594117, 5804640.6872848235]}, "properties": {"id": "254256120"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837059.5841208694, 5806655.2306811325]}, "properties": {"id": "254257041"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837047.5030830984, 5806584.170870569]}, "properties": {"id": "254257087"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837493.3995301405, 5806595.089980076]}, "properties": {"id": "254257128"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837123.0659119601, 5806657.005845306]}, "properties": {"id": "254257339"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837053.0857991101, 5806517.334295152]}, "properties": {"id": "254257349"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837080.4773873256, 5806781.527598853]}, "properties": {"id": "254257360"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837097.0715565702, 5806777.732879393]}, "properties": {"id": "254257364"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790440.1880077844, 5755174.299343916]}, "properties": {"id": "2548347174"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790888.290692213, 5755144.961453477]}, "properties": {"id": "2548347176"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790881.1998633773, 5755105.426797454]}, "properties": {"id": "2548347182"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790960.6390806362, 5755090.949641913]}, "properties": {"id": "2548347184"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791208.3060412647, 5755036.26158863]}, "properties": {"id": "2548347189"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791198.8950819613, 5755020.829408294]}, "properties": {"id": "2548347192"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790980.875581722, 5754984.9097389635]}, "properties": {"id": "2548347194"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791158.1858656845, 5754949.374736773]}, "properties": {"id": "2548347197"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790968.9933627206, 5754908.914168253]}, "properties": {"id": "2548347200"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791137.1199180677, 5754879.1010419065]}, "properties": {"id": "2548347202"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790954.8941842476, 5754835.3103216505]}, "properties": {"id": "2548347208"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791139.5984392927, 5754800.420328737]}, "properties": {"id": "2548347210"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790499.6434168855, 5754833.4214421455]}, "properties": {"id": "2548347211"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790482.005523027, 5754807.381267914]}, "properties": {"id": "2548347217"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790491.8447218122, 5754809.205672115]}, "properties": {"id": "2548347219"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790502.6086182188, 5754799.004224805]}, "properties": {"id": "2548347220"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790830.317681246, 5754777.0352083715]}, "properties": {"id": "2548347232"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790500.7846609185, 5754789.933725262]}, "properties": {"id": "2548347233"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790939.911270553, 5754757.592576578]}, "properties": {"id": "2548347241"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791117.1459039369, 5754672.500733646]}, "properties": {"id": "2548347248"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791410.1956155822, 5754628.161103562]}, "properties": {"id": "2548347249"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791405.4596949739, 5754606.380653517]}, "properties": {"id": "2548347251"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789926.4779207555, 5754653.610151052]}, "properties": {"id": "2548347252"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791386.0973982333, 5754590.629921899]}, "properties": {"id": "2548347253"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791429.4870665962, 5754582.028022979]}, "properties": {"id": "2548347255"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789912.6326814159, 5754592.655618218]}, "properties": {"id": "2548347259"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789120.143526182, 5753158.4171853755]}, "properties": {"id": "2548347265"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789212.1876812823, 5753141.681172265]}, "properties": {"id": "2548347266"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789617.9876193892, 5752923.097497939]}, "properties": {"id": "2548347274"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789618.8649069184, 5752910.706741942]}, "properties": {"id": "2548347276"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789620.2487113966, 5752899.987198454]}, "properties": {"id": "2548347278"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789480.7789333673, 5752894.511713648]}, "properties": {"id": "2548347280"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789249.8588556829, 5752873.396319133]}, "properties": {"id": "2548347285"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833248.4432778448, 5818197.306788472]}, "properties": {"id": "255031238"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833052.4302347557, 5819543.901255373]}, "properties": {"id": "255031251"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833043.8963856108, 5819768.713972667]}, "properties": {"id": "255031295"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833410.4314504482, 5821016.2111620745]}, "properties": {"id": "255031354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833399.8065570304, 5821042.314114787]}, "properties": {"id": "255031362"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833416.807633714, 5821036.256586455]}, "properties": {"id": "255031363"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774887.5730796221, 5753921.134234725]}, "properties": {"id": "2558469795"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778389.6540490302, 5752619.545578334]}, "properties": {"id": "2558469834"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773259.8674451938, 5752761.216948891]}, "properties": {"id": "2558469841"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775688.5428158339, 5752223.216406326]}, "properties": {"id": "2558469862"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777566.2504451432, 5751124.488637439]}, "properties": {"id": "2558469907"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775849.9526072468, 5751098.132351233]}, "properties": {"id": "2558469913"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770945.9932554046, 5749210.628513577]}, "properties": {"id": "2558470054"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782064.1439384808, 5748747.557699009]}, "properties": {"id": "2558470064"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781527.5649317966, 5748727.805523997]}, "properties": {"id": "2558470073"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770217.3953297737, 5748746.930611538]}, "properties": {"id": "2558470122"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770604.9294958675, 5747961.712595326]}, "properties": {"id": "2558470151"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771124.8385655438, 5747803.569347716]}, "properties": {"id": "2558470162"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771735.8463079857, 5747758.541575387]}, "properties": {"id": "2558470163"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772444.3338606617, 5747558.318802175]}, "properties": {"id": "2558470177"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772983.1798074348, 5747289.585059275]}, "properties": {"id": "2558470211"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773502.274582216, 5747112.694963757]}, "properties": {"id": "2558470238"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774245.8032834718, 5747083.161083811]}, "properties": {"id": "2558470240"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774934.647509075, 5745517.04250961]}, "properties": {"id": "2558470480"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777765.2567559335, 5745136.808554268]}, "properties": {"id": "2558470482"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774407.4154549597, 5744997.4961850075]}, "properties": {"id": "2558470493"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777559.9465927467, 5745033.327183111]}, "properties": {"id": "2558470497"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777026.7941332642, 5744975.541381284]}, "properties": {"id": "2558470503"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774145.0345536757, 5744760.700112969]}, "properties": {"id": "2558470528"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774708.2470039652, 5743578.3837427655]}, "properties": {"id": "2558470557"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830742.6023681674, 5813945.865634203]}, "properties": {"id": "256040845"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830722.2027006436, 5813936.189330667]}, "properties": {"id": "256040868"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779020.7809978905, 5744525.5841733385]}, "properties": {"id": "2562476417"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778446.6797737188, 5744440.55300635]}, "properties": {"id": "2562476494"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778583.5109767521, 5744415.579068705]}, "properties": {"id": "2562476511"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778467.5942154587, 5744427.071170938]}, "properties": {"id": "2562476512"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778502.5657140049, 5744418.259227756]}, "properties": {"id": "2562476524"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778482.5310595135, 5744410.417760738]}, "properties": {"id": "2562476531"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778481.1478613799, 5744406.331516509]}, "properties": {"id": "2562476536"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778509.4137598404, 5744397.139733155]}, "properties": {"id": "2562476552"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778402.2097854242, 5744394.482900336]}, "properties": {"id": "2562476556"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778532.7860207118, 5744394.541393228]}, "properties": {"id": "2562476557"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797421.4517125557, 5757015.6106647495]}, "properties": {"id": "2574033455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795030.6023249429, 5755472.0156289395]}, "properties": {"id": "2574037173"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793220.7487621149, 5756740.03096791]}, "properties": {"id": "2574066796"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787685.5348914354, 5757776.619198186]}, "properties": {"id": "2574066808"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830664.9905330553, 5821675.75418146]}, "properties": {"id": "26030574"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831260.5546779471, 5821558.135930834]}, "properties": {"id": "26032502"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831626.0098074456, 5821484.14861173]}, "properties": {"id": "26032503"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832827.2790289826, 5821225.254139021]}, "properties": {"id": "26032508"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833856.8768510327, 5820897.773663776]}, "properties": {"id": "26032511"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834254.5508534326, 5820769.245227015]}, "properties": {"id": "26032513"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834721.5720899482, 5820622.093482037]}, "properties": {"id": "26032514"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830162.2921167769, 5821748.552282466]}, "properties": {"id": "26118246"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830669.8166731339, 5821650.232840616]}, "properties": {"id": "26118248"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831234.8425004986, 5821536.964387072]}, "properties": {"id": "26118249"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831691.2321595168, 5821451.428663112]}, "properties": {"id": "26118250"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832821.204676121, 5821203.895329885]}, "properties": {"id": "26118266"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833393.3930333938, 5821021.780958851]}, "properties": {"id": "26118268"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833851.5487166732, 5820876.362895278]}, "properties": {"id": "26118269"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833961.1298427451, 5820841.494667498]}, "properties": {"id": "26118270"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834248.4598616995, 5820750.400656881]}, "properties": {"id": "26118271"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834714.9977938833, 5820602.468181955]}, "properties": {"id": "26118272"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [827609.6852180216, 5822158.46390195]}, "properties": {"id": "26118307"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826859.971845802, 5822304.297151763]}, "properties": {"id": "26118308"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [824082.167231159, 5822810.298423283]}, "properties": {"id": "26118323"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793874.3615073626, 5772845.328502895]}, "properties": {"id": "262734731"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [807324.8365055594, 5765150.423409362]}, "properties": {"id": "262915785"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790637.9115216653, 5767137.2999942675]}, "properties": {"id": "262916737"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792556.996170047, 5766369.153607223]}, "properties": {"id": "262918233"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835225.9822395043, 5820434.843923533]}, "properties": {"id": "2633474487"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793876.8288475091, 5772919.084344889]}, "properties": {"id": "263575954"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793903.4414557556, 5773006.604223182]}, "properties": {"id": "263576234"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795318.9762711797, 5771402.617370644]}, "properties": {"id": "263727590"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795328.7418624038, 5771398.69420025]}, "properties": {"id": "263727831"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792305.3006916117, 5768782.708474016]}, "properties": {"id": "264173093"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790025.031285091, 5766748.239649472]}, "properties": {"id": "264173097"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789878.8663680522, 5766680.415674631]}, "properties": {"id": "264173098"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837309.4363355136, 5814634.429093782]}, "properties": {"id": "26475390"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837322.7327910312, 5814669.989714962]}, "properties": {"id": "26475397"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833690.1298390816, 5809790.125426516]}, "properties": {"id": "26475875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833685.0141963714, 5809758.654494615]}, "properties": {"id": "26475876"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834749.3407957968, 5809444.398458657]}, "properties": {"id": "26475881"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835510.4447702856, 5806902.489860088]}, "properties": {"id": "26476043"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836812.2305496635, 5806615.697280673]}, "properties": {"id": "26476109"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790745.0937687957, 5773125.797158313]}, "properties": {"id": "265710645"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769423.341876501, 5778782.430530506]}, "properties": {"id": "265711394"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789514.2420407564, 5766567.315781208]}, "properties": {"id": "266584657"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789519.4158031279, 5766550.359705338]}, "properties": {"id": "266584658"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761777.765767035, 5839242.908653311]}, "properties": {"id": "2669542595"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [825042.7179577721, 5798204.811473183]}, "properties": {"id": "267093718"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [802842.6853687651, 5786182.744226347]}, "properties": {"id": "267115801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [802853.4338175668, 5786159.625131537]}, "properties": {"id": "267115805"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795499.1104092493, 5780456.5121036945]}, "properties": {"id": "267115807"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790626.159767611, 5767153.236900155]}, "properties": {"id": "267124456"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794001.3611173193, 5775608.764783437]}, "properties": {"id": "26755975"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793814.2408981437, 5773749.549239832]}, "properties": {"id": "26755994"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793779.6835774945, 5773783.631500782]}, "properties": {"id": "26756000"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794123.1008736282, 5776371.906920165]}, "properties": {"id": "26756061"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798193.625207793, 5783073.863043103]}, "properties": {"id": "26756204"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834199.8015480221, 5812285.2375922]}, "properties": {"id": "268169658"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833830.7130415575, 5811461.47103769]}, "properties": {"id": "268169790"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833523.7411463179, 5810337.83747204]}, "properties": {"id": "268169805"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834376.434208619, 5812855.10389199]}, "properties": {"id": "268170275"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834388.7734815119, 5812882.900868851]}, "properties": {"id": "268170277"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834236.5468168389, 5812862.555649356]}, "properties": {"id": "268170298"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834245.4727255865, 5812889.99108329]}, "properties": {"id": "268170300"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833510.0906357643, 5812752.756182551]}, "properties": {"id": "268170604"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833566.5179639747, 5812752.792543929]}, "properties": {"id": "268170635"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833508.4060526047, 5812767.157000097]}, "properties": {"id": "268170653"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833567.1183687975, 5812766.077785378]}, "properties": {"id": "268170656"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833696.0341591964, 5812799.155590917]}, "properties": {"id": "268170745"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833702.6641466223, 5812785.699393535]}, "properties": {"id": "268170840"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834428.2634227674, 5812842.300690196]}, "properties": {"id": "268172123"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834426.1726293473, 5812873.597379884]}, "properties": {"id": "268172125"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834526.9389714438, 5812825.268657781]}, "properties": {"id": "268172128"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836093.6235472853, 5813185.239161802]}, "properties": {"id": "268172253"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835672.9330113487, 5813067.665878372]}, "properties": {"id": "268172431"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837118.4725222269, 5811370.021831397]}, "properties": {"id": "268175236"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837189.2934350355, 5811809.547985033]}, "properties": {"id": "268175484"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837221.4107922392, 5811985.2230758555]}, "properties": {"id": "268175485"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837222.482938929, 5811991.784204916]}, "properties": {"id": "268175487"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837227.2876563801, 5812022.221915591]}, "properties": {"id": "268175488"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837232.6517902524, 5812030.997814692]}, "properties": {"id": "268175489"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837235.9813228645, 5812020.931446921]}, "properties": {"id": "268175490"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837229.9068959779, 5811984.496692212]}, "properties": {"id": "268175492"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837206.2964183448, 5811788.346257988]}, "properties": {"id": "268175497"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837204.9677135244, 5811778.971250027]}, "properties": {"id": "268175498"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835667.2000171118, 5812323.987986416]}, "properties": {"id": "268175695"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836067.5740804246, 5812244.582945305]}, "properties": {"id": "268175696"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836338.7448144245, 5812190.790183604]}, "properties": {"id": "268175699"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836502.4633353895, 5812158.308389106]}, "properties": {"id": "268175701"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836938.3869195732, 5812070.922369523]}, "properties": {"id": "268175967"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837343.1915837566, 5812005.882703651]}, "properties": {"id": "268175994"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837260.7239922171, 5812024.242568055]}, "properties": {"id": "268176011"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836935.9269013682, 5812058.268923914]}, "properties": {"id": "268176174"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837407.1186620704, 5811975.550458761]}, "properties": {"id": "268176964"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792163.0150209388, 5775771.916947609]}, "properties": {"id": "268179135"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836500.1905911047, 5812143.31211786]}, "properties": {"id": "268179535"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836336.0150135327, 5812175.40116448]}, "properties": {"id": "268179969"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836064.356670516, 5812228.479925126]}, "properties": {"id": "268179978"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837639.5100051787, 5811952.393000003]}, "properties": {"id": "268181332"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837636.3370698491, 5811932.719000312]}, "properties": {"id": "268181355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834634.6252867342, 5813148.307546269]}, "properties": {"id": "268218803"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834275.9068943686, 5812943.4501140695]}, "properties": {"id": "268218863"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835165.7876424863, 5813165.618259322]}, "properties": {"id": "268219026"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834778.7757166411, 5813171.954660025]}, "properties": {"id": "268219066"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834574.894702612, 5813076.893429015]}, "properties": {"id": "268219071"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834465.4634647281, 5812982.269832222]}, "properties": {"id": "268219073"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834443.7956112371, 5812953.640115054]}, "properties": {"id": "268219074"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834338.1377268075, 5812768.907213649]}, "properties": {"id": "268219241"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834298.9333089609, 5812717.695046042]}, "properties": {"id": "268219316"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834351.1142704147, 5812788.716958418]}, "properties": {"id": "268219317"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833540.3049243456, 5810707.200157939]}, "properties": {"id": "268219446"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833915.935040985, 5811653.186512815]}, "properties": {"id": "268219475"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834177.5630598802, 5812233.157947851]}, "properties": {"id": "268220025"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834184.0785844332, 5812721.860678319]}, "properties": {"id": "268220063"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834199.216377463, 5812781.634221255]}, "properties": {"id": "268220075"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834178.836865285, 5812860.529934768]}, "properties": {"id": "268220094"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833019.7679315791, 5812849.0495325085]}, "properties": {"id": "268220755"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836261.9678123489, 5813352.081554638]}, "properties": {"id": "268385195"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836576.823303539, 5813751.700303205]}, "properties": {"id": "268385204"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836605.5636155789, 5813809.04704694]}, "properties": {"id": "268385235"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836481.9359139875, 5813572.752982128]}, "properties": {"id": "268385264"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836831.610992794, 5814202.583160253]}, "properties": {"id": "268385358"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837510.9740373052, 5813621.463267319]}, "properties": {"id": "268386038"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837712.7454510888, 5814688.649342974]}, "properties": {"id": "268386307"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837710.8280126436, 5814730.582464546]}, "properties": {"id": "268386309"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837726.316832454, 5814685.6685413215]}, "properties": {"id": "268386636"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836189.5358583229, 5817348.765816394]}, "properties": {"id": "268386958"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836337.1772921549, 5817170.178433124]}, "properties": {"id": "268387134"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836129.2090424476, 5817598.644327477]}, "properties": {"id": "268387192"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835787.964372823, 5817919.772351824]}, "properties": {"id": "268387327"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835832.8199785601, 5817855.342802602]}, "properties": {"id": "268387329"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836124.1137030347, 5817583.718687852]}, "properties": {"id": "268387338"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835483.3407112347, 5818190.167728373]}, "properties": {"id": "268387502"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835447.7408729428, 5818259.255187286]}, "properties": {"id": "268387503"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835277.1113602282, 5818954.889644688]}, "properties": {"id": "268387661"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835626.8826900513, 5818047.222898331]}, "properties": {"id": "268387838"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783228.6505648901, 5755316.474545413]}, "properties": {"id": "2693866510"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774478.6692349699, 5766462.288284048]}, "properties": {"id": "2693866515"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797112.7653197098, 5769817.727215483]}, "properties": {"id": "270421130"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796854.5231845309, 5760220.050772932]}, "properties": {"id": "270450002"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792972.9105766522, 5768653.796026314]}, "properties": {"id": "270450174"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792546.3114642298, 5766371.517744399]}, "properties": {"id": "270450175"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792202.7507302337, 5764553.288129876]}, "properties": {"id": "270450183"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792799.0609463349, 5767741.71539737]}, "properties": {"id": "270450185"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791538.1389195442, 5761360.75652207]}, "properties": {"id": "270450451"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791697.9377777575, 5761332.4894375065]}, "properties": {"id": "270450452"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791630.6376547958, 5761334.093288241]}, "properties": {"id": "270450508"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791602.8427485886, 5761335.995471511]}, "properties": {"id": "270450513"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791605.9412443741, 5761360.497098653]}, "properties": {"id": "270450517"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791477.1747939889, 5760637.498112891]}, "properties": {"id": "270450941"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790947.5292761999, 5757772.260251313]}, "properties": {"id": "270450945"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790839.1903956288, 5757183.723916007]}, "properties": {"id": "270450946"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790857.7921194003, 5757180.175598641]}, "properties": {"id": "270450949"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790118.226569819, 5754037.32541556]}, "properties": {"id": "270451591"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790305.6926432265, 5754827.560621257]}, "properties": {"id": "270451603"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790128.3869051913, 5753308.416164181]}, "properties": {"id": "270452051"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790091.7442497627, 5753223.207220705]}, "properties": {"id": "270452105"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790109.3066833543, 5753300.110554461]}, "properties": {"id": "270452106"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790108.5728142075, 5753219.790210123]}, "properties": {"id": "270452119"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791117.8432898236, 5753015.597230084]}, "properties": {"id": "270452134"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790016.3173687742, 5752803.656745918]}, "properties": {"id": "270452200"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789976.88249866, 5752591.242444356]}, "properties": {"id": "270452229"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789915.5593211458, 5752269.39229059]}, "properties": {"id": "270452248"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789931.2758940725, 5752266.271063677]}, "properties": {"id": "270452270"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789888.1336890581, 5752030.515999783]}, "properties": {"id": "270452290"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789870.4747431411, 5752036.582087515]}, "properties": {"id": "270452291"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789122.0089455897, 5751398.107830709]}, "properties": {"id": "270452357"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789925.3822013005, 5751518.565466397]}, "properties": {"id": "270452455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789902.6774077143, 5751536.186845927]}, "properties": {"id": "270452459"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789914.8359388472, 5751560.52042772]}, "properties": {"id": "270452461"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789942.5169218365, 5751539.833916272]}, "properties": {"id": "270452466"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789784.1579673007, 5751475.3267116565]}, "properties": {"id": "270452662"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789974.396354984, 5751496.419157009]}, "properties": {"id": "270452759"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790002.7345533876, 5751487.208724698]}, "properties": {"id": "270452770"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763310.9739695102, 5763825.061684631]}, "properties": {"id": "2716421239"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765027.2371865666, 5764091.79297329]}, "properties": {"id": "2716422143"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765011.5332088312, 5763978.583907575]}, "properties": {"id": "2716422144"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764439.2380363811, 5763963.019189242]}, "properties": {"id": "2716422146"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765028.6279906306, 5764061.991654284]}, "properties": {"id": "2716422147"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [800336.6028909878, 5784809.797461578]}, "properties": {"id": "27266296"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [808846.0746674207, 5789416.296227133]}, "properties": {"id": "27266301"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [808856.0051978768, 5789391.131492307]}, "properties": {"id": "27266303"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794024.1148750989, 5776489.60018097]}, "properties": {"id": "2735737972"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770687.301788769, 5802279.939839662]}, "properties": {"id": "274453801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772848.8037059207, 5798642.02980109]}, "properties": {"id": "274453804"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773642.0284280332, 5797964.112088731]}, "properties": {"id": "274453805"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775346.7156064261, 5794518.442769019]}, "properties": {"id": "274453807"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776174.5303815247, 5792218.650338878]}, "properties": {"id": "274453812"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770655.5690440345, 5805260.777006001]}, "properties": {"id": "2744554270"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770070.9965719448, 5807545.030693991]}, "properties": {"id": "2744554272"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766466.0104929679, 5815035.614673423]}, "properties": {"id": "2744567837"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766824.9386151689, 5813961.8811822655]}, "properties": {"id": "2744567838"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750252.0501551501, 5832001.604038926]}, "properties": {"id": "2744576173"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754170.3684243638, 5829152.739896544]}, "properties": {"id": "2744576180"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753356.5491437541, 5829531.423721744]}, "properties": {"id": "2744576182"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751951.695056011, 5830337.313603379]}, "properties": {"id": "2744577931"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750557.7489306123, 5833428.016855061]}, "properties": {"id": "2744598325"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [802655.308729867, 5767789.168055306]}, "properties": {"id": "277046787"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [799600.7794668928, 5768842.383132759]}, "properties": {"id": "277046788(1)"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [799610.0375305526, 5768859.602905247]}, "properties": {"id": "277046788(2)"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835160.1145436995, 5820264.695368279]}, "properties": {"id": "2787795144"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835414.993617984, 5818309.03449692]}, "properties": {"id": "2790078690"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835442.4925537761, 5818239.67649271]}, "properties": {"id": "2790078696"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831386.4375060059, 5824373.205994418]}, "properties": {"id": "2791828162"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831636.1071990955, 5824243.981515798]}, "properties": {"id": "2791828183"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831284.8432075279, 5824473.034731744]}, "properties": {"id": "2791828184"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797737.2453671894, 5769573.963175141]}, "properties": {"id": "279677534"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794299.469622182, 5778287.190854435]}, "properties": {"id": "2802468202"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [819085.5229258062, 5757929.670727131]}, "properties": {"id": "2812792755"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784072.783080246, 5745341.024603822]}, "properties": {"id": "282686370"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816951.8650237189, 5794537.084051108]}, "properties": {"id": "282810561"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [824188.5948311382, 5797759.8034957815]}, "properties": {"id": "282810947"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [823203.9804473044, 5797411.081314912]}, "properties": {"id": "282810962"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770253.2659019527, 5770270.64261213]}, "properties": {"id": "2830954405"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775278.2808448728, 5752625.383224198]}, "properties": {"id": "2830985586"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786960.6308137961, 5753801.460716687]}, "properties": {"id": "2833518552"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789655.0642847737, 5754960.541641]}, "properties": {"id": "2833528508"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [730982.1162021853, 5788290.160213216]}, "properties": {"id": "2852231213"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778764.9344869708, 5762789.28797593]}, "properties": {"id": "2854230059"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796668.5454476548, 5781557.4616894545]}, "properties": {"id": "286389293"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796656.8488942779, 5781575.293469162]}, "properties": {"id": "286389331"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833270.561699091, 5820615.945555721]}, "properties": {"id": "2865664642"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830546.0636367323, 5821699.2316797115]}, "properties": {"id": "2868271426"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830640.4560746527, 5821655.934658539]}, "properties": {"id": "2868271434"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746655.6488591506, 5836078.779625954]}, "properties": {"id": "2875552966"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758755.7297489693, 5729934.342887223]}, "properties": {"id": "2876031918"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758862.9472901579, 5729685.575491294]}, "properties": {"id": "2876063767"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746758.609843526, 5713714.097889741]}, "properties": {"id": "2880904431"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746117.7148732641, 5713620.681378776]}, "properties": {"id": "2880904441"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [745610.3608696798, 5713686.148761139]}, "properties": {"id": "2880923456"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744864.0020805555, 5713619.815241135]}, "properties": {"id": "2880948328"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [743773.9658444731, 5713243.697771546]}, "properties": {"id": "2880948332"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744365.8898060924, 5713602.005449542]}, "properties": {"id": "2880948337"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [742132.3754247911, 5712863.343583141]}, "properties": {"id": "2880981759"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [741421.8253068452, 5712610.399467063]}, "properties": {"id": "2880981761"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [740918.161686868, 5712265.072002549]}, "properties": {"id": "2880981766"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [740443.1082219232, 5712342.713186973]}, "properties": {"id": "2880988263"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [739277.9319763144, 5711725.428871704]}, "properties": {"id": "2881088277"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [735902.2289527192, 5710319.005280154]}, "properties": {"id": "2881089001"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [738222.3751967155, 5711409.268472701]}, "properties": {"id": "2881089005"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [737719.271372781, 5711174.341861379]}, "properties": {"id": "2881089014"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [736999.9095920967, 5710906.513861725]}, "properties": {"id": "2881089019"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [739983.0077384823, 5712195.507973968]}, "properties": {"id": "2881089034"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [732578.6967159661, 5708556.366793395]}, "properties": {"id": "2882838082"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832856.7593978657, 5805010.19639413]}, "properties": {"id": "288433642"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833208.6607984623, 5806513.990812782]}, "properties": {"id": "288439943"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833180.9700210175, 5806489.2734660115]}, "properties": {"id": "288440538"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833259.3569538054, 5807050.381062621]}, "properties": {"id": "288440664"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833276.571008574, 5807034.8828251595]}, "properties": {"id": "288440676"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833257.4274258226, 5807038.695246521]}, "properties": {"id": "288440694"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836576.9454973427, 5806844.269422089]}, "properties": {"id": "288441250"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795023.518884236, 5762290.234966604]}, "properties": {"id": "2888615853"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [738806.636614601, 5832697.642723443]}, "properties": {"id": "2892750617"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781799.3026895467, 5765719.711763629]}, "properties": {"id": "2894787806"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833592.330487249, 5821545.5570653025]}, "properties": {"id": "2894998228"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833648.1545986957, 5821632.985143606]}, "properties": {"id": "2894998239"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833679.6143073484, 5821737.542945661]}, "properties": {"id": "2894998245"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778454.1556064355, 5744413.489172211]}, "properties": {"id": "289545349"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778466.3088393705, 5744398.776928476]}, "properties": {"id": "289545354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778461.4429054882, 5744400.434517557]}, "properties": {"id": "289545355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778454.6292468647, 5744416.562256445]}, "properties": {"id": "289545358"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778385.882199877, 5744582.738990668]}, "properties": {"id": "289545363"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778357.9095258834, 5744742.314507653]}, "properties": {"id": "289545365"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778409.4297901895, 5744882.670017422]}, "properties": {"id": "289545367"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778538.6969344437, 5745079.067974391]}, "properties": {"id": "289545370"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778587.6828710029, 5745124.859096119]}, "properties": {"id": "289545371"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778651.4711811901, 5745163.447265632]}, "properties": {"id": "289545372"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778301.1160892976, 5745676.787023855]}, "properties": {"id": "289545391"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778406.8526617982, 5746102.910476372]}, "properties": {"id": "289545392"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778339.0210619126, 5746184.315292586]}, "properties": {"id": "289545393"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778177.1609284302, 5746329.269065791]}, "properties": {"id": "289545395"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778086.0777043533, 5746462.639620782]}, "properties": {"id": "289545396"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778422.6196780534, 5746189.814810973]}, "properties": {"id": "289545397"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780059.1183308262, 5746386.599686763]}, "properties": {"id": "289545413"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776522.6815985956, 5745037.454569722]}, "properties": {"id": "289545457"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778381.6345503386, 5746173.4289147165]}, "properties": {"id": "289545763"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778390.5616909408, 5746175.865152848]}, "properties": {"id": "289545765"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778399.0671946949, 5746162.56858428]}, "properties": {"id": "289545766"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778398.5777368189, 5746157.773503601]}, "properties": {"id": "289545767"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778380.7083820999, 5746148.923041391]}, "properties": {"id": "289545769"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778378.1496756917, 5746152.834458806]}, "properties": {"id": "289545770"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777995.1204020022, 5744181.261687966]}, "properties": {"id": "289545793"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777740.0437760353, 5744090.0536622275]}, "properties": {"id": "289545798"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777731.8525491351, 5744088.091604519]}, "properties": {"id": "289545800"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777732.7505807459, 5744091.561241382]}, "properties": {"id": "289545801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777739.567652176, 5744086.647251598]}, "properties": {"id": "289545822"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778223.6321256177, 5744152.713746558]}, "properties": {"id": "289545826"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778204.7361103517, 5744154.000681892]}, "properties": {"id": "289545828"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777224.3743224109, 5744313.854828828]}, "properties": {"id": "289545830"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777284.7746389541, 5744335.477510445]}, "properties": {"id": "289545831"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778382.5688943197, 5745120.432849645]}, "properties": {"id": "289545846"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778256.1510816831, 5744758.492061396]}, "properties": {"id": "289545852"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778221.7146276602, 5744615.4002835965]}, "properties": {"id": "289545853"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778245.5629984469, 5744419.705662981]}, "properties": {"id": "289545857"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778699.1834134569, 5744413.951196061]}, "properties": {"id": "289545863"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778708.4035837571, 5744504.41599503]}, "properties": {"id": "289545864"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778742.9683744332, 5744655.759163614]}, "properties": {"id": "289545865"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778787.7001419542, 5744862.749717439]}, "properties": {"id": "289545866"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779273.1331550764, 5745039.2882560035]}, "properties": {"id": "289545872"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778841.651308271, 5745104.316328807]}, "properties": {"id": "289545875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779127.1245340216, 5744860.995804267]}, "properties": {"id": "289545881"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779052.6170985412, 5744955.398010598]}, "properties": {"id": "289545882"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779148.130220507, 5745066.441067757]}, "properties": {"id": "289545890"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778956.1002838402, 5744911.946451715]}, "properties": {"id": "289545911"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778920.7423661652, 5744894.023946897]}, "properties": {"id": "289545914"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778618.5596598804, 5744894.390749958]}, "properties": {"id": "289545922"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778606.2180631792, 5744840.029817846]}, "properties": {"id": "289545925"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778523.8600874896, 5744858.36168991]}, "properties": {"id": "289545926"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778553.1261095512, 5744962.824278794]}, "properties": {"id": "289545929"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778655.1332835364, 5744673.44882411]}, "properties": {"id": "289545932"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778236.1752120899, 5744762.227847961]}, "properties": {"id": "289545933"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778565.7835385317, 5744694.379431638]}, "properties": {"id": "289545952"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779116.6629705662, 5744871.27175587]}, "properties": {"id": "289545955"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778975.338024934, 5744799.6354956515]}, "properties": {"id": "289545959"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778763.2166175668, 5744744.7083309805]}, "properties": {"id": "289545962"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778841.0137052215, 5744755.304168291]}, "properties": {"id": "289545965"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778896.4645270343, 5744963.645469375]}, "properties": {"id": "289545974"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778533.9928525933, 5744541.228326616]}, "properties": {"id": "289545976"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838848.4292209256, 5811711.796197753]}, "properties": {"id": "289840409"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838852.9582295616, 5811730.680266859]}, "properties": {"id": "289840426"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838840.8661496639, 5811733.024331492]}, "properties": {"id": "289840430"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838445.8272574221, 5811804.25442709]}, "properties": {"id": "289845474"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838442.2045730181, 5811785.0660664495]}, "properties": {"id": "289845521"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838262.156217112, 5811837.663566866]}, "properties": {"id": "289870592"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838258.8194801569, 5811817.262471665]}, "properties": {"id": "289870593"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776623.4157919532, 5742145.974347032]}, "properties": {"id": "289884720"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776682.6305771382, 5742439.010481323]}, "properties": {"id": "289884721"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776725.3223119029, 5742651.956519739]}, "properties": {"id": "289884722"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776749.364822279, 5742816.824677853]}, "properties": {"id": "289884723"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776797.6864178625, 5743015.4520779]}, "properties": {"id": "289884724"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776828.3247217068, 5743173.258569376]}, "properties": {"id": "289884725"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776855.0465931707, 5743312.263179299]}, "properties": {"id": "289884726"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776607.3551754879, 5742057.76702242]}, "properties": {"id": "289884728"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776795.2661672318, 5742053.499784156]}, "properties": {"id": "289884729"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776957.711675004, 5742051.761343866]}, "properties": {"id": "289884730"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777313.9865997536, 5742051.29286794]}, "properties": {"id": "289884735"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776955.8777960486, 5741912.255173696]}, "properties": {"id": "289884744"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776834.4045020142, 5742117.485925392]}, "properties": {"id": "289884747"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776790.832254655, 5742307.119333974]}, "properties": {"id": "289884748"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776910.4145721706, 5742220.464733013]}, "properties": {"id": "289884749"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777289.6264239158, 5742188.024507132]}, "properties": {"id": "289884750"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776850.0423161394, 5742138.251201803]}, "properties": {"id": "289884751"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777238.7659359728, 5742805.978685696]}, "properties": {"id": "289884754"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777264.0388678359, 5742331.5328435935]}, "properties": {"id": "289884758"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777428.4691040156, 5742198.370705603]}, "properties": {"id": "289884762"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777497.4442310105, 5742698.115748036]}, "properties": {"id": "289884771"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776842.3605311206, 5742639.015126746]}, "properties": {"id": "289884774"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776974.186168105, 5742575.676018266]}, "properties": {"id": "289884775"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776953.0166318936, 5742803.256483499]}, "properties": {"id": "289884776"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777058.4994580324, 5742689.33649288]}, "properties": {"id": "289884777"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777419.2783596937, 5743126.012403074]}, "properties": {"id": "289884778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777150.2397742223, 5742925.073292011]}, "properties": {"id": "289884780"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777216.7389708057, 5742622.015957273]}, "properties": {"id": "289884782"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777346.341868582, 5742715.331091522]}, "properties": {"id": "289884783"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777404.4595339326, 5743197.01412235]}, "properties": {"id": "289884786"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777373.5592198533, 5743336.660493901]}, "properties": {"id": "289884787"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776309.3144777088, 5743528.875202153]}, "properties": {"id": "289884792"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777090.4455586418, 5743459.984041564]}, "properties": {"id": "289884803"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777250.5496502684, 5743489.672947949]}, "properties": {"id": "289884805"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777277.91312394, 5743384.555436269]}, "properties": {"id": "289884810"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777297.6870721284, 5743318.762004374]}, "properties": {"id": "289884811"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777053.4398595064, 5743302.530784038]}, "properties": {"id": "289884812"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777635.7833045677, 5743511.124068368]}, "properties": {"id": "289884813"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777800.9077379241, 5743566.044845551]}, "properties": {"id": "289884815"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777876.4415432878, 5743591.752043481]}, "properties": {"id": "289884816"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778029.9313113651, 5743645.903472469]}, "properties": {"id": "289884817"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778234.4493466204, 5743716.624026579]}, "properties": {"id": "289884819"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778321.9318790442, 5743748.681936831]}, "properties": {"id": "289884820"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777972.7992897541, 5743731.69371074]}, "properties": {"id": "289884823"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778107.591522698, 5743778.332973019]}, "properties": {"id": "289884825"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778144.49255334, 5743792.52664692]}, "properties": {"id": "289884826"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777199.7162887926, 5743871.58155972]}, "properties": {"id": "289884827"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777146.1564124408, 5743582.453292815]}, "properties": {"id": "289884830"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777380.5857509777, 5743657.542698701]}, "properties": {"id": "289884831"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777289.2877973332, 5743625.728789839]}, "properties": {"id": "289884832"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777467.128340397, 5743995.085946098]}, "properties": {"id": "289884834"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777475.0859171752, 5743454.180377646]}, "properties": {"id": "289884835"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777399.488882682, 5743664.358811318]}, "properties": {"id": "289884836"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777558.7471940587, 5743720.553821036]}, "properties": {"id": "289884837"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777527.5035392536, 5743553.756945774]}, "properties": {"id": "289884839"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777375.9841045944, 5743964.045281683]}, "properties": {"id": "289884841"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777786.363698995, 5743560.890559634]}, "properties": {"id": "289884842"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777680.1685598858, 5743759.148681329]}, "properties": {"id": "289884849"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778187.9660701097, 5743933.050046112]}, "properties": {"id": "289884852"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778903.7639977289, 5744045.291080654]}, "properties": {"id": "289884853"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778842.724322536, 5744390.329523797]}, "properties": {"id": "289884855"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778834.548078346, 5744173.348347332]}, "properties": {"id": "289884856"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779057.3494396439, 5744340.435261277]}, "properties": {"id": "289884857"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779148.9365726074, 5744322.877348376]}, "properties": {"id": "289884858"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779068.501765799, 5744305.219332208]}, "properties": {"id": "289884859"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779113.8430588268, 5744228.58712744]}, "properties": {"id": "289884860"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778998.8746670757, 5744266.092716048]}, "properties": {"id": "289884861"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779061.0409189612, 5744154.670574672]}, "properties": {"id": "289884865"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778926.7619369375, 5744228.396444549]}, "properties": {"id": "289884866"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778997.8088092597, 5744098.441119043]}, "properties": {"id": "289884867"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777838.1243414609, 5743458.050703491]}, "properties": {"id": "289884872"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777751.7679066551, 5743426.538098856]}, "properties": {"id": "289884876"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778062.4327195139, 5743551.317992263]}, "properties": {"id": "289884889"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777701.6527941726, 5743309.135574145]}, "properties": {"id": "289884894"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778183.2308522367, 5744070.728558517]}, "properties": {"id": "289884942"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778053.2946747068, 5744068.852868935]}, "properties": {"id": "289884959"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778059.5947528831, 5743984.73055549]}, "properties": {"id": "289884963"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777800.8221916234, 5743989.425838109]}, "properties": {"id": "289884973"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778031.9484822308, 5744066.034433652]}, "properties": {"id": "289884979"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777860.4803650449, 5743898.182268786]}, "properties": {"id": "289884983"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777762.2132078503, 5743865.247119164]}, "properties": {"id": "289884987"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777165.264636951, 5744489.599805604]}, "properties": {"id": "289884990"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777793.4447143092, 5744593.75797128]}, "properties": {"id": "289885032"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778130.3715960969, 5744424.099807144]}, "properties": {"id": "289885052"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778031.7542568139, 5744441.477630816]}, "properties": {"id": "289885059"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777854.0455366899, 5744657.788671308]}, "properties": {"id": "289885083"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777910.6281051454, 5744720.401941331]}, "properties": {"id": "289885106"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777607.6421597226, 5744366.417453531]}, "properties": {"id": "289885122"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777446.5349803296, 5744398.468547346]}, "properties": {"id": "289885132"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778186.2307780745, 5744186.057622862]}, "properties": {"id": "289885139"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778098.3792732633, 5744551.240292962]}, "properties": {"id": "289885155"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777238.8171995658, 5743608.6874331385]}, "properties": {"id": "289885177"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777283.849580371, 5743925.8142747935]}, "properties": {"id": "289885182"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777324.6431245841, 5743636.756508176]}, "properties": {"id": "289885187"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777398.2666816936, 5743427.369332519]}, "properties": {"id": "289885192"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776958.3124202848, 5742287.949382655]}, "properties": {"id": "289885224"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776580.0369668843, 5741924.127901462]}, "properties": {"id": "289885290"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776697.7143334505, 5743383.811256712]}, "properties": {"id": "289885321"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777848.2499113944, 5743432.75184567]}, "properties": {"id": "289885351"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778992.0070892549, 5744354.770477017]}, "properties": {"id": "289885356"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779027.9033395299, 5744503.255056692]}, "properties": {"id": "289885357"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778719.3326629796, 5744359.209410843]}, "properties": {"id": "289885360"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778737.9476969301, 5744405.073500901]}, "properties": {"id": "289885364"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778869.8442410394, 5744384.844211961]}, "properties": {"id": "289885365"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778889.5799251477, 5744476.633712065]}, "properties": {"id": "289885366"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778884.8865057648, 5744454.0030662]}, "properties": {"id": "289885367"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778927.9455216096, 5744444.142092929]}, "properties": {"id": "289885368"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778311.1316607455, 5743505.287024982]}, "properties": {"id": "289885407"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776749.4967118036, 5743389.764276399]}, "properties": {"id": "289885417"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776742.2743269315, 5743363.07478917]}, "properties": {"id": "289885418"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777432.9882774341, 5743060.638783429]}, "properties": {"id": "289885444"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777394.4428871779, 5743038.175239377]}, "properties": {"id": "289885445"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777926.1962662768, 5744733.87790402]}, "properties": {"id": "289885455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777030.1386454094, 5742386.3817065265]}, "properties": {"id": "289885494"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777090.8167809469, 5742476.6072978955]}, "properties": {"id": "289885495"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777189.6838959397, 5742606.901340557]}, "properties": {"id": "289885497"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776984.0084943185, 5742323.548442095]}, "properties": {"id": "289885499"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777062.478959938, 5742432.364641585]}, "properties": {"id": "289885500"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777454.1252356187, 5742958.902298657]}, "properties": {"id": "289885501"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777360.4358413843, 5742931.817626092]}, "properties": {"id": "289885504"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778731.9523000671, 5744351.159627951]}, "properties": {"id": "289885584"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778729.0361920143, 5744367.9527751915]}, "properties": {"id": "289885595"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833506.5133823063, 5809986.058744386]}, "properties": {"id": "290666840"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832119.7585335013, 5809827.608687505]}, "properties": {"id": "290666918"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832732.5290537194, 5809762.497549461]}, "properties": {"id": "290667056"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833427.528311346, 5810094.183332669]}, "properties": {"id": "290667571"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831521.7505215796, 5809914.060024185]}, "properties": {"id": "290667812"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830069.6803828187, 5811621.259581347]}, "properties": {"id": "290667897"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830982.4920406977, 5809989.00622011]}, "properties": {"id": "290667986"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830050.0954940055, 5812128.299004585]}, "properties": {"id": "290669396"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830117.9609338351, 5811273.3205396235]}, "properties": {"id": "290669400"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792447.3505685271, 5765766.858678045]}, "properties": {"id": "291485820"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837854.2123927546, 5819056.470102961]}, "properties": {"id": "2915452222"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835377.7958358398, 5819565.020715471]}, "properties": {"id": "2915467075"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753103.9541326783, 5843256.138433728]}, "properties": {"id": "291556149"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763978.7539456463, 5839689.043216003]}, "properties": {"id": "291556766"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763489.7105527145, 5839618.578995002]}, "properties": {"id": "291556819"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764553.7511230696, 5839641.999556936]}, "properties": {"id": "291556847"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765335.832499126, 5839560.332475659]}, "properties": {"id": "291556849"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765976.3999524529, 5839578.37244251]}, "properties": {"id": "291556914"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765390.8952022977, 5839518.943121169]}, "properties": {"id": "291556916"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765845.7125410801, 5839575.006382198]}, "properties": {"id": "291556977"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767440.1001134858, 5839854.0069770105]}, "properties": {"id": "291557065"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768277.9357533308, 5839756.02265302]}, "properties": {"id": "291557281"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768349.3457312899, 5839710.61769552]}, "properties": {"id": "291557300"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767744.5252757922, 5839860.198762366]}, "properties": {"id": "291557395"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770098.8706083004, 5839718.8773093615]}, "properties": {"id": "291557421"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770156.0070888563, 5839748.003563828]}, "properties": {"id": "291557473"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771135.2671217378, 5839533.863098528]}, "properties": {"id": "291557500"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835322.1850841271, 5807804.498172692]}, "properties": {"id": "291667013"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835254.1697304295, 5808841.017665703]}, "properties": {"id": "291667121"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835224.1552090556, 5808929.874550314]}, "properties": {"id": "291667123"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837186.1592263263, 5811787.993118444]}, "properties": {"id": "2920060126"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [800844.880486223, 5825899.90769755]}, "properties": {"id": "2923307757"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [800070.2288962405, 5825817.917191343]}, "properties": {"id": "2923307879"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [799589.6516610412, 5825987.801158758]}, "properties": {"id": "2923307881"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [800477.3139878707, 5825780.769535459]}, "properties": {"id": "2923307883"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [799783.9301409821, 5825886.816650372]}, "properties": {"id": "2923307887"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782663.205056092, 5748448.576807019]}, "properties": {"id": "292878976"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780868.3160356884, 5747433.748880553]}, "properties": {"id": "292878979"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781056.3879117694, 5748540.235123575]}, "properties": {"id": "292878983"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781246.5554179384, 5749597.002328377]}, "properties": {"id": "292878984"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781115.8887225776, 5750403.98600034]}, "properties": {"id": "292878985"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781498.6271327976, 5751052.340781235]}, "properties": {"id": "292878995"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779864.9181575151, 5750976.181707224]}, "properties": {"id": "292879003"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779547.87100731, 5750331.966973313]}, "properties": {"id": "292879005"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [824965.4302682714, 5798176.314459909]}, "properties": {"id": "29319691"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [827246.4489830716, 5801226.304120931]}, "properties": {"id": "29319958"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830200.6711292155, 5802021.751288587]}, "properties": {"id": "29320462"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832247.8926528275, 5802560.817248304]}, "properties": {"id": "29320573"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833104.5251600896, 5804660.27321292]}, "properties": {"id": "29321143"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835333.8402531213, 5805858.897459114]}, "properties": {"id": "29321158"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835651.1506349065, 5806078.1953985905]}, "properties": {"id": "29321163"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833467.3757881445, 5821257.1579564065]}, "properties": {"id": "2932437177"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759407.3884553902, 5730715.706256325]}, "properties": {"id": "2932565813"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833567.1047462667, 5804601.986805805]}, "properties": {"id": "293310991"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832477.9416245378, 5803503.095087853]}, "properties": {"id": "293313146"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831816.7023443559, 5802152.1699978225]}, "properties": {"id": "293317665"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830782.8289244927, 5802065.042786211]}, "properties": {"id": "293318333"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832358.4137586583, 5803077.138244425]}, "properties": {"id": "293318484"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831986.3256465002, 5802345.792702314]}, "properties": {"id": "293323979"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831585.7131935272, 5802129.224933902]}, "properties": {"id": "293324461"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831277.0226498961, 5802084.15093804]}, "properties": {"id": "293346166"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830428.1771800412, 5802017.633454764]}, "properties": {"id": "293346218"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793627.0355602994, 5774233.719997508]}, "properties": {"id": "293567339"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788034.3366792393, 5764818.733751845]}, "properties": {"id": "2936482100"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835215.2099520916, 5804299.135102371]}, "properties": {"id": "293664305"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792339.8485761558, 5765268.617744205]}, "properties": {"id": "2948697188"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833268.2760720742, 5820608.354747334]}, "properties": {"id": "2949278444"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777694.4066064168, 5743126.374281386]}, "properties": {"id": "294977513"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777587.9179789243, 5743272.92122812]}, "properties": {"id": "294977515"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777197.2333451989, 5744396.904514945]}, "properties": {"id": "294977517"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777337.9261612776, 5744418.23827045]}, "properties": {"id": "294977519"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778245.5514273599, 5744212.544850425]}, "properties": {"id": "294984815"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779893.1786313956, 5744901.221942072]}, "properties": {"id": "294988660"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778770.5315707204, 5744535.32556597]}, "properties": {"id": "294988706"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779406.8168444454, 5745003.485917656]}, "properties": {"id": "294988739"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779225.3591847618, 5744435.0592903895]}, "properties": {"id": "294988769"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779041.2850348623, 5744595.5981001165]}, "properties": {"id": "294988770"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778069.9334980338, 5744183.910438203]}, "properties": {"id": "294988786"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778065.4614293217, 5744271.848041656]}, "properties": {"id": "294988793"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778060.9215071702, 5744279.395220421]}, "properties": {"id": "294988795"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778073.8373630898, 5744268.013431987]}, "properties": {"id": "294988797"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777951.1420564168, 5744250.793857409]}, "properties": {"id": "294988801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777720.162365406, 5744295.577451912]}, "properties": {"id": "294988833"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777625.7052118967, 5744255.3296814505]}, "properties": {"id": "294988839"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777689.689657612, 5744158.581939293]}, "properties": {"id": "294988841"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777681.1536262009, 5744171.712253553]}, "properties": {"id": "294988843"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777515.6147395857, 5744383.4281958565]}, "properties": {"id": "294988849"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777701.1935020374, 5744354.042769428]}, "properties": {"id": "294988864"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777141.2767550682, 5744784.322119898]}, "properties": {"id": "294988946"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777174.1498334974, 5744539.36919221]}, "properties": {"id": "294988999"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777509.8887206636, 5744604.809903426]}, "properties": {"id": "294989006"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777671.418422539, 5744463.256787674]}, "properties": {"id": "294989008"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777527.4903178264, 5744730.0031640455]}, "properties": {"id": "294989012"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777557.4329937056, 5744791.34822102]}, "properties": {"id": "294989021"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777752.1475886789, 5744550.331069024]}, "properties": {"id": "294989025"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777417.6550949238, 5744641.2854014095]}, "properties": {"id": "294989028"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777222.2151137454, 5744702.686744682]}, "properties": {"id": "294989030"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777192.4880242331, 5744625.4304665]}, "properties": {"id": "294989031"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777295.0794092205, 5744606.814985134]}, "properties": {"id": "294989032"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777374.7997913391, 5744591.664901726]}, "properties": {"id": "294989033"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773859.216764793, 5744069.890830704]}, "properties": {"id": "295231719"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773715.4602114167, 5743897.981138025]}, "properties": {"id": "295231720"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775132.5632752773, 5743372.850650872]}, "properties": {"id": "295231724"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777142.8071131944, 5743561.631649968]}, "properties": {"id": "295250958"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776765.7125605377, 5743772.606039735]}, "properties": {"id": "295250991"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776701.572747363, 5743802.495217702]}, "properties": {"id": "295250993"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776508.4523538228, 5743841.574929651]}, "properties": {"id": "295250997"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776726.3706569698, 5743904.170928741]}, "properties": {"id": "295251005"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776765.7912525884, 5743906.026383534]}, "properties": {"id": "295251010"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776769.398901473, 5743893.722376687]}, "properties": {"id": "295251011"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776770.5066127996, 5743992.756921679]}, "properties": {"id": "295251015"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776775.4496729594, 5744231.99478005]}, "properties": {"id": "295251017"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776489.9445263541, 5743953.341071661]}, "properties": {"id": "295251042"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776504.0788920606, 5743851.960337264]}, "properties": {"id": "295251046"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776497.3523360523, 5743848.835428596]}, "properties": {"id": "295251050"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776386.0288989741, 5743861.673844697]}, "properties": {"id": "295251054"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776500.9368553092, 5743839.155037163]}, "properties": {"id": "295251055"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776562.4100025438, 5743690.738983341]}, "properties": {"id": "295251059"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776366.7656786878, 5743744.849237509]}, "properties": {"id": "295251093"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776908.3237455063, 5743756.818202786]}, "properties": {"id": "295251100"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776674.3058858671, 5744011.368817715]}, "properties": {"id": "295251102"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776542.6108039732, 5744022.809478745]}, "properties": {"id": "295251107"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776681.4845566973, 5744099.581523537]}, "properties": {"id": "295251110"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776764.085103947, 5744214.038153744]}, "properties": {"id": "295251136"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817857.7929363623, 5822403.425461587]}, "properties": {"id": "2955175456"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744097.4439880414, 5724407.956267014]}, "properties": {"id": "2956743797"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [743133.5561179672, 5723530.172970529]}, "properties": {"id": "2956743798"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [741957.5579282846, 5723036.449248504]}, "properties": {"id": "2956743801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834129.4047701412, 5808010.785132628]}, "properties": {"id": "2960068522"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829979.0023083003, 5821784.480715966]}, "properties": {"id": "2960825840"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829796.0125734959, 5821824.184299948]}, "properties": {"id": "2960825842"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829782.9540282522, 5821822.1934585]}, "properties": {"id": "2960825844"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791451.6546619035, 5767938.567088706]}, "properties": {"id": "297103218"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837106.7717734664, 5807005.656899456]}, "properties": {"id": "2971220963"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778312.1078451297, 5744595.070837347]}, "properties": {"id": "297395416"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778314.1167829346, 5744547.725769978]}, "properties": {"id": "297395417"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778708.989990205, 5745092.708888679]}, "properties": {"id": "297395419"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778811.4479859836, 5744969.892223936]}, "properties": {"id": "297395420"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778642.1119046968, 5745006.052301213]}, "properties": {"id": "297395422"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765543.7398998253, 5750504.247609872]}, "properties": {"id": "2974219376"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765691.1491078984, 5750525.32462744]}, "properties": {"id": "2974219377"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777673.1616906265, 5743757.290179492]}, "properties": {"id": "297625516"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777641.8260894862, 5743875.170926221]}, "properties": {"id": "297625561"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777475.6886718713, 5743691.14695057]}, "properties": {"id": "297625626"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [799371.4977863076, 5758433.745253261]}, "properties": {"id": "297864145"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838657.057032187, 5805698.422109553]}, "properties": {"id": "2982440660"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838663.5010909018, 5805741.7467607595]}, "properties": {"id": "2982440667"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760874.9910373404, 5763146.574596284]}, "properties": {"id": "2982813927"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760570.5127805402, 5762995.755381466]}, "properties": {"id": "2982813930"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760452.6548493403, 5762850.288028656]}, "properties": {"id": "2982824137"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835137.7417712088, 5807864.798266573]}, "properties": {"id": "298326590"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835193.1039661735, 5807884.255725236]}, "properties": {"id": "298326673"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835361.1018146137, 5807812.216463687]}, "properties": {"id": "298326676"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835305.3141757246, 5807751.868917359]}, "properties": {"id": "298326708"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835169.5955657114, 5807838.212970499]}, "properties": {"id": "298327986"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834854.3759625152, 5807881.202217793]}, "properties": {"id": "298328160"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832110.9661600522, 5810325.193063933]}, "properties": {"id": "298331512"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832321.9992527366, 5811730.098213784]}, "properties": {"id": "298335238"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832112.9186234013, 5810428.565002827]}, "properties": {"id": "298335479"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833021.7702357941, 5812861.666427705]}, "properties": {"id": "298347595"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832982.2630912707, 5812870.148078224]}, "properties": {"id": "298347614"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832980.1064139144, 5812856.1141916625]}, "properties": {"id": "298347619"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832441.7006023476, 5812983.238073004]}, "properties": {"id": "298347681"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832507.2793831384, 5812987.159510225]}, "properties": {"id": "298347710"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832475.1534213007, 5812957.057772342]}, "properties": {"id": "298347745"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832623.0775743292, 5812924.6493432075]}, "properties": {"id": "298347787"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832525.1786685865, 5813009.207789335]}, "properties": {"id": "298347813"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832539.1087599618, 5812959.032004086]}, "properties": {"id": "298347857"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832202.1827242847, 5813030.89412297]}, "properties": {"id": "298348141"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779518.8597198521, 5746545.992302959]}, "properties": {"id": "298361568"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835879.3157123256, 5817384.378477151]}, "properties": {"id": "299196565"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835887.7290241228, 5817398.168220634]}, "properties": {"id": "299196615"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837509.4760266603, 5815273.827522706]}, "properties": {"id": "299199620"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837524.9110243325, 5815239.602435982]}, "properties": {"id": "299199699"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837541.7940466346, 5815236.397343887]}, "properties": {"id": "299199702"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835313.248813444, 5819178.839997333]}, "properties": {"id": "3008938960"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751830.2753320043, 5847175.5235989075]}, "properties": {"id": "301984635"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837547.0194751972, 5818722.578589456]}, "properties": {"id": "303682972"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837354.6006205631, 5818867.7035848275]}, "properties": {"id": "303682977"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837470.791563225, 5818720.695700446]}, "properties": {"id": "303682984"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837480.2609021611, 5818842.611981897]}, "properties": {"id": "303682988"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837323.1493981839, 5817941.865869097]}, "properties": {"id": "303683021"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837310.2671980171, 5817944.772706199]}, "properties": {"id": "303683055"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836575.8925919636, 5819792.709718493]}, "properties": {"id": "303683073"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835433.11437055, 5820342.394978857]}, "properties": {"id": "303683087"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835157.3821100134, 5820294.850420844]}, "properties": {"id": "303683137"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835186.8091617171, 5820291.575272938]}, "properties": {"id": "303683140"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835184.1106063009, 5820266.911407814]}, "properties": {"id": "303683143"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835289.4749572028, 5820292.016763256]}, "properties": {"id": "303683157"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835293.071246315, 5820284.209438629]}, "properties": {"id": "303683164"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835303.6144435175, 5820877.845831374]}, "properties": {"id": "303683375"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835312.9014463946, 5820950.476909198]}, "properties": {"id": "303683379"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832427.4023569706, 5823536.571763508]}, "properties": {"id": "303685039"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832671.0260184288, 5823315.502859787]}, "properties": {"id": "303685060"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830989.9126652664, 5824634.092261606]}, "properties": {"id": "303685315"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820063.383313525, 5823179.466816958]}, "properties": {"id": "303685728"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818969.6970822226, 5823261.83143555]}, "properties": {"id": "303685798"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817849.7473681576, 5822350.041806903]}, "properties": {"id": "303686027"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817806.4956746385, 5822088.764938584]}, "properties": {"id": "303686090"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817817.0179719187, 5822091.094380629]}, "properties": {"id": "303686091"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817725.7195116556, 5821645.997101726]}, "properties": {"id": "303686094"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836473.8111014753, 5804208.199092578]}, "properties": {"id": "3040323344"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [839215.8974266173, 5817549.031218974]}, "properties": {"id": "304725630"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [825968.5152439883, 5816281.424274581]}, "properties": {"id": "3048590286"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789440.4603790296, 5751345.571622396]}, "properties": {"id": "3049983777"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793865.3252693308, 5772793.794985903]}, "properties": {"id": "3066144030"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792723.7637673542, 5774838.585272448]}, "properties": {"id": "30732277"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834884.11589747, 5812571.695685061]}, "properties": {"id": "3088525624"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834868.1384410388, 5812560.8041888345]}, "properties": {"id": "3088525625"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834872.0100701007, 5812580.89486629]}, "properties": {"id": "3088525626"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837496.0562663705, 5811958.724975141]}, "properties": {"id": "3088534211"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837406.5707092846, 5811971.013859785]}, "properties": {"id": "3088534213"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837394.2128688687, 5811972.69944623]}, "properties": {"id": "3088534214"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837454.3580650999, 5813190.395732724]}, "properties": {"id": "3088561078"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833034.5791471035, 5819550.270660947]}, "properties": {"id": "30918342"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833231.143693742, 5818218.3316713255]}, "properties": {"id": "30918429"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833305.2758043294, 5817414.679795878]}, "properties": {"id": "30918462"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833290.9590932573, 5817416.826669104]}, "properties": {"id": "30918468"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833161.7924520957, 5816698.283735268]}, "properties": {"id": "30918471"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833088.6590035129, 5816284.013118761]}, "properties": {"id": "30918474"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833073.868564622, 5816286.623742424]}, "properties": {"id": "30918487"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833054.7157002913, 5816084.832900133]}, "properties": {"id": "30918488"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833035.6903000579, 5816088.170690347]}, "properties": {"id": "30918489"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833006.2012943117, 5815827.700463097]}, "properties": {"id": "30918490"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832989.0679593838, 5815830.650373744]}, "properties": {"id": "30918593"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832890.9819913823, 5815075.190831019]}, "properties": {"id": "30918600"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832870.046419675, 5815075.770384115]}, "properties": {"id": "30918601"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832861.5925249858, 5814916.888589293]}, "properties": {"id": "30918602"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832842.3937314143, 5814920.455614146]}, "properties": {"id": "30918603"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832858.7805177483, 5814900.179280497]}, "properties": {"id": "30918604"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832839.4939465562, 5814904.194610063]}, "properties": {"id": "30918606"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835889.6315970593, 5817382.44574091]}, "properties": {"id": "30928479"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836241.1107096265, 5817349.819297614]}, "properties": {"id": "30928482"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836260.4283536137, 5817351.410542287]}, "properties": {"id": "30928483"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836246.9506851488, 5817332.779568829]}, "properties": {"id": "30928521"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836267.3905718743, 5817335.036639225]}, "properties": {"id": "30928522"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837367.1709271745, 5818159.397100767]}, "properties": {"id": "30928562"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837410.7633068415, 5818400.285754586]}, "properties": {"id": "30928564"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837465.4708046953, 5818776.28887015]}, "properties": {"id": "30928565"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837468.7907390723, 5818790.497182984]}, "properties": {"id": "30928566"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837481.9415189433, 5818781.81932016]}, "properties": {"id": "30928568"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837698.9342767609, 5819115.093814872]}, "properties": {"id": "30928580"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838065.3999783618, 5818874.502504079]}, "properties": {"id": "30928585"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835643.1107194122, 5818055.546423493]}, "properties": {"id": "30929283"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835933.7991239177, 5817782.39849395]}, "properties": {"id": "30929285"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835957.5694657888, 5817738.075146657]}, "properties": {"id": "30929290"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835635.5587573366, 5818040.353671061]}, "properties": {"id": "30929292"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835260.1650704375, 5818789.4909633305]}, "properties": {"id": "30929314"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835330.4359698454, 5819179.43080884]}, "properties": {"id": "30929318"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835293.4663915492, 5818952.189674806]}, "properties": {"id": "30929319"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835281.4469631999, 5818860.811457283]}, "properties": {"id": "30929320"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835220.0976080075, 5820431.347044299]}, "properties": {"id": "30929533"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830174.9587201104, 5821746.266497003]}, "properties": {"id": "309586885"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831240.3626103095, 5821562.226564094]}, "properties": {"id": "309587586"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831255.8714201404, 5821532.373182299]}, "properties": {"id": "309587595"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837026.8393172221, 5810804.36196441]}, "properties": {"id": "309595876"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833363.232026481, 5817655.618515285]}, "properties": {"id": "309809262"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833359.2507935737, 5817689.281041833]}, "properties": {"id": "309809299"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834902.6961150325, 5817543.2830037465]}, "properties": {"id": "309809588"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835062.3935128134, 5817544.730188811]}, "properties": {"id": "309809640"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832726.3018444455, 5814085.266564433]}, "properties": {"id": "310002366"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784790.8334618879, 5750440.619582346]}, "properties": {"id": "310176853"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787330.6599929046, 5749149.200284193]}, "properties": {"id": "310176879"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787120.3951671311, 5748670.514829763]}, "properties": {"id": "310176881"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786678.1645993174, 5748274.726941659]}, "properties": {"id": "310176919"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785791.4381804036, 5747877.686345113]}, "properties": {"id": "310177054"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783437.629273269, 5748322.732833721]}, "properties": {"id": "310177055"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784242.877442449, 5748177.442629559]}, "properties": {"id": "310177062"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832069.8724918407, 5823908.112721587]}, "properties": {"id": "3116154546"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833313.5676341115, 5818850.335542137]}, "properties": {"id": "3127361680"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752545.1500492208, 5733155.954033845]}, "properties": {"id": "312994049"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751446.6082075895, 5732801.2194028245]}, "properties": {"id": "312994052"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749488.0292888, 5733157.656183757]}, "properties": {"id": "312994063"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744860.4691711918, 5726584.197070032]}, "properties": {"id": "312994077"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759194.6263838055, 5730415.164403433]}, "properties": {"id": "312994166"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759099.1730296011, 5730375.89718942]}, "properties": {"id": "312994169"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758936.6797323179, 5729942.593591478]}, "properties": {"id": "312994256"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770606.9886794351, 5739073.677119257]}, "properties": {"id": "312996418"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770538.1063429655, 5738178.11689186]}, "properties": {"id": "312996425"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770547.421324237, 5738108.150508317]}, "properties": {"id": "312996426"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751979.436321307, 5735500.226895468]}, "properties": {"id": "313076441"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761982.3149967268, 5745832.275789869]}, "properties": {"id": "313076703"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763891.6814318844, 5745428.02216845]}, "properties": {"id": "313076822"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764944.7580054007, 5745040.983612615]}, "properties": {"id": "313076829"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765503.1139076549, 5744808.31362323]}, "properties": {"id": "313076833"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764199.3593694036, 5745972.789781269]}, "properties": {"id": "313077062"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764368.3728554053, 5746766.989798704]}, "properties": {"id": "313077074"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764307.220451578, 5747515.799652546]}, "properties": {"id": "313077082"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764538.6405989279, 5748116.2764165215]}, "properties": {"id": "313077086"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765234.6992324307, 5748537.968576142]}, "properties": {"id": "313077108"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765126.669748075, 5749345.344048076]}, "properties": {"id": "313077119"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768580.0637014348, 5749245.889251414]}, "properties": {"id": "313077142"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767996.2044435088, 5749562.871529546]}, "properties": {"id": "313077143"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767433.6212862349, 5749853.377784972]}, "properties": {"id": "313077145"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766989.9294944113, 5750197.940348019]}, "properties": {"id": "313077146"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749974.6899584153, 5732911.002808829]}, "properties": {"id": "313077148"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772210.090599671, 5750018.273618598]}, "properties": {"id": "313297924"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770248.0024481865, 5744004.753256548]}, "properties": {"id": "313297931"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771120.5804035449, 5743925.252104271]}, "properties": {"id": "313297939"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771770.400837348, 5743720.279823206]}, "properties": {"id": "313297942"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773267.2149506423, 5743516.645610314]}, "properties": {"id": "313297972"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838061.3131795124, 5808535.879803186]}, "properties": {"id": "3138343362"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781194.6144185688, 5765726.031825997]}, "properties": {"id": "3160529770"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836299.4986362283, 5817262.684329964]}, "properties": {"id": "3164229067"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [806493.1759024439, 5823491.017805701]}, "properties": {"id": "316884367"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [806549.8341492647, 5823494.115878223]}, "properties": {"id": "316884374"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [806057.9580069083, 5823771.403118204]}, "properties": {"id": "316884389"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [805820.4741874371, 5824023.522394769]}, "properties": {"id": "316884400"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [805584.5529634096, 5825126.914893802]}, "properties": {"id": "317106663"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [805515.6412503105, 5825267.178363928]}, "properties": {"id": "317106695"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [805069.7815102846, 5825509.512291597]}, "properties": {"id": "317106737"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [805046.4618715143, 5825482.875294348]}, "properties": {"id": "317106752"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [804371.1235121388, 5825616.445402962]}, "properties": {"id": "317106766"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [804246.7106954346, 5825709.735497007]}, "properties": {"id": "317106791"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [803815.8327129863, 5825842.897954297]}, "properties": {"id": "317106800"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [802852.6391755741, 5825989.765576366]}, "properties": {"id": "317106842"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [802369.8935482928, 5826010.882273585]}, "properties": {"id": "317106915"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801703.6351661618, 5825895.531658087]}, "properties": {"id": "317106964"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801150.0144411947, 5825888.745740008]}, "properties": {"id": "317107005"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801397.047527862, 5825910.501477227]}, "properties": {"id": "317107007"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798061.6017546318, 5826131.950308155]}, "properties": {"id": "317107499"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797929.8730653678, 5826191.059874679]}, "properties": {"id": "317107519"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797298.9785937322, 5827255.941447407]}, "properties": {"id": "317107566"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797194.5883073409, 5827374.634899827]}, "properties": {"id": "317107572"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797107.2810181924, 5827788.483955244]}, "properties": {"id": "317107653"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797059.1649095229, 5827884.624780193]}, "properties": {"id": "317107726"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797128.4543142552, 5828356.459626958]}, "properties": {"id": "317107748"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796445.2228348127, 5829380.872044306]}, "properties": {"id": "317107819"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795512.5371962704, 5829791.410797286]}, "properties": {"id": "317107859"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795269.2766238515, 5830117.388606153]}, "properties": {"id": "317107981"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795161.1499249873, 5830233.815800991]}, "properties": {"id": "317108030"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794689.2449116737, 5831286.398290696]}, "properties": {"id": "317108047"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794446.1386688472, 5831528.776923954]}, "properties": {"id": "317108057"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794357.6700260483, 5831660.905526037]}, "properties": {"id": "317108062"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794047.8099833208, 5831853.656001981]}, "properties": {"id": "317108128"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791325.4910720758, 5832087.643376611]}, "properties": {"id": "317108235"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791226.9863815304, 5832074.70694375]}, "properties": {"id": "317108265"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789824.7784052303, 5833113.979638424]}, "properties": {"id": "317108364"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783863.2380155995, 5835030.363495445]}, "properties": {"id": "317108668"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783508.2352019215, 5835013.794595139]}, "properties": {"id": "317108722"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782940.219574706, 5834988.620262481]}, "properties": {"id": "317108785"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780042.7693962115, 5834762.107695909]}, "properties": {"id": "317108826"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779195.699589448, 5834915.390944013]}, "properties": {"id": "317108907"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777985.193356447, 5835806.451288572]}, "properties": {"id": "317108977"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777768.1010970664, 5836018.899124195]}, "properties": {"id": "317109025"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775119.5562182054, 5837446.815327258]}, "properties": {"id": "317109034"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775189.7456061256, 5837392.031639196]}, "properties": {"id": "317109057"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774521.1459083853, 5837475.305271465]}, "properties": {"id": "317109101"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771904.4197305993, 5839052.630635783]}, "properties": {"id": "317109204"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793226.6898956726, 5761074.257181655]}, "properties": {"id": "317376782"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [717855.9383223625, 5793966.42246089]}, "properties": {"id": "317718411"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [717095.1096684121, 5794467.568674547]}, "properties": {"id": "317718412"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [715645.6051252601, 5795154.421563511]}, "properties": {"id": "317718416"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [714790.5433117012, 5795323.462453825]}, "properties": {"id": "317718418"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [709577.70097829, 5796645.187781506]}, "properties": {"id": "317718419"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [725309.1267135913, 5789606.204409012]}, "properties": {"id": "317719388"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [724264.5517965435, 5790471.987014366]}, "properties": {"id": "317719394"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [723579.257932523, 5791621.18306998]}, "properties": {"id": "317719397"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746402.6009065431, 5781839.76719358]}, "properties": {"id": "317721045"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [741648.1308281466, 5783544.417644244]}, "properties": {"id": "317721047"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [740841.6152067501, 5783874.31830196]}, "properties": {"id": "317721050"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [740108.9155514057, 5784145.252833632]}, "properties": {"id": "317721055"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [739573.9006860603, 5784482.95429692]}, "properties": {"id": "317721057"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [737025.4629824434, 5785459.743544687]}, "properties": {"id": "317721060"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [736545.7323021197, 5785868.321438773]}, "properties": {"id": "317721064"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [733575.2494832352, 5787858.757061567]}, "properties": {"id": "317721068"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756368.1092805542, 5781056.52227341]}, "properties": {"id": "317721311"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751098.8609667929, 5781216.49296288]}, "properties": {"id": "317721315"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760528.4536572206, 5780350.17578992]}, "properties": {"id": "317721535"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794027.7284453437, 5771923.76769779]}, "properties": {"id": "317727073"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794892.7612894985, 5771573.886768908]}, "properties": {"id": "317727076"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792559.2166237669, 5772749.819499749]}, "properties": {"id": "317728407"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793665.622148505, 5771721.8417653125]}, "properties": {"id": "317730498"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793652.867167108, 5771723.214595408]}, "properties": {"id": "317730866"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796491.4583149988, 5770077.395999311]}, "properties": {"id": "317731183"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793897.2336437867, 5775214.242401259]}, "properties": {"id": "317732030"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793913.6443397474, 5775211.348180891]}, "properties": {"id": "317732031"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797418.1344841227, 5782479.179956847]}, "properties": {"id": "317889697"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797138.5935902605, 5782407.621511888]}, "properties": {"id": "317889816"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795655.2329393919, 5782183.788263856]}, "properties": {"id": "317889820"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794945.7181430673, 5782247.657297171]}, "properties": {"id": "317889821"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794197.2015811636, 5782318.61871316]}, "properties": {"id": "317889823"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792435.7202453383, 5765768.756724772]}, "properties": {"id": "317913096"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791796.0332600466, 5768345.136708298]}, "properties": {"id": "317915553"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791439.3444399606, 5767950.435178403]}, "properties": {"id": "317915554"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796805.0767079096, 5782310.356399772]}, "properties": {"id": "318024803"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796310.6960138734, 5782198.81461611]}, "properties": {"id": "318024805"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796318.6728928436, 5782220.242487412]}, "properties": {"id": "318024839"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795461.1861502703, 5782178.859370859]}, "properties": {"id": "318024853"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794903.530242782, 5782231.701795712]}, "properties": {"id": "318024854"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794364.784985706, 5782282.643993813]}, "properties": {"id": "318024856"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793726.9924315824, 5782303.646089159]}, "properties": {"id": "318028107"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793083.4327739431, 5781983.586905592]}, "properties": {"id": "318028111"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792784.6017211156, 5781543.308892657]}, "properties": {"id": "318028115"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792567.4790282658, 5780692.806475052]}, "properties": {"id": "318028118"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792426.5422770705, 5780209.689769232]}, "properties": {"id": "318028120"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792158.5606204044, 5779571.300374174]}, "properties": {"id": "318028126"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791763.7150019009, 5779043.60698673]}, "properties": {"id": "318028131"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791424.0985583123, 5778666.5618221685]}, "properties": {"id": "318028135"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791149.4185713574, 5776749.711024446]}, "properties": {"id": "318028144"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790949.8345903095, 5775779.858682459]}, "properties": {"id": "318028147"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790796.4822544439, 5775112.554180237]}, "properties": {"id": "318028149"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790260.6886221857, 5774345.412954718]}, "properties": {"id": "318028155"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789671.299007202, 5774086.610383697]}, "properties": {"id": "318028159"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791277.2797567027, 5777124.890286564]}, "properties": {"id": "318028180"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791256.2845936441, 5777151.427116953]}, "properties": {"id": "318028182"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791232.5168108785, 5777124.09297916]}, "properties": {"id": "318035114"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790859.3594687667, 5777520.529304306]}, "properties": {"id": "318035128"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791051.1992730225, 5777379.007397777]}, "properties": {"id": "318035139"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788967.162868608, 5773735.794050696]}, "properties": {"id": "318036316"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789493.6501131403, 5774066.58089362]}, "properties": {"id": "318036322"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790355.349930644, 5774453.026555963]}, "properties": {"id": "318036330"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790726.520965295, 5774978.654031063]}, "properties": {"id": "318036335"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790858.2705806652, 5775471.129372004]}, "properties": {"id": "318036338"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791109.7544398215, 5777338.434422232]}, "properties": {"id": "318036345"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791157.6317151487, 5777875.598994448]}, "properties": {"id": "318036347"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791361.20161297, 5778593.761043895]}, "properties": {"id": "318036351"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792224.8733195832, 5779764.51820777]}, "properties": {"id": "318036361"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792527.8099181149, 5780615.265502807]}, "properties": {"id": "318036365"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792676.7059826332, 5781232.510641189]}, "properties": {"id": "318036366"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792874.4581161083, 5781761.817816998]}, "properties": {"id": "318036371"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793392.3482202936, 5782218.957121571]}, "properties": {"id": "318036376"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794558.4232348467, 5779519.987633501]}, "properties": {"id": "318038046"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791828.0364982142, 5779127.523906785]}, "properties": {"id": "318039175"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791635.2710095195, 5776621.300716323]}, "properties": {"id": "318039338"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791267.0544587442, 5777163.289123201]}, "properties": {"id": "318039355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789989.0541485044, 5778113.397618884]}, "properties": {"id": "318039431"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786151.4367333027, 5779810.546850272]}, "properties": {"id": "318039453"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788269.674793946, 5778906.930755566]}, "properties": {"id": "318039461"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788746.3668160933, 5778594.989416734]}, "properties": {"id": "318039462"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783896.9249654983, 5780492.493044929]}, "properties": {"id": "318039525"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791885.0338169925, 5776233.053499948]}, "properties": {"id": "318039572"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793726.0521945297, 5774084.829430955]}, "properties": {"id": "318039630"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793812.55501557, 5774169.18366148]}, "properties": {"id": "318039780"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793772.4052406047, 5774083.87572917]}, "properties": {"id": "318039790"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793738.175447996, 5774032.864176403]}, "properties": {"id": "318039799"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793804.4488836931, 5774164.24189342]}, "properties": {"id": "318039883"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793625.1127560742, 5774220.84110408]}, "properties": {"id": "318039939"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793763.7627360031, 5774092.5019260775]}, "properties": {"id": "318040020"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790740.6057726252, 5756674.860313992]}, "properties": {"id": "3184022801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790761.2899501999, 5756670.79257568]}, "properties": {"id": "3184022802"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789181.2949635691, 5766412.837050422]}, "properties": {"id": "318558980"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792370.2983767213, 5768759.070100616]}, "properties": {"id": "318567921"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797412.1447375321, 5782442.94207557]}, "properties": {"id": "318573686"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773303.9555081286, 5765849.924608632]}, "properties": {"id": "3187946128"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772741.5954677714, 5765857.798334507]}, "properties": {"id": "3187946129"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775238.2100691521, 5765829.354679465]}, "properties": {"id": "3187946412"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775235.9676497293, 5765802.061080123]}, "properties": {"id": "3187946413"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773733.6330507217, 5765814.482032457]}, "properties": {"id": "3187946416"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777294.8701693972, 5765825.593597874]}, "properties": {"id": "3187949067"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770525.7840323341, 5765885.280462697]}, "properties": {"id": "3187975593"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769381.2412552368, 5765679.396279756]}, "properties": {"id": "3187977321"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770134.5849876702, 5765884.900392742]}, "properties": {"id": "3187977322"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767624.316106217, 5764896.347977829]}, "properties": {"id": "3187980403"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762538.8558892875, 5763768.539832347]}, "properties": {"id": "3188103028"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762310.43718046, 5763648.846948086]}, "properties": {"id": "3188103032"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762287.6981967865, 5763632.684086059]}, "properties": {"id": "3188104956"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761966.4000842249, 5763407.749164905]}, "properties": {"id": "3188104957"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762073.2452056296, 5763482.8776964545]}, "properties": {"id": "3188104958"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762181.9410078228, 5763558.5339144105]}, "properties": {"id": "3188104959"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788738.2303549927, 5773384.734620038]}, "properties": {"id": "318835263"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789034.7110244487, 5773770.900120433]}, "properties": {"id": "318835558"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788888.0539637578, 5773356.900971197]}, "properties": {"id": "318835563"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838487.9154809832, 5804679.443685349]}, "properties": {"id": "3189541011"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838476.3091131498, 5804681.334656247]}, "properties": {"id": "3189541012"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838431.2396279327, 5803816.176210807]}, "properties": {"id": "3189561084"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838581.8910144609, 5803741.304854377]}, "properties": {"id": "3189561086"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838586.6541171034, 5803752.028170675]}, "properties": {"id": "3189561087"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762524.8203537324, 5763777.572631332]}, "properties": {"id": "3189862240"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794051.8334845464, 5777073.453647568]}, "properties": {"id": "319170210"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [806319.3487188411, 5788043.670660938]}, "properties": {"id": "319641334"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [806986.6371664772, 5788399.884496193]}, "properties": {"id": "319641353"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [806905.0457402938, 5788328.109372263]}, "properties": {"id": "319641354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [806199.963103038, 5787950.0758460425]}, "properties": {"id": "319641376"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801764.6138027171, 5785572.392296818]}, "properties": {"id": "319641788"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838639.7633297362, 5805532.557566715]}, "properties": {"id": "319847144"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750784.872672224, 5836405.296861891]}, "properties": {"id": "3205831189"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750838.9955275656, 5836222.941019166]}, "properties": {"id": "3205831997"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750780.259518243, 5836412.056886036]}, "properties": {"id": "3205832023"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750852.0045498615, 5836223.135976218]}, "properties": {"id": "3205832057"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838778.2521512299, 5806386.811154056]}, "properties": {"id": "320777910"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838742.9258426224, 5806183.259877076]}, "properties": {"id": "320778089"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838617.7567029183, 5807475.840463055]}, "properties": {"id": "320853352"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836570.7577968261, 5806871.488283988]}, "properties": {"id": "320854747"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838329.5797726075, 5809716.59057709]}, "properties": {"id": "321401326"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838975.5086393795, 5809597.025984036]}, "properties": {"id": "321401359"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833035.6907033962, 5819538.862265304]}, "properties": {"id": "3215340818"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837068.5099179184, 5811043.550391083]}, "properties": {"id": "321569609"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835592.3357185144, 5812320.704292815]}, "properties": {"id": "321681204"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834515.9064260232, 5812805.091000039]}, "properties": {"id": "321682639"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787091.5556547717, 5754602.14275065]}, "properties": {"id": "321710619"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788468.4042747868, 5761932.997696291]}, "properties": {"id": "321710621"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788663.310817549, 5750660.30157027]}, "properties": {"id": "321711578"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788698.861380795, 5750681.8202070445]}, "properties": {"id": "321711581"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788714.3996962641, 5750759.108881426]}, "properties": {"id": "321711585"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788775.2460977924, 5751097.463257733]}, "properties": {"id": "321711586"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788832.5383646047, 5751436.211471048]}, "properties": {"id": "321711589"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788932.2350955133, 5753436.849657111]}, "properties": {"id": "321711594"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [800961.0588408483, 5785470.619838685]}, "properties": {"id": "322483534"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [800582.7785778672, 5784975.532420226]}, "properties": {"id": "322483539"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838039.1167908828, 5807292.27795906]}, "properties": {"id": "322527304"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790554.2086195123, 5832491.378295489]}, "properties": {"id": "322710651"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790745.291405342, 5832408.74644968]}, "properties": {"id": "322710765"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788630.7589866219, 5833539.437710753]}, "properties": {"id": "322710873"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791215.4627068308, 5755049.896705446]}, "properties": {"id": "3230837562"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785169.2491370954, 5751563.59618689]}, "properties": {"id": "324204843"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785178.305516382, 5751545.182483313]}, "properties": {"id": "324204850"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785163.6754454842, 5751529.251249648]}, "properties": {"id": "324204855"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785141.2314680826, 5751551.027929569]}, "properties": {"id": "324204863"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780087.2302282434, 5765802.511455245]}, "properties": {"id": "3248775629"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836673.9716642074, 5805167.273658204]}, "properties": {"id": "32549429"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836956.9042327914, 5806302.4561367445]}, "properties": {"id": "32549509"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837100.7905291589, 5806904.857096549]}, "properties": {"id": "32549532"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [806888.6615684618, 5765476.874823721]}, "properties": {"id": "3285045416"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [806852.2113815116, 5765480.92344344]}, "properties": {"id": "3285045417"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [808240.6225959458, 5764488.971902891]}, "properties": {"id": "3285056289"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [808254.7849606737, 5764501.817325217]}, "properties": {"id": "3285056290"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792708.455408611, 5832405.665399047]}, "properties": {"id": "3287411823"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793248.9229477945, 5832361.6665132325]}, "properties": {"id": "3287411832"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828932.5107488041, 5821972.357395974]}, "properties": {"id": "3289276809"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828962.6913862354, 5821994.947343923]}, "properties": {"id": "3289276811"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794828.3598065565, 5760772.578886539]}, "properties": {"id": "329904918"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828959.8702748427, 5821967.619981058]}, "properties": {"id": "33085391"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828932.2919153305, 5821992.579078415]}, "properties": {"id": "33085400"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828827.8641849381, 5821995.373466439]}, "properties": {"id": "33086230"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829178.9699409041, 5821958.816025637]}, "properties": {"id": "33087039"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792007.4294658202, 5763396.143605114]}, "properties": {"id": "331120741"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791988.6243716718, 5763399.800587085]}, "properties": {"id": "331120743"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794524.1598704611, 5759167.995600637]}, "properties": {"id": "331120847"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795655.7814084766, 5759850.571255836]}, "properties": {"id": "331120848"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795478.4382415619, 5759098.606187948]}, "properties": {"id": "331120858"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792929.599178941, 5759465.496066408]}, "properties": {"id": "331120875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793091.05680626, 5758804.163072979]}, "properties": {"id": "331121163"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792463.5021032025, 5756883.05304563]}, "properties": {"id": "331121470"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789986.5149662865, 5766726.033635433]}, "properties": {"id": "331122806"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801457.424319939, 5759140.806240022]}, "properties": {"id": "331151419(1)"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783262.0194417646, 5835044.928934624]}, "properties": {"id": "3315375752"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818765.1176318325, 5795770.8603415415]}, "properties": {"id": "3317644263"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [819327.2979666578, 5795930.130631617]}, "properties": {"id": "3317644271"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789147.3264427567, 5766443.245944245]}, "properties": {"id": "332192105"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837023.6222165388, 5806978.42362109]}, "properties": {"id": "3323244002"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837521.6541717965, 5806617.057891537]}, "properties": {"id": "3323284480"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837024.4692748873, 5806385.727774411]}, "properties": {"id": "3323284486"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836949.81054335, 5816220.170248752]}, "properties": {"id": "33302638"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836930.7446654853, 5816181.720461521]}, "properties": {"id": "33302646"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837394.491020328, 5815487.644071506]}, "properties": {"id": "33302736"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837494.3363143315, 5815334.649741687]}, "properties": {"id": "33302738"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837536.8144731394, 5815246.742577625]}, "properties": {"id": "33302739"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837520.0051836439, 5815249.377533218]}, "properties": {"id": "33302740"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837606.959552682, 5815035.362322088]}, "properties": {"id": "33302745"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837617.9454296485, 5815006.779131224]}, "properties": {"id": "33302747"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837635.2119836821, 5815015.522819051]}, "properties": {"id": "33302748"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837675.233502741, 5814905.47594903]}, "properties": {"id": "33302754"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837553.3388296532, 5814901.1782476455]}, "properties": {"id": "33302761"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837579.6503891312, 5814973.767189164]}, "properties": {"id": "33302769"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837700.4331874999, 5814786.040120541]}, "properties": {"id": "33302806"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837644.4538351796, 5814818.681623589]}, "properties": {"id": "33302853"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837720.9096005738, 5814763.917142937]}, "properties": {"id": "33302974"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789523.6842053789, 5766570.168198056]}, "properties": {"id": "3332965297"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789528.8667102167, 5766553.211802248]}, "properties": {"id": "3332965299"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789549.1666422528, 5766577.426625212]}, "properties": {"id": "3332966053"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750939.2160929893, 5746430.0834165905]}, "properties": {"id": "333977501"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766611.1792542825, 5756904.775159659]}, "properties": {"id": "333978384"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770502.0766531699, 5759064.700829339]}, "properties": {"id": "333978396"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754637.9520602871, 5841559.377001038]}, "properties": {"id": "3340866168"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755287.5932512664, 5840939.732591687]}, "properties": {"id": "3340866176"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754208.0020404559, 5841910.003884072]}, "properties": {"id": "3340866179"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754158.8751873325, 5841842.236146716]}, "properties": {"id": "3340866180"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754670.2768729179, 5841374.052179666]}, "properties": {"id": "3340866181"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756360.0810292956, 5840352.188780386]}, "properties": {"id": "3340866183"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759343.3847183828, 5838565.513556613]}, "properties": {"id": "3340917301"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755555.6324866952, 5840739.895071898]}, "properties": {"id": "3340929863"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755993.1179691418, 5840431.112863699]}, "properties": {"id": "3340929869"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791168.3093382941, 5777813.966922678]}, "properties": {"id": "334409391"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791169.0304555253, 5777530.4202126255]}, "properties": {"id": "334409408"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791195.6747421508, 5777390.350825264]}, "properties": {"id": "334409411"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791196.4057598726, 5777243.018113513]}, "properties": {"id": "334409415"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791175.7731788764, 5777262.284174896]}, "properties": {"id": "334409424"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791158.1618979741, 5777257.27991096]}, "properties": {"id": "334409425"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791034.0164906543, 5777373.465152087]}, "properties": {"id": "334409503"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791043.5949965888, 5777271.8062144825]}, "properties": {"id": "334409508"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791021.8563765882, 5777384.836605969]}, "properties": {"id": "334409510"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791008.5323634036, 5777415.465955882]}, "properties": {"id": "334409520"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791058.6521099056, 5777410.082414365]}, "properties": {"id": "334409524"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785636.0792538242, 5774859.0767807225]}, "properties": {"id": "334409621"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784206.0612592084, 5775226.617277111]}, "properties": {"id": "334409623"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782894.5886236847, 5775577.156223996]}, "properties": {"id": "334409625"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780465.1858178764, 5775896.616051965]}, "properties": {"id": "334409629"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779038.6492350816, 5776405.934328744]}, "properties": {"id": "334409631"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776467.2974100194, 5777156.517551648]}, "properties": {"id": "334409633"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774106.2613491325, 5778313.161184276]}, "properties": {"id": "334409635"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773634.775772284, 5778510.304958284]}, "properties": {"id": "334409637"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837519.5579098662, 5813613.794493121]}, "properties": {"id": "33531726"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837507.7457653354, 5813613.13358625]}, "properties": {"id": "33531737"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837343.7933730388, 5812612.0362281045]}, "properties": {"id": "33531752"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837233.3152208999, 5812004.33900639]}, "properties": {"id": "33531761"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770655.0841481751, 5738363.129867998]}, "properties": {"id": "336707180"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816489.3410134153, 5821986.358529611]}, "properties": {"id": "3367822892"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816437.0715833933, 5821961.650273033]}, "properties": {"id": "3367822903"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [815773.216752536, 5822211.46654154]}, "properties": {"id": "3367822913"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [815764.477877601, 5822249.952391537]}, "properties": {"id": "3367822915"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785630.3517385108, 5754861.715084221]}, "properties": {"id": "3413826115"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785528.532491687, 5754981.283984251]}, "properties": {"id": "3413826121"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785494.5520149921, 5754803.673685188]}, "properties": {"id": "3413826138"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785527.5866815352, 5754916.648779498]}, "properties": {"id": "3413826141"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785501.2856612247, 5754920.809943264]}, "properties": {"id": "3413826145"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785404.9325918308, 5754908.034617491]}, "properties": {"id": "3413826150"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785483.8222714209, 5754884.467929829]}, "properties": {"id": "3413826180"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785531.1807324075, 5754863.360099093]}, "properties": {"id": "3413844594"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785540.5174323055, 5754876.777740254]}, "properties": {"id": "3413848404"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785490.8204725974, 5754868.832953181]}, "properties": {"id": "3413848410"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785540.9939641408, 5754898.850768571]}, "properties": {"id": "3413848412"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792672.4526754743, 5767049.006427979]}, "properties": {"id": "341550505"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828283.956380235, 5801513.193088238]}, "properties": {"id": "34219992"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788886.3069836989, 5773346.282645225]}, "properties": {"id": "3431090312"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788986.2289420727, 5773327.2904559905]}, "properties": {"id": "3431090316"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789352.8806934556, 5773265.011595374]}, "properties": {"id": "3431090321"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788704.096108428, 5773381.802624427]}, "properties": {"id": "3431090322"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788734.5724009373, 5773375.662367054]}, "properties": {"id": "3431090329"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837404.0879469231, 5815450.122474552]}, "properties": {"id": "343862868"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [733238.0532511875, 5826935.916972264]}, "properties": {"id": "3444578378"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [739191.9775949541, 5833064.730051927]}, "properties": {"id": "3444578413"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783940.4771546351, 5761141.68964038]}, "properties": {"id": "3450272591"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758274.9783578452, 5729524.518517981]}, "properties": {"id": "3451539009"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836602.3280739557, 5812138.632975656]}, "properties": {"id": "3451762884"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836598.102318455, 5812124.228128023]}, "properties": {"id": "3451762885"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754415.6194829438, 5829070.8580109775]}, "properties": {"id": "3455069866"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754439.3206381784, 5829064.374386024]}, "properties": {"id": "3455069869"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754382.7155687191, 5829089.422095619]}, "properties": {"id": "3455069872"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754474.1154317558, 5829061.337308558]}, "properties": {"id": "3455069875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835186.9857728708, 5820440.920905254]}, "properties": {"id": "3459190345"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832519.1646255339, 5823498.6753910035]}, "properties": {"id": "3459192208"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820053.8491517077, 5820230.84255244]}, "properties": {"id": "34610818"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818383.5041046061, 5821722.658374531]}, "properties": {"id": "34610823"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817045.3654273516, 5821903.038157165]}, "properties": {"id": "34610825"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [815076.6266619625, 5822444.867137353]}, "properties": {"id": "34610830"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [813471.1667842815, 5822731.35053493]}, "properties": {"id": "34610833"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [812738.7735237367, 5822850.8530522585]}, "properties": {"id": "34610834"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [812076.2837931506, 5822960.920929071]}, "properties": {"id": "34610835"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790800.216829194, 5754780.175744717]}, "properties": {"id": "3464604462"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790476.7393160686, 5754792.455014968]}, "properties": {"id": "3464604466"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790800.0250476811, 5754771.691131442]}, "properties": {"id": "3464604468"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790723.3205956197, 5754741.88817875]}, "properties": {"id": "3464604476"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790489.82841209, 5754783.837096444]}, "properties": {"id": "3464604482"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790313.5596894361, 5754795.901870971]}, "properties": {"id": "3464604485"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790482.1792685841, 5754785.924000698]}, "properties": {"id": "3464604489"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790727.0165205697, 5754763.050551913]}, "properties": {"id": "3464604491"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790725.5920486148, 5754752.92092534]}, "properties": {"id": "3464607396"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791101.3664857012, 5754635.635791931]}, "properties": {"id": "3464608656"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791144.3035640614, 5754635.843443172]}, "properties": {"id": "3464608660"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791121.628108124, 5754636.027692569]}, "properties": {"id": "3464608670"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791082.0086954948, 5754647.437306066]}, "properties": {"id": "3464608671"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791110.8134499331, 5754599.383848119]}, "properties": {"id": "3464608673"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793559.4288710514, 5771151.627494126]}, "properties": {"id": "347433294"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836192.515670862, 5817506.005888242]}, "properties": {"id": "3475958006"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836206.1239926631, 5817438.222821554]}, "properties": {"id": "3475958012"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834127.2466022039, 5807996.328858124]}, "properties": {"id": "347849258"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836201.7463166444, 5807413.563356491]}, "properties": {"id": "347851660"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837557.7337979971, 5813735.301384375]}, "properties": {"id": "3480752970"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830024.7154819675, 5825619.541855964]}, "properties": {"id": "348188443"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830049.3898746156, 5825737.133007878]}, "properties": {"id": "348188448"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795507.722100867, 5780463.812994269]}, "properties": {"id": "3484099740"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781479.6359374316, 5745318.132933385]}, "properties": {"id": "3506304438"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781447.2845789031, 5745796.136665994]}, "properties": {"id": "3506304475"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781917.1993076918, 5746566.624991521]}, "properties": {"id": "3506304542"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [827415.3389997522, 5801297.322199045]}, "properties": {"id": "350784931"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832500.0660126747, 5812949.53536205]}, "properties": {"id": "35082902"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830732.4603003438, 5813929.395026807]}, "properties": {"id": "35082905"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832503.6691207977, 5812967.057781776]}, "properties": {"id": "35084638"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830732.2586383, 5813952.274256291]}, "properties": {"id": "35084641"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [814017.234043263, 5822674.698053174]}, "properties": {"id": "35090937"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [814510.0171703724, 5822356.907747858]}, "properties": {"id": "35091512"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [814587.0694591014, 5822762.403012712]}, "properties": {"id": "35091839"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797561.2429809852, 5826683.119214311]}, "properties": {"id": "35094589"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796368.3652173297, 5829381.125997312]}, "properties": {"id": "35095642"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794831.1076897566, 5830971.458689619]}, "properties": {"id": "35095648"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793427.8746411428, 5832232.224318242]}, "properties": {"id": "35095651"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789732.4135867716, 5833107.177290663]}, "properties": {"id": "35095663"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784289.9455117299, 5834944.00465306]}, "properties": {"id": "35095672"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778583.0925515154, 5835306.298050714]}, "properties": {"id": "35095679"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777286.79672013, 5836263.883940572]}, "properties": {"id": "35095681"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773854.9475347779, 5837719.5942961]}, "properties": {"id": "35095687"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766864.4055921936, 5839797.273255426]}, "properties": {"id": "35096766"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758037.2605691596, 5838954.626458535]}, "properties": {"id": "35096781"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758357.1128328582, 5838845.978781601]}, "properties": {"id": "35098291"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764770.2287726579, 5839654.935842681]}, "properties": {"id": "35098302"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766676.5335818147, 5839796.303296378]}, "properties": {"id": "35098308"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767187.5228244384, 5839868.498887848]}, "properties": {"id": "35098309"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772518.6030641566, 5838632.931273608]}, "properties": {"id": "35098321"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774390.88634825, 5837517.071446553]}, "properties": {"id": "35098326"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778208.4297289021, 5835662.769144122]}, "properties": {"id": "35098333"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778870.0546277307, 5835116.040846222]}, "properties": {"id": "35098334"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779446.9377417138, 5834894.075489346]}, "properties": {"id": "35098336"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780105.8713411449, 5834787.942014851]}, "properties": {"id": "35098337"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780971.769605366, 5834831.11151074]}, "properties": {"id": "35098339"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784530.1857155734, 5834936.446462551]}, "properties": {"id": "35098343"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795799.6419004437, 5829658.921413327]}, "properties": {"id": "35098376"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797658.5397268233, 5826581.057050461]}, "properties": {"id": "35098389"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [814545.3976117366, 5793004.218113917]}, "properties": {"id": "351093450"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810792.5044416722, 5790548.28877829]}, "properties": {"id": "351093694"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [812770.3671407714, 5791685.338137121]}, "properties": {"id": "351094967"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [812283.3858857555, 5791493.350102044]}, "properties": {"id": "351094976"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [813142.2354326653, 5792089.338475131]}, "properties": {"id": "351095362"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [812486.4564277914, 5791816.3162984075]}, "properties": {"id": "351095899"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [812547.9834583747, 5791922.205641992]}, "properties": {"id": "351095902"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [813253.0546630705, 5792192.578634503]}, "properties": {"id": "351095911"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781447.8568103745, 5745831.013259125]}, "properties": {"id": "3513952454"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780628.6782010256, 5784114.729964216]}, "properties": {"id": "3520907439"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780780.2396598329, 5783921.338643606]}, "properties": {"id": "3520907454"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780800.6648536266, 5783953.550577286]}, "properties": {"id": "3520907464"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778634.1460288137, 5786300.398651317]}, "properties": {"id": "3520911304"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777644.3246453293, 5787459.6813726]}, "properties": {"id": "3520911522"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777437.0631683585, 5788119.839654449]}, "properties": {"id": "3520911523"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777197.812864807, 5788905.353429206]}, "properties": {"id": "3520911733"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776372.8876661966, 5791588.673268644]}, "properties": {"id": "3520911735"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788935.6908142897, 5764716.608727037]}, "properties": {"id": "3527871426"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793056.4069230945, 5768666.783958063]}, "properties": {"id": "3530740191"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791879.3951730416, 5768410.623270009]}, "properties": {"id": "3530741631"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835719.736358199, 5804202.760382874]}, "properties": {"id": "353637502"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834140.3289491129, 5806364.769126819]}, "properties": {"id": "353638688"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833513.8654167642, 5806456.577623215]}, "properties": {"id": "353638698"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832975.9175157489, 5808164.241887318]}, "properties": {"id": "353640757"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832986.3000318878, 5808163.587560201]}, "properties": {"id": "353640763"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832987.8172071553, 5808174.467297051]}, "properties": {"id": "353640765"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831984.870548625, 5809424.069117645]}, "properties": {"id": "353642218"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831983.0627853168, 5809414.47976127]}, "properties": {"id": "353642299"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832188.259373913, 5808283.802452886]}, "properties": {"id": "353642926"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [738336.786640579, 5832046.161241346]}, "properties": {"id": "3545568272"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [735069.5222711699, 5829100.712239828]}, "properties": {"id": "3545692728"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [735607.990307674, 5829446.750367779]}, "properties": {"id": "3545693211"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791998.907008975, 5765237.824220382]}, "properties": {"id": "3546176054"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792355.0069310784, 5765267.303765255]}, "properties": {"id": "3546176175"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834771.1053040426, 5804383.2609564345]}, "properties": {"id": "354777622"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834769.0983546503, 5804368.865269564]}, "properties": {"id": "354777626"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791098.7070557799, 5767552.088143435]}, "properties": {"id": "355158093"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833128.4809128074, 5816510.408292405]}, "properties": {"id": "356253646"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833113.7507135049, 5816512.771890383]}, "properties": {"id": "356253653"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833147.2499337101, 5816703.9865755085]}, "properties": {"id": "356257672"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837703.2335568394, 5814568.902506981]}, "properties": {"id": "356259711"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751794.9890976109, 5840292.389579629]}, "properties": {"id": "356613593"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [731244.0432855765, 5704605.884011816]}, "properties": {"id": "357068979"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791127.3012321279, 5754720.972059381]}, "properties": {"id": "3577715442"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792037.4464304976, 5754726.2660862245]}, "properties": {"id": "3577715469"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792116.8655917163, 5754713.533906787]}, "properties": {"id": "3577715471"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792102.8605021567, 5754627.090165233]}, "properties": {"id": "3577715472"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792010.8974187679, 5754642.865779366]}, "properties": {"id": "3577715473"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792125.9573137297, 5754711.871146301]}, "properties": {"id": "3577715475"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792144.681988426, 5754816.916858212]}, "properties": {"id": "3577715476"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792152.9875402187, 5754815.549281305]}, "properties": {"id": "3577715480"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792159.039689027, 5754890.099050432]}, "properties": {"id": "3577715483"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792073.8211250468, 5754903.31916207]}, "properties": {"id": "3577715487"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792159.5811875009, 5754879.409313854]}, "properties": {"id": "3577715488"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789145.8689644154, 5754215.905559341]}, "properties": {"id": "3577715593"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789163.6921923073, 5754319.630872673]}, "properties": {"id": "3577715594"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789197.1723738619, 5754484.679981712]}, "properties": {"id": "3577715611"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789668.8254065516, 5753297.063018889]}, "properties": {"id": "3577715612"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789726.6198414983, 5753409.144567993]}, "properties": {"id": "3577715617"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789945.8797244999, 5753331.147845601]}, "properties": {"id": "3577715618"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789281.9910008752, 5752755.454082622]}, "properties": {"id": "3577715634"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789351.663525045, 5752726.836629133]}, "properties": {"id": "3577715637"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789335.3097025949, 5752577.222954285]}, "properties": {"id": "3577715641"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789654.3955586225, 5753608.563023168]}, "properties": {"id": "3577715659"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789632.152065026, 5753484.557412339]}, "properties": {"id": "3577715660"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789634.0994895697, 5753495.390775797]}, "properties": {"id": "3577715661"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789515.6547843716, 5753518.068879015]}, "properties": {"id": "3577715662"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789691.0588496891, 5753602.000945976]}, "properties": {"id": "3577715663"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789716.6186749616, 5753740.7918905625]}, "properties": {"id": "3577715664"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789777.9398104765, 5753586.433419247]}, "properties": {"id": "3577715665"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789798.637834205, 5753703.181028823]}, "properties": {"id": "3577715666"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784885.9023872514, 5765714.210614388]}, "properties": {"id": "3577738561"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785261.3215090496, 5765607.567801999]}, "properties": {"id": "3577738576"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798965.9791184206, 5769106.122142508]}, "properties": {"id": "3598503098"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798960.9266223626, 5769093.070051848]}, "properties": {"id": "3598503099"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791968.6545613535, 5754389.477781549]}, "properties": {"id": "3599593678"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836148.0631792687, 5806598.390258906]}, "properties": {"id": "36020934"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836533.9934649337, 5806774.830407119]}, "properties": {"id": "36021203"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836600.5509090135, 5806818.927509493]}, "properties": {"id": "36021205"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836647.6131611762, 5806831.542877274]}, "properties": {"id": "36021206"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836531.9459929895, 5806742.733939532]}, "properties": {"id": "36021210"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836070.9189364791, 5806377.198412481]}, "properties": {"id": "36021221"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837158.7892247571, 5807022.6808523275]}, "properties": {"id": "36022318"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835101.3743438013, 5812421.333348315]}, "properties": {"id": "36026387"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834707.6507941913, 5812680.318071239]}, "properties": {"id": "36026393"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835560.5098713632, 5813050.246033874]}, "properties": {"id": "36030400"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832510.7505673124, 5812924.319420066]}, "properties": {"id": "36043664"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832486.0428633252, 5812853.911937407]}, "properties": {"id": "36043667"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [823450.040373897, 5817326.258731123]}, "properties": {"id": "3604480758"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832140.318156661, 5810494.805659711]}, "properties": {"id": "36045744"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831839.3428482771, 5808358.634989802]}, "properties": {"id": "36045760"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832976.1645715124, 5808175.995920479]}, "properties": {"id": "36045765"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833446.6177636764, 5808088.99820365]}, "properties": {"id": "36045778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833278.5094088791, 5807048.52525996]}, "properties": {"id": "36045785"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836333.9206796132, 5820097.5897940695]}, "properties": {"id": "36047423"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835775.9275075654, 5820442.763085879]}, "properties": {"id": "36047952"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835184.7771779159, 5820444.835654695]}, "properties": {"id": "36047968"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835192.8786402388, 5820477.230165234]}, "properties": {"id": "36047972"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835229.3626369677, 5820473.890534718]}, "properties": {"id": "36047974"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792967.16939461, 5768569.43294421]}, "properties": {"id": "360499960"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830987.9083765405, 5813767.922735041]}, "properties": {"id": "360504702"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830990.8581295849, 5813788.373739739]}, "properties": {"id": "360504707"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817735.1566383328, 5821643.788308984]}, "properties": {"id": "360521334"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [805681.501801471, 5766333.188894886]}, "properties": {"id": "360642389"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790533.9654211935, 5777741.571143529]}, "properties": {"id": "3607038426"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786797.2343936313, 5751584.106292927]}, "properties": {"id": "3612387689"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744949.4399313566, 5835715.780389028]}, "properties": {"id": "363132882"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750834.602478113, 5836428.85178064]}, "properties": {"id": "363993762"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750856.5929673741, 5836429.04151433]}, "properties": {"id": "363993766"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750853.7968742773, 5836403.544162882]}, "properties": {"id": "363993770"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750836.15497348, 5836404.50024542]}, "properties": {"id": "363993773"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750832.7573601408, 5836407.90218697]}, "properties": {"id": "363993774"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750843.322599295, 5836746.4797047125]}, "properties": {"id": "363993828"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750667.9267714021, 5833779.25406776]}, "properties": {"id": "363994873"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750802.647891318, 5834686.554145974]}, "properties": {"id": "363994886"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750814.1073099952, 5834893.38510967]}, "properties": {"id": "363994892"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750813.7902036872, 5834916.1886133645]}, "properties": {"id": "363994894"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750823.8810063575, 5835035.784328992]}, "properties": {"id": "363994897"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750836.9374729095, 5834916.476346573]}, "properties": {"id": "363996317"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750833.7790568407, 5834890.978827732]}, "properties": {"id": "363996325"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750833.1974461966, 5835036.102077282]}, "properties": {"id": "363996457"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749536.0800349453, 5836217.710487518]}, "properties": {"id": "363996470"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749538.6351753252, 5836201.582524457]}, "properties": {"id": "363996473"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749511.5096118377, 5836198.444844263]}, "properties": {"id": "363996478"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749464.082470932, 5836196.86241715]}, "properties": {"id": "363996496"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747885.8449196324, 5835936.3799949]}, "properties": {"id": "363996581"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747777.6058321579, 5835936.484888055]}, "properties": {"id": "363996583"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747801.8519458524, 5835941.535893239]}, "properties": {"id": "363996586"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747806.2953546045, 5835937.015433069]}, "properties": {"id": "363996588"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747805.3967015118, 5835917.014955288]}, "properties": {"id": "363996591"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747778.1898523712, 5835917.884090126]}, "properties": {"id": "363996598"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747683.0918849929, 5835924.992592691]}, "properties": {"id": "363996626"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750882.6146735044, 5836851.828352263]}, "properties": {"id": "363997979"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752028.0421257479, 5838289.052019249]}, "properties": {"id": "363998599"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752072.1513283527, 5838517.295753878]}, "properties": {"id": "363998609"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752112.066513093, 5838746.266686805]}, "properties": {"id": "363998721"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752214.4528520738, 5839486.40392042]}, "properties": {"id": "363999767"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752155.2941122032, 5838973.614991747]}, "properties": {"id": "363999777"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752160.9059404671, 5839005.5026652515]}, "properties": {"id": "363999778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752202.803787681, 5839228.025863818]}, "properties": {"id": "363999779"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752194.2541334952, 5839242.037749799]}, "properties": {"id": "363999803"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752205.0927773556, 5839240.197510859]}, "properties": {"id": "363999807"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757577.8667403902, 5839049.254725181]}, "properties": {"id": "364000819"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757553.9508426122, 5839075.925263555]}, "properties": {"id": "364000820"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757297.4829749775, 5839547.019812113]}, "properties": {"id": "364000833"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757921.6434022676, 5839061.045738755]}, "properties": {"id": "364000848"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757135.0161516013, 5839757.213043742]}, "properties": {"id": "364000877"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750815.9719305771, 5834684.973231057]}, "properties": {"id": "364001235"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750163.3730031403, 5832745.88540069]}, "properties": {"id": "364001256"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751781.6663780427, 5840295.770807716]}, "properties": {"id": "364001283"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751802.71495956, 5841124.23179201]}, "properties": {"id": "364001417"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751787.5602768132, 5841252.423763211]}, "properties": {"id": "364001467"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751774.7532577317, 5842561.002296355]}, "properties": {"id": "364001492"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751656.3812928275, 5842902.664523122]}, "properties": {"id": "364001512"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751708.3853423244, 5842786.2755067665]}, "properties": {"id": "364001513"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751737.4221228521, 5842801.513217548]}, "properties": {"id": "364001516"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751724.5633387776, 5842754.082701926]}, "properties": {"id": "364001522"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751376.6196682125, 5843813.364356523]}, "properties": {"id": "364001724"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751388.7923307281, 5843338.216764497]}, "properties": {"id": "364001786"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751417.3636967632, 5843782.084194938]}, "properties": {"id": "364001816"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751575.8534446701, 5843463.350603234]}, "properties": {"id": "364002141"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751458.7395958905, 5843361.914620122]}, "properties": {"id": "364002146"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751439.5819415047, 5843214.213361472]}, "properties": {"id": "364002222"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751408.5080291275, 5843905.49573784]}, "properties": {"id": "364002296"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [731578.3813339998, 5705573.6314926185]}, "properties": {"id": "364228810"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [731943.3017647101, 5706145.972115315]}, "properties": {"id": "364228817"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766871.1218870201, 5778652.701660848]}, "properties": {"id": "364615345"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767724.6539904529, 5778510.5092630405]}, "properties": {"id": "364627907"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768386.1917089843, 5778640.03339154]}, "properties": {"id": "364627912"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780183.2811937318, 5770190.61123233]}, "properties": {"id": "364643354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776892.7295923433, 5770755.140976769]}, "properties": {"id": "364643363"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779324.0941252867, 5773276.478281552]}, "properties": {"id": "364643375"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777137.8558404499, 5772050.0896898825]}, "properties": {"id": "364643376"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778346.7699815098, 5772676.405824321]}, "properties": {"id": "364643499"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778737.4600573708, 5773028.35335625]}, "properties": {"id": "364643523"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777399.6063148475, 5772294.314240585]}, "properties": {"id": "364643552"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777178.9037398077, 5772266.248299171]}, "properties": {"id": "364643554"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781104.3847171569, 5775816.613641934]}, "properties": {"id": "364643614"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [736936.9752717753, 5830342.476195976]}, "properties": {"id": "364650805"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [803415.4940487805, 5767521.049987575]}, "properties": {"id": "366137196"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834452.617077715, 5809520.6482612835]}, "properties": {"id": "366741775"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832262.6272621638, 5811310.11001452]}, "properties": {"id": "366746064"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832312.3257192159, 5811761.733344014]}, "properties": {"id": "366746065"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832359.7874747311, 5811987.58752711]}, "properties": {"id": "366746068"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792979.8529818259, 5768666.74927451]}, "properties": {"id": "36692770"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792983.3840669787, 5768654.729145135]}, "properties": {"id": "36692776"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760368.9154593371, 5759333.2281221915]}, "properties": {"id": "36693738"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760653.3281387425, 5758903.163229804]}, "properties": {"id": "36693740"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760836.0979513626, 5757325.216856659]}, "properties": {"id": "36693742"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760209.3986784212, 5755688.596132609]}, "properties": {"id": "36693745"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759502.5321284324, 5752520.288784297]}, "properties": {"id": "36693749"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758680.5470942779, 5750784.14270521]}, "properties": {"id": "36697620"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757757.8706850726, 5750034.174782505]}, "properties": {"id": "36697622"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755264.2978051412, 5749254.217952664]}, "properties": {"id": "36697629"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759352.1025385802, 5730660.802470717]}, "properties": {"id": "36698470"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759350.9454669779, 5730676.2780812895]}, "properties": {"id": "36698471"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759317.3074312436, 5729966.843173068]}, "properties": {"id": "36698729"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792440.5583271749, 5756887.384782911]}, "properties": {"id": "36701491"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791813.1323540778, 5753521.230190617]}, "properties": {"id": "36701492"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758747.9757559404, 5729934.193449805]}, "properties": {"id": "36705043"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758559.0494864838, 5729926.718314909]}, "properties": {"id": "36705046"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758413.9536277532, 5729992.413495439]}, "properties": {"id": "36705048"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757816.3559542676, 5730467.952708574]}, "properties": {"id": "36705063"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757253.9314510615, 5731082.099001637]}, "properties": {"id": "36705071"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756692.2788974204, 5731278.491840823]}, "properties": {"id": "36705076"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756430.8409514856, 5731706.889800333]}, "properties": {"id": "36705082"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755786.9232987693, 5732334.389892773]}, "properties": {"id": "36705089"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755524.8477198939, 5732669.907392905]}, "properties": {"id": "36705095"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755390.3653449793, 5732852.832559707]}, "properties": {"id": "36705102"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754890.9817232115, 5733009.268857662]}, "properties": {"id": "36705217"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753795.3942022037, 5733065.611532411]}, "properties": {"id": "36705231"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753954.1663143297, 5733919.140337099]}, "properties": {"id": "36705258"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796434.2056782667, 5760468.13071561]}, "properties": {"id": "367119855"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834713.4999005878, 5812701.72936364]}, "properties": {"id": "36713327"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832728.3769082546, 5814097.947255109]}, "properties": {"id": "36714111"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832694.4143763791, 5814096.340189949]}, "properties": {"id": "36714309"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826261.9344591104, 5815911.106964639]}, "properties": {"id": "36715125"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [825413.6476699609, 5816370.127602361]}, "properties": {"id": "36715197"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828260.1846719956, 5815207.542648011]}, "properties": {"id": "36715507"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [822630.8794209249, 5817932.580765789]}, "properties": {"id": "36715542"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837075.3946010486, 5811109.674841624]}, "properties": {"id": "3678283680"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759919.0437680618, 5731253.823045738]}, "properties": {"id": "36829975"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759993.6614624998, 5731391.5484504895]}, "properties": {"id": "36829980"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760617.1767069539, 5732284.353483248]}, "properties": {"id": "36830004"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760999.9383741852, 5732644.249831578]}, "properties": {"id": "36830016"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761368.0370003209, 5733055.410174123]}, "properties": {"id": "36830026"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761999.9147039462, 5733864.4757361915]}, "properties": {"id": "36830081"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831937.9328577635, 5813190.162358822]}, "properties": {"id": "369130238"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832567.4083845527, 5813265.271983169]}, "properties": {"id": "369130854"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832616.2430994597, 5813498.4309458975]}, "properties": {"id": "369131560"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830236.0307725878, 5814244.638560183]}, "properties": {"id": "369133283"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830307.6509959352, 5810405.2502785325]}, "properties": {"id": "369735914"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829323.1362064845, 5814258.864460418]}, "properties": {"id": "369742962"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829241.8008673547, 5814361.650599072]}, "properties": {"id": "369742994"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [709069.3281815359, 5796795.373163097]}, "properties": {"id": "3700609869"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762149.572275344, 5734326.099745584]}, "properties": {"id": "37022535"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762458.9643433231, 5734665.084002238]}, "properties": {"id": "37022739"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763214.20548805, 5735345.165451918]}, "properties": {"id": "37023225"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763625.8814297747, 5735565.02884995]}, "properties": {"id": "37023362"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764082.0970717319, 5735819.381693549]}, "properties": {"id": "37023495"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763861.3993075772, 5736203.383818016]}, "properties": {"id": "37023947"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781940.8445564387, 5766480.150215832]}, "properties": {"id": "370245206"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781792.0495648964, 5765751.925569585]}, "properties": {"id": "370245210"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783976.890456976, 5764453.317987577]}, "properties": {"id": "370245225"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785563.8357154015, 5764151.543091721]}, "properties": {"id": "370246490"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752004.7968058551, 5746236.3209108375]}, "properties": {"id": "3710136206"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752037.7579072345, 5746167.028533424]}, "properties": {"id": "3710136212"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753180.9832508912, 5748690.671107409]}, "properties": {"id": "3710491144"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753233.1486315941, 5748991.561270467]}, "properties": {"id": "3710491146"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [745199.0772021287, 5752308.449720214]}, "properties": {"id": "3710493445"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789190.7069619686, 5764718.920837702]}, "properties": {"id": "3713166048"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765480.1960257462, 5750282.043130319]}, "properties": {"id": "371398747"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766068.5107815699, 5756342.327129366]}, "properties": {"id": "371398944"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765518.7542511672, 5753198.390181198]}, "properties": {"id": "371398958"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765807.5036251117, 5751571.053625304]}, "properties": {"id": "371399007"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770236.753400143, 5739916.001036378]}, "properties": {"id": "371469327"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770457.4236053466, 5740342.43425895]}, "properties": {"id": "371469354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768854.8663736314, 5741009.675375287]}, "properties": {"id": "371469543"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767061.5308504617, 5742637.916249419]}, "properties": {"id": "371470150"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766772.3849310647, 5744036.016965693]}, "properties": {"id": "371470403"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766601.1106787845, 5744654.099732644]}, "properties": {"id": "371470633"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766357.5762480549, 5745273.167884062]}, "properties": {"id": "371470799"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766826.8812192783, 5745781.875319836]}, "properties": {"id": "371470949"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767268.9061113277, 5746259.219318061]}, "properties": {"id": "371471061"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767750.7466917423, 5746512.670335305]}, "properties": {"id": "371471126"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767535.6475317214, 5746941.394146034]}, "properties": {"id": "371471334"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767367.893270281, 5747762.3632522775]}, "properties": {"id": "371471856"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767392.0672799479, 5748225.490048987]}, "properties": {"id": "371472146"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766753.7754181683, 5748914.11253934]}, "properties": {"id": "371472876"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766244.6997100187, 5749302.0439616265]}, "properties": {"id": "371473404"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765708.1550355873, 5749730.14793715]}, "properties": {"id": "371473550"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792335.3875144117, 5765243.41539161]}, "properties": {"id": "3726903730"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792351.2908646292, 5765241.363198688]}, "properties": {"id": "3726903731"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788662.5242517102, 5764746.721825061]}, "properties": {"id": "3726903738"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788933.6177354187, 5764706.179859539]}, "properties": {"id": "3726903744"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [828357.1650069811, 5815205.232292451]}, "properties": {"id": "373054700"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760459.7272321177, 5762545.416161255]}, "properties": {"id": "3755251459"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761436.5607133465, 5764136.992211868]}, "properties": {"id": "3755251467"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761516.3068496974, 5763814.536975325]}, "properties": {"id": "3755251562"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761620.7589781941, 5763659.1550479755]}, "properties": {"id": "3755251566"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762054.2446534907, 5763051.657744535]}, "properties": {"id": "3755251587"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762128.3624219209, 5763103.6786806]}, "properties": {"id": "3755251588"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762181.4308322023, 5762869.453258443]}, "properties": {"id": "3755251589"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762246.753330407, 5762916.158090954]}, "properties": {"id": "3755251590"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762268.2085406908, 5762902.229747155]}, "properties": {"id": "3755251591"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762223.9245820637, 5762956.119263554]}, "properties": {"id": "3755251595"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760601.9078525802, 5762856.127298324]}, "properties": {"id": "3755251619"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760653.992051173, 5762827.039804813]}, "properties": {"id": "3755251620"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761095.0872010285, 5763002.703935624]}, "properties": {"id": "3755251621"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761218.9297406, 5763087.438416237]}, "properties": {"id": "3755251622"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762688.7366521307, 5763649.0794908935]}, "properties": {"id": "3755251630"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779996.5539189803, 5765185.709092471]}, "properties": {"id": "3756752399"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778261.8196131927, 5764627.5211456185]}, "properties": {"id": "3756752400"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774082.084823725, 5760243.673871553]}, "properties": {"id": "3756753376"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773653.0644160027, 5760002.67606181]}, "properties": {"id": "3756753385"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777487.5123748425, 5761424.780979193]}, "properties": {"id": "3756753419"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777398.2028470332, 5761445.057532356]}, "properties": {"id": "3756753424"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764029.0805268975, 5736404.767006965]}, "properties": {"id": "37664838"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764610.3310984208, 5736432.411954627]}, "properties": {"id": "37665030"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764668.8000886005, 5736895.920756024]}, "properties": {"id": "37665230"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768320.6870764887, 5737746.77936784]}, "properties": {"id": "37673477"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769728.840752912, 5737892.056409039]}, "properties": {"id": "37673595"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770368.3900735701, 5737983.255255538]}, "properties": {"id": "37673670"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771691.2887190755, 5739636.000595009]}, "properties": {"id": "37673837"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772131.9156515277, 5740224.530239331]}, "properties": {"id": "37683919"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772706.4148098185, 5740947.995300984]}, "properties": {"id": "37683978"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773083.9359759779, 5741318.972741447]}, "properties": {"id": "37684052"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773625.1799370715, 5741539.754273472]}, "properties": {"id": "37684100"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774227.6850080371, 5741679.411711377]}, "properties": {"id": "37684162"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776052.7068643125, 5741917.560286182]}, "properties": {"id": "37684270"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778106.7005339796, 5743434.176835236]}, "properties": {"id": "37684442"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778261.8420660247, 5743835.865886819]}, "properties": {"id": "37684518"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778221.0363230378, 5744107.239384856]}, "properties": {"id": "37684542"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778477.6918025098, 5744423.709986823]}, "properties": {"id": "37684607"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778751.292807213, 5744472.47983847]}, "properties": {"id": "37684654"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779545.8561802739, 5745479.920384184]}, "properties": {"id": "37684777"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779891.239376009, 5745866.486730982]}, "properties": {"id": "37684809"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780201.581258223, 5747160.24679965]}, "properties": {"id": "37685021"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781981.4935504275, 5747883.010809293]}, "properties": {"id": "37685036"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783330.7658290137, 5747883.071184028]}, "properties": {"id": "37685128"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783551.1938565096, 5748906.299155162]}, "properties": {"id": "37685144"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784033.6620636513, 5749950.819482544]}, "properties": {"id": "37685162"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784653.8455355375, 5750363.804296993]}, "properties": {"id": "37685198"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785145.6315100639, 5751535.101714381]}, "properties": {"id": "37685285"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785162.0797219484, 5751566.061375665]}, "properties": {"id": "37685294"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790103.3288178295, 5751517.43436344]}, "properties": {"id": "37693748"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790557.1932180319, 5751445.510403483]}, "properties": {"id": "37693772"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790639.3453729559, 5751889.679405892]}, "properties": {"id": "37693856"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790757.035743342, 5752071.418324038]}, "properties": {"id": "37693932"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810079.8679335783, 5763169.154174158]}, "properties": {"id": "380240417"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810072.7269992471, 5763148.939190099]}, "properties": {"id": "380240420"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810037.5282417508, 5763162.271333115]}, "properties": {"id": "380240426"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810045.9188947831, 5763184.433842109]}, "properties": {"id": "380240429"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [807311.0375258485, 5765177.426427915]}, "properties": {"id": "380240436"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [804585.9475972201, 5767108.714845505]}, "properties": {"id": "380240442"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [805687.9651825998, 5766355.466629935]}, "properties": {"id": "380240445"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [806447.1814767753, 5765774.341603147]}, "properties": {"id": "380240446"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [809152.7331279953, 5763827.7643868]}, "properties": {"id": "380240450"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [803419.8951816013, 5767532.923814792]}, "properties": {"id": "380256730"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [802658.0023872496, 5767801.394946288]}, "properties": {"id": "380256731"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801509.6403514931, 5768158.901018862]}, "properties": {"id": "380256734"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [800947.1096207768, 5768351.913158049]}, "properties": {"id": "380256736"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798065.2464314422, 5769457.357061098]}, "properties": {"id": "380256745"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797114.9771730572, 5769829.483733076]}, "properties": {"id": "380256747"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796480.5346373697, 5770110.084150534]}, "properties": {"id": "380256754"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770691.5531745497, 5738488.57085961]}, "properties": {"id": "3837086153"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770835.1318193411, 5738395.507892328]}, "properties": {"id": "3837086154"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792557.7209823094, 5753814.843416376]}, "properties": {"id": "38411214"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794262.1128360836, 5754273.1055004755]}, "properties": {"id": "38411224"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792984.0625494191, 5754281.472751603]}, "properties": {"id": "38411231"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793462.0684162247, 5754543.459023193]}, "properties": {"id": "38411235"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793420.1090072895, 5754651.620639284]}, "properties": {"id": "38411236"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793204.4576276044, 5754668.581420734]}, "properties": {"id": "38411238"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801728.4006744015, 5785587.904408142]}, "properties": {"id": "385128529"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837975.5727558464, 5818430.0312840305]}, "properties": {"id": "385180737"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838083.38421358, 5818384.289456556]}, "properties": {"id": "385180899"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838095.6222225041, 5818374.49146715]}, "properties": {"id": "385180901"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838086.8550570682, 5818358.004801317]}, "properties": {"id": "385180902"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838069.3467668188, 5818367.874383397]}, "properties": {"id": "385180904"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838277.9683558032, 5818194.121290255]}, "properties": {"id": "385182456"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833371.8356359231, 5821028.556273157]}, "properties": {"id": "385825913"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [824086.7640931598, 5817007.075916484]}, "properties": {"id": "38693709"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [824554.0379569677, 5816787.950172184]}, "properties": {"id": "38693714"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826817.9914548856, 5815688.789432477]}, "properties": {"id": "38693759"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [827473.6992233654, 5815505.040443585]}, "properties": {"id": "38693762"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820116.1238164975, 5796200.982299904]}, "properties": {"id": "38714412"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [824155.348343109, 5797773.316452252]}, "properties": {"id": "38715669"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826272.1480839659, 5800080.518800238]}, "properties": {"id": "38717630"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [814561.9956055935, 5792984.013699831]}, "properties": {"id": "38734061"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816969.8193084957, 5794520.1126709]}, "properties": {"id": "38734871"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816061.607727426, 5793944.1018423475]}, "properties": {"id": "38734872"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [814982.048589342, 5793260.291316724]}, "properties": {"id": "38734874"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777836.281430813, 5762688.156678869]}, "properties": {"id": "3879204254"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777743.4681810017, 5762731.881753936]}, "properties": {"id": "3879204256"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752576.3631357483, 5735865.660854239]}, "properties": {"id": "3902937586"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792966.4372078024, 5768619.5859526945]}, "properties": {"id": "3914372761"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792949.5699807358, 5768654.639249395]}, "properties": {"id": "3914372764"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [821478.1218261286, 5796720.074078675]}, "properties": {"id": "3924946378"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752528.2968443686, 5843509.463637561]}, "properties": {"id": "3953260901"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768978.9868999543, 5839697.173502397]}, "properties": {"id": "3953417009"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769548.7357791185, 5839561.138216506]}, "properties": {"id": "3953417024"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771211.5502995249, 5839464.529980617]}, "properties": {"id": "3953417520"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770702.2849835422, 5839634.550601212]}, "properties": {"id": "3953417521"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771709.2069804369, 5839237.682363311]}, "properties": {"id": "3953417522"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794277.4521924318, 5778313.973076944]}, "properties": {"id": "3953492257"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794562.8767039636, 5779526.528479559]}, "properties": {"id": "3955050473"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794569.0347441917, 5779535.019348324]}, "properties": {"id": "3955050483"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794588.0445752422, 5779524.083644773]}, "properties": {"id": "3955050486"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794581.7424647457, 5779515.253454561]}, "properties": {"id": "3955050488"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793633.4342806912, 5772550.3840073915]}, "properties": {"id": "3957457789"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793802.0574451623, 5772524.300171909]}, "properties": {"id": "3957457792"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793770.7557393255, 5772520.84245755]}, "properties": {"id": "3957457795"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793800.3657867633, 5772515.147416129]}, "properties": {"id": "3957457797"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793814.5100634219, 5774728.917871125]}, "properties": {"id": "3964004487"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793780.5063730853, 5774675.48625421]}, "properties": {"id": "3964004499"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793797.7847930482, 5774755.864041773]}, "properties": {"id": "3964004502"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767612.2629466096, 5753871.449135126]}, "properties": {"id": "3965568548"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833263.796616484, 5819011.826586597]}, "properties": {"id": "398301079"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837025.4692230518, 5806421.047594052]}, "properties": {"id": "3989374887"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837023.7770399626, 5806448.582878754]}, "properties": {"id": "3989374893"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770353.7002889145, 5738064.625815915]}, "properties": {"id": "3989810659"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770359.6831910333, 5737982.326101583]}, "properties": {"id": "3989810660"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793716.4595960281, 5774074.706398841]}, "properties": {"id": "3996617763"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793705.7936013009, 5774082.72770648]}, "properties": {"id": "3996617764"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793723.7363470839, 5774004.999804096]}, "properties": {"id": "3996617765"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770609.5997848304, 5738100.309934536]}, "properties": {"id": "4005357849"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780132.8752478685, 5747138.387819897]}, "properties": {"id": "4005368867"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780159.2735342407, 5747128.745435944]}, "properties": {"id": "4005368870"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780126.0656280967, 5747119.420796667]}, "properties": {"id": "4005368873"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780132.937519101, 5747110.002091461]}, "properties": {"id": "4005368876"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780109.5228066412, 5747097.024914645]}, "properties": {"id": "4005368879"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837124.4923575546, 5806988.894764103]}, "properties": {"id": "4006753156"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836107.2844011576, 5808292.586500495]}, "properties": {"id": "4067819091"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836123.0696170216, 5808289.6389526725]}, "properties": {"id": "4067819120"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760207.2199772865, 5762477.709336418]}, "properties": {"id": "4096350031"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831983.7133778888, 5813161.452253938]}, "properties": {"id": "4117890894"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788194.8569134476, 5833661.588070324]}, "properties": {"id": "413300750"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787337.4321220457, 5833986.349488227]}, "properties": {"id": "413300756"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782427.987116297, 5834939.771378979]}, "properties": {"id": "413303104"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782201.6093411841, 5834955.663707363]}, "properties": {"id": "413303106"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787472.1138135018, 5779225.61564566]}, "properties": {"id": "4181465676"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790796.1894007362, 5752659.214468884]}, "properties": {"id": "4187193581"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789999.0309521258, 5766698.845013445]}, "properties": {"id": "4198707179"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790010.1295240424, 5766704.593997886]}, "properties": {"id": "4198709899"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789044.2928424953, 5750622.840409728]}, "properties": {"id": "4204514680"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788779.6667209917, 5772304.723276334]}, "properties": {"id": "420460952"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788635.9286391616, 5771266.427321256]}, "properties": {"id": "420460960"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790030.5256731359, 5767503.546470562]}, "properties": {"id": "420461022"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788729.2352688714, 5772934.741629686]}, "properties": {"id": "421192856"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788763.4573609433, 5772054.547560396]}, "properties": {"id": "421192871"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788201.1926814767, 5770329.244345059]}, "properties": {"id": "421192905"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789966.6295682573, 5767527.388649002]}, "properties": {"id": "421192970"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789911.5975650961, 5767147.636200527]}, "properties": {"id": "421192978"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789936.9518434461, 5766787.034494207]}, "properties": {"id": "421193010"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [808437.9979841543, 5823303.081033997]}, "properties": {"id": "4230275119"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [808209.301141015, 5823328.029477196]}, "properties": {"id": "4230275123"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [808856.1051750649, 5823128.952700757]}, "properties": {"id": "4244153703"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833360.0101000122, 5822727.4651254965]}, "properties": {"id": "426766418"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788704.4978579904, 5773390.634996654]}, "properties": {"id": "428721689"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788742.9275725666, 5773414.397305081]}, "properties": {"id": "428721693"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788892.5527376696, 5773379.735624801]}, "properties": {"id": "428721708"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788920.194973916, 5773350.434048378]}, "properties": {"id": "428721717"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788720.9822017692, 5773318.797845783]}, "properties": {"id": "428721752"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788753.109586768, 5772926.379708896]}, "properties": {"id": "428722315"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788880.8011831836, 5773312.903367977]}, "properties": {"id": "428722427"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789999.1678748333, 5766732.327185061]}, "properties": {"id": "428731160"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789972.2114191023, 5766831.463405406]}, "properties": {"id": "428731182"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [804207.8459576429, 5767237.564826526]}, "properties": {"id": "435990856"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [804211.8371613395, 5767251.576879236]}, "properties": {"id": "435990857"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794108.6647027247, 5777268.491650094]}, "properties": {"id": "436914587"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788993.6267062495, 5766159.084961095]}, "properties": {"id": "436937826"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788586.4673790288, 5765671.564897807]}, "properties": {"id": "436942197"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789155.2913401789, 5766328.030873562]}, "properties": {"id": "436945680"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [734521.6094034594, 5709716.996637903]}, "properties": {"id": "4381867841"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791771.8619502801, 5762133.437579325]}, "properties": {"id": "441019254"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793180.7594713392, 5760833.320746634]}, "properties": {"id": "441019267"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793697.3263706877, 5760731.231178257]}, "properties": {"id": "441019270"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793116.8144214831, 5760485.090810794]}, "properties": {"id": "441019287"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793108.5043058777, 5760439.821581478]}, "properties": {"id": "441019288"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792608.3790376869, 5760530.7988959225]}, "properties": {"id": "441019298"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793164.6411856285, 5760745.531717657]}, "properties": {"id": "441019327"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772703.464563532, 5752738.273905809]}, "properties": {"id": "4416304449"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772791.2131143971, 5755040.549763375]}, "properties": {"id": "4416311909"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795716.0104073007, 5771190.573206468]}, "properties": {"id": "441990591"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765730.4151733072, 5750028.985118815]}, "properties": {"id": "4434119092"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [827973.1456834073, 5801454.631215372]}, "properties": {"id": "4435252263"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830811.5817891492, 5810051.847040325]}, "properties": {"id": "4435281077"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829974.8485054874, 5812970.227636875]}, "properties": {"id": "4435281082"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829672.9265238459, 5813577.628379844]}, "properties": {"id": "4435303979"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829655.0247219515, 5813653.384482619]}, "properties": {"id": "4435303980"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784029.4819727722, 5780377.715273343]}, "properties": {"id": "4451687161"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784056.0376154738, 5780363.641726919]}, "properties": {"id": "4451687165"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784010.9739709505, 5780359.6020880565]}, "properties": {"id": "4451687166"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784055.8856735297, 5780340.409428276]}, "properties": {"id": "4451687171"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784209.2797705403, 5780321.141125222]}, "properties": {"id": "4451687172"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789139.5284470604, 5766414.69423883]}, "properties": {"id": "4460066650"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760433.2815085736, 5747860.532394591]}, "properties": {"id": "4520232227"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783755.247249312, 5749368.6174184065]}, "properties": {"id": "4544316640"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775148.9204237795, 5741823.847395317]}, "properties": {"id": "4544316658"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777587.5546580016, 5756357.729744183]}, "properties": {"id": "4551292138"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789872.3183250879, 5751785.587318997]}, "properties": {"id": "4553047633"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789948.6469485157, 5754454.287562376]}, "properties": {"id": "4574367345"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790138.7239008485, 5754333.245311685]}, "properties": {"id": "4574367346"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790123.0825017961, 5754374.386492898]}, "properties": {"id": "4574367353"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790122.8204510574, 5754380.008723521]}, "properties": {"id": "4574367354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783513.464889158, 5752972.50156663]}, "properties": {"id": "4593718443"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782803.7102991539, 5757948.722327052]}, "properties": {"id": "4593800823"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836191.3958440882, 5807406.581360677]}, "properties": {"id": "462039241"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832535.597873927, 5813181.630946062]}, "properties": {"id": "463141611"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831924.8295776173, 5813174.724231929]}, "properties": {"id": "465189170"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751650.1642712386, 5843546.920538952]}, "properties": {"id": "465240784"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796801.1021380872, 5760431.355420783]}, "properties": {"id": "468580779"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796800.5946669467, 5760393.40447859]}, "properties": {"id": "468580798"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796764.8255468952, 5760387.169808484]}, "properties": {"id": "468580898"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796562.6256053727, 5760443.771294826]}, "properties": {"id": "468580917"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785006.3123576099, 5760936.9797425205]}, "properties": {"id": "469074027"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785307.0876813452, 5762529.217613246]}, "properties": {"id": "469074028"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788165.8024203058, 5760340.773697633]}, "properties": {"id": "469074029"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786596.4659344524, 5760637.588865142]}, "properties": {"id": "469074031"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791315.1280038175, 5759752.953185669]}, "properties": {"id": "469074032"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791330.7860614425, 5759750.232831925]}, "properties": {"id": "469074552"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796293.358038041, 5759727.765103431]}, "properties": {"id": "469629209"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790964.5066330384, 5754927.792818386]}, "properties": {"id": "4696655308"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790956.2306071704, 5754841.530777218]}, "properties": {"id": "4696655311"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790822.2782161571, 5754779.2254201835]}, "properties": {"id": "4696656434"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786446.2818588996, 5834534.928407021]}, "properties": {"id": "469726243"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790837.2414312419, 5754863.234827945]}, "properties": {"id": "4698468859"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777594.5150325545, 5761611.138080242]}, "properties": {"id": "4698497684"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793959.1724226654, 5775422.133194294]}, "properties": {"id": "4704750615"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794289.5835381532, 5778295.073029304]}, "properties": {"id": "4706134851"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794288.2081672493, 5778308.526868027]}, "properties": {"id": "4706134864"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793715.6631217515, 5774166.796700915]}, "properties": {"id": "4708035144"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793812.532712182, 5774720.609031979]}, "properties": {"id": "472534118"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [811439.5372305899, 5823072.241565942]}, "properties": {"id": "473516810"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831994.5752244237, 5813131.615699295]}, "properties": {"id": "4737299340"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773550.3132142747, 5837948.551903311]}, "properties": {"id": "474050246"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777784.0317871785, 5762671.669771375]}, "properties": {"id": "474069775"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777590.539280391, 5760897.2351447875]}, "properties": {"id": "474069825"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776689.3033882666, 5761067.401069263]}, "properties": {"id": "474069836"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775264.5504119578, 5761740.032271103]}, "properties": {"id": "474125970"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773197.4193059874, 5759424.589043875]}, "properties": {"id": "474125993"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773464.0218241708, 5759817.762523119]}, "properties": {"id": "474126198"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772899.7226517766, 5757786.20844412]}, "properties": {"id": "474126236"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751511.621762589, 5845377.241814656]}, "properties": {"id": "4748684935"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751561.9492100806, 5844763.611631742]}, "properties": {"id": "4748684944"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751765.7320533702, 5842084.627549961]}, "properties": {"id": "4748708209"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777862.2408625397, 5762418.836563621]}, "properties": {"id": "475483063"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777614.7783024274, 5762472.00296168]}, "properties": {"id": "475483067"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777672.5325673553, 5762634.923479097]}, "properties": {"id": "475483069"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777345.4242530689, 5761940.505347745]}, "properties": {"id": "475483089"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777786.8573952655, 5761963.823166685]}, "properties": {"id": "475483090"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777526.996046625, 5762009.22370633]}, "properties": {"id": "475483092"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777548.7487835246, 5761837.074638303]}, "properties": {"id": "475483094"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777474.3347239494, 5761886.289378307]}, "properties": {"id": "475483100"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777651.4914916893, 5761230.393175072]}, "properties": {"id": "475483146"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780804.5712582387, 5765037.270690706]}, "properties": {"id": "475483151"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780539.5773407002, 5763473.266779754]}, "properties": {"id": "475483153"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784765.3776309456, 5764298.244958133]}, "properties": {"id": "475483157"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788392.0096767723, 5770360.879937013]}, "properties": {"id": "475541964"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777743.259646249, 5762440.045831868]}, "properties": {"id": "475575487"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777861.8993602337, 5762696.311845656]}, "properties": {"id": "475575492"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776169.6643762055, 5762573.711125087]}, "properties": {"id": "475575503"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773884.2700936244, 5763017.050501864]}, "properties": {"id": "475575510"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775170.9199746036, 5770368.889267408]}, "properties": {"id": "475577051"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775640.29624267, 5770987.370393131]}, "properties": {"id": "475586081"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775328.9924311019, 5771044.9881785475]}, "properties": {"id": "475586085"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767373.5794890758, 5772450.922294649]}, "properties": {"id": "475586094"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768447.2730052272, 5776082.124835857]}, "properties": {"id": "475586101"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767932.0694846931, 5775618.983549098]}, "properties": {"id": "475586118"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768637.8567981834, 5776252.765404044]}, "properties": {"id": "475586128"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769275.0480750981, 5776816.398498993]}, "properties": {"id": "475586130"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777420.1117046126, 5761730.803622816]}, "properties": {"id": "476151595"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782388.8921178392, 5764748.296677323]}, "properties": {"id": "476151606"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782097.7264761489, 5763134.096675325]}, "properties": {"id": "476151607"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777431.2446181313, 5742438.674487149]}, "properties": {"id": "4763088551"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777109.0370017008, 5742518.486981659]}, "properties": {"id": "4763088566"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777320.6447480108, 5742684.344940602]}, "properties": {"id": "4763088568"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777294.6497786939, 5742473.091910347]}, "properties": {"id": "4763088569"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777320.1786013027, 5742691.362285223]}, "properties": {"id": "4763088570"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777104.1451953088, 5742505.919958045]}, "properties": {"id": "4763088580"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777328.7008586978, 5742691.812941311]}, "properties": {"id": "4763088581"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777113.0601577116, 5742510.669172902]}, "properties": {"id": "4763088582"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777291.450266195, 5742460.677761552]}, "properties": {"id": "4763088591"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777423.2387233003, 5742434.938882189]}, "properties": {"id": "4763088592"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777429.9516383185, 5742427.805995234]}, "properties": {"id": "4763088594"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777100.6517833213, 5742515.664297864]}, "properties": {"id": "4763088610"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777298.1046711588, 5742466.29377007]}, "properties": {"id": "4763088614"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777285.1182658134, 5742468.719772455]}, "properties": {"id": "4763088618"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777326.6936958662, 5742683.047232963]}, "properties": {"id": "4763100425"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778200.1502346196, 5744176.396782968]}, "properties": {"id": "4763108779"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778207.2201496523, 5744187.143250106]}, "properties": {"id": "4763108781"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778232.9970431023, 5744189.363492939]}, "properties": {"id": "4763108782"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778190.0513996622, 5744186.036639649]}, "properties": {"id": "4763108785"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [804385.3094776159, 5786799.791307442]}, "properties": {"id": "476313228"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778392.2388314256, 5744568.305248721]}, "properties": {"id": "4763140984"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779212.846180803, 5765329.559356822]}, "properties": {"id": "476319392"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780775.1210098121, 5783973.244485265]}, "properties": {"id": "476323627"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777905.1286348458, 5743832.394664096]}, "properties": {"id": "4763289550"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777907.4780612418, 5743838.13679686]}, "properties": {"id": "4763289557"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777898.3186927442, 5743834.974812121]}, "properties": {"id": "4763289558"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777899.0398566229, 5743839.650768771]}, "properties": {"id": "4763289559"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770591.2370046563, 5807409.704660263]}, "properties": {"id": "476333939"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766103.1054478188, 5815474.466956152]}, "properties": {"id": "476355963"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765163.5811409638, 5816353.409094639]}, "properties": {"id": "476356118"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767092.7274485875, 5811868.366574381]}, "properties": {"id": "476356127"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768464.5771012413, 5809227.935186738]}, "properties": {"id": "476356264"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769289.8952542042, 5808202.777229126]}, "properties": {"id": "476356329"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764774.6975384955, 5816905.950221563]}, "properties": {"id": "476356352"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763968.6765065384, 5818439.423173521]}, "properties": {"id": "476356424"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763437.4258780122, 5819472.589521678]}, "properties": {"id": "476356476"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763719.143590363, 5818996.787304947]}, "properties": {"id": "476356508"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763151.0644303387, 5819945.249797575]}, "properties": {"id": "476356542"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762913.8295411583, 5821359.872659428]}, "properties": {"id": "476356635"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763075.559757919, 5821921.247544188]}, "properties": {"id": "476356709"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761598.3075820466, 5824616.304647661]}, "properties": {"id": "476356954"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761081.9992592067, 5824913.261973649]}, "properties": {"id": "476357035"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760735.8030348595, 5825378.85488423]}, "properties": {"id": "476357096"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760431.3149594433, 5826087.0101688355]}, "properties": {"id": "476357189"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759670.6681980734, 5826420.850789661]}, "properties": {"id": "476357265"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759148.0940711208, 5826478.308869893]}, "properties": {"id": "476357307"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757830.914420214, 5826878.023606282]}, "properties": {"id": "476357518"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757444.996169247, 5827225.583500506]}, "properties": {"id": "476357566"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756589.5341871651, 5828263.481052361]}, "properties": {"id": "476357648"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754974.8742231375, 5828907.828358665]}, "properties": {"id": "476372081"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752191.895140154, 5839477.725479469]}, "properties": {"id": "476915637"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752200.1910103111, 5839449.247355119]}, "properties": {"id": "476915653"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752225.581656146, 5839456.284489354]}, "properties": {"id": "476915659"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [821865.3010129414, 5818550.624116463]}, "properties": {"id": "477003594"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [821373.2652856236, 5818944.274224229]}, "properties": {"id": "477023175"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750965.2954997879, 5837030.143286274]}, "properties": {"id": "477076561"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820595.548566944, 5796383.731440799]}, "properties": {"id": "4780179491"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [823568.8159819173, 5797526.027284245]}, "properties": {"id": "4780179492"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780246.6961501176, 5761837.53409342]}, "properties": {"id": "480636120"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780560.0343553331, 5763452.976569278]}, "properties": {"id": "480636127"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789775.5809426554, 5760040.472764641]}, "properties": {"id": "480636137"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777217.4199506168, 5759109.785793844]}, "properties": {"id": "480679207"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779485.8500409117, 5757668.973594299]}, "properties": {"id": "480679209"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777296.025622624, 5754751.380748938]}, "properties": {"id": "480679221"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775927.0407716862, 5753985.741295568]}, "properties": {"id": "480679224"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820075.5590019741, 5820263.629000183]}, "properties": {"id": "4812686421"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [804579.9062351943, 5767091.056061543]}, "properties": {"id": "482815257"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779664.0815478092, 5758655.61603284]}, "properties": {"id": "484264178"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781368.0598758573, 5758964.782236632]}, "properties": {"id": "484264179"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781823.6062942988, 5761543.369332313]}, "properties": {"id": "484264180"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780784.2336219051, 5755765.756214974]}, "properties": {"id": "484264190"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759598.3366802657, 5729316.204781777]}, "properties": {"id": "4873863339"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774557.5695730683, 5761234.005395289]}, "properties": {"id": "489289818"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772727.2815280168, 5761580.11443588]}, "properties": {"id": "489289819"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774551.8275554571, 5761244.512585502]}, "properties": {"id": "489289820"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835184.103386936, 5820294.776367164]}, "properties": {"id": "4893087844"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759850.2016490186, 5747089.11126308]}, "properties": {"id": "4900981121"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837998.8822363256, 5809157.401649716]}, "properties": {"id": "4901573009"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790628.010779216, 5767130.008396814]}, "properties": {"id": "490759581"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790616.3565627448, 5767146.464161009]}, "properties": {"id": "490759589"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777901.2876068528, 5765814.4597937055]}, "properties": {"id": "4908350431"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768196.8886301962, 5765188.640831276]}, "properties": {"id": "4908350449"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767600.8126764486, 5764915.614154843]}, "properties": {"id": "4908350451"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768214.1183441619, 5765161.258099845]}, "properties": {"id": "4908350461"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820639.233972399, 5819656.483342645]}, "properties": {"id": "4920069072"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [820613.0900420233, 5819646.649657404]}, "properties": {"id": "4920069075"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775699.5228751493, 5754929.293152728]}, "properties": {"id": "4936427875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786700.2127982368, 5779577.064450207]}, "properties": {"id": "494759326"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766719.6380085844, 5814592.341201094]}, "properties": {"id": "494769558"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762147.8575559995, 5823966.62577799]}, "properties": {"id": "494778739"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776641.1275233636, 5751299.483270261]}, "properties": {"id": "494901132"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774881.2925211997, 5751110.222899667]}, "properties": {"id": "494901169"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773765.5432260989, 5753240.188173318]}, "properties": {"id": "494902440"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775463.6511048349, 5753839.526736439]}, "properties": {"id": "494902936"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [813727.3953819033, 5792492.299775647]}, "properties": {"id": "4954921762"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752114.888834157, 5838745.736568157]}, "properties": {"id": "4963796495"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752108.1007908818, 5838746.998182969]}, "properties": {"id": "4963796496"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773978.5319165817, 5754836.766327672]}, "properties": {"id": "498837749"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772075.3867284593, 5755160.638232803]}, "properties": {"id": "498837751"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772400.8173494594, 5756671.76402872]}, "properties": {"id": "498837753"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773862.2863262774, 5754076.351988338]}, "properties": {"id": "498837765"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774308.742680985, 5753636.869147261]}, "properties": {"id": "498837776"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776943.7714626468, 5752887.303813651]}, "properties": {"id": "498837780"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781490.087089017, 5752046.498291568]}, "properties": {"id": "498837783"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781440.0117030784, 5751165.760703]}, "properties": {"id": "498837785"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784542.0971598532, 5749765.522633855]}, "properties": {"id": "498837819"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774948.5816265474, 5745972.06776708]}, "properties": {"id": "498882146"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769448.5101735912, 5748360.499390328]}, "properties": {"id": "498882149"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834146.0452259239, 5812887.224619177]}, "properties": {"id": "4989023969"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834542.1590923003, 5813110.826070331]}, "properties": {"id": "4989023975"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [800166.598014681, 5768623.649807684]}, "properties": {"id": "5008482107"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [800175.3445525952, 5768648.035756687]}, "properties": {"id": "5008486477"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795524.7179802222, 5780478.92316887]}, "properties": {"id": "502709226"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794276.6204831498, 5778309.435107843]}, "properties": {"id": "502710903"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789549.4809635417, 5754330.8638683995]}, "properties": {"id": "5027728884"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760859.809314579, 5762426.065583119]}, "properties": {"id": "5052362455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761063.836425334, 5762388.753239561]}, "properties": {"id": "5052362456"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761378.6620401009, 5762490.76453793]}, "properties": {"id": "5052363045"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788807.4567959982, 5751280.952795366]}, "properties": {"id": "508067745"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788715.4279210501, 5751298.00793185]}, "properties": {"id": "508067750"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788776.9482369246, 5751137.169539691]}, "properties": {"id": "508067765"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788695.750379571, 5751177.97710407]}, "properties": {"id": "508067767"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788715.9425369177, 5751219.233105273]}, "properties": {"id": "508067771"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788667.8082167851, 5751364.03156589]}, "properties": {"id": "508067779"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788821.4371553867, 5751353.562450244]}, "properties": {"id": "508067783"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788982.8484926044, 5751324.539420633]}, "properties": {"id": "508067786"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788951.5745308015, 5751332.439903004]}, "properties": {"id": "508067787"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789200.9942236787, 5751280.6969353845]}, "properties": {"id": "508067788"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788936.4789995423, 5751243.398790221]}, "properties": {"id": "508067790"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788804.7571685453, 5751267.656659032]}, "properties": {"id": "508067792"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789159.3095499827, 5751203.323875455]}, "properties": {"id": "508067794"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788958.0888213823, 5751238.678824565]}, "properties": {"id": "508067796"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788942.131412382, 5751151.4802485425]}, "properties": {"id": "508067798"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789114.6847933879, 5751122.054890993]}, "properties": {"id": "508067801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788789.7328919009, 5751181.535952214]}, "properties": {"id": "508067803"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788919.4643753781, 5751155.27112203]}, "properties": {"id": "508067806"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789064.9892639889, 5751042.1567643685]}, "properties": {"id": "508067808"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789021.6547309872, 5750958.496015544]}, "properties": {"id": "508067812"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789218.2387872927, 5751378.31888973]}, "properties": {"id": "508067815"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788760.752334672, 5751012.946226019]}, "properties": {"id": "508067817"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788977.843238871, 5750871.76239402]}, "properties": {"id": "508067821"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788726.020648767, 5750836.993516019]}, "properties": {"id": "508067849"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788923.4666663184, 5750844.113497908]}, "properties": {"id": "508067851"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789136.8711415018, 5750685.273689333]}, "properties": {"id": "508067864"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789042.1616654999, 5750662.762018952]}, "properties": {"id": "508067870"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789412.8022688095, 5750673.817109575]}, "properties": {"id": "508067874"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789017.5534325626, 5750698.310101813]}, "properties": {"id": "508067876"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788598.6075791736, 5751454.945343034]}, "properties": {"id": "508067878"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788978.456050039, 5750757.4731841115]}, "properties": {"id": "508067879"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788469.5877825047, 5750747.899440332]}, "properties": {"id": "508067883"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788457.1617732116, 5750679.0016329205]}, "properties": {"id": "508067884"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788489.1327528419, 5750856.25407507]}, "properties": {"id": "508067885"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788485.0172825935, 5750833.461320161]}, "properties": {"id": "508067886"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788540.5334024928, 5751133.696119146]}, "properties": {"id": "508067887"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788501.547593176, 5750925.074459391]}, "properties": {"id": "508067888"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788831.6283201623, 5751411.047771772]}, "properties": {"id": "508067889"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788488.9837205417, 5750514.281972693]}, "properties": {"id": "508067891"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788483.2400449893, 5750520.833804166]}, "properties": {"id": "508067892"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788501.2332912681, 5750527.369781419]}, "properties": {"id": "508067893"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788498.493325409, 5750515.619932488]}, "properties": {"id": "508067894"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788496.8223294315, 5750531.784430675]}, "properties": {"id": "508067896"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788656.2398519138, 5750637.721839002]}, "properties": {"id": "508067899"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788667.7884645425, 5750640.75379551]}, "properties": {"id": "508067900"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788669.5936899787, 5750647.657870238]}, "properties": {"id": "508067903"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788486.9463489951, 5750530.970838102]}, "properties": {"id": "508067905"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788663.8346761146, 5750622.97899305]}, "properties": {"id": "508067911"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788650.8304018611, 5750648.718688413]}, "properties": {"id": "508067912"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788133.2944808016, 5749985.979912264]}, "properties": {"id": "508067914"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788319.6873431609, 5750148.652855047]}, "properties": {"id": "508067915"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787740.9542478225, 5749839.594220181]}, "properties": {"id": "508067920"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788582.5297854384, 5750411.982666034]}, "properties": {"id": "508067922"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788387.5907077503, 5750204.751934341]}, "properties": {"id": "508067928"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787427.9664419862, 5750030.956888853]}, "properties": {"id": "508067930"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787356.057944584, 5750106.285561318]}, "properties": {"id": "508067933"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788291.5050346013, 5750341.994395946]}, "properties": {"id": "508067935"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788286.9531463797, 5750330.965050025]}, "properties": {"id": "508067937"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788110.6890463945, 5750221.333335924]}, "properties": {"id": "508067953"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788273.6784659929, 5750347.199890712]}, "properties": {"id": "508067954"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788270.7301683933, 5750338.18045776]}, "properties": {"id": "508067955"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788277.8606100405, 5750329.778664924]}, "properties": {"id": "508067956"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788215.8591354894, 5750272.77855013]}, "properties": {"id": "508067959"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788283.0089640042, 5750350.144951005]}, "properties": {"id": "508067961"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788664.0623575151, 5751197.283550384]}, "properties": {"id": "508067962"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788624.5844583024, 5751118.551090344]}, "properties": {"id": "508067966"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788622.7085703706, 5751090.843456833]}, "properties": {"id": "508067967"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787936.3563520717, 5750221.249463225]}, "properties": {"id": "508067973"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788577.0201786156, 5750844.439680984]}, "properties": {"id": "508067978"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788558.2463928657, 5750749.594835191]}, "properties": {"id": "508067979"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788572.6525382748, 5750820.722367387]}, "properties": {"id": "508067980"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788641.1234733195, 5750834.042655176]}, "properties": {"id": "508067981"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788738.0436198981, 5750896.76954035]}, "properties": {"id": "508067986"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788674.0666619358, 5750998.478419898]}, "properties": {"id": "508067988"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788687.4722918392, 5751083.679114452]}, "properties": {"id": "508067989"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788607.1415235084, 5751011.755181146]}, "properties": {"id": "508067991"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788617.7709394451, 5750928.205947077]}, "properties": {"id": "508067992"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788339.6150059395, 5750267.530363034]}, "properties": {"id": "508067997"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788420.7133208711, 5750456.573907931]}, "properties": {"id": "508067998"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788409.2396856026, 5750758.772110318]}, "properties": {"id": "508068004"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788431.0193362448, 5750869.425341452]}, "properties": {"id": "508068005"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788385.2160566743, 5751009.703937303]}, "properties": {"id": "508068008"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788312.3148679126, 5750604.4931097375]}, "properties": {"id": "508068009"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788073.2175748043, 5750051.545525996]}, "properties": {"id": "508068010"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788266.3749345738, 5750214.433644126]}, "properties": {"id": "508068011"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788308.6174748468, 5750465.618407301]}, "properties": {"id": "508068016"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788366.2236934975, 5750408.98660333]}, "properties": {"id": "508068017"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788238.8088214401, 5750426.769411205]}, "properties": {"id": "508068018"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787968.8039297545, 5750393.317723239]}, "properties": {"id": "508068019"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788022.6522840599, 5750388.737651996]}, "properties": {"id": "508068021"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788222.7817943355, 5750370.437113568]}, "properties": {"id": "508068022"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784219.3256134246, 5747953.584611145]}, "properties": {"id": "508068034"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784406.7302765225, 5749051.633907586]}, "properties": {"id": "508068035"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788017.4889025994, 5750214.338735353]}, "properties": {"id": "508068036"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784261.049129138, 5748173.934030381]}, "properties": {"id": "508068037"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788017.8498958573, 5750223.217277045]}, "properties": {"id": "508068039"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788359.4024078266, 5750416.488269006]}, "properties": {"id": "508068040"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787520.6889263758, 5749802.375343535]}, "properties": {"id": "508068054"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787344.55458952, 5749592.640627166]}, "properties": {"id": "508068057"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783897.8562476452, 5749081.626413965]}, "properties": {"id": "508068061"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787476.8431406447, 5749809.763211743]}, "properties": {"id": "508068067"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787639.782215964, 5749778.0425357465]}, "properties": {"id": "508068070"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789109.206171945, 5751122.084611978]}, "properties": {"id": "508068149"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789110.8029721687, 5751117.54824746]}, "properties": {"id": "508068151"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788781.734657586, 5751139.565540636]}, "properties": {"id": "508068161"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788780.5078462409, 5751131.951671686]}, "properties": {"id": "508068168"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788873.0512825602, 5750751.603211671]}, "properties": {"id": "509913945"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788886.3794121346, 5750751.281256215]}, "properties": {"id": "509913946"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788283.1664376126, 5751041.4168997845]}, "properties": {"id": "509913954"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788113.2586365191, 5750709.815309546]}, "properties": {"id": "509913962"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788071.176630627, 5750741.961168526]}, "properties": {"id": "509913975"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788225.0285544572, 5750594.854947544]}, "properties": {"id": "509913976"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788231.7255456687, 5750636.749899643]}, "properties": {"id": "509913977"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788245.5845595341, 5750711.509458094]}, "properties": {"id": "509913978"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788261.1185818987, 5750786.598119211]}, "properties": {"id": "509913980"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788085.3820849643, 5750819.598203493]}, "properties": {"id": "509913981"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788532.7745086672, 5751092.750651822]}, "properties": {"id": "509914019"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788302.3627403193, 5751145.716383224]}, "properties": {"id": "509914032"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788549.1604882726, 5751183.490878152]}, "properties": {"id": "509914035"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788315.9173221127, 5751224.421241212]}, "properties": {"id": "509914036"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788231.3704871673, 5751247.527358414]}, "properties": {"id": "509914037"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788263.7438150544, 5750983.416610347]}, "properties": {"id": "509914044"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788183.5525598442, 5750986.76110667]}, "properties": {"id": "509914062"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788206.7997607541, 5750886.079227485]}, "properties": {"id": "509914068"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788193.958000242, 5751043.272204859]}, "properties": {"id": "509914074"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787939.1237687764, 5751170.721325343]}, "properties": {"id": "509914075"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787897.7915848675, 5750968.261494616]}, "properties": {"id": "509914078"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787913.3786752924, 5751046.149432437]}, "properties": {"id": "509914278"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787842.8366260418, 5751195.487366636]}, "properties": {"id": "509914287"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787978.6356203329, 5751297.657908596]}, "properties": {"id": "509914290"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787996.0229658275, 5750982.814089282]}, "properties": {"id": "509914293"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787828.2035338506, 5751100.9050271455]}, "properties": {"id": "509914294"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788110.3623311108, 5751022.64180995]}, "properties": {"id": "509914303"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788147.1006149407, 5750922.000480263]}, "properties": {"id": "509914310"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788079.8910494938, 5750789.141178659]}, "properties": {"id": "509914334"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788053.277644359, 5750645.950789324]}, "properties": {"id": "509914368"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788005.3056331128, 5750676.150589965]}, "properties": {"id": "509914399"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787841.6544541264, 5750759.772727971]}, "properties": {"id": "509914410"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788037.218129466, 5750586.718558006]}, "properties": {"id": "509914413"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787848.1885979029, 5750643.939941279]}, "properties": {"id": "509914415"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787815.5354518333, 5750623.1995135145]}, "properties": {"id": "509914422"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787768.7416097848, 5750635.417369633]}, "properties": {"id": "509914423"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788057.3339568697, 5751239.453398141]}, "properties": {"id": "509914425"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788271.4134061051, 5751412.688302575]}, "properties": {"id": "509914426"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788089.0261543172, 5750518.392738609]}, "properties": {"id": "509914427"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788242.1521437928, 5751306.714642396]}, "properties": {"id": "509914428"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787946.1136643414, 5750721.343857141]}, "properties": {"id": "509914430"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788040.04464878, 5750536.480983955]}, "properties": {"id": "509914433"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787748.0364690449, 5750511.198799329]}, "properties": {"id": "509914434"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787919.3708488601, 5750606.565969417]}, "properties": {"id": "509914435"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788566.1145610578, 5751274.444161004]}, "properties": {"id": "509914436"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788324.2733074337, 5751317.104834992]}, "properties": {"id": "509914437"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788581.3362780248, 5751365.903997046]}, "properties": {"id": "509914438"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788348.9670570707, 5751401.557591491]}, "properties": {"id": "509914439"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788104.9370645293, 5751415.414598861]}, "properties": {"id": "509914441"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788122.8842585437, 5751363.7810232015]}, "properties": {"id": "509914442"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788301.0495553452, 5751472.079551443]}, "properties": {"id": "509914444"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788069.8155529641, 5749916.194763929]}, "properties": {"id": "509914445"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787939.4891336896, 5750071.039050874]}, "properties": {"id": "509914446"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787925.2844436648, 5750131.80814501]}, "properties": {"id": "509914448"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787928.5989390858, 5750221.415411569]}, "properties": {"id": "509914449"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787722.4501882901, 5750347.565430752]}, "properties": {"id": "509914450"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787696.8412702326, 5750227.911957729]}, "properties": {"id": "509914451"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788114.6740451555, 5750386.705217203]}, "properties": {"id": "509914453"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787711.3055004717, 5750039.497984126]}, "properties": {"id": "509914456"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787634.7926060659, 5750065.935395006]}, "properties": {"id": "509914466"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787621.0482296979, 5749990.293206085]}, "properties": {"id": "509914474"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787852.335975819, 5749955.39575808]}, "properties": {"id": "509914489"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787930.6553928191, 5749968.547393576]}, "properties": {"id": "509914490"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787960.8440369236, 5749916.443185583]}, "properties": {"id": "509914491"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787781.13873631, 5749968.407734389]}, "properties": {"id": "509914493"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787906.9347642469, 5749852.094468207]}, "properties": {"id": "509914497"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787811.4745040955, 5750135.361337991]}, "properties": {"id": "509914501"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787716.8893399956, 5749881.353818155]}, "properties": {"id": "509914504"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787990.4691280641, 5750010.4898113]}, "properties": {"id": "509914507"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787267.7418555445, 5749724.981817894]}, "properties": {"id": "509914511"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787864.9562814555, 5749899.273580211]}, "properties": {"id": "509914517"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787840.4074000765, 5749883.11210504]}, "properties": {"id": "509914520"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785767.1691897231, 5749535.385097327]}, "properties": {"id": "509914556"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784534.0876722797, 5749638.55158832]}, "properties": {"id": "509914701"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785251.4237587112, 5752593.472175976]}, "properties": {"id": "509914950"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785592.1043070448, 5750773.088034032]}, "properties": {"id": "509914993"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785106.2933497687, 5751389.511202669]}, "properties": {"id": "509915055"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785760.0809949236, 5752364.837964589]}, "properties": {"id": "509915115"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784956.3187594934, 5752396.239240069]}, "properties": {"id": "509915116"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784714.1349667116, 5752286.706481231]}, "properties": {"id": "509915122"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785224.2611061425, 5752471.23507119]}, "properties": {"id": "509915179"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785209.242916577, 5751583.131561742]}, "properties": {"id": "509915186"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785447.4286105469, 5752426.943037114]}, "properties": {"id": "509915189"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785391.5348547915, 5752635.383966904]}, "properties": {"id": "509915200"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785362.1771973944, 5754100.411506021]}, "properties": {"id": "509915205"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787175.4305807627, 5753760.47764585]}, "properties": {"id": "509915208"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788600.3568690284, 5753735.0082977265]}, "properties": {"id": "509915214"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786683.676168802, 5753123.47695081]}, "properties": {"id": "509915216"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788640.788328313, 5753928.52936997]}, "properties": {"id": "509915218"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785602.3401170201, 5751683.126455578]}, "properties": {"id": "509915222"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785196.4273193141, 5751903.921013533]}, "properties": {"id": "509915230"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785253.3532738124, 5752588.124845676]}, "properties": {"id": "509915231"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789486.0296477755, 5753332.4872796405]}, "properties": {"id": "509915252"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789535.3925925824, 5753629.883110485]}, "properties": {"id": "509915255"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789982.1110408532, 5753537.497721353]}, "properties": {"id": "509915297"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789930.884737618, 5753252.06252616]}, "properties": {"id": "509915327"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789881.9560034384, 5753664.455613325]}, "properties": {"id": "509915349"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789865.4994914994, 5753571.240670877]}, "properties": {"id": "509915360"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789962.6197301978, 5753619.378247747]}, "properties": {"id": "509915382"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789951.6711562902, 5753555.1965463]}, "properties": {"id": "509915405"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790095.1896629541, 5753518.517797712]}, "properties": {"id": "509915428"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789797.263130618, 5753582.972012815]}, "properties": {"id": "509915452"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789963.930434078, 5753432.641282858]}, "properties": {"id": "509915561"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790067.286693206, 5753360.272396913]}, "properties": {"id": "509915571"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789955.2533790104, 5753379.770299866]}, "properties": {"id": "509915593"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790603.097072388, 5751295.56526532]}, "properties": {"id": "509915708"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790548.01831481, 5751432.614603723]}, "properties": {"id": "509915763"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790036.4156257978, 5751137.834652068]}, "properties": {"id": "509915778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785212.1567856611, 5752349.999217597]}, "properties": {"id": "509915883"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793558.5586656006, 5754657.524246119]}, "properties": {"id": "510168897"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793648.6157750499, 5754616.09132089]}, "properties": {"id": "510168941"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793539.8783754457, 5754570.106713269]}, "properties": {"id": "510169002"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793548.0616010723, 5754814.181628826]}, "properties": {"id": "510169134"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793614.5942495733, 5754821.3320869515]}, "properties": {"id": "510169138"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792712.2096495875, 5755027.424956515]}, "properties": {"id": "510169323"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792648.4536340327, 5754674.062811098]}, "properties": {"id": "510169352"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793328.2324847061, 5754878.991173749]}, "properties": {"id": "510169366"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793249.4987543743, 5754884.830233409]}, "properties": {"id": "510169493"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792875.7929980741, 5754941.399122335]}, "properties": {"id": "510169519"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792896.1709786198, 5754833.913074568]}, "properties": {"id": "510169584"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792810.4099009339, 5754604.702154344]}, "properties": {"id": "510169731"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792806.8107207075, 5754483.747848017]}, "properties": {"id": "510169843"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792773.6791785683, 5754292.963293256]}, "properties": {"id": "510170094"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792878.863650114, 5754738.275475967]}, "properties": {"id": "510170489"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792921.3794917176, 5754523.361452861]}, "properties": {"id": "510170505"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792993.078184923, 5754516.346797133]}, "properties": {"id": "510170513"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793226.8897242846, 5754337.165773493]}, "properties": {"id": "510170730"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792584.4724732169, 5754141.171260091]}, "properties": {"id": "510170753"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790400.1956838624, 5751463.424946548]}, "properties": {"id": "510171217"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790476.5729376586, 5751276.00527165]}, "properties": {"id": "510171242"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790026.9623022848, 5751778.493859456]}, "properties": {"id": "510171295"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790597.8876200146, 5751664.068704812]}, "properties": {"id": "510171319"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789864.1523999549, 5751812.188837564]}, "properties": {"id": "510171345"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790069.299090116, 5751646.1088031335]}, "properties": {"id": "510171377"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790323.1555783376, 5751598.9845783785]}, "properties": {"id": "510171391"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790303.8966285886, 5751484.208670777]}, "properties": {"id": "510171490"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790000.3555770395, 5752009.243257652]}, "properties": {"id": "510171539"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789961.0216808897, 5751791.801558552]}, "properties": {"id": "510171551"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789981.1621693622, 5751901.766890659]}, "properties": {"id": "510171574"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790366.4282338871, 5751829.754471624]}, "properties": {"id": "510171596"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790423.4319204593, 5751459.376043234]}, "properties": {"id": "510171623"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790509.3368425348, 5751913.635961029]}, "properties": {"id": "510171642"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790522.9182062058, 5751911.29062555]}, "properties": {"id": "510171662"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790491.7019565206, 5752038.243140384]}, "properties": {"id": "510171670"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790509.6059361612, 5752155.179420304]}, "properties": {"id": "510171671"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789909.067044357, 5752146.488100954]}, "properties": {"id": "510171672"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790666.3476100529, 5752251.020008919]}, "properties": {"id": "510171673"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790580.0819130163, 5752165.622661791]}, "properties": {"id": "510171674"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790598.3594935518, 5752263.972931435]}, "properties": {"id": "510171675"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790544.689318483, 5752171.543494663]}, "properties": {"id": "510171683"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790357.7680962591, 5752186.943671391]}, "properties": {"id": "510171714"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790784.586066827, 5752228.274865853]}, "properties": {"id": "510171813"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789938.0215704001, 5752389.399543786]}, "properties": {"id": "510171828"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790447.9883118743, 5752168.7575142635]}, "properties": {"id": "510171852"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791005.8774756519, 5753696.738661671]}, "properties": {"id": "510172024"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791038.6160283054, 5753781.662934025]}, "properties": {"id": "510172059"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791048.3679279151, 5753822.857659008]}, "properties": {"id": "510172091"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791099.252232005, 5754091.841093761]}, "properties": {"id": "510172121"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791444.8268799379, 5753904.791997131]}, "properties": {"id": "510172328"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790938.7503239557, 5752858.9391157525]}, "properties": {"id": "510172366"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790072.2925582496, 5753019.466422894]}, "properties": {"id": "510172408"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790683.2909606788, 5752905.436678666]}, "properties": {"id": "510172448"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790719.5335190252, 5753105.504864164]}, "properties": {"id": "510172516"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790685.9872120136, 5752680.647074892]}, "properties": {"id": "510172571"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790995.8315068836, 5753054.209488024]}, "properties": {"id": "510172682"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790700.6584768917, 5753005.453480356]}, "properties": {"id": "510172706"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790904.4284646369, 5752964.5762730045]}, "properties": {"id": "510172738"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790049.5934782743, 5752898.300832069]}, "properties": {"id": "510172769"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790747.8844693546, 5752768.011301217]}, "properties": {"id": "510172840"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790265.6256255661, 5752982.437450363]}, "properties": {"id": "510172866"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790224.3932384045, 5752765.031297897]}, "properties": {"id": "510172901"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790169.343709733, 5753001.538885217]}, "properties": {"id": "510172965"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790187.133552404, 5753100.574043072]}, "properties": {"id": "510172986"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790382.7949071795, 5752962.027366301]}, "properties": {"id": "510173099"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790005.4004527288, 5752663.639705548]}, "properties": {"id": "510173127"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790520.0420657897, 5752569.177072372]}, "properties": {"id": "510173156"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789979.6025029168, 5752524.9133673115]}, "properties": {"id": "510173165"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790493.8848355606, 5752429.230771815]}, "properties": {"id": "510173177"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791734.22973693, 5753640.209481127]}, "properties": {"id": "510173184"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791751.3165196503, 5753857.073134729]}, "properties": {"id": "510173213"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791539.5070823702, 5753889.557479992]}, "properties": {"id": "510173298"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791376.2583363515, 5753915.148120197]}, "properties": {"id": "510173363"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791310.2439620972, 5753886.85476343]}, "properties": {"id": "510173401"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791265.958901906, 5753834.147007788]}, "properties": {"id": "510173431"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791239.9572615933, 5753735.06477427]}, "properties": {"id": "510173498"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791204.4390411105, 5753742.548454266]}, "properties": {"id": "510173530"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791161.7455350058, 5753558.685778785]}, "properties": {"id": "510173557"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791126.8189392092, 5753462.403917573]}, "properties": {"id": "510173768"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790922.0994026486, 5753597.516069159]}, "properties": {"id": "510173805"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790979.3575253708, 5753530.73132175]}, "properties": {"id": "510173937"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791037.7290587164, 5753492.659427126]}, "properties": {"id": "510174036"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791751.8945354412, 5753734.023616008]}, "properties": {"id": "510174122"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791628.3370956734, 5753807.911805646]}, "properties": {"id": "510174232"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791634.7144673116, 5753719.775298459]}, "properties": {"id": "510174329"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791747.6125114566, 5753708.3478501905]}, "properties": {"id": "510174353"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791840.2728573969, 5753692.2933902405]}, "properties": {"id": "510174385"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789516.0313606749, 5753954.729620934]}, "properties": {"id": "510174583"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789809.4926525045, 5753852.080536281]}, "properties": {"id": "510174706"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788709.0735785139, 5754294.815039228]}, "properties": {"id": "510174776"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789953.9323345798, 5752386.315772806]}, "properties": {"id": "510174986"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792593.3567091885, 5757702.230488126]}, "properties": {"id": "510175008"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794894.667357305, 5756422.839469023]}, "properties": {"id": "510175115"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795269.8428406357, 5755007.973199507]}, "properties": {"id": "510175397"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795296.5839000463, 5754879.41565846]}, "properties": {"id": "510175509"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788970.808022897, 5750864.745721301]}, "properties": {"id": "510175833"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790110.9074878296, 5751528.076206649]}, "properties": {"id": "510176154"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790121.1114808377, 5751509.492387099]}, "properties": {"id": "510176169"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790123.7207640486, 5751522.891568637]}, "properties": {"id": "510176267"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790548.9096713937, 5751443.019095423]}, "properties": {"id": "510558097"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790303.9495410782, 5751490.542067921]}, "properties": {"id": "510558215"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790426.3839960112, 5751469.639631448]}, "properties": {"id": "510558231"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790614.7297506537, 5753124.08500124]}, "properties": {"id": "510558255"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790626.8445095096, 5753131.284351756]}, "properties": {"id": "510558294"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790633.8950666669, 5753120.160340159]}, "properties": {"id": "510558352"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790624.0887114727, 5753112.1442924235]}, "properties": {"id": "510558403"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790463.1713839117, 5752292.3271725355]}, "properties": {"id": "510558463"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790471.4536349163, 5752298.164174743]}, "properties": {"id": "510558518"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790477.2289539655, 5752289.086777283]}, "properties": {"id": "510558574"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790469.3649510584, 5752283.923823569]}, "properties": {"id": "510558639"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788981.4930288255, 5750862.962340205]}, "properties": {"id": "510558714"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790336.9969211989, 5751721.568977992]}, "properties": {"id": "510558754"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790342.0967081375, 5751724.619722359]}, "properties": {"id": "510558796"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790353.3414438624, 5751722.547712455]}, "properties": {"id": "510558815"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790354.7557850862, 5751704.446737387]}, "properties": {"id": "510558832"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790349.5864114689, 5751701.165100979]}, "properties": {"id": "510558846"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790337.8477525697, 5751703.377150056]}, "properties": {"id": "510558866"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790334.2438218314, 5751708.3194980575]}, "properties": {"id": "510558908"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790357.3057335202, 5751717.15891366]}, "properties": {"id": "510558928"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790461.065007124, 5751685.40278813]}, "properties": {"id": "510558947"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790463.6507380975, 5751697.402324565]}, "properties": {"id": "510558967"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790470.1329644029, 5751701.403513902]}, "properties": {"id": "510559032"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790485.909610752, 5751691.476796064]}, "properties": {"id": "510559135"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790483.8620410701, 5751681.780827842]}, "properties": {"id": "510559176"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790478.3168098888, 5751677.301318199]}, "properties": {"id": "510559247"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790464.7851009927, 5751679.555910474]}, "properties": {"id": "510559279"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790436.9798394159, 5751456.60963111]}, "properties": {"id": "510559316"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790440.8085494202, 5751466.66380999]}, "properties": {"id": "510559337"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790599.271959591, 5751669.931789389]}, "properties": {"id": "510559380"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790025.3448122871, 5751768.326664755]}, "properties": {"id": "510559436"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789914.7205022224, 5751801.312917129]}, "properties": {"id": "510559455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789915.365791142, 5751789.552800309]}, "properties": {"id": "510559516"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790155.7253651684, 5751740.652142729]}, "properties": {"id": "510559537"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790157.0263897623, 5751753.698263697]}, "properties": {"id": "510559555"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790255.5112231162, 5751737.606108648]}, "properties": {"id": "510559570"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790252.7357029731, 5751722.756924667]}, "properties": {"id": "510559579"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790539.745962215, 5752705.443417182]}, "properties": {"id": "510559592"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790545.1406104157, 5752708.883598458]}, "properties": {"id": "510559642"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790548.2068630233, 5752704.316226524]}, "properties": {"id": "510559701"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790543.5999299997, 5752700.625387144]}, "properties": {"id": "510559771"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767255.7746415223, 5753652.073807963]}, "properties": {"id": "5106590266"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759220.9201439332, 5729468.146984148]}, "properties": {"id": "5109912586"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759300.47985612, 5729558.527397346]}, "properties": {"id": "5109912587"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790563.5304820155, 5752802.8173892]}, "properties": {"id": "512196730"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790242.6673800835, 5752861.937212239]}, "properties": {"id": "512196731"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790827.120755098, 5752882.625576702]}, "properties": {"id": "512196732"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790587.0383761064, 5752922.8861274645]}, "properties": {"id": "512196733"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790335.1972124798, 5752067.252123432]}, "properties": {"id": "512196734"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790566.8349170256, 5755609.992154668]}, "properties": {"id": "512196735"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790563.8491030225, 5755571.773649455]}, "properties": {"id": "512196735-34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791876.6155980378, 5756177.580191431]}, "properties": {"id": "512196738"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790775.664437825, 5755551.158246004]}, "properties": {"id": "512196739"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790925.8750242977, 5756353.85972246]}, "properties": {"id": "512196740"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790853.5211424541, 5755959.065354487]}, "properties": {"id": "512196746"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791800.286291731, 5755775.386759236]}, "properties": {"id": "512196755"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791274.1978290501, 5755877.471919284]}, "properties": {"id": "512196757"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791350.958412987, 5756280.697073954]}, "properties": {"id": "512196772"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790533.0064540841, 5755620.299590529]}, "properties": {"id": "512196786"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790529.4234757901, 5755573.720785346]}, "properties": {"id": "512196786-33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788786.9578328016, 5752055.23576251]}, "properties": {"id": "512197108"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788755.9912773893, 5752042.951638758]}, "properties": {"id": "512197140"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788761.8134376889, 5752060.815141858]}, "properties": {"id": "512197156"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788768.916154816, 5752045.9788189735]}, "properties": {"id": "512197170"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788767.8280037683, 5752057.887909135]}, "properties": {"id": "512197190"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788764.8883107104, 5752042.533086256]}, "properties": {"id": "512197219"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788752.3071572338, 5752055.709437495]}, "properties": {"id": "512197263"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788318.3883731575, 5751507.025451311]}, "properties": {"id": "512197281"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790961.2745469159, 5753060.101656476]}, "properties": {"id": "512197424"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790988.629851013, 5753149.988244163]}, "properties": {"id": "512197799"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790657.6173256331, 5753305.452681392]}, "properties": {"id": "512197806"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790380.539739062, 5753357.730522673]}, "properties": {"id": "512197807"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790640.7341515735, 5753214.009952585]}, "properties": {"id": "512197808"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790279.215176626, 5753280.351325925]}, "properties": {"id": "512197810"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790177.22898469, 5753300.168989167]}, "properties": {"id": "512197811"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790261.9105939658, 5753188.512131313]}, "properties": {"id": "512197812"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790320.9792380505, 5753318.016361684]}, "properties": {"id": "512197821"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790405.8582201501, 5753379.02620727]}, "properties": {"id": "512197826"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790666.3683025254, 5753355.141911421]}, "properties": {"id": "512197875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790336.3234018387, 5753463.887058808]}, "properties": {"id": "512197896"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790252.148840516, 5753409.564291187]}, "properties": {"id": "512197917"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791147.2001829317, 5753448.475520755]}, "properties": {"id": "512197939"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791221.9566398622, 5753423.837645143]}, "properties": {"id": "512197958"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791355.3014450624, 5753373.50963489]}, "properties": {"id": "512197970"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791460.5195251406, 5753256.506903434]}, "properties": {"id": "512197989"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791342.1411630828, 5753729.809312233]}, "properties": {"id": "512198007"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791476.1560915703, 5753696.205358518]}, "properties": {"id": "512198048"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791537.3631453239, 5753677.011223532]}, "properties": {"id": "512198085"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791598.7974511064, 5753602.801812656]}, "properties": {"id": "512198139"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791654.3485565202, 5753529.3824169235]}, "properties": {"id": "512198151"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791710.1462303144, 5753452.396917186]}, "properties": {"id": "512198174"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791467.5499153468, 5753616.968518868]}, "properties": {"id": "512198272"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791398.758800973, 5753438.7395396205]}, "properties": {"id": "512198334"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791462.6685702316, 5753500.729781281]}, "properties": {"id": "512198360"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791359.4010348374, 5753578.482609487]}, "properties": {"id": "512198398"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791280.2298511853, 5753590.499159372]}, "properties": {"id": "512198408"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791172.5823295376, 5753605.665328863]}, "properties": {"id": "512198428"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791377.5623690053, 5753632.333151552]}, "properties": {"id": "512198448"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791277.9512100513, 5753643.331505463]}, "properties": {"id": "512198501"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791327.8773151739, 5753487.513589901]}, "properties": {"id": "512198518"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791247.1909166491, 5753505.075233621]}, "properties": {"id": "512198531"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791588.2567753068, 5753357.6259149425]}, "properties": {"id": "512198542"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791530.9350047983, 5753435.332485981]}, "properties": {"id": "512198551"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791469.7973529205, 5753380.03370824]}, "properties": {"id": "512198555"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791586.6429967708, 5753476.533586181]}, "properties": {"id": "512198557"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790982.2189048526, 5753419.704349333]}, "properties": {"id": "512198626"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790887.7891743286, 5753458.497821456]}, "properties": {"id": "512198698"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791355.7628351444, 5753234.4819169]}, "properties": {"id": "512198808"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791041.9751390992, 5753596.794717697]}, "properties": {"id": "512198959"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791184.2505257475, 5753658.939097893]}, "properties": {"id": "512198983"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791089.633189799, 5753670.988615594]}, "properties": {"id": "512199002"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791547.6381916273, 5753997.320585069]}, "properties": {"id": "512199022"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791559.8557122461, 5754100.390164865]}, "properties": {"id": "512199041"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791362.9065736495, 5753960.0887398515]}, "properties": {"id": "512199150"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791179.3142616339, 5753988.354673912]}, "properties": {"id": "512199169"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791271.1597672759, 5753966.123448962]}, "properties": {"id": "512199238"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791124.4020543259, 5754177.2945217285]}, "properties": {"id": "512199239"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790958.4240842899, 5753844.362141546]}, "properties": {"id": "512199240"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790948.077797154, 5753824.07310679]}, "properties": {"id": "512199241"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790970.4685659811, 5753920.496370065]}, "properties": {"id": "512199242"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790844.2846256468, 5753789.313387833]}, "properties": {"id": "512199243"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790912.4960674883, 5753751.5882387245]}, "properties": {"id": "512199256"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790775.8947983291, 5753493.540295329]}, "properties": {"id": "512199304"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790735.9175562125, 5753559.756473874]}, "properties": {"id": "512199324"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790725.676022772, 5753569.572837216]}, "properties": {"id": "512199345"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790538.7358741869, 5753627.432417296]}, "properties": {"id": "512199355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790411.7056406154, 5753711.829426024]}, "properties": {"id": "512199402"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790366.7076703822, 5753808.733412695]}, "properties": {"id": "512199422"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790331.4519544066, 5753887.792320996]}, "properties": {"id": "512199442"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790302.5825782109, 5753985.4492684]}, "properties": {"id": "512199471"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790399.1268528033, 5753957.490751092]}, "properties": {"id": "512199511"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790548.3169015509, 5753861.937848247]}, "properties": {"id": "512199529"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790724.7302286574, 5753929.074323178]}, "properties": {"id": "512199583"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790524.1010739737, 5753946.001948827]}, "properties": {"id": "512199600"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790465.6644900439, 5753938.13556166]}, "properties": {"id": "512199624"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790611.7711066555, 5753979.979299238]}, "properties": {"id": "512199665"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790525.4376259055, 5753761.285724122]}, "properties": {"id": "512199719"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790576.253183272, 5753687.878513194]}, "properties": {"id": "512199759"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790646.8280554079, 5753592.752728925]}, "properties": {"id": "512199771"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790674.9531068815, 5753693.871454094]}, "properties": {"id": "512199776"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790739.6359353281, 5753578.628431291]}, "properties": {"id": "512199783"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790793.053269461, 5753726.22817315]}, "properties": {"id": "512199795"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790812.5835654524, 5753803.348704928]}, "properties": {"id": "512199825"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790834.5137407868, 5753886.551322361]}, "properties": {"id": "512199837"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790821.803528508, 5753956.664405608]}, "properties": {"id": "512199861"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790765.2713350398, 5754041.782696327]}, "properties": {"id": "512199875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790675.9972938078, 5754009.020569877]}, "properties": {"id": "512199892"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790749.8126692402, 5753734.955051893]}, "properties": {"id": "512199911"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790750.9841070055, 5753849.137305214]}, "properties": {"id": "512199938"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790645.18945969, 5754044.729671556]}, "properties": {"id": "512199956"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790612.388467676, 5753776.316239486]}, "properties": {"id": "512199981"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790883.3305792464, 5753884.069542348]}, "properties": {"id": "512200000"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790884.2375851566, 5754016.8672663355]}, "properties": {"id": "512200087"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791081.5450217123, 5753991.058907774]}, "properties": {"id": "512200110"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790960.1504814547, 5754065.680412997]}, "properties": {"id": "512200165"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791008.5864414473, 5754115.750416258]}, "properties": {"id": "512200331"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792033.1133362765, 5753609.570410871]}, "properties": {"id": "512200354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791994.0495846253, 5753697.645543253]}, "properties": {"id": "512200369"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791938.9772509706, 5753674.363097642]}, "properties": {"id": "512200382"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792050.9017766691, 5753723.641917926]}, "properties": {"id": "512200414"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792162.9207628805, 5753662.046210633]}, "properties": {"id": "512200438"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792130.537335761, 5753753.692613557]}, "properties": {"id": "512200461"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792248.7054553466, 5753694.084950192]}, "properties": {"id": "512200465"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792222.7814761143, 5753763.134978046]}, "properties": {"id": "512200486"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792333.2942978498, 5753724.032125055]}, "properties": {"id": "512200503"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792299.9308156288, 5753812.5137974555]}, "properties": {"id": "512200507"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792091.2306834604, 5753843.5220305715]}, "properties": {"id": "512200536"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791989.105373905, 5753796.967847069]}, "properties": {"id": "512200540"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791857.4486578916, 5753786.836436557]}, "properties": {"id": "512200554"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791972.1352231633, 5753909.05142141]}, "properties": {"id": "512200557"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791979.7529197938, 5753915.322407613]}, "properties": {"id": "512200559"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791965.8775718207, 5753916.168931547]}, "properties": {"id": "512200573"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792078.1249812677, 5753883.053548265]}, "properties": {"id": "512200588"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792082.7470147547, 5753891.477969171]}, "properties": {"id": "512200614"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792067.2191646077, 5753888.038613467]}, "properties": {"id": "512200634"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792385.027979112, 5753836.873643855]}, "properties": {"id": "512200670"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791796.200627988, 5753514.54008783]}, "properties": {"id": "512200692"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791819.164300083, 5753516.110472971]}, "properties": {"id": "512200715"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791838.7266692279, 5753521.449430184]}, "properties": {"id": "512200738"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826064.488837801, 5799116.497798722]}, "properties": {"id": "5128227892"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835314.3384839299, 5819185.433857445]}, "properties": {"id": "5129696677"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780865.5886795744, 5747479.4647507565]}, "properties": {"id": "513379380"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784871.2445732235, 5752164.475006272]}, "properties": {"id": "513379568"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785395.1992481574, 5752811.476544057]}, "properties": {"id": "513379642"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785404.6446404471, 5752655.7921041455]}, "properties": {"id": "513379691"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782545.3306179636, 5747835.754034548]}, "properties": {"id": "513380037"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783350.4515928947, 5747800.844739193]}, "properties": {"id": "513381373"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783484.074536056, 5747435.06375489]}, "properties": {"id": "513381588"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790057.6967000905, 5754608.695318128]}, "properties": {"id": "513382238"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790099.2886785661, 5754764.503812419]}, "properties": {"id": "513382253"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789823.4234619933, 5754815.168997514]}, "properties": {"id": "513382274"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789881.5290732472, 5754803.67994977]}, "properties": {"id": "513382291"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790063.8238021135, 5754629.325895508]}, "properties": {"id": "513382319"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790083.3024822309, 5754687.632664302]}, "properties": {"id": "513382348"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790208.6965395354, 5754644.880818688]}, "properties": {"id": "513382353"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790253.6588722416, 5754674.39597428]}, "properties": {"id": "513382358"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790322.8617577101, 5754823.520503879]}, "properties": {"id": "513382359"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790470.3001995045, 5752946.495851752]}, "properties": {"id": "513527127"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790505.6253277919, 5753140.929106952]}, "properties": {"id": "513527159"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [729149.2382582708, 5826776.984307677]}, "properties": {"id": "5140367918"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835187.444520067, 5820271.123516801]}, "properties": {"id": "5154564392"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788192.6836321515, 5752624.75858685]}, "properties": {"id": "515913768"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787570.3097120367, 5753684.210160846]}, "properties": {"id": "515913792"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787608.462817047, 5753892.152554889]}, "properties": {"id": "515913845"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787623.4297944228, 5754092.963432267]}, "properties": {"id": "515913892"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787461.1613197486, 5754110.358793466]}, "properties": {"id": "515913917"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787222.4387655077, 5754157.745986188]}, "properties": {"id": "515914432"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787097.6622120494, 5754166.9533092845]}, "properties": {"id": "515914467"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787186.8164361939, 5753956.425553352]}, "properties": {"id": "515914565"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787118.2311697109, 5753966.345609094]}, "properties": {"id": "515914577"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787327.7572141147, 5753918.288935289]}, "properties": {"id": "515914623"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787498.9343798915, 5754524.048895891]}, "properties": {"id": "515915032"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787451.8843982657, 5754333.260996411]}, "properties": {"id": "515915145"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787214.1523624335, 5754369.053365168]}, "properties": {"id": "515915205"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787748.5162424063, 5754135.695606986]}, "properties": {"id": "515915243"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787839.0883838665, 5754185.625228328]}, "properties": {"id": "515915266"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787957.7298641602, 5753994.130021814]}, "properties": {"id": "515915426"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787799.6390891506, 5754041.947375148]}, "properties": {"id": "515915546"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787833.9355221377, 5754270.965912658]}, "properties": {"id": "515915551"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787650.7085132687, 5754289.834556565]}, "properties": {"id": "515915655"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787869.4942576678, 5754286.124562408]}, "properties": {"id": "515915768"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788118.8409856232, 5753873.981297638]}, "properties": {"id": "515915996"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788664.668480447, 5754076.929215426]}, "properties": {"id": "515916009"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788462.6709074813, 5754089.908465936]}, "properties": {"id": "515916104"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789880.4955823782, 5752080.09442991]}, "properties": {"id": "516044030"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789861.9770138385, 5752082.460470992]}, "properties": {"id": "516044053"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789771.3173239386, 5752095.709917639]}, "properties": {"id": "516044061"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789660.8944081408, 5752214.899859267]}, "properties": {"id": "516044108"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789623.1980375998, 5752410.011843351]}, "properties": {"id": "516044128"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789536.3236640837, 5752427.601489256]}, "properties": {"id": "516044207"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789805.8516980682, 5752283.504347661]}, "properties": {"id": "516044252"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789736.2689105915, 5752296.685007404]}, "properties": {"id": "516044281"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789816.3862493236, 5751840.3801570395]}, "properties": {"id": "516044355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789602.7081683781, 5751950.042001799]}, "properties": {"id": "516044477"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789752.7671478903, 5752000.936266285]}, "properties": {"id": "516044512"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789595.932101012, 5752138.030794783]}, "properties": {"id": "516044638"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789522.1228303919, 5752429.5449459525]}, "properties": {"id": "516044749"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789537.5887423252, 5752523.829405893]}, "properties": {"id": "516044791"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789530.1842204346, 5752616.834068659]}, "properties": {"id": "516044865"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789473.7517067334, 5752616.680789181]}, "properties": {"id": "516045347"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789512.9851538225, 5752708.21182018]}, "properties": {"id": "516045368"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789494.500528299, 5752798.913174675]}, "properties": {"id": "516045454"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789496.0748766725, 5752783.496535482]}, "properties": {"id": "516045489"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789502.4657759868, 5752790.558273284]}, "properties": {"id": "516045615"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789486.8833929044, 5752790.861788892]}, "properties": {"id": "516045686"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789711.211595207, 5752845.917145008]}, "properties": {"id": "516045758"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789838.5206001672, 5752837.521158892]}, "properties": {"id": "516045793"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789709.3496681431, 5752989.371622237]}, "properties": {"id": "516046077"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789718.1208587056, 5753034.914913151]}, "properties": {"id": "516046164"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789679.481633473, 5753037.824963106]}, "properties": {"id": "516046165"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789760.703203405, 5753030.140324795]}, "properties": {"id": "516046186"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789763.1172160443, 5752777.510761591]}, "properties": {"id": "516046381"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790019.8690990193, 5752826.224876525]}, "properties": {"id": "516046592"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790021.5777337879, 5752936.352590745]}, "properties": {"id": "516046669"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790015.4930316447, 5752897.3927132385]}, "properties": {"id": "516046729"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790039.4260770478, 5752930.631653037]}, "properties": {"id": "516046805"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789142.7231964917, 5751513.177352698]}, "properties": {"id": "516047220"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789085.7758549624, 5751525.788773266]}, "properties": {"id": "516047234"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789236.6094018924, 5751705.279960384]}, "properties": {"id": "516047253"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789153.9362230194, 5751747.300565675]}, "properties": {"id": "516047271"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789211.5177587671, 5751958.377051172]}, "properties": {"id": "516047289"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789153.363818188, 5751903.723067172]}, "properties": {"id": "516047348"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789163.7604633608, 5751830.61762442]}, "properties": {"id": "516047445"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788928.3109321025, 5751738.626303844]}, "properties": {"id": "516047593"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788920.5642587186, 5751790.207813407]}, "properties": {"id": "516047608"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788948.7515009907, 5751969.284334049]}, "properties": {"id": "516047658"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788988.1486971941, 5752061.711575544]}, "properties": {"id": "516047689"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788945.6836333019, 5751977.974542181]}, "properties": {"id": "516047690"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788954.8398415579, 5751982.83693418]}, "properties": {"id": "516047710"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788959.8852203828, 5751972.8977502445]}, "properties": {"id": "516047797"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789032.8426470242, 5751947.6880467]}, "properties": {"id": "516047927"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789004.7132744264, 5751860.425558194]}, "properties": {"id": "516048119"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789035.4040308045, 5751844.254626001]}, "properties": {"id": "516048175"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789125.943259513, 5751831.139832662]}, "properties": {"id": "516048277"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789100.0921634961, 5751778.395065518]}, "properties": {"id": "516048311"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789099.2983494236, 5751783.1137992395]}, "properties": {"id": "516048326"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789125.6645024559, 5751693.697942869]}, "properties": {"id": "516048345"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789087.3940620476, 5751711.107945083]}, "properties": {"id": "516048357"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789001.4008739811, 5751735.496235818]}, "properties": {"id": "516048379"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789170.7243858092, 5751581.94965306]}, "properties": {"id": "516048400"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789246.1810189886, 5751553.069158925]}, "properties": {"id": "516048435"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789295.0365362938, 5751561.597567344]}, "properties": {"id": "516048455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789328.2998866386, 5751570.818476676]}, "properties": {"id": "516048468"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789326.9181205269, 5752136.770453151]}, "properties": {"id": "516048733"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789335.2971921214, 5752246.135926209]}, "properties": {"id": "516048769"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789307.0820815729, 5752242.757753509]}, "properties": {"id": "516049047"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789165.9872473923, 5752263.655109181]}, "properties": {"id": "516049140"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789060.5041371018, 5752230.013705189]}, "properties": {"id": "516049193"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788920.794271569, 5752070.826506579]}, "properties": {"id": "516049279"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789092.5744066462, 5752029.772198282]}, "properties": {"id": "516049280"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789125.7193624964, 5752115.754386017]}, "properties": {"id": "516049289"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789141.293968692, 5752159.720385783]}, "properties": {"id": "516049306"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789157.6250171093, 5752203.536991967]}, "properties": {"id": "516049327"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789155.7047159183, 5752259.866932313]}, "properties": {"id": "516049361"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789165.9355204338, 5752200.427125453]}, "properties": {"id": "516049411"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789149.4995305511, 5752157.103327787]}, "properties": {"id": "516049425"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789102.7951436037, 5752026.716172033]}, "properties": {"id": "516049452"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788963.0053644135, 5752206.85480956]}, "properties": {"id": "516049536"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788825.7464891642, 5752059.8152850075]}, "properties": {"id": "516049561"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789253.2049756338, 5751868.511366247]}, "properties": {"id": "516049648"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789371.6319396147, 5751906.531421891]}, "properties": {"id": "516049675"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789353.6263754654, 5751979.5545997955]}, "properties": {"id": "516049689"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789253.2434837569, 5752156.17337306]}, "properties": {"id": "516049824"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789247.900822209, 5752155.375780311]}, "properties": {"id": "516049839"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789309.179156964, 5751396.785489029]}, "properties": {"id": "516050068"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789390.2447129637, 5751823.11660296]}, "properties": {"id": "516050323"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789244.4043899546, 5751518.911556998]}, "properties": {"id": "516050355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789250.4791895492, 5751492.296899601]}, "properties": {"id": "516050406"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792540.1180176117, 5753856.350638688]}, "properties": {"id": "518259649"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792488.6228534209, 5753839.55532077]}, "properties": {"id": "518259651"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792529.755111709, 5753902.641500872]}, "properties": {"id": "518259652"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792262.9908212805, 5753944.928050473]}, "properties": {"id": "518259654"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792542.8766246845, 5754056.394837408]}, "properties": {"id": "518259656"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792387.1278152468, 5754100.78468497]}, "properties": {"id": "518259657"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792529.6164717686, 5753980.961392687]}, "properties": {"id": "518259658"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792323.7101624637, 5754042.561890016]}, "properties": {"id": "518259661"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792267.7707589124, 5754135.450927869]}, "properties": {"id": "518259663"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792288.1033837503, 5753993.946152799]}, "properties": {"id": "518259666"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792059.1083506361, 5753989.620732126]}, "properties": {"id": "518259670"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791966.8994405367, 5754008.806540529]}, "properties": {"id": "518259671"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791938.1455440444, 5754009.646599469]}, "properties": {"id": "518259672"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792074.5248576709, 5754075.157599158]}, "properties": {"id": "518259673"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792051.795361957, 5754080.3481842475]}, "properties": {"id": "518259674"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792100.642784782, 5754070.677923246]}, "properties": {"id": "518259675"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792132.7177963384, 5754065.293432146]}, "properties": {"id": "518259676"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792165.7073082429, 5754085.172872877]}, "properties": {"id": "518259679"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792161.354820583, 5754060.733490182]}, "properties": {"id": "518259680"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792360.0503260444, 5754216.58113737]}, "properties": {"id": "518259681"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791934.3545351088, 5754195.366165909]}, "properties": {"id": "518259685"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791996.3154482634, 5754183.121618081]}, "properties": {"id": "518259686"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792055.6014556622, 5754172.707266865]}, "properties": {"id": "518259689"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792072.04251497, 5754262.597384741]}, "properties": {"id": "518259690"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791991.676744143, 5754281.476885935]}, "properties": {"id": "518259691"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792103.3889743385, 5754257.628463467]}, "properties": {"id": "518259692"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792142.7252788073, 5754156.694534894]}, "properties": {"id": "518259693"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792160.787356114, 5754244.647500417]}, "properties": {"id": "518259694"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792131.9430119065, 5754251.482287983]}, "properties": {"id": "518259695"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792187.018052421, 5754238.429612329]}, "properties": {"id": "518259696"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792176.5878059287, 5754149.87808691]}, "properties": {"id": "518259697"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792172.1295770627, 5754119.373882181]}, "properties": {"id": "518259698"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792272.4951853112, 5754272.936142127]}, "properties": {"id": "518259699"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792220.1141864002, 5754231.963083332]}, "properties": {"id": "518259702"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792416.2766371854, 5754339.2632520255]}, "properties": {"id": "518259704"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792287.2171124491, 5754264.011406717]}, "properties": {"id": "518259705"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792358.8450556332, 5754487.713960924]}, "properties": {"id": "518259707"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792031.4693448199, 5754377.313366304]}, "properties": {"id": "518259708"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792063.2555718564, 5754542.539657564]}, "properties": {"id": "518259709"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792038.9854873816, 5754548.030341378]}, "properties": {"id": "518259710"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792509.6902727729, 5754458.352450822]}, "properties": {"id": "518259711"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792217.5515901892, 5754307.525014966]}, "properties": {"id": "518259712"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792258.7982849998, 5754419.0131436]}, "properties": {"id": "518259714"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792275.523257616, 5754503.857802483]}, "properties": {"id": "518259715"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792290.8989465332, 5754588.195563619]}, "properties": {"id": "518259716"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792045.7760343945, 5754458.077740069]}, "properties": {"id": "518259717"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792423.4152004183, 5754371.448670276]}, "properties": {"id": "518259718"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792441.1401871697, 5754470.795047603]}, "properties": {"id": "518259719"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792457.1436784967, 5754180.119485702]}, "properties": {"id": "518259720"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792523.6621494647, 5754163.882195231]}, "properties": {"id": "518259722"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792528.7487325447, 5754184.382474219]}, "properties": {"id": "518259724"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792548.2232817811, 5754282.676113639]}, "properties": {"id": "518259730"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792575.4093439614, 5754433.285427901]}, "properties": {"id": "518259738"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792599.1444714703, 5754551.731312533]}, "properties": {"id": "518259751"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792605.2539147981, 5754584.254044872]}, "properties": {"id": "518259753"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792598.1731648188, 5754429.259249955]}, "properties": {"id": "518259754"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792620.3932498121, 5754472.079363878]}, "properties": {"id": "518259758"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792592.9000093288, 5754375.11015276]}, "properties": {"id": "518259760"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792552.9343296646, 5754310.692481615]}, "properties": {"id": "518259761"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792567.9065748255, 5754311.094569964]}, "properties": {"id": "518259763"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792586.3472660063, 5754339.535802137]}, "properties": {"id": "518259765"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792567.609649465, 5754302.902613623]}, "properties": {"id": "518259766"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792559.0640847462, 5754237.712866706]}, "properties": {"id": "518259769"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792540.4560537185, 5754180.001295599]}, "properties": {"id": "518259770"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792533.958260267, 5754159.70777569]}, "properties": {"id": "518259773"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792570.0147449091, 5754189.744612537]}, "properties": {"id": "518259775"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792571.9500288637, 5754594.208493057]}, "properties": {"id": "518259776"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792636.9945597069, 5754578.046234813]}, "properties": {"id": "518259777"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792651.4629166124, 5754604.152784132]}, "properties": {"id": "518259778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792631.3946925229, 5754550.162142116]}, "properties": {"id": "518259779"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792630.4600909384, 5754506.503750356]}, "properties": {"id": "518259782"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791939.6624352583, 5754270.209627654]}, "properties": {"id": "518259818"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791935.021381712, 5754274.334325314]}, "properties": {"id": "518259820"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791805.1533769176, 5754311.707561049]}, "properties": {"id": "518259823"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791802.2289594288, 5754311.479841889]}, "properties": {"id": "518259824"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791789.6766083592, 5754322.53703305]}, "properties": {"id": "518259825"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791805.1978181573, 5754337.4031319935]}, "properties": {"id": "518259827"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791815.6135328847, 5754326.834406529]}, "properties": {"id": "518259829"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791937.0144975184, 5754290.700900079]}, "properties": {"id": "518259832"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791955.2680682156, 5754289.340454979]}, "properties": {"id": "518259834"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791953.6422067196, 5754271.749093423]}, "properties": {"id": "518259840"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791794.4586426738, 5754478.0810143845]}, "properties": {"id": "518259843"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791791.5657517225, 5754546.563161878]}, "properties": {"id": "518259846"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791587.945001589, 5754549.986305044]}, "properties": {"id": "518259852"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791661.965799252, 5754299.432697948]}, "properties": {"id": "518259854"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791635.3317328165, 5754375.452442435]}, "properties": {"id": "518259855"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791738.723212155, 5754390.288905876]}, "properties": {"id": "518259857"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791608.5522781918, 5754449.887895915]}, "properties": {"id": "518259858"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791562.4796433507, 5754322.366432428]}, "properties": {"id": "518259862"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791503.357433738, 5754565.7898313645]}, "properties": {"id": "518259865"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791573.4614153021, 5754305.642302683]}, "properties": {"id": "518259866"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791649.509754909, 5754204.096482492]}, "properties": {"id": "518259870"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791392.8514662655, 5754586.318163821]}, "properties": {"id": "518259871"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791399.7055384892, 5754595.451501675]}, "properties": {"id": "518259872"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791407.6621289263, 5754593.641574452]}, "properties": {"id": "518259886"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791410.7084113853, 5754588.75231082]}, "properties": {"id": "518259897"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791402.2874144915, 5754577.697139746]}, "properties": {"id": "518259899"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791397.5412250035, 5754567.276218947]}, "properties": {"id": "518259902"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791472.8496200966, 5754328.693370314]}, "properties": {"id": "518259904"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791344.5801235416, 5754136.984098099]}, "properties": {"id": "518259905"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791296.6750404297, 5754324.927723239]}, "properties": {"id": "518259907"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791287.9399258543, 5754341.31470974]}, "properties": {"id": "518259909"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791430.0633735559, 5754120.160278697]}, "properties": {"id": "518259935"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791301.2123015474, 5754605.241622226]}, "properties": {"id": "518259952"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791418.1716174149, 5754230.769171259]}, "properties": {"id": "518259953"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791581.8773823947, 5754136.928814006]}, "properties": {"id": "518259974"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791479.278225681, 5754311.011221957]}, "properties": {"id": "518259975"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791653.0185326056, 5754317.6839672495]}, "properties": {"id": "518259977"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791385.9450352235, 5754316.637331833]}, "properties": {"id": "518259979"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791381.7709917026, 5754333.9490188705]}, "properties": {"id": "518259988"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791461.7339414123, 5754357.237050245]}, "properties": {"id": "518259989"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791781.6336819127, 5754298.208730964]}, "properties": {"id": "518259990"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791697.8821545937, 5754278.18396054]}, "properties": {"id": "518259993"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790482.2898538457, 5751698.164778559]}, "properties": {"id": "518638127"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790432.680787195, 5751506.902339065]}, "properties": {"id": "518638174"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790447.166901482, 5751503.446368357]}, "properties": {"id": "518638211"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790448.1668645529, 5751587.3587915115]}, "properties": {"id": "518638236"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790461.8254047038, 5751584.254936223]}, "properties": {"id": "518638262"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790488.2805161795, 5751803.481966003]}, "properties": {"id": "518638287"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790502.9612163248, 5751800.552436405]}, "properties": {"id": "518638293"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790500.8828768658, 5751869.2376149595]}, "properties": {"id": "518638320"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790514.8938324812, 5751867.154677269]}, "properties": {"id": "518638346"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790591.2797576198, 5752101.966134212]}, "properties": {"id": "518641806"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783421.8631166343, 5750700.304218881]}, "properties": {"id": "519796861"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783303.0466822095, 5750027.300313101]}, "properties": {"id": "519796961"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780565.2283414996, 5752214.750548117]}, "properties": {"id": "519796992"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779812.5432368845, 5752356.985817903]}, "properties": {"id": "519797048"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771469.2894338118, 5749362.577394416]}, "properties": {"id": "519798222"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768931.8853291343, 5748609.578293238]}, "properties": {"id": "519798331"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773589.1265657903, 5750659.55552925]}, "properties": {"id": "519798469"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771844.5570921765, 5749691.074239657]}, "properties": {"id": "519798726"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772739.0991534465, 5750430.184164244]}, "properties": {"id": "519798785"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774230.8172123893, 5750864.682400251]}, "properties": {"id": "519798823"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774666.7955100406, 5746301.978958482]}, "properties": {"id": "519801355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775686.85396363, 5743775.748926459]}, "properties": {"id": "519802132"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778192.7816913186, 5746408.4661554955]}, "properties": {"id": "521373937"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783756.3312491945, 5746626.102352015]}, "properties": {"id": "5223787759"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833206.3454892606, 5806493.013871202]}, "properties": {"id": "5230414512"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833205.618897422, 5806517.7057611365]}, "properties": {"id": "5230414514"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757613.8115229425, 5743349.542359528]}, "properties": {"id": "524143035"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758438.7993420045, 5748193.260698985]}, "properties": {"id": "524143124"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757624.0224880527, 5749524.88722135]}, "properties": {"id": "524143381"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758072.0780296634, 5748726.7117162]}, "properties": {"id": "524143403"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765550.5100141437, 5737404.729427745]}, "properties": {"id": "524144995"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765571.665064083, 5737847.479938763]}, "properties": {"id": "524145121"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767283.4006808023, 5737718.488206133]}, "properties": {"id": "524149978"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766950.9449376205, 5737845.470558343]}, "properties": {"id": "524150541"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766964.347306869, 5737769.3189822985]}, "properties": {"id": "524150585"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767265.0603136197, 5737805.50585231]}, "properties": {"id": "524150619"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767152.8939166949, 5737783.626122977]}, "properties": {"id": "524150646"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767120.4283738285, 5737920.617263763]}, "properties": {"id": "524150681"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767267.6211511292, 5738018.626765423]}, "properties": {"id": "524150761"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767513.420775737, 5737779.431412622]}, "properties": {"id": "524150774"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767557.5235520978, 5737824.188519207]}, "properties": {"id": "524150941"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767655.7109572659, 5737964.149962402]}, "properties": {"id": "524151100"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767468.3660201045, 5738213.21371885]}, "properties": {"id": "524151403"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767715.8620476086, 5738284.883062502]}, "properties": {"id": "524151537"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767652.1211903878, 5738193.222395853]}, "properties": {"id": "524151559"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767563.663143105, 5738308.846805094]}, "properties": {"id": "524151618"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767818.6935827064, 5737838.081970976]}, "properties": {"id": "524151823"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767054.2419975525, 5738871.004107783]}, "properties": {"id": "524154222"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768079.8957438378, 5738725.565944494]}, "properties": {"id": "524154863"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768744.3334277022, 5739490.176196835]}, "properties": {"id": "524155183"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771177.1397268486, 5739119.898655685]}, "properties": {"id": "524155270"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771168.1075926195, 5739016.468865144]}, "properties": {"id": "524155309"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769231.0150740333, 5739856.716008992]}, "properties": {"id": "524155613"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769547.6240616455, 5740712.130750874]}, "properties": {"id": "524155778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770681.0840965167, 5740963.395326209]}, "properties": {"id": "524157006"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771749.0143746339, 5741953.7016861895]}, "properties": {"id": "524157083"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772294.5501682595, 5743783.951844871]}, "properties": {"id": "524157142"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772431.818722096, 5742440.400802239]}, "properties": {"id": "524157156"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772732.8333008399, 5743590.002167813]}, "properties": {"id": "524157168"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773524.1264198762, 5743330.610449353]}, "properties": {"id": "524157169"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760657.7069722335, 5746513.213446724]}, "properties": {"id": "524157177"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761551.3182195341, 5746199.372936876]}, "properties": {"id": "524157251"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759319.3863669425, 5747628.769431587]}, "properties": {"id": "524157310"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763346.4365710445, 5745599.830794997]}, "properties": {"id": "524157394"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764380.5542066123, 5745169.178238316]}, "properties": {"id": "524157439"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765963.571607746, 5744605.351618155]}, "properties": {"id": "524157466"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767904.3270061633, 5744715.463051729]}, "properties": {"id": "524157486"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768383.7770351269, 5744563.562461627]}, "properties": {"id": "524157508"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768902.1471392977, 5744501.394433075]}, "properties": {"id": "524157532"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769881.3517661234, 5744399.233203]}, "properties": {"id": "524157553"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755117.0163245522, 5841160.537523451]}, "properties": {"id": "52442365"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [730093.1107155936, 5755152.640818503]}, "properties": {"id": "52483789"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [733809.9409300298, 5756194.726653259]}, "properties": {"id": "52483799"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [734614.534308923, 5756162.291124753]}, "properties": {"id": "52483800"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [736887.33429344, 5756088.156553067]}, "properties": {"id": "52483802"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [743005.832982553, 5757102.647225298]}, "properties": {"id": "52483812"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761603.4536610353, 5762960.255004389]}, "properties": {"id": "52483838"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761958.8329550175, 5763417.627176956]}, "properties": {"id": "52483842"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762279.9929217089, 5763642.622438862]}, "properties": {"id": "52483843"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752049.456468561, 5746228.178773224]}, "properties": {"id": "52485285"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790133.6085390514, 5754035.761061681]}, "properties": {"id": "52493086"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795791.8683088745, 5756495.1165142]}, "properties": {"id": "52493670"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801122.8877275225, 5758751.9601923665]}, "properties": {"id": "52493994"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797226.1006051643, 5759560.071764734]}, "properties": {"id": "52494595"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794247.8870233397, 5771835.565179475]}, "properties": {"id": "52494741"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [805207.2823682522, 5766683.93762618]}, "properties": {"id": "52495522"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [812025.1532876068, 5761782.068406984]}, "properties": {"id": "52495525"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [814721.7169597894, 5759825.243687114]}, "properties": {"id": "52495527"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817823.8075391345, 5757825.376125136]}, "properties": {"id": "52495533"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818526.7895208674, 5757858.606111765]}, "properties": {"id": "52495536"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810635.012018563, 5762765.479962686]}, "properties": {"id": "5253392214"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792294.6521698959, 5754765.38441226]}, "properties": {"id": "5253399252"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792521.7379809527, 5754718.324117581]}, "properties": {"id": "5253399254"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792508.4541840788, 5754636.922872467]}, "properties": {"id": "5253399255"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792502.3759748603, 5754564.163466329]}, "properties": {"id": "5253399257"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792543.9476017954, 5754773.660076842]}, "properties": {"id": "5253399261"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792602.320012904, 5754919.393497948]}, "properties": {"id": "5253399263"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792507.0633423857, 5754935.48282685]}, "properties": {"id": "5253399264"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792482.8437875458, 5754798.803875889]}, "properties": {"id": "5253399265"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792319.2227666234, 5754834.206477193]}, "properties": {"id": "5253399266"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792400.7763091829, 5754815.8146834]}, "properties": {"id": "5253399268"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792425.5762459014, 5754955.740467566]}, "properties": {"id": "5253399269"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792344.923413077, 5754973.166124058]}, "properties": {"id": "5253399270"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792243.1809718012, 5754868.414237121]}, "properties": {"id": "5253399271"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792260.8548957636, 5754986.9689264055]}, "properties": {"id": "5253399273"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792280.1046037512, 5754682.394898157]}, "properties": {"id": "5253399275"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792333.2314565347, 5754671.8128174525]}, "properties": {"id": "5253399276"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792316.8226846037, 5754583.144404354]}, "properties": {"id": "5253399277"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792063.8474714148, 5754905.302730303]}, "properties": {"id": "5253402457"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792047.2621080825, 5754833.946047532]}, "properties": {"id": "5253402458"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792057.2441066825, 5754832.1955987215]}, "properties": {"id": "5253402462"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792021.0807455822, 5754641.119185043]}, "properties": {"id": "5253402463"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792105.0584143718, 5755136.120508486]}, "properties": {"id": "5253402953"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791528.9175427015, 5755186.331245102]}, "properties": {"id": "5253402956"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791813.7582722332, 5755361.445335072]}, "properties": {"id": "5253402957"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791772.4748851041, 5755150.935978856]}, "properties": {"id": "5253402958"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791750.940543944, 5755031.2644462865]}, "properties": {"id": "5253402959"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791853.6385190834, 5755141.278116712]}, "properties": {"id": "5253402960"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791862.9814992711, 5755193.3127795085]}, "properties": {"id": "5253402961"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791937.846296855, 5755143.146439668]}, "properties": {"id": "5253402962"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791957.0578634955, 5755248.39704971]}, "properties": {"id": "5253402963"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792039.292282776, 5755248.701919631]}, "properties": {"id": "5253402964"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792020.1262867865, 5755144.983585129]}, "properties": {"id": "5253402965"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766910.8222148098, 5743411.728063121]}, "properties": {"id": "526897787"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767875.7539795326, 5741736.428001705]}, "properties": {"id": "527903968"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767176.9845237958, 5742104.942760522]}, "properties": {"id": "527904157"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771290.6590676457, 5739709.870396704]}, "properties": {"id": "527904275"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771331.0978668975, 5741657.4595987005]}, "properties": {"id": "527904396"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772929.8822987545, 5742689.811143043]}, "properties": {"id": "527905336"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780419.5282353486, 5751274.59675417]}, "properties": {"id": "527905894"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784961.9973538943, 5748038.206661909]}, "properties": {"id": "528555639"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760955.4631255917, 5752247.426727078]}, "properties": {"id": "5304194121"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773903.6175525775, 5771305.365598052]}, "properties": {"id": "5320757593"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795046.0203861399, 5757236.136668639]}, "properties": {"id": "5320786925"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759486.796387623, 5729078.8837613445]}, "properties": {"id": "5328184538"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759425.2505900013, 5729073.1228556195]}, "properties": {"id": "5328184544"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759766.8312120241, 5729228.1378165735]}, "properties": {"id": "5328187031"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759825.7579506637, 5729289.460059825]}, "properties": {"id": "5328187032"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759837.1866890787, 5729252.288428156]}, "properties": {"id": "5328187033"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759850.0950308421, 5729270.114249188]}, "properties": {"id": "5328187034"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757860.178371186, 5729163.378291735]}, "properties": {"id": "5334282904"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754743.1729964786, 5744823.073188045]}, "properties": {"id": "534672768"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755905.0241002612, 5743953.5662510395]}, "properties": {"id": "534672792"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755586.9249218681, 5744255.865005888]}, "properties": {"id": "534672825"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755235.3953250663, 5744610.673514243]}, "properties": {"id": "534672843"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756342.3572822203, 5743642.58696683]}, "properties": {"id": "534672865"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758792.931021842, 5743432.431451457]}, "properties": {"id": "534672951"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757192.6754406942, 5743549.981060576]}, "properties": {"id": "534672993"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752916.55829983, 5747316.78602747]}, "properties": {"id": "534673014"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752886.9995544495, 5747339.279227782]}, "properties": {"id": "534673017"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754553.3019906803, 5745389.857422799]}, "properties": {"id": "534673062"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754178.856151487, 5746037.249095108]}, "properties": {"id": "534673103"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754101.5109248841, 5746538.555560193]}, "properties": {"id": "534673120"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759303.018735029, 5743331.979907937]}, "properties": {"id": "534674018"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759808.3713518106, 5743669.155732731]}, "properties": {"id": "534674168"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760293.818453913, 5744506.689705764]}, "properties": {"id": "534674871"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760031.0968250227, 5744509.907867545]}, "properties": {"id": "534674972"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760809.8214768792, 5744227.066826438]}, "properties": {"id": "534675465"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762570.2864353913, 5745857.560918304]}, "properties": {"id": "534677352"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764635.0304624743, 5751577.42758899]}, "properties": {"id": "534677844"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764059.9954661932, 5751748.648688864]}, "properties": {"id": "534677862"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765521.5417077604, 5750744.643616911]}, "properties": {"id": "534677914"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765210.2515810558, 5751474.193015142]}, "properties": {"id": "534677924"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765876.997269561, 5752381.294795198]}, "properties": {"id": "534677934"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766640.6677739295, 5752876.37603472]}, "properties": {"id": "534677960"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767155.4710745735, 5753069.987923437]}, "properties": {"id": "534677979"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768574.2432916501, 5753459.353965609]}, "properties": {"id": "534677981"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768880.1133631067, 5752901.651169845]}, "properties": {"id": "534677994"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770723.9996303837, 5753529.040243473]}, "properties": {"id": "534677996"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770138.0243630204, 5753580.410487404]}, "properties": {"id": "534677999"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769560.1680228146, 5753278.709133976]}, "properties": {"id": "534678008"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769024.4096519477, 5753010.559696184]}, "properties": {"id": "534678033"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772210.28519406, 5752867.142703193]}, "properties": {"id": "534678053"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771761.7163944042, 5753230.123337849]}, "properties": {"id": "534678091"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771788.2327713282, 5753599.46721347]}, "properties": {"id": "534678095"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771925.7164243925, 5754363.179173369]}, "properties": {"id": "534678110"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767383.0199005846, 5754367.751176539]}, "properties": {"id": "534678127"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767775.2467952218, 5754296.499875322]}, "properties": {"id": "534678187"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832105.1311718433, 5821368.388969801]}, "properties": {"id": "5350111002"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760448.151010358, 5752529.709275585]}, "properties": {"id": "535080576"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760549.4653991768, 5753057.294518398]}, "properties": {"id": "535080577"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759768.1568387621, 5753264.485672909]}, "properties": {"id": "535080581"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759145.0836285406, 5753378.609070648]}, "properties": {"id": "535080582"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762025.1334577856, 5752055.023750911]}, "properties": {"id": "535080583"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762453.9813459455, 5754416.704450381]}, "properties": {"id": "535080587"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764236.0379516061, 5752750.948670022]}, "properties": {"id": "535080591"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765360.5978891184, 5752265.951806983]}, "properties": {"id": "535080604"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768572.9738724758, 5754163.430768842]}, "properties": {"id": "535080609"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769559.5898783534, 5753995.882766052]}, "properties": {"id": "535080677"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770307.9777217791, 5753858.140695949]}, "properties": {"id": "535080679"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772500.4409283365, 5753463.97921571]}, "properties": {"id": "535080685"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762745.7923965165, 5754812.666208867]}, "properties": {"id": "535080701"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763409.6201246284, 5755095.800139948]}, "properties": {"id": "535080829"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764631.4589880127, 5754872.857825027]}, "properties": {"id": "535080866"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765783.706620808, 5754643.739214344]}, "properties": {"id": "535080893"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763761.4522884302, 5757104.9873714065]}, "properties": {"id": "535080913"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764541.8294021031, 5761436.809462007]}, "properties": {"id": "535080931"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768714.1205403237, 5754947.228052834]}, "properties": {"id": "535081132"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768394.7297313309, 5755359.466593894]}, "properties": {"id": "535081203"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769619.7578717474, 5754316.152643843]}, "properties": {"id": "535081284"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769393.0682819746, 5754830.614468824]}, "properties": {"id": "535081302"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770285.5286865837, 5754205.132400904]}, "properties": {"id": "535081459"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770217.1573329294, 5754778.846024252]}, "properties": {"id": "535081494"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770277.6933817072, 5754942.677234291]}, "properties": {"id": "535081498"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770450.1092428603, 5755461.012549862]}, "properties": {"id": "535081508"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769999.8348859639, 5755537.754106986]}, "properties": {"id": "535081509"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770465.8966871428, 5755451.371848019]}, "properties": {"id": "535081510"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769909.6423056691, 5755980.425061994]}, "properties": {"id": "535081517"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770064.0185348087, 5756853.6636562925]}, "properties": {"id": "535081518"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767046.5547967863, 5757764.96324123]}, "properties": {"id": "535081519"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768529.0556297963, 5757126.550363662]}, "properties": {"id": "535081527"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770002.7876797016, 5758894.080523422]}, "properties": {"id": "535081533"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770204.6781183309, 5758216.240315606]}, "properties": {"id": "535081534"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772234.1120384098, 5756065.579201625]}, "properties": {"id": "535081543"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771203.6717665002, 5756155.6330587985]}, "properties": {"id": "535081546"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774391.2890252451, 5757099.161319833]}, "properties": {"id": "535081548"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774545.3807943988, 5757745.950193863]}, "properties": {"id": "535081555"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770957.7124304329, 5756696.234711559]}, "properties": {"id": "535081558"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772691.9473283164, 5759894.2880546115]}, "properties": {"id": "535081559"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772223.3952502196, 5760050.300797992]}, "properties": {"id": "535081562"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773074.9648058151, 5759995.384107956]}, "properties": {"id": "535081565"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772995.80534043, 5760106.301312452]}, "properties": {"id": "535081566"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773111.3790509243, 5759941.293297526]}, "properties": {"id": "535081567"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773336.7645031011, 5760026.675889171]}, "properties": {"id": "535081568"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773526.2780512404, 5760163.838162882]}, "properties": {"id": "535081570"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773264.2376852534, 5760130.782217734]}, "properties": {"id": "535081573"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774207.7387272237, 5762155.41665285]}, "properties": {"id": "535081575"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783364.703923428, 5752183.94562066]}, "properties": {"id": "535081576"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783628.2344681411, 5753580.831393677]}, "properties": {"id": "535081577"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779641.4516332315, 5754326.173838642]}, "properties": {"id": "535081581"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779631.4932314614, 5754235.101994658]}, "properties": {"id": "535081582"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781433.693965662, 5753988.134363057]}, "properties": {"id": "535081583"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781365.2533872412, 5755654.979644856]}, "properties": {"id": "535081584"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783924.7014810045, 5755187.181273488]}, "properties": {"id": "535081622"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782608.634691821, 5756602.5491587585]}, "properties": {"id": "535081623"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783423.440002652, 5757056.040037351]}, "properties": {"id": "535081667"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785193.9965126247, 5758102.225476763]}, "properties": {"id": "535081690"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779305.4209919316, 5765776.828299727]}, "properties": {"id": "5365795891"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779283.7886574792, 5765777.0295607485]}, "properties": {"id": "5365795894"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [803810.3645568336, 5767378.849766369]}, "properties": {"id": "537508940"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791118.7090190952, 5758670.261534957]}, "properties": {"id": "539387489"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791137.8856331302, 5758683.3083900465]}, "properties": {"id": "539387491"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782396.196449911, 5747030.671076858]}, "properties": {"id": "5404632016"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791138.4257256007, 5754899.282519855]}, "properties": {"id": "5421407218"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791316.9223647106, 5754864.890282806]}, "properties": {"id": "5421407219"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791400.534902957, 5754847.7015580665]}, "properties": {"id": "5421407220"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791285.7826849625, 5754689.736024756]}, "properties": {"id": "5421408721"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791598.8865230677, 5754632.750983509]}, "properties": {"id": "5421408723"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791677.102262729, 5754617.032250801]}, "properties": {"id": "5421408724"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791755.3453680078, 5754601.834135956]}, "properties": {"id": "5421408725"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791776.7780761321, 5754567.748769725]}, "properties": {"id": "5421408733"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791828.1708314575, 5754556.210113058]}, "properties": {"id": "5421408736"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791906.9471047674, 5754541.00229191]}, "properties": {"id": "5421408737"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791988.8897717462, 5754527.146286353]}, "properties": {"id": "5421408739"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791293.9504406657, 5754736.734020465]}, "properties": {"id": "5421408740"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791332.4173934972, 5754729.055033034]}, "properties": {"id": "5421408741"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791892.0141255031, 5754695.247476424]}, "properties": {"id": "5421408742"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791934.3583138338, 5754687.269762422]}, "properties": {"id": "5421408743"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792016.1681169888, 5754672.362526701]}, "properties": {"id": "5421408744"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791835.0914054699, 5754598.418053705]}, "properties": {"id": "5421408745"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791763.3220952414, 5754643.47042621]}, "properties": {"id": "5421408746"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791685.0869306466, 5754658.657178812]}, "properties": {"id": "5421408747"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791605.72810989, 5754672.805616052]}, "properties": {"id": "5421408748"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792100.9212803831, 5755051.787216717]}, "properties": {"id": "5421415344"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792136.4392649594, 5755244.565143622]}, "properties": {"id": "5421415346"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792222.1894028983, 5755228.024397171]}, "properties": {"id": "5421415350"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792231.8700317799, 5755227.129403853]}, "properties": {"id": "5421415351"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792268.2865050366, 5755219.364729159]}, "properties": {"id": "5421415352"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792185.2438848276, 5755042.322826254]}, "properties": {"id": "5421415354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792192.2885563445, 5755043.134890294]}, "properties": {"id": "5421415356"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792234.1591699984, 5755036.784535772]}, "properties": {"id": "5421415358"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792247.0392681056, 5755273.34004129]}, "properties": {"id": "5421415360"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792697.644018434, 5754943.336076749]}, "properties": {"id": "5421425614"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792653.0488127156, 5754950.132227032]}, "properties": {"id": "5421425615"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792138.426204025, 5755286.651380573]}, "properties": {"id": "5421428360"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792151.0622165652, 5755284.649235929]}, "properties": {"id": "5421428361"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791726.8992473797, 5755377.64371426]}, "properties": {"id": "5421428362"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792134.6568458313, 5755301.570334726]}, "properties": {"id": "5421428363"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792145.3992299738, 5755311.862904554]}, "properties": {"id": "5421428364"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789863.2141683366, 5753345.5212786365]}, "properties": {"id": "5421457447"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789850.9247539507, 5753382.4404130755]}, "properties": {"id": "5421457450"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789215.3154215685, 5753056.243884803]}, "properties": {"id": "5421457455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789196.2986032892, 5753061.871435855]}, "properties": {"id": "5421457456"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789072.5551097719, 5753084.82239827]}, "properties": {"id": "5421457457"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789267.5163827196, 5752714.616390843]}, "properties": {"id": "5421465550"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789343.223329979, 5752682.89285639]}, "properties": {"id": "5421465551"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789449.2719458421, 5751480.8294861]}, "properties": {"id": "5421465902"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789476.0237513426, 5751480.336050047]}, "properties": {"id": "5421466930"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832638.6215847551, 5821277.793855337]}, "properties": {"id": "5427790022"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837686.2732675767, 5814836.025613962]}, "properties": {"id": "5430685148"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837699.3057129008, 5814844.653689072]}, "properties": {"id": "5430685149"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837180.7068619209, 5809931.261955023]}, "properties": {"id": "5468277474"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793804.6603925639, 5774726.517639567]}, "properties": {"id": "5468489801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816038.8652573813, 5758878.146056662]}, "properties": {"id": "5468651817"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816051.2515505832, 5758868.7342161015]}, "properties": {"id": "5468651818"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816047.1379472292, 5758860.823471123]}, "properties": {"id": "5468655922"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816032.781414786, 5758873.202964808]}, "properties": {"id": "5468655927"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816003.6242598298, 5758902.5264169425]}, "properties": {"id": "5468655928"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816083.4992343019, 5758840.890700833]}, "properties": {"id": "5468655929"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791219.9781402665, 5765105.385027444]}, "properties": {"id": "5481813912"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833326.330962118, 5817659.02368545]}, "properties": {"id": "5492934273"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833359.6141614747, 5817652.418059476]}, "properties": {"id": "5492934278"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795005.2376465164, 5771528.697381242]}, "properties": {"id": "5500087650"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781636.0932259464, 5834863.256871324]}, "properties": {"id": "5513735474"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780955.0469221135, 5834797.143759713]}, "properties": {"id": "5513735475"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782735.7613704057, 5835101.462540819]}, "properties": {"id": "5515265900"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [740347.550427458, 5722179.151786876]}, "properties": {"id": "551612319"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [740909.371953692, 5722469.654258438]}, "properties": {"id": "551612345"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [741406.4810109471, 5722539.788124948]}, "properties": {"id": "551612346"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [742325.0179288487, 5723537.792627506]}, "properties": {"id": "551612437"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [743602.9177261271, 5723973.449122391]}, "properties": {"id": "551612696"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744581.8677902522, 5724700.019494465]}, "properties": {"id": "551612767"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744365.5777915533, 5725351.1180571]}, "properties": {"id": "551612794"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744598.0144180603, 5725200.673034215]}, "properties": {"id": "551612831"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744273.2721415621, 5725829.565356562]}, "properties": {"id": "551612860"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744489.4974330768, 5726209.940230305]}, "properties": {"id": "551612890"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744431.636154625, 5726976.763986841]}, "properties": {"id": "551612936"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744456.2575511415, 5727440.016896099]}, "properties": {"id": "551612938"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744849.6661828998, 5727852.098338804]}, "properties": {"id": "551612948"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [745229.9966316344, 5728273.896296796]}, "properties": {"id": "551612959"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746057.8156397681, 5728438.552283845]}, "properties": {"id": "551612990"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746630.1167076163, 5728786.861279857]}, "properties": {"id": "551613013"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747577.7671683595, 5728796.578434621]}, "properties": {"id": "551613069"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747902.2979357612, 5729133.76499303]}, "properties": {"id": "551613087"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748039.0790523641, 5730136.370210176]}, "properties": {"id": "551613188"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748346.4024295754, 5729818.053054626]}, "properties": {"id": "551613208"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748527.016247655, 5730314.633287575]}, "properties": {"id": "551613233"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748463.7392451724, 5730847.6776120905]}, "properties": {"id": "551613310"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748382.1052173073, 5731477.513027302]}, "properties": {"id": "551613343"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748768.4461578577, 5731885.283993115]}, "properties": {"id": "551613374"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749006.409770749, 5732359.956482339]}, "properties": {"id": "551613425"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749052.6469568373, 5732847.683303445]}, "properties": {"id": "551613442"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749580.1131799165, 5733638.566630071]}, "properties": {"id": "551613470"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750141.935995308, 5734090.558710738]}, "properties": {"id": "551613503"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750434.6024555229, 5734846.789769515]}, "properties": {"id": "551613519"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751023.8875756763, 5734774.67068988]}, "properties": {"id": "551613583"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751707.463197387, 5735021.457995344]}, "properties": {"id": "551613597"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753060.7490037613, 5733306.204889637]}, "properties": {"id": "551613602"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754123.0305147471, 5736474.548889031]}, "properties": {"id": "551613703"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754888.7622891997, 5736902.179116237]}, "properties": {"id": "551613726"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [725839.1018638429, 5825643.84261485]}, "properties": {"id": "5523638554"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [738199.9323100393, 5756095.983260862]}, "properties": {"id": "5527572140"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [737540.9369966188, 5756098.058499587]}, "properties": {"id": "5527572150"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835489.7614810935, 5820926.718636574]}, "properties": {"id": "5549173095"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791627.9581947501, 5761331.73356825]}, "properties": {"id": "5550633336"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791600.6244464116, 5761339.620960304]}, "properties": {"id": "5550633339"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780748.5802042452, 5783948.699790745]}, "properties": {"id": "5550653282"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769077.0825743265, 5763904.861445474]}, "properties": {"id": "559367552"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768797.7425721125, 5762329.051021275]}, "properties": {"id": "559367553"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770665.5638990011, 5763615.649708078]}, "properties": {"id": "559367554"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770552.2136948489, 5771916.5332711935]}, "properties": {"id": "559367582"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760992.9926446332, 5763067.86160987]}, "properties": {"id": "559370710"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760984.5902740286, 5763073.599050321]}, "properties": {"id": "559370713"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761353.2733196514, 5763329.860901261]}, "properties": {"id": "559370716"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761773.722409228, 5763224.487367583]}, "properties": {"id": "559370730"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761748.4776480645, 5763268.691612593]}, "properties": {"id": "559370738"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761721.1916169021, 5763526.756329525]}, "properties": {"id": "559370741"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761854.9465747848, 5763338.546112329]}, "properties": {"id": "559370742"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762258.8828248063, 5763073.0620518485]}, "properties": {"id": "559370743"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761472.1751388834, 5763824.073375043]}, "properties": {"id": "559370748"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761538.2126341189, 5763810.91826606]}, "properties": {"id": "559370749"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761584.5651021114, 5763729.356155853]}, "properties": {"id": "559370757"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761829.9508872704, 5763599.870588534]}, "properties": {"id": "559370763"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761683.7931060626, 5763577.808579267]}, "properties": {"id": "559370764"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761699.7456935025, 5763778.509830354]}, "properties": {"id": "559370766"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762302.0146706298, 5763658.286351789]}, "properties": {"id": "559370768"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762005.4990187599, 5763720.665427523]}, "properties": {"id": "559370769"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762543.3683031901, 5763274.068572266]}, "properties": {"id": "559370771"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765462.3579518895, 5769642.755952326]}, "properties": {"id": "559370796"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770413.4662941794, 5778941.907341943]}, "properties": {"id": "559373260"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771403.313912554, 5774999.855845807]}, "properties": {"id": "5604390087"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770874.754919041, 5775527.641318258]}, "properties": {"id": "5604390096"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770545.0236909066, 5776145.86336301]}, "properties": {"id": "5604390100"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770310.6387957841, 5776588.368153292]}, "properties": {"id": "5604390102"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770175.8255141363, 5777257.386337588]}, "properties": {"id": "5604390107"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769961.1763791263, 5777260.526839486]}, "properties": {"id": "5604390114"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776131.5676266602, 5776678.809256586]}, "properties": {"id": "5604422668"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775657.1455740328, 5776507.080077954]}, "properties": {"id": "5604422691"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775827.8820004985, 5776091.403075517]}, "properties": {"id": "5604422704"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775678.4288849374, 5775246.288397243]}, "properties": {"id": "5604422712"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772751.9019503884, 5774817.784024241]}, "properties": {"id": "5604428464"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772562.5457353079, 5774222.600553378]}, "properties": {"id": "5604428480"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772481.8500960423, 5773522.092804255]}, "properties": {"id": "5604428486"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772344.8846724548, 5772764.934778185]}, "properties": {"id": "5604428491"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772232.4610090614, 5772177.631085913]}, "properties": {"id": "5604428494"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772132.6286390701, 5771628.507112759]}, "properties": {"id": "5604428499"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791793.1563000405, 5757843.57884407]}, "properties": {"id": "5604428831"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792591.7020099267, 5757693.309706474]}, "properties": {"id": "5604428846"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773626.8793270034, 5775400.03645116]}, "properties": {"id": "5604437251"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777607.5069442866, 5774707.721839472]}, "properties": {"id": "5604438369"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773473.6110997581, 5774676.792649852]}, "properties": {"id": "5604438397"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774316.2136743735, 5774524.588688431]}, "properties": {"id": "5604438407"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774410.992824222, 5775058.601657473]}, "properties": {"id": "5604444999"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774542.5051057844, 5775792.646409245]}, "properties": {"id": "5604445011"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774154.1735790087, 5776026.0956181735]}, "properties": {"id": "5604445675"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774040.307109978, 5775995.788323744]}, "properties": {"id": "5604445680"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773985.6266109353, 5775964.25129219]}, "properties": {"id": "5604445681"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773897.2454991138, 5775919.637446176]}, "properties": {"id": "5604445684"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773854.4149361225, 5775872.421276042]}, "properties": {"id": "5604445690"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774329.5429643721, 5776430.468617087]}, "properties": {"id": "5604450011"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773877.3955004404, 5776245.987854285]}, "properties": {"id": "5604450343"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773819.5142653503, 5776065.52349589]}, "properties": {"id": "5604450353"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773883.3900033716, 5775934.638857041]}, "properties": {"id": "5604450356"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774449.8954773345, 5776278.504643748]}, "properties": {"id": "5604453354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774437.2899566811, 5776314.922202468]}, "properties": {"id": "5604453359"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774338.1032176508, 5776429.457444348]}, "properties": {"id": "5604453394"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774337.8239955921, 5776438.6120799165]}, "properties": {"id": "5604453397"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785969.8740920565, 5758096.748816954]}, "properties": {"id": "5604780752"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785966.9647258332, 5757973.932352598]}, "properties": {"id": "5604780759"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785762.0917237995, 5757881.732962424]}, "properties": {"id": "5604780777"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786026.117488208, 5757998.74557687]}, "properties": {"id": "5604781747"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753261.3001017016, 5761480.225040667]}, "properties": {"id": "5605052094"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753427.8764726501, 5762399.930850895]}, "properties": {"id": "5605052096"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753567.1696542065, 5763172.861101316]}, "properties": {"id": "5605052097"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767991.6042474856, 5738023.973209258]}, "properties": {"id": "5605062312"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767993.6927770162, 5738035.504521874]}, "properties": {"id": "5605062319"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768184.4690295539, 5738137.4217308285]}, "properties": {"id": "5605062466"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801107.2504512535, 5768321.969535283]}, "properties": {"id": "560659214"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752592.8000918655, 5740930.400289471]}, "properties": {"id": "5607598647"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753601.2743447847, 5740775.588760565]}, "properties": {"id": "5607598663"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790819.5920019529, 5754431.191838825]}, "properties": {"id": "5621360587"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790793.6216563232, 5754304.165475]}, "properties": {"id": "5621360596"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791598.3121449344, 5755183.025047364]}, "properties": {"id": "5621360606"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791683.7577927606, 5755167.034532786]}, "properties": {"id": "5621360607"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791691.8237716826, 5755209.934712208]}, "properties": {"id": "5621360608"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791675.5816448322, 5755122.537818403]}, "properties": {"id": "5621360609"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791606.6896761106, 5755230.926724873]}, "properties": {"id": "5621360610"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791590.2724816895, 5755138.656737409]}, "properties": {"id": "5621360611"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838366.6938452027, 5818095.594980564]}, "properties": {"id": "5625951630"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785485.6444233479, 5754903.235628699]}, "properties": {"id": "5633787500"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838325.5126539186, 5803859.868524632]}, "properties": {"id": "5635786618"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833359.9803146239, 5817688.539916161]}, "properties": {"id": "5635814269"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833330.830619233, 5817687.517501637]}, "properties": {"id": "5635814270"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786886.4772480339, 5762227.491616901]}, "properties": {"id": "5640190001"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786926.6040848747, 5762205.105058991]}, "properties": {"id": "5640190002"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788657.900373853, 5750637.162238084]}, "properties": {"id": "5640651672"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750844.072595589, 5836723.940876767]}, "properties": {"id": "5642242408"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750861.7774776841, 5836723.582764633]}, "properties": {"id": "5642242409"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750865.3616278877, 5836743.280041555]}, "properties": {"id": "5642242410"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789942.4754441595, 5751536.245418434]}, "properties": {"id": "5642244499"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789928.5682591703, 5751519.284511287]}, "properties": {"id": "5642244500"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826049.3914966527, 5822442.047322022]}, "properties": {"id": "5642245566"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826018.6957472928, 5822444.460669479]}, "properties": {"id": "5642245568"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826021.4571833925, 5822471.645819817]}, "properties": {"id": "5642245569"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826053.234954, 5822465.531963494]}, "properties": {"id": "5642245570"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832111.8741703839, 5810499.034682075]}, "properties": {"id": "5642266066"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832137.9845860356, 5810460.631291815]}, "properties": {"id": "5642266068"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834853.5406923413, 5807900.962110945]}, "properties": {"id": "5642272360"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834885.0533737645, 5807882.864931686]}, "properties": {"id": "5642272361"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836787.1595402465, 5805983.234242702]}, "properties": {"id": "5642286721"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836784.7033648158, 5805952.600032542]}, "properties": {"id": "5642286722"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831836.2134340403, 5808361.963651387]}, "properties": {"id": "5642366126"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831808.3753978787, 5808364.411150107]}, "properties": {"id": "5642366127"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832881.8055630717, 5805022.456842042]}, "properties": {"id": "5642368851"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832875.5330422572, 5805001.729341293]}, "properties": {"id": "5642368852"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833443.6316759831, 5808086.061625561]}, "properties": {"id": "5642369714"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833447.4418807696, 5808126.0361879375]}, "properties": {"id": "5642369715"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833407.3496404917, 5808131.043641276]}, "properties": {"id": "5642369716"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835197.2388548483, 5820479.955077933]}, "properties": {"id": "5642426594"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836960.3549306788, 5816187.381056778]}, "properties": {"id": "5642431857"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836924.0477261149, 5816210.994130557]}, "properties": {"id": "5642431858"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759882.7440317313, 5753881.812571698]}, "properties": {"id": "5652392369"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760042.3865292829, 5754774.602011525]}, "properties": {"id": "5652392371"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760405.1282011687, 5756157.529579852]}, "properties": {"id": "5652392372"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762943.7500813873, 5769933.714017762]}, "properties": {"id": "5652424660"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763288.0456254077, 5772617.592910932]}, "properties": {"id": "5652435317"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792490.4507973897, 5754841.731398375]}, "properties": {"id": "5670261057"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792408.1182865256, 5754857.240233722]}, "properties": {"id": "5670261058"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792326.3672276869, 5754872.849411511]}, "properties": {"id": "5670261059"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789888.417866103, 5753147.734078691]}, "properties": {"id": "5673066980"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789909.1876454187, 5753255.231728278]}, "properties": {"id": "5673066981"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767309.9899803983, 5758726.182743314]}, "properties": {"id": "5676562697"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786821.1884728321, 5754377.98079079]}, "properties": {"id": "5678574443"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787051.336205417, 5754355.195482992]}, "properties": {"id": "5678574448"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790649.1156892753, 5752161.546041556]}, "properties": {"id": "5678574449"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790726.1319844492, 5752239.518098917]}, "properties": {"id": "5678574451"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790796.8131110288, 5754742.575545721]}, "properties": {"id": "5678574452"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790809.5210236667, 5755158.591244506]}, "properties": {"id": "5678574453"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777852.5261202907, 5743717.52357756]}, "properties": {"id": "5678581109"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777912.3796764596, 5743604.435203921]}, "properties": {"id": "5678581114"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [745879.6614088267, 5782026.327306917]}, "properties": {"id": "5705903669"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744606.368620751, 5782482.179731163]}, "properties": {"id": "5705903687"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [743615.4154674828, 5782838.870915316]}, "properties": {"id": "5705903695"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [743063.4381321569, 5783036.9172453545]}, "properties": {"id": "5705903703"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [742466.7883273623, 5783250.561443762]}, "properties": {"id": "5705903708"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [738962.2272570702, 5784723.927247646]}, "properties": {"id": "5705903930"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [738446.0861086034, 5784920.169536022]}, "properties": {"id": "5705903932"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [737835.2192917811, 5785152.853989152]}, "properties": {"id": "5705903935"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [735965.6146613125, 5786373.354125549]}, "properties": {"id": "5705903952"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [735578.3301826594, 5786702.560376483]}, "properties": {"id": "5705903953"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766840.1971021246, 5775396.551995923]}, "properties": {"id": "5706612757"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765962.1700482604, 5775253.915523235]}, "properties": {"id": "5706612762"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762969.9038877701, 5770863.998000833]}, "properties": {"id": "5706612763"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763170.7885265616, 5769369.41889681]}, "properties": {"id": "5706612774"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763367.9076125224, 5768876.973605771]}, "properties": {"id": "5706612778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763493.4681106769, 5767258.475292139]}, "properties": {"id": "5706612792"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763401.863006674, 5766749.949403382]}, "properties": {"id": "5706612794"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763239.9750722663, 5765845.590414889]}, "properties": {"id": "5706612798"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763148.8585847984, 5765324.4584330795]}, "properties": {"id": "5706612802"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838346.0318723076, 5803833.379537059]}, "properties": {"id": "5706693368"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794132.8268144501, 5777497.521066876]}, "properties": {"id": "5711728465"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834658.2692955739, 5805536.737065484]}, "properties": {"id": "571400149"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834480.587836775, 5805398.815317488]}, "properties": {"id": "571400150"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836402.3958903878, 5806028.087543443]}, "properties": {"id": "573105362"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836552.9254412146, 5806006.317087762]}, "properties": {"id": "573105376"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780866.6718984402, 5747460.856382624]}, "properties": {"id": "5743445299"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780879.930798558, 5747438.174867957]}, "properties": {"id": "5743445304"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [802297.8363177313, 5825972.884591462]}, "properties": {"id": "5748230691"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756740.5240817128, 5774360.819164311]}, "properties": {"id": "5784973446"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748346.5649802526, 5758390.207010226]}, "properties": {"id": "5817935459"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748880.5534639701, 5758540.309520661]}, "properties": {"id": "5817935464"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749495.9945674072, 5758832.888245416]}, "properties": {"id": "5817935472"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750160.0357694847, 5759085.091564719]}, "properties": {"id": "5817935476"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750640.9173755392, 5759246.559823255]}, "properties": {"id": "5817935477"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751477.4914358857, 5759537.603940264]}, "properties": {"id": "5817935479"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752565.2422313855, 5760016.657195523]}, "properties": {"id": "5817935486"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753053.0004344292, 5760259.222514969]}, "properties": {"id": "5817935488"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753649.1028002462, 5760573.533144023]}, "properties": {"id": "5817935490"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754328.3978319053, 5760957.42532489]}, "properties": {"id": "5817935492"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759517.4450120347, 5762206.78535575]}, "properties": {"id": "5817935499"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758155.8839296892, 5761677.46461806]}, "properties": {"id": "5817935504"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757163.5127674282, 5761358.062636559]}, "properties": {"id": "5817935511"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756657.0935501745, 5761289.442142382]}, "properties": {"id": "5817935512"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755726.2438217893, 5761158.404815419]}, "properties": {"id": "5817935514"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [743889.5292104622, 5757317.1884183055]}, "properties": {"id": "5817972245"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [744903.2775491704, 5757555.890105748]}, "properties": {"id": "5817972248"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [745591.5732513149, 5757717.895747365]}, "properties": {"id": "5817972249"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746346.6726443688, 5757840.936954881]}, "properties": {"id": "5817973355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [746324.8978286416, 5757839.767841577]}, "properties": {"id": "5817973356"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [827460.6062905826, 5815467.503595196]}, "properties": {"id": "582319452"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826797.1077799702, 5815652.8507165]}, "properties": {"id": "582320697"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [826322.5817798572, 5815831.244985139]}, "properties": {"id": "582325585"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [825839.1103863037, 5816093.0258445125]}, "properties": {"id": "582326921"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [824988.6282283078, 5816554.631173976]}, "properties": {"id": "582329658"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [824499.4834020892, 5816770.698885212]}, "properties": {"id": "582330186"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835356.670875837, 5819465.239809204]}, "properties": {"id": "583087209"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753687.2342380374, 5736165.168335216]}, "properties": {"id": "5833441549"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754355.6105170622, 5736715.038840792]}, "properties": {"id": "5833441551"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752165.9835734697, 5743145.344744689]}, "properties": {"id": "5838931152"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752616.3310900042, 5743076.025260545]}, "properties": {"id": "5838931153"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756667.4384499723, 5731741.301763702]}, "properties": {"id": "5838943768"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756362.6779488523, 5731998.898244529]}, "properties": {"id": "5838943775"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756119.8971886944, 5731995.118169397]}, "properties": {"id": "5838943989"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833467.2827370819, 5821196.27457022]}, "properties": {"id": "584248057"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833449.6883656697, 5821199.465232262]}, "properties": {"id": "584248061"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837208.5190323468, 5819018.745210027]}, "properties": {"id": "585216209"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837202.0275872534, 5819026.116080623]}, "properties": {"id": "585216210"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836860.0893741376, 5819453.871395659]}, "properties": {"id": "585216276"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837083.2922278583, 5819172.478140971]}, "properties": {"id": "585216289"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761105.39280436, 5762777.578381436]}, "properties": {"id": "5857617037"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761100.7799931498, 5762791.582340685]}, "properties": {"id": "5857617038"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760454.855390273, 5762561.472383756]}, "properties": {"id": "5857617039"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754822.3862244976, 5761068.13121027]}, "properties": {"id": "5857617065"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754820.8352246886, 5761033.916551041]}, "properties": {"id": "5857617066"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758911.2569720795, 5762038.726505709]}, "properties": {"id": "5857617067"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751829.3548523078, 5759626.92730535]}, "properties": {"id": "5857617070"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [727059.6202034432, 5753641.485963989]}, "properties": {"id": "5857624638"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778696.7235854369, 5766981.53674746]}, "properties": {"id": "5891541447"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759226.0210698659, 5730221.957302473]}, "properties": {"id": "5927118214"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759210.1925813998, 5729247.591564284]}, "properties": {"id": "5927118216"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770606.668767553, 5738020.8661150085]}, "properties": {"id": "5927118217"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759275.4402312743, 5730228.924191864]}, "properties": {"id": "5927118219"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832082.7955327224, 5821372.768169595]}, "properties": {"id": "5931587936"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832086.6569310047, 5821392.315093925]}, "properties": {"id": "5931587937"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832633.4601111048, 5821263.725434182]}, "properties": {"id": "5931587939"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832589.9063415993, 5804077.620864481]}, "properties": {"id": "593267455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767888.6366277209, 5757219.5169109]}, "properties": {"id": "5934622851"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767973.5145879319, 5757760.340935328]}, "properties": {"id": "5934622855"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759363.9133962898, 5751118.842372846]}, "properties": {"id": "5934622869"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764643.0580842819, 5753780.986630501]}, "properties": {"id": "5934622883"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772255.4115641307, 5756186.206620464]}, "properties": {"id": "5934622989"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764568.3823490653, 5753415.438073496]}, "properties": {"id": "5934623002"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762046.2818711305, 5758015.332490007]}, "properties": {"id": "5934623052"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759591.4200830173, 5750429.569746522]}, "properties": {"id": "5934623062"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773424.5828656498, 5755385.24240302]}, "properties": {"id": "5934623077"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773347.1213165191, 5754942.592458568]}, "properties": {"id": "5934623101"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772878.2241404881, 5755896.757482118]}, "properties": {"id": "5934623126"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768034.5970556086, 5757824.396045349]}, "properties": {"id": "5934623177"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789973.1302866775, 5753485.682421386]}, "properties": {"id": "5956023053"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789917.8242230773, 5753495.127436656]}, "properties": {"id": "5956023054"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783448.8744819318, 5771908.817816538]}, "properties": {"id": "5956032702"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777916.3654618703, 5771775.263014041]}, "properties": {"id": "5956032708"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782791.5298897678, 5771970.156110871]}, "properties": {"id": "5956032718"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818990.862057684, 5821262.951642096]}, "properties": {"id": "5973412089"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [819406.8482512473, 5820856.096311732]}, "properties": {"id": "5973412090"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817815.6938501328, 5822084.008473419]}, "properties": {"id": "5976736988"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829279.9708150639, 5821921.731676894]}, "properties": {"id": "598036402"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [724818.3580849222, 5790129.151985507]}, "properties": {"id": "598478961"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [723861.3536913205, 5791005.778665329]}, "properties": {"id": "598478963"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751634.2149278458, 5781200.45125058]}, "properties": {"id": "598480551"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786220.967493108, 5753938.55646854]}, "properties": {"id": "5984995359"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761422.6415009401, 5761873.371061081]}, "properties": {"id": "5992467352"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761441.3660012417, 5761981.052124039]}, "properties": {"id": "5992467353"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833946.6936023396, 5804537.911557989]}, "properties": {"id": "599450927"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833285.5035286194, 5820606.3911232725]}, "properties": {"id": "599479818"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [812281.6021056321, 5822960.325087001]}, "properties": {"id": "59961459"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817206.2659454034, 5821922.122163385]}, "properties": {"id": "59961468"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818596.3205186182, 5821648.5986647615]}, "properties": {"id": "59961470"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817473.4672565339, 5821931.044166807]}, "properties": {"id": "59961698"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817752.2135865605, 5822071.123284263]}, "properties": {"id": "59961700"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817823.9217450217, 5822186.39853817]}, "properties": {"id": "59961701"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817866.6674514161, 5822051.529774898]}, "properties": {"id": "59961704"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771038.7623960852, 5753731.363934128]}, "properties": {"id": "6004713620"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [736917.2135775287, 5733410.913138325]}, "properties": {"id": "60080"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [734597.2789932747, 5727382.349852208]}, "properties": {"id": "60080-1"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [737274.0612873232, 5721699.789830206]}, "properties": {"id": "60080-2"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [735443.9209468057, 5719343.537588653]}, "properties": {"id": "60080-3"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [736835.2638836813, 5714897.2185761]}, "properties": {"id": "60085-4"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [809553.5894234574, 5763519.254078475]}, "properties": {"id": "601290427"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833074.0350776088, 5819964.423236141]}, "properties": {"id": "601349059"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833879.1422700256, 5817626.970671378]}, "properties": {"id": "601349706"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833831.4976164056, 5817647.70324198]}, "properties": {"id": "601349707"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834537.2938620821, 5817597.453915134]}, "properties": {"id": "601349794"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834028.4046544645, 5817641.403026483]}, "properties": {"id": "601357359"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834027.7866649952, 5817625.939208036]}, "properties": {"id": "601357373"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830180.9436354451, 5825240.301601048]}, "properties": {"id": "601375324"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766224.4251597268, 5750314.887671949]}, "properties": {"id": "601757141"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793853.2633746966, 5774901.291863698]}, "properties": {"id": "60278256"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770606.5739219721, 5738119.147435802]}, "properties": {"id": "60287154"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770774.7995112956, 5738079.12726974]}, "properties": {"id": "60287160"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770781.7486272377, 5738021.197178157]}, "properties": {"id": "60287163"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833233.3274810144, 5821073.112865429]}, "properties": {"id": "602912177"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752153.3334299256, 5839006.85479681]}, "properties": {"id": "60303498"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752147.798316893, 5838975.4535494]}, "properties": {"id": "60303500"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752191.9848537799, 5839229.932151066]}, "properties": {"id": "60303501"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762415.638141318, 5823510.431396782]}, "properties": {"id": "60303694"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767409.0204418761, 5811414.955662515]}, "properties": {"id": "60303816"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769677.2861483851, 5807878.918313818]}, "properties": {"id": "60303822"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770690.8899999443, 5804334.842230185]}, "properties": {"id": "60303830"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771588.993702815, 5800280.810771732]}, "properties": {"id": "60303837"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773234.7970111409, 5798307.092158579]}, "properties": {"id": "60303840"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774012.0383330572, 5797282.20767234]}, "properties": {"id": "60303842"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776688.7433696938, 5790552.286205993]}, "properties": {"id": "60303848"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779016.2724485166, 5785885.331136827]}, "properties": {"id": "60303855"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779485.4509375296, 5785377.191611858]}, "properties": {"id": "60303856"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780086.2562971099, 5784711.955525137]}, "properties": {"id": "60303857"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781887.076495548, 5782729.404038218]}, "properties": {"id": "60303859"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782761.8023737615, 5781745.640110695]}, "properties": {"id": "60303860"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783128.2125461942, 5781344.609063601]}, "properties": {"id": "60303861"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777550.9905967615, 5761526.407563965]}, "properties": {"id": "6032443276"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781127.3465557528, 5757607.926694919]}, "properties": {"id": "6032632249"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780915.7836515829, 5756381.868458455]}, "properties": {"id": "6032632252"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832814.8401072731, 5821228.780260545]}, "properties": {"id": "603438238"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833418.4656904615, 5821102.202518079]}, "properties": {"id": "603450883"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834125.6058599567, 5822397.609175699]}, "properties": {"id": "603452595"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833810.5043724478, 5822099.841160081]}, "properties": {"id": "603452633"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833829.0498413837, 5822056.54990803]}, "properties": {"id": "603452955"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833820.3902594536, 5822064.627869295]}, "properties": {"id": "603452959"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833927.9112242856, 5822175.192208612]}, "properties": {"id": "603452964"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833198.138884567, 5820307.2200894905]}, "properties": {"id": "603461897"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833178.150870724, 5820309.061619351]}, "properties": {"id": "603462038"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833180.4460876081, 5820316.674289782]}, "properties": {"id": "603462042"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833377.627372259, 5820968.9917648425]}, "properties": {"id": "603462818"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833566.8970061062, 5820966.566695383]}, "properties": {"id": "603462846"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833403.7264960972, 5820992.620972851]}, "properties": {"id": "603462866"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833333.0811639366, 5821064.0904963575]}, "properties": {"id": "603462869"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833407.2662277416, 5821067.96416049]}, "properties": {"id": "603462880"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833432.4656596517, 5821087.9048423655]}, "properties": {"id": "603462890"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833434.748461702, 5821030.716982938]}, "properties": {"id": "603462904"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [806406.3586219333, 5765828.6438202355]}, "properties": {"id": "6049540079"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831549.1417266962, 5821500.1465720665]}, "properties": {"id": "605203284"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830988.5481941206, 5821612.147503382]}, "properties": {"id": "605203301"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830675.4097929297, 5821649.141448221]}, "properties": {"id": "605203941"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830677.4684569819, 5821672.952594104]}, "properties": {"id": "605203942"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830166.8064279361, 5821773.9329009205]}, "properties": {"id": "605208462"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830179.765437704, 5821771.446398949]}, "properties": {"id": "605208464"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829787.1777867177, 5821847.407878037]}, "properties": {"id": "605209721"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [829801.1659370842, 5821844.803032297]}, "properties": {"id": "605209735"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791878.0824302626, 5762702.838832928]}, "properties": {"id": "6073128000"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782262.6689227766, 5764055.105856251]}, "properties": {"id": "6076265211"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781948.4040065769, 5762262.740355576]}, "properties": {"id": "6076265226"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781678.2278811798, 5760775.626823233]}, "properties": {"id": "6076265230"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781591.6387560795, 5760253.073125121]}, "properties": {"id": "6076265234"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781458.3391607425, 5759458.703045199]}, "properties": {"id": "6076265239"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790132.6362569638, 5754042.086813057]}, "properties": {"id": "6076622243"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790130.948267163, 5754053.106376537]}, "properties": {"id": "6076622252"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838619.0024609313, 5805419.033449526]}, "properties": {"id": "608107551"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792817.0983574117, 5767779.909207989]}, "properties": {"id": "610643258"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764399.458657058, 5760655.058588141]}, "properties": {"id": "614507351"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769769.452788624, 5759676.934805469]}, "properties": {"id": "614507406"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762238.5771649278, 5762785.525504897]}, "properties": {"id": "614531127"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763364.6574370936, 5761643.719523931]}, "properties": {"id": "614531167"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763760.8685363785, 5763860.760276893]}, "properties": {"id": "614531192"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763543.4679957156, 5762659.7144642435]}, "properties": {"id": "614531205"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [763438.9455643402, 5762060.521038535]}, "properties": {"id": "614531219"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769540.25556486, 5760534.010715193]}, "properties": {"id": "614531246"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [778903.6401119956, 5768091.7538195215]}, "properties": {"id": "614531651"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777697.5765679122, 5770601.619195262]}, "properties": {"id": "614531655"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [779311.6127274344, 5770305.803330624]}, "properties": {"id": "614531656"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838556.9677269123, 5805137.653784006]}, "properties": {"id": "615241055"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838554.5267566089, 5805124.443805709]}, "properties": {"id": "615241058"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [804979.3190780925, 5787295.585671995]}, "properties": {"id": "616936239"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [804488.6887591239, 5786836.216263715]}, "properties": {"id": "616936293"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [803756.0946667057, 5786643.796044217]}, "properties": {"id": "616936360"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796645.8665374, 5756664.751829812]}, "properties": {"id": "616942050"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796578.7838471091, 5758860.985678975]}, "properties": {"id": "616942600"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796725.026223979, 5759644.588963718]}, "properties": {"id": "616942601"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [803824.4709068425, 5786708.609813968]}, "properties": {"id": "616948949"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [812809.5981960003, 5791896.09784885]}, "properties": {"id": "616951642"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783193.0975893779, 5760071.578623076]}, "properties": {"id": "616997232"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783422.1903957813, 5761240.182550224]}, "properties": {"id": "616997571"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783692.2880987604, 5762833.403781643]}, "properties": {"id": "616999271"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798792.5830074709, 5783613.191734745]}, "properties": {"id": "617475562"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798824.8216068086, 5783683.356557852]}, "properties": {"id": "617475563"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798238.3918192913, 5783077.559607344]}, "properties": {"id": "617475616"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798063.3317527543, 5782911.373995843]}, "properties": {"id": "617475650"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794339.5541578217, 5756528.572211787]}, "properties": {"id": "617920869"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791800.7757514799, 5753519.7430576645]}, "properties": {"id": "617928631"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791795.6477467674, 5753502.156060477]}, "properties": {"id": "617928632"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789832.3427967031, 5754087.019678946]}, "properties": {"id": "617928939"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789540.911154909, 5754140.303564074]}, "properties": {"id": "617928940"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789997.3308182416, 5754056.341331568]}, "properties": {"id": "617928941"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [801047.1364605732, 5785497.842324017]}, "properties": {"id": "619112894"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [799494.281985384, 5784272.297081155]}, "properties": {"id": "619532812"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789542.4277758991, 5758776.48192965]}, "properties": {"id": "619562768"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751790.3626810793, 5841137.780734507]}, "properties": {"id": "619565625"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751802.1060887701, 5841136.524736266]}, "properties": {"id": "619565627"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795519.9331009754, 5780444.652706167]}, "properties": {"id": "619754853"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795583.4251748833, 5780507.21237991]}, "properties": {"id": "619754860"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794300.9912578121, 5778295.260500646]}, "properties": {"id": "621549604"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794270.3498689033, 5778278.863689505]}, "properties": {"id": "621549608"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794307.0213219412, 5778326.4630213715]}, "properties": {"id": "621549688"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794359.5641782114, 5778745.701382748]}, "properties": {"id": "621549704"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794386.6397995575, 5778748.467303715]}, "properties": {"id": "621549705"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792152.5883109989, 5775765.934372057]}, "properties": {"id": "622320061"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [811672.8522683994, 5791112.200038212]}, "properties": {"id": "628549525"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [811718.579486728, 5791110.455292225]}, "properties": {"id": "628549553"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [811203.6739974513, 5790821.960875621]}, "properties": {"id": "628549556"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [811277.0962626269, 5790834.904161949]}, "properties": {"id": "628549557"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816965.2077048337, 5757886.5565498]}, "properties": {"id": "631416076"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817045.9714475803, 5757836.615247862]}, "properties": {"id": "631416318"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817050.5516043326, 5757833.389236211]}, "properties": {"id": "631416323"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817094.6944992444, 5757801.749936119]}, "properties": {"id": "631416339"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817112.0400675624, 5757793.709225318]}, "properties": {"id": "631416519"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817106.6928442648, 5757772.917096118]}, "properties": {"id": "631416523"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817082.1246684758, 5757784.743351829]}, "properties": {"id": "631416524"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817043.4525203974, 5757828.93145531]}, "properties": {"id": "631418007"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817212.0551399023, 5757767.58152093]}, "properties": {"id": "631418011"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817208.5943720257, 5757760.246037305]}, "properties": {"id": "631418012"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817206.7780716445, 5757768.011007187]}, "properties": {"id": "631418013"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [816501.7068734374, 5758538.198194456]}, "properties": {"id": "631420121"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [727909.4322011643, 5753671.369045679]}, "properties": {"id": "632016236"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [728643.7497330616, 5753886.588303092]}, "properties": {"id": "632016237"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [728921.9208323327, 5754134.809457954]}, "properties": {"id": "632016240"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [730733.5794099404, 5755547.117734688]}, "properties": {"id": "632016243"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [731363.1611096284, 5755750.263921547]}, "properties": {"id": "632016244"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [733079.5822071233, 5756329.608552338]}, "properties": {"id": "632016247"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [735875.4761824238, 5756103.582691009]}, "properties": {"id": "632016249"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [813858.8741562297, 5760457.010230289]}, "properties": {"id": "632107409"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [815589.8007481659, 5759198.970086793]}, "properties": {"id": "632110348"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796661.302034767, 5781550.634372869]}, "properties": {"id": "632191149"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797601.4836263271, 5782607.061814709]}, "properties": {"id": "633091158"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791133.0059356494, 5776834.065884154]}, "properties": {"id": "639606175"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775527.174860089, 5753169.641980711]}, "properties": {"id": "648849091"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793942.7186398549, 5775426.518369449]}, "properties": {"id": "651255267"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752017.1273399282, 5839865.846348586]}, "properties": {"id": "651421116"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752006.9805551153, 5839860.211675536]}, "properties": {"id": "651421125"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751716.6865395976, 5847888.07362012]}, "properties": {"id": "654949911"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756044.6454669213, 5744699.375747014]}, "properties": {"id": "655150560"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756590.4531753957, 5744256.316319333]}, "properties": {"id": "655150562"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753725.2073186957, 5747147.567980701]}, "properties": {"id": "655150569"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754872.8893180672, 5746591.631824623]}, "properties": {"id": "655150578"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755679.5021514535, 5745484.046864325]}, "properties": {"id": "655150594"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755245.0103528774, 5746256.783524846]}, "properties": {"id": "655150599"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755232.6919077595, 5746309.226558067]}, "properties": {"id": "655150600"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749083.403949877, 5836133.356924178]}, "properties": {"id": "655405112"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818516.0758945646, 5795497.933732825]}, "properties": {"id": "661569043"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817958.9525063754, 5795175.881124706]}, "properties": {"id": "661569159"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [817979.5919346064, 5795160.037140358]}, "properties": {"id": "661569207"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [819287.432388958, 5795884.303737854]}, "properties": {"id": "661569593"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833746.5540779198, 5809609.793736878]}, "properties": {"id": "661586136"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834377.0103457607, 5809495.6260815915]}, "properties": {"id": "661586444"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833373.0299285443, 5809670.919186942]}, "properties": {"id": "661586801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832801.5292461913, 5809730.5943284705]}, "properties": {"id": "661586957"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830827.6930079401, 5824774.001973368]}, "properties": {"id": "665607775"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830304.0199058531, 5825224.896722218]}, "properties": {"id": "665607819"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769141.1243059975, 5737737.528255588]}, "properties": {"id": "665716928"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769078.2866588924, 5737965.424065503]}, "properties": {"id": "665716939"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768980.6169834638, 5738096.742959815]}, "properties": {"id": "665716940"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768955.5144864673, 5738189.79300382]}, "properties": {"id": "665716942"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769115.2124099622, 5737987.988787461]}, "properties": {"id": "665716975"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769180.8341129345, 5737850.964082922]}, "properties": {"id": "665716978"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768809.9358724051, 5738224.048891712]}, "properties": {"id": "665717000"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768829.6365569715, 5738056.506391225]}, "properties": {"id": "665717004"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768854.4334031848, 5737858.301176732]}, "properties": {"id": "665717007"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769106.7983568708, 5738051.566073613]}, "properties": {"id": "665717094"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831998.1353376874, 5809547.365194403]}, "properties": {"id": "666604911"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831970.2366991262, 5809421.947205573]}, "properties": {"id": "666605093"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831903.1263000704, 5808873.502034236]}, "properties": {"id": "666608272"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832107.7485652473, 5810461.341286335]}, "properties": {"id": "666623092"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832243.0865477961, 5811298.66865136]}, "properties": {"id": "666715008"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830127.8922814648, 5810895.832541559]}, "properties": {"id": "666800965"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830004.9687834413, 5812427.143330248]}, "properties": {"id": "666801140"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [798450.9952170888, 5769293.117561737]}, "properties": {"id": "668716088"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786837.8026915225, 5761910.812089421]}, "properties": {"id": "669240092"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786942.5182324187, 5762225.509085664]}, "properties": {"id": "669261482"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786885.952749665, 5762205.3905064445]}, "properties": {"id": "669261487"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786985.6258445341, 5762209.724880399]}, "properties": {"id": "669264537"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786896.7098340003, 5762130.546006676]}, "properties": {"id": "669264547"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787093.8635539471, 5762192.093153381]}, "properties": {"id": "669264562"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790823.0352223197, 5753645.545124769]}, "properties": {"id": "669536038"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750831.1505974124, 5836424.035361221]}, "properties": {"id": "672665697"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749509.6621827424, 5836213.4184738565]}, "properties": {"id": "672690933"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751751.3213740302, 5842763.0244974]}, "properties": {"id": "673004427"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790229.9750993559, 5773340.931344876]}, "properties": {"id": "690279991"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [733814.3676213988, 5750982.622713566]}, "properties": {"id": "70045-1"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [735839.9488720796, 5743396.247657791]}, "properties": {"id": "70045-2"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [733164.8278629796, 5736675.448078691]}, "properties": {"id": "70045-3"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [743436.1410364665, 5749624.799207684]}, "properties": {"id": "70145-1"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [741857.0975801933, 5738391.103962447]}, "properties": {"id": "70145-2"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [738680.1130666233, 5737391.530601182]}, "properties": {"id": "70145-3"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785203.8730217391, 5780196.022999446]}, "properties": {"id": "701713017"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794023.365711736, 5771913.8114287015]}, "properties": {"id": "705048767"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793724.1303478049, 5772035.856346935]}, "properties": {"id": "705048771"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794888.3700566895, 5771562.93158372]}, "properties": {"id": "705053897"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795014.813899396, 5771512.555287271]}, "properties": {"id": "705054511"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795324.6294191709, 5771388.66269678]}, "properties": {"id": "705055387"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795314.9064504567, 5771392.550968155]}, "properties": {"id": "705055388"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795714.9484073049, 5771216.342744189]}, "properties": {"id": "705057599"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [737290.5657309262, 5830700.529607164]}, "properties": {"id": "707310491"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773057.4504329443, 5838224.2056480255]}, "properties": {"id": "715261585"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769710.7516812605, 5839953.594835524]}, "properties": {"id": "715308254"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836735.8538739507, 5819612.738675743]}, "properties": {"id": "716027818"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836716.67863132, 5819612.821178509]}, "properties": {"id": "716027910"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [807702.3892221837, 5823344.862167002]}, "properties": {"id": "716679778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [809665.8858409623, 5822740.81403926]}, "properties": {"id": "716679848"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810202.3515081999, 5822766.875549031]}, "properties": {"id": "716679886"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810796.4405216333, 5822911.738501797]}, "properties": {"id": "716679944"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [807236.0581496053, 5823371.602056822]}, "properties": {"id": "716679984"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [809639.0583221022, 5822767.386344217]}, "properties": {"id": "716680030"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810312.9293883025, 5822801.49002729]}, "properties": {"id": "716680041"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810795.5951292561, 5822933.390369162]}, "properties": {"id": "716680047"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [807120.7009604049, 5823356.143059447]}, "properties": {"id": "716684314"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789165.1822492828, 5833339.324341106]}, "properties": {"id": "718486672"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788929.0423245588, 5833384.383117471]}, "properties": {"id": "718487062"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762325.3445786788, 5763120.518369329]}, "properties": {"id": "723899192"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761453.9050356626, 5763399.242253847]}, "properties": {"id": "723913587"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759975.1702240054, 5773678.339673657]}, "properties": {"id": "724309209"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760075.6809226325, 5766807.811399954]}, "properties": {"id": "724309214"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759546.2681442694, 5774174.792393533]}, "properties": {"id": "724309228"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785909.1347475142, 5834666.607262967]}, "properties": {"id": "741906560"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785946.1596922249, 5834695.087904027]}, "properties": {"id": "741906561"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786609.7575757524, 5834495.492577474]}, "properties": {"id": "741906565"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787131.730330322, 5834138.52209276]}, "properties": {"id": "741906566"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838496.424804303, 5809685.44657159]}, "properties": {"id": "75141976"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838044.7574985719, 5809770.397862801]}, "properties": {"id": "75141979"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837888.5624778878, 5808568.728148183]}, "properties": {"id": "75143139"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837468.8485480953, 5808646.346583122]}, "properties": {"id": "75143916"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836728.7390446905, 5808759.607314132]}, "properties": {"id": "75146073"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836228.5925251078, 5808842.735630278]}, "properties": {"id": "75146077"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836207.5159005481, 5808846.622538846]}, "properties": {"id": "75146079"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836236.7286190428, 5808866.065217642]}, "properties": {"id": "75146088"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836235.4951815994, 5808848.858074327]}, "properties": {"id": "75146091"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836025.9627852805, 5807734.618572827]}, "properties": {"id": "75148588"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836028.9007743483, 5807710.480066734]}, "properties": {"id": "75148590"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835999.1685016885, 5807708.638426624]}, "properties": {"id": "75148594"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835996.112802934, 5807713.511482838]}, "properties": {"id": "75148597"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836000.6533167539, 5807734.586406769]}, "properties": {"id": "75148599"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [836009.3050959969, 5807739.069525164]}, "properties": {"id": "75148601"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833398.0064124733, 5808097.097856313]}, "properties": {"id": "75155383"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832766.095564199, 5808196.015881652]}, "properties": {"id": "75155390"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832419.3138809951, 5808248.916225176]}, "properties": {"id": "75155391"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [831832.2139336081, 5808323.875945105]}, "properties": {"id": "75155397"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834881.7161307106, 5807904.650492538]}, "properties": {"id": "75156599"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835192.5650532093, 5807857.212934155]}, "properties": {"id": "75156602"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835194.4008013313, 5807902.85015304]}, "properties": {"id": "75156941"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835230.8084813419, 5808350.401875716]}, "properties": {"id": "75156943"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835252.6913528542, 5808307.499622606]}, "properties": {"id": "75156957"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835312.6546850035, 5807884.802945809]}, "properties": {"id": "75157208"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835307.821926892, 5807842.045648806]}, "properties": {"id": "75157210"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835302.7427748259, 5807820.481024984]}, "properties": {"id": "75157621"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835365.7110523591, 5807259.266851621]}, "properties": {"id": "75158541"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835191.4372512235, 5807791.743052645]}, "properties": {"id": "75158825"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835187.9381282185, 5807804.784417812]}, "properties": {"id": "75158826"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835188.9749676437, 5807835.598630518]}, "properties": {"id": "75158828"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833577.3250126061, 5804600.270384775]}, "properties": {"id": "75203366"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833462.9761428392, 5804617.760813806]}, "properties": {"id": "75203367"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833164.9001883243, 5804668.129716666]}, "properties": {"id": "75203370"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752008.3541054343, 5745990.198967284]}, "properties": {"id": "75292357"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752365.8662604484, 5745165.275480301]}, "properties": {"id": "75292425"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752750.3483682368, 5743803.199929253]}, "properties": {"id": "75292552"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752304.9069612084, 5742237.090536705]}, "properties": {"id": "75292652"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752309.9142495141, 5742215.774035021]}, "properties": {"id": "75292679"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753057.872289495, 5741585.529954332]}, "properties": {"id": "75292751"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753546.471414447, 5741277.1067783795]}, "properties": {"id": "75292801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754515.1716906509, 5739625.6932951445]}, "properties": {"id": "75292948"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756160.0549316566, 5739336.694142113]}, "properties": {"id": "75293065"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756347.0258183323, 5738535.40402723]}, "properties": {"id": "75293199"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755885.1946600126, 5738204.2595074335]}, "properties": {"id": "75293453"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755612.5722696183, 5737210.761875825]}, "properties": {"id": "75293589"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757470.5927753245, 5734930.734622694]}, "properties": {"id": "75294338"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758070.6016716196, 5734359.621951665]}, "properties": {"id": "75294613"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758983.1924678019, 5733178.364179375]}, "properties": {"id": "75294857"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759097.8757321688, 5732436.17668412]}, "properties": {"id": "75295164"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759553.601056823, 5732142.759853261]}, "properties": {"id": "75295233"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759498.1324819686, 5730820.363443804]}, "properties": {"id": "75297590"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759361.4975735095, 5730698.398675203]}, "properties": {"id": "75297686"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759351.8756148288, 5730689.910151517]}, "properties": {"id": "75297694"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759171.5581210997, 5730497.878448516]}, "properties": {"id": "75308689"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759242.2483415564, 5730402.43398781]}, "properties": {"id": "75308704"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759256.3165512201, 5732461.663824005]}, "properties": {"id": "75320210"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758328.9199921184, 5733715.063234553]}, "properties": {"id": "75320275"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757769.4678194375, 5734561.361057846]}, "properties": {"id": "75320329"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757202.4831336167, 5735496.037586524]}, "properties": {"id": "75320351"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756480.818907001, 5735674.973259285]}, "properties": {"id": "75320455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755995.8295951879, 5736721.696717789]}, "properties": {"id": "75320521"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755653.5305353481, 5737389.6836353475]}, "properties": {"id": "75320557"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758282.8023406076, 5750430.442994335]}, "properties": {"id": "75320575"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [818794.7420014301, 5823266.110763626]}, "properties": {"id": "772690766"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [822321.1745488556, 5818180.866706373]}, "properties": {"id": "786576629"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [822196.0169156366, 5818332.69889546]}, "properties": {"id": "786578052"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [821414.5305703573, 5818960.997729426]}, "properties": {"id": "786578419"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [811438.3442904174, 5823057.013492299]}, "properties": {"id": "786644176"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764995.341313923, 5776251.878748423]}, "properties": {"id": "789295068"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764767.5865938332, 5776928.82192901]}, "properties": {"id": "789295071"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764970.6570891293, 5776109.107908759]}, "properties": {"id": "789295126"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765133.0655792941, 5777046.331352944]}, "properties": {"id": "789295128"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765011.0173959611, 5778274.810968877]}, "properties": {"id": "789295153"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764872.1577067417, 5777512.7048657155]}, "properties": {"id": "789295154"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762195.5741887027, 5779834.396020562]}, "properties": {"id": "789295591"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759969.4393162454, 5775076.033731358]}, "properties": {"id": "789295613"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760427.1468705309, 5775844.3054752145]}, "properties": {"id": "789295617"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758683.6473448433, 5773735.513058982]}, "properties": {"id": "789296019"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758988.9454723231, 5773264.371770063]}, "properties": {"id": "789296022"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758744.4252459089, 5771945.430868763]}, "properties": {"id": "789296027"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755820.7316124258, 5774848.645535665]}, "properties": {"id": "789296536"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755370.4996339359, 5775377.530403538]}, "properties": {"id": "789296537"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754240.662734871, 5774869.227781749]}, "properties": {"id": "789296559"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756147.9130912838, 5775670.893666628]}, "properties": {"id": "789296561"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758798.3441035917, 5775286.873662222]}, "properties": {"id": "789296565"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [807316.2187099776, 5765156.0862738965]}, "properties": {"id": "790928368"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [807321.8805039361, 5765159.20643137]}, "properties": {"id": "790928383"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [807338.3064840159, 5765159.139072399]}, "properties": {"id": "790928385"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788042.9750086493, 5833753.127367817]}, "properties": {"id": "791043211"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [809372.5737725361, 5759730.738132382]}, "properties": {"id": "800017000000005"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [804361.4077979573, 5758258.043320442]}, "properties": {"id": "80001700000090"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [810019.9070225715, 5762984.081983536]}, "properties": {"id": "800017000011"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766170.3098524779, 5778819.284278055]}, "properties": {"id": "806591840"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756708.1189834061, 5728761.965487596]}, "properties": {"id": "809524532"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758916.9108498537, 5729835.354155907]}, "properties": {"id": "809524581"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751367.3245432829, 5745461.80925467]}, "properties": {"id": "809524742"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750354.8482020033, 5743453.965091826]}, "properties": {"id": "809524759"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750669.3694771731, 5740838.135151035]}, "properties": {"id": "809524980"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749538.7811705418, 5741479.071324291]}, "properties": {"id": "809525138"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750080.3828260936, 5741010.094228561]}, "properties": {"id": "809525152"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750763.6386105577, 5744795.1585185]}, "properties": {"id": "809525182"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751313.7669617687, 5740634.68955764]}, "properties": {"id": "809525412"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758843.4245942896, 5729689.562234205]}, "properties": {"id": "809525581"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758847.0926582603, 5729712.599392477]}, "properties": {"id": "809525740"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749653.061421334, 5742111.1314150505]}, "properties": {"id": "809525910"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750618.1554804784, 5743883.985917076]}, "properties": {"id": "809526063"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758867.718741783, 5729709.810315088]}, "properties": {"id": "809526287"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760396.3773019981, 5732564.547661101]}, "properties": {"id": "810035228"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760230.9879077757, 5746811.493775698]}, "properties": {"id": "810092321"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761640.2687302748, 5751484.554757345]}, "properties": {"id": "810092332"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752587.7104742576, 5744544.859208231]}, "properties": {"id": "811081732"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756644.8311321193, 5749702.303652143]}, "properties": {"id": "811081787"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749217.4777098726, 5746168.454661843]}, "properties": {"id": "811081794"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749365.8841840916, 5739719.0960211335]}, "properties": {"id": "811081844"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755915.5711131381, 5746121.398379414]}, "properties": {"id": "811082215"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751072.75606228, 5746009.395171871]}, "properties": {"id": "811082242"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748815.8731210416, 5742737.96230735]}, "properties": {"id": "811082255"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755767.2908163052, 5753978.405315603]}, "properties": {"id": "811082269"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758854.9245720606, 5751296.684263565]}, "properties": {"id": "811082329"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749129.4002218382, 5744743.062710739]}, "properties": {"id": "811082355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750173.1759273198, 5742946.339346639]}, "properties": {"id": "811082357"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751696.9644819777, 5742393.029745756]}, "properties": {"id": "811082371"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752736.2607828993, 5745940.888107176]}, "properties": {"id": "811082379"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756200.9026701979, 5751194.810565936]}, "properties": {"id": "811082390"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748983.2754389951, 5740906.45591441]}, "properties": {"id": "811082392"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755650.7819964598, 5753312.721565356]}, "properties": {"id": "811082409"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752751.3503808073, 5746612.490366507]}, "properties": {"id": "811082413"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748695.1933153206, 5741924.970518765]}, "properties": {"id": "811082422"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752745.4235901629, 5745978.197195195]}, "properties": {"id": "811082435"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754143.5857098976, 5744914.129976685]}, "properties": {"id": "811082455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755344.8536963263, 5746984.251193064]}, "properties": {"id": "811082456"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752028.6567788974, 5745854.542312649]}, "properties": {"id": "811082460"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755588.3739804112, 5752724.350721612]}, "properties": {"id": "811082467"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751068.6130864071, 5746406.90613364]}, "properties": {"id": "811082476"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755585.407907129, 5748535.659559009]}, "properties": {"id": "811082491"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749324.1921355431, 5745457.035255192]}, "properties": {"id": "811082497"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756393.324464728, 5750587.4166169]}, "properties": {"id": "811082504"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748805.5567518525, 5741436.600307235]}, "properties": {"id": "811082511"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750778.7339060893, 5742604.729625514]}, "properties": {"id": "811082521"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [748957.0542895172, 5743779.679964813]}, "properties": {"id": "811082526"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756098.16751451, 5751723.931455578]}, "properties": {"id": "811082528"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752356.1576345538, 5745070.314528253]}, "properties": {"id": "811082536"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749875.8344808763, 5743425.756428125]}, "properties": {"id": "811082548"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749205.6433915779, 5742606.348767411]}, "properties": {"id": "811082550"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791029.4589061078, 5754202.3363527395]}, "properties": {"id": "822479558"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792696.9102712639, 5753837.739198686]}, "properties": {"id": "822479561"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791252.0885741203, 5754154.226599332]}, "properties": {"id": "822479567"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791149.6035093543, 5754299.613215097]}, "properties": {"id": "822479569"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790852.9283724831, 5754196.595782165]}, "properties": {"id": "822479572"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791082.4675444427, 5754418.515602366]}, "properties": {"id": "822479587"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790945.1206650865, 5754206.49945706]}, "properties": {"id": "822479596"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791168.0956940765, 5754445.192249174]}, "properties": {"id": "822479597"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792891.3162117978, 5753925.140211119]}, "properties": {"id": "822479603"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791078.8898344017, 5754374.186212554]}, "properties": {"id": "822479605"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790811.281858508, 5754185.714778056]}, "properties": {"id": "822479607"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791118.323982863, 5754189.172975545]}, "properties": {"id": "822479613"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791114.7663479231, 5754171.629061001]}, "properties": {"id": "822479626"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791051.8369049819, 5754305.651020991]}, "properties": {"id": "822479630"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791164.2999413006, 5754337.050613389]}, "properties": {"id": "822479635"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791107.0068732873, 5754181.078477101]}, "properties": {"id": "822479640"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791080.7421804264, 5754386.212101588]}, "properties": {"id": "822479644"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788601.4829401673, 5751467.290508859]}, "properties": {"id": "822914635"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788323.7601514377, 5751518.692364767]}, "properties": {"id": "822914639"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791177.4140917346, 5754401.509126595]}, "properties": {"id": "824325860"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791174.1959731949, 5754380.029518637]}, "properties": {"id": "824325905"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835712.6183176426, 5804187.617588819]}, "properties": {"id": "825539749"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835711.50752666, 5804204.431435845]}, "properties": {"id": "825540251"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835906.0151445933, 5804168.549133418]}, "properties": {"id": "825545062"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835902.91405353, 5804152.029968366]}, "properties": {"id": "825545291"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835971.2022724114, 5804138.614662262]}, "properties": {"id": "825545303"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835962.0685781857, 5804157.591869753]}, "properties": {"id": "825545647"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835334.675985196, 5804260.472230034]}, "properties": {"id": "825547532"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835146.1961350485, 5804294.826723014]}, "properties": {"id": "825559691"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834956.9046144639, 5804347.768342847]}, "properties": {"id": "825561111"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835032.639335938, 5804332.255794129]}, "properties": {"id": "825561116"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834952.8231755941, 5804332.890256452]}, "properties": {"id": "825561549"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835429.7400494481, 5804257.531599678]}, "properties": {"id": "825562052"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [835208.2453158834, 5804300.242484202]}, "properties": {"id": "825571561"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834368.1735266715, 5804466.106797399]}, "properties": {"id": "825684718"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [834370.4178944225, 5804480.50395038]}, "properties": {"id": "825684797"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833949.4037787123, 5804552.289788788]}, "properties": {"id": "825685785"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833799.3190721316, 5804577.82194893]}, "properties": {"id": "825685969"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833796.7190836165, 5804563.328021311]}, "properties": {"id": "825686158"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833017.3263255623, 5804595.462555777]}, "properties": {"id": "825691612"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832701.2828701447, 5804334.039079243]}, "properties": {"id": "825693262"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [832768.9823626431, 5804466.703226617]}, "properties": {"id": "825699520"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789854.2920337536, 5766988.423762637]}, "properties": {"id": "827491373"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789880.1256814565, 5766957.203634237]}, "properties": {"id": "827493678"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788874.8706688373, 5766022.16001412]}, "properties": {"id": "827509566"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751644.3796446252, 5846087.590834754]}, "properties": {"id": "830988612"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767435.5944278131, 5737832.1182267945]}, "properties": {"id": "831201023"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771029.5553354865, 5739762.467050887]}, "properties": {"id": "831201037"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771229.7307606558, 5738554.242965833]}, "properties": {"id": "831201063"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770967.3339675097, 5738366.466962031]}, "properties": {"id": "831201068"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771561.264347478, 5739264.2838816345]}, "properties": {"id": "831201069"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769966.4441085157, 5739459.395223146]}, "properties": {"id": "831201096"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770330.3013972063, 5738207.296464471]}, "properties": {"id": "831201104"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767590.5888978016, 5738162.281725156]}, "properties": {"id": "831201109"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771683.5837250552, 5739330.178323453]}, "properties": {"id": "831201121"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770721.2414230807, 5739117.59890074]}, "properties": {"id": "831201126"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771036.0788890328, 5738476.226960222]}, "properties": {"id": "831201154"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770903.6144158612, 5738930.350343593]}, "properties": {"id": "831201164"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768356.8187962349, 5738237.072666806]}, "properties": {"id": "831201177"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771641.9848817969, 5739153.329578004]}, "properties": {"id": "831201197"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768848.7144747736, 5737962.236191898]}, "properties": {"id": "831201203"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769889.7200091266, 5738683.179150278]}, "properties": {"id": "831201206"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766311.3599393351, 5737646.75258153]}, "properties": {"id": "831201241"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770700.1616987941, 5739521.700337776]}, "properties": {"id": "831201249"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771585.086468407, 5739042.350747897]}, "properties": {"id": "831201257"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770330.0834214296, 5738139.062731549]}, "properties": {"id": "831201302"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771011.63668139, 5738933.862193953]}, "properties": {"id": "831201315"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770870.4325200019, 5739655.209880884]}, "properties": {"id": "831201341"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771797.7419430448, 5739309.258400632]}, "properties": {"id": "831201418"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770660.4445763592, 5737903.228706181]}, "properties": {"id": "831201420"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771694.0095853779, 5738845.88671263]}, "properties": {"id": "831201431"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771650.7268688307, 5738949.352684221]}, "properties": {"id": "831201458"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770587.9531477527, 5737929.319495511]}, "properties": {"id": "831201471"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771033.4457437398, 5739062.008262609]}, "properties": {"id": "831201521"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771854.9246106818, 5739601.2384136515]}, "properties": {"id": "831201524"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770814.2314360295, 5739153.35733137]}, "properties": {"id": "831201528"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771463.7723573451, 5739372.648058003]}, "properties": {"id": "831201551"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771491.8401651634, 5739059.594040107]}, "properties": {"id": "831201562"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771909.4142032969, 5739288.9988198755]}, "properties": {"id": "831201575"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765550.9759448606, 5737546.089674324]}, "properties": {"id": "831201597"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771492.7991537943, 5738759.957635403]}, "properties": {"id": "831201611"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765653.7230782392, 5737609.12763098]}, "properties": {"id": "831201612"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770717.2849561748, 5737723.146721185]}, "properties": {"id": "831201616"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771765.3687517124, 5738992.724574802]}, "properties": {"id": "831201622"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769908.4063774934, 5738474.87309981]}, "properties": {"id": "831201626"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770840.2294330322, 5739094.084943978]}, "properties": {"id": "831201638"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768748.5755326154, 5738298.909973041]}, "properties": {"id": "831201641"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769811.428895737, 5738225.9495969275]}, "properties": {"id": "831201651"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770515.063239076, 5739373.785364569]}, "properties": {"id": "831201677"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771478.9102630571, 5738877.686223587]}, "properties": {"id": "831201678"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769903.7116622825, 5738303.756783193]}, "properties": {"id": "831201694"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768528.1040299368, 5738111.4458164545]}, "properties": {"id": "831201705"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771437.9768694575, 5738978.615516308]}, "properties": {"id": "831201713"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771232.7946281997, 5738775.077591057]}, "properties": {"id": "831201718"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768256.3711274923, 5738120.6739400355]}, "properties": {"id": "831201730"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770841.1073149384, 5738161.589704333]}, "properties": {"id": "831201765"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770683.4736237363, 5739831.9314613035]}, "properties": {"id": "831201767"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771236.330915794, 5739419.780898952]}, "properties": {"id": "831201768"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770089.0344932454, 5738330.028670295]}, "properties": {"id": "831201785"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771849.5198043551, 5738787.361662902]}, "properties": {"id": "831201802"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768495.9148227762, 5738274.893099774]}, "properties": {"id": "831201823"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771303.582587481, 5738879.67732848]}, "properties": {"id": "831201849"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770707.373388202, 5738556.123265072]}, "properties": {"id": "831201852"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770859.2655386633, 5737702.789035203]}, "properties": {"id": "831201855"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771742.2803692055, 5739010.985822204]}, "properties": {"id": "831201866"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771113.0335228161, 5738272.449097415]}, "properties": {"id": "831201899"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770844.5394627128, 5739631.869034954]}, "properties": {"id": "831201901"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771379.1750798624, 5738595.299526331]}, "properties": {"id": "831201927"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771526.0815152726, 5738976.537369901]}, "properties": {"id": "831201939"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769420.949847947, 5738086.912650478]}, "properties": {"id": "831201941"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770943.9375094797, 5738991.9308482455]}, "properties": {"id": "831201948"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770271.7081846476, 5739833.9051556755]}, "properties": {"id": "831201962"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768636.0926792279, 5738144.714634462]}, "properties": {"id": "831201967"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771066.1765084842, 5738551.986933261]}, "properties": {"id": "831201968"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771442.691989839, 5739177.591897193]}, "properties": {"id": "831201975"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770368.3251073878, 5739661.024100416]}, "properties": {"id": "831201976"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770401.0359283362, 5738175.122318596]}, "properties": {"id": "831201978"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769805.0272252338, 5738244.744493627]}, "properties": {"id": "831201986"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769849.4643427337, 5738134.550499871]}, "properties": {"id": "831202016"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771132.6913502344, 5738886.504326693]}, "properties": {"id": "831202021"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771639.9110689787, 5739030.784290969]}, "properties": {"id": "831202026"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771928.20276554, 5739411.634130408]}, "properties": {"id": "831202033"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769693.935175258, 5738081.870109353]}, "properties": {"id": "831202035"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769121.0769058897, 5738405.367441593]}, "properties": {"id": "831202042"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771222.8790438054, 5738357.861417017]}, "properties": {"id": "831202067"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771050.1340706132, 5739141.199033143]}, "properties": {"id": "831202075"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771742.385262417, 5738738.291993907]}, "properties": {"id": "831202084"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770876.0354529775, 5738995.565945908]}, "properties": {"id": "831202093"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771057.1559954586, 5738105.937440089]}, "properties": {"id": "831202105"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770681.478382991, 5738450.45043996]}, "properties": {"id": "831202112"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770939.0011851138, 5737916.024409447]}, "properties": {"id": "831202141"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770870.985705472, 5738551.061525287]}, "properties": {"id": "831202145"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771519.7146413121, 5739054.684562726]}, "properties": {"id": "831202146"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768951.842553857, 5737951.603579301]}, "properties": {"id": "831202171"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766285.4979597239, 5737550.514705452]}, "properties": {"id": "831202173"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771258.9814539903, 5738632.28682991]}, "properties": {"id": "831202178"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771230.0935949076, 5739111.131912395]}, "properties": {"id": "831202184"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771580.680207738, 5739349.549231419]}, "properties": {"id": "831202192"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769386.2058457285, 5737905.503273521]}, "properties": {"id": "831202195"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767522.920037467, 5737871.134439116]}, "properties": {"id": "831202224"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771773.8245600809, 5739181.929220309]}, "properties": {"id": "831202225"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770689.8705105886, 5737929.162004812]}, "properties": {"id": "831202226"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772018.690070399, 5739267.140807345]}, "properties": {"id": "831202227"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767165.4545739577, 5737728.18148085]}, "properties": {"id": "831202233"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771603.0730264154, 5739417.922911008]}, "properties": {"id": "831202234"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771330.0701404782, 5738819.25292888]}, "properties": {"id": "831202236"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770407.3456272758, 5738264.15333869]}, "properties": {"id": "831202239"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771538.4372605663, 5738662.046957762]}, "properties": {"id": "831202263"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767270.4603622777, 5737879.276523177]}, "properties": {"id": "831202282"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771372.1126294064, 5739082.131574833]}, "properties": {"id": "831202320"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768605.0303018773, 5738302.613188001]}, "properties": {"id": "831202326"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770814.8414153104, 5737846.815912286]}, "properties": {"id": "831202353"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771650.3182456349, 5738707.113656174]}, "properties": {"id": "831202361"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770679.0740289574, 5739486.640207838]}, "properties": {"id": "831202362"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771756.9271514891, 5738998.644273641]}, "properties": {"id": "831202374"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770396.4766763995, 5738167.64165886]}, "properties": {"id": "831202382"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771462.227493338, 5739148.028063383]}, "properties": {"id": "831202387"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771603.4081036123, 5738927.827969481]}, "properties": {"id": "831202399"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771840.3952405169, 5739165.230053625]}, "properties": {"id": "831202410"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769369.1560469969, 5738039.967720255]}, "properties": {"id": "831202415"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770877.7264086872, 5738735.611579742]}, "properties": {"id": "831202435"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769859.4952829501, 5738492.807662065]}, "properties": {"id": "831202438"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770596.3968427272, 5737836.901920273]}, "properties": {"id": "831202439"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771807.9601368615, 5738894.681977838]}, "properties": {"id": "831202443"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771960.7280858357, 5738970.620589868]}, "properties": {"id": "831202444"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768660.27185339, 5737844.876952968]}, "properties": {"id": "831202446"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771085.2506285853, 5738642.065099783]}, "properties": {"id": "831202460"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771244.2003822093, 5738757.834740587]}, "properties": {"id": "831202466"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770388.7272049753, 5738153.37875863]}, "properties": {"id": "831202469"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769722.9735297654, 5739915.9989586165]}, "properties": {"id": "831202501"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769692.2809761227, 5737992.571689066]}, "properties": {"id": "831202502"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838708.8699581255, 5805988.885761861]}, "properties": {"id": "832362781"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838693.2204772824, 5805835.530161926]}, "properties": {"id": "832362782"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838724.8193960745, 5806014.615546241]}, "properties": {"id": "832362784"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838757.0628087411, 5806206.095373362]}, "properties": {"id": "832362785"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [838684.4575825208, 5805857.642460985]}, "properties": {"id": "832362788"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760288.3108581462, 5732008.959196769]}, "properties": {"id": "832507573"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759031.6163597114, 5730226.947904871]}, "properties": {"id": "832507607"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758762.867274205, 5730780.783919602]}, "properties": {"id": "832507651"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759517.6217881952, 5731188.903295033]}, "properties": {"id": "832507718"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759473.374966743, 5730836.610140299]}, "properties": {"id": "832507753"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758724.0584125813, 5730985.927433611]}, "properties": {"id": "832507762"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759390.11875538, 5730976.641684394]}, "properties": {"id": "832507805"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758955.8252094265, 5730567.612865845]}, "properties": {"id": "832507812"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759042.2401826155, 5729768.188794461]}, "properties": {"id": "832507837"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758818.9599778918, 5730080.067088445]}, "properties": {"id": "832507840"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759784.8992450116, 5731073.704960584]}, "properties": {"id": "832507842"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759230.5628637318, 5730424.545810781]}, "properties": {"id": "832507845"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759121.7172109408, 5730467.401995664]}, "properties": {"id": "832507882"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759320.484622174, 5729383.277149947]}, "properties": {"id": "832507894"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759146.3487117316, 5731592.736953822]}, "properties": {"id": "832507897"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759234.6855601566, 5729710.570922316]}, "properties": {"id": "832507907"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759847.3518653095, 5731521.864010082]}, "properties": {"id": "832507978"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760021.167316137, 5731438.434317267]}, "properties": {"id": "832508068"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759530.2587750885, 5729668.372993435]}, "properties": {"id": "832508116"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760356.229567593, 5732523.962380998]}, "properties": {"id": "832508123"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758876.3798758667, 5730058.955299486]}, "properties": {"id": "832508130"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759249.1644546826, 5729607.678647973]}, "properties": {"id": "832508171"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759240.2684713962, 5729289.562688972]}, "properties": {"id": "832508177"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759591.217734079, 5731298.031228797]}, "properties": {"id": "832508270"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759127.7754681422, 5729536.551882249]}, "properties": {"id": "832508282"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759798.5934676919, 5729202.862220353]}, "properties": {"id": "832508286"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759508.3599332672, 5730999.734353021]}, "properties": {"id": "832508297"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758534.9362822727, 5730811.9889270095]}, "properties": {"id": "832508300"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759401.359438407, 5729478.680744281]}, "properties": {"id": "832508355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759958.7436531733, 5731601.484977735]}, "properties": {"id": "832508363"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759580.468959406, 5731025.320458643]}, "properties": {"id": "832508372"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759825.0404327121, 5731326.162481322]}, "properties": {"id": "832508436"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759358.0466398863, 5729777.543526249]}, "properties": {"id": "832508455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759211.5721493613, 5729635.451663593]}, "properties": {"id": "832508460"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758749.8164918063, 5729879.355827033]}, "properties": {"id": "832508469"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759434.0920104748, 5731424.633762391]}, "properties": {"id": "832508485"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759341.6089888769, 5731051.013211661]}, "properties": {"id": "832508493"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758698.7249623482, 5730522.07689662]}, "properties": {"id": "832508541"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759132.2780027397, 5729640.618432348]}, "properties": {"id": "832508581"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759130.4288438923, 5730915.246429214]}, "properties": {"id": "832508590"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759451.5161729873, 5729541.3897784045]}, "properties": {"id": "832508625"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759677.1528061532, 5729241.514079198]}, "properties": {"id": "832508636"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759524.0564096947, 5729214.578094862]}, "properties": {"id": "832508639"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759007.5877634776, 5730156.957815283]}, "properties": {"id": "832508641"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759290.7796184183, 5729353.049968338]}, "properties": {"id": "832508660"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758697.2059840078, 5729755.966073313]}, "properties": {"id": "832508667"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760092.7379173358, 5729259.634735144]}, "properties": {"id": "832508688"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760120.1917413437, 5731582.033403377]}, "properties": {"id": "832508707"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759679.6669779215, 5731366.643308126]}, "properties": {"id": "832508745"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758650.4612396864, 5730884.403896867]}, "properties": {"id": "832508748"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760320.7252399853, 5732537.360409576]}, "properties": {"id": "832508753"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759108.3077167432, 5731054.574311893]}, "properties": {"id": "832508775"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759559.9024663572, 5729268.950187628]}, "properties": {"id": "832508801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760480.2739244185, 5732530.865092494]}, "properties": {"id": "832508805"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759571.995338103, 5731102.384939055]}, "properties": {"id": "832508833"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759328.2573820859, 5730176.968927004]}, "properties": {"id": "832508848"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759721.0766940028, 5731210.865386932]}, "properties": {"id": "832508884"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759665.0329835998, 5731500.308312076]}, "properties": {"id": "832508908"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760356.2544405218, 5732643.230419948]}, "properties": {"id": "832508916"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759876.8751207879, 5729242.700004943]}, "properties": {"id": "832508957"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759221.1452632047, 5730437.995225998]}, "properties": {"id": "832508970"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759524.1978543864, 5729051.526437631]}, "properties": {"id": "832508974"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759894.0116083891, 5729313.62288803]}, "properties": {"id": "832509013"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759300.169122386, 5729362.490433647]}, "properties": {"id": "832509022"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760033.0093039388, 5731423.571928438]}, "properties": {"id": "832509045"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758860.2912084355, 5729660.372267379]}, "properties": {"id": "832509099"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760060.2734079295, 5729095.663611386]}, "properties": {"id": "832509157"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758897.6299925606, 5729763.9769954905]}, "properties": {"id": "832509193"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758831.5214214926, 5730689.353981431]}, "properties": {"id": "832509216"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760220.6444136477, 5732058.7023031125]}, "properties": {"id": "832509236"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759072.732651972, 5729426.043075976]}, "properties": {"id": "832509284"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760047.1126852299, 5731635.15108792]}, "properties": {"id": "832509290"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759688.8422857383, 5729230.923607685]}, "properties": {"id": "832509292"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760496.7752574966, 5732247.35637946]}, "properties": {"id": "832509295"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758811.1866396962, 5730854.378697927]}, "properties": {"id": "832509302"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759067.2394963877, 5730218.584374098]}, "properties": {"id": "832509332"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759210.6545088034, 5730431.501375545]}, "properties": {"id": "832509387"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759678.6187314291, 5729408.0360867875]}, "properties": {"id": "832509430"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759807.7046978637, 5731692.963402761]}, "properties": {"id": "832509461"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759437.5379137762, 5729114.9030693015]}, "properties": {"id": "832509468"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760006.622288427, 5731569.297454282]}, "properties": {"id": "832509470"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760120.0416632154, 5728989.219386595]}, "properties": {"id": "832509489"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759809.9448591829, 5731415.642285015]}, "properties": {"id": "832509499"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760049.1629181646, 5729005.333683753]}, "properties": {"id": "832509525"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759396.8645932279, 5730967.456462092]}, "properties": {"id": "832509528"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759505.1759391589, 5731070.638380203]}, "properties": {"id": "832509557"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759378.8996451363, 5730992.9607191635]}, "properties": {"id": "832509607"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759691.3045970309, 5731153.496450025]}, "properties": {"id": "832509645"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759608.9939780559, 5728978.342358621]}, "properties": {"id": "832509663"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758855.4237767936, 5729683.640933417]}, "properties": {"id": "832509672"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759608.9721845639, 5730986.485100995]}, "properties": {"id": "832509674"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759835.6167330327, 5731774.992764332]}, "properties": {"id": "832509681"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759359.0415477799, 5729430.851058569]}, "properties": {"id": "832509701"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759181.6230032607, 5729669.3993653115]}, "properties": {"id": "832509710"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760096.7287953434, 5728771.771984256]}, "properties": {"id": "832509749"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759967.9336480867, 5728997.21629611]}, "properties": {"id": "832509756"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759671.4362326151, 5729225.877007348]}, "properties": {"id": "832509795"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759343.7810998985, 5729778.150043574]}, "properties": {"id": "832509807"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759885.1576070142, 5731548.327027578]}, "properties": {"id": "832509813"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760548.2225177764, 5732309.818448138]}, "properties": {"id": "832509815"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759336.0289227102, 5729449.1078763995]}, "properties": {"id": "832509819"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760073.3604523911, 5731510.152506654]}, "properties": {"id": "832509865"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759685.0317551803, 5731388.358592299]}, "properties": {"id": "832509914"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758994.2606383105, 5730120.221864604]}, "properties": {"id": "832509924"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758893.903902013, 5730737.660314536]}, "properties": {"id": "832509934"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759331.9364379059, 5729204.514851804]}, "properties": {"id": "832509973"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759573.2106251875, 5731188.102215328]}, "properties": {"id": "832509987"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759230.0208466598, 5730193.738627574]}, "properties": {"id": "832510004"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759647.8447441208, 5728594.364265472]}, "properties": {"id": "832510031"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758990.7331349562, 5730747.596614594]}, "properties": {"id": "832510041"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759563.9003444725, 5731333.639050892]}, "properties": {"id": "832510043"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759767.7980344546, 5729168.116444691]}, "properties": {"id": "832510052"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758851.9221596455, 5730193.769143272]}, "properties": {"id": "832510058"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760756.813227517, 5732477.848804429]}, "properties": {"id": "832510076"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759025.7332564977, 5730526.951891276]}, "properties": {"id": "832510077"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759913.7752364664, 5731674.422845286]}, "properties": {"id": "832510107"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759278.8284548235, 5729335.103454582]}, "properties": {"id": "832510112"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759859.8832544367, 5731374.0553035615]}, "properties": {"id": "832510157"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760614.0709414796, 5732361.17835797]}, "properties": {"id": "832510164"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759211.8414582743, 5729853.212165034]}, "properties": {"id": "832510187"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759819.6375292416, 5731506.740402478]}, "properties": {"id": "832510189"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759329.7339861933, 5731071.342324525]}, "properties": {"id": "832510192"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759129.4720942077, 5729254.671499329]}, "properties": {"id": "832510232"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759714.1797208996, 5731440.725538207]}, "properties": {"id": "832510241"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759052.8978619105, 5729582.175424744]}, "properties": {"id": "832510259"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759216.0017475699, 5730558.962958543]}, "properties": {"id": "832510269"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759174.5272627621, 5730946.731075346]}, "properties": {"id": "832510279"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758931.2005810519, 5730716.198963979]}, "properties": {"id": "832510289"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759466.9223676092, 5729534.257083323]}, "properties": {"id": "832510311"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759572.6369018832, 5729167.057852414]}, "properties": {"id": "832510333"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758966.9638247823, 5729525.565952098]}, "properties": {"id": "832510337"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759244.3918607284, 5731240.395238303]}, "properties": {"id": "832510362"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759203.9686264835, 5729959.379337189]}, "properties": {"id": "832510422"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [760348.0305075253, 5732469.083285891]}, "properties": {"id": "832510473"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759121.2612430665, 5730714.963469842]}, "properties": {"id": "832510482"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786889.5301628981, 5762157.462800517]}, "properties": {"id": "836930522"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790442.4530547608, 5761564.403764447]}, "properties": {"id": "837417422"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790433.3930906839, 5761543.000421805]}, "properties": {"id": "837417555"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789469.9527757233, 5753336.365019109]}, "properties": {"id": "844859710"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789474.4357829248, 5753326.601337162]}, "properties": {"id": "844859801"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789480.2194647661, 5753342.598670933]}, "properties": {"id": "844859922"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787874.2685071888, 5750045.327265284]}, "properties": {"id": "844937585"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792566.1515594895, 5753801.011081071]}, "properties": {"id": "845901810"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792536.2915297013, 5753798.136632494]}, "properties": {"id": "845901841"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790508.6696512774, 5751682.209888962]}, "properties": {"id": "845901911"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792579.5010026718, 5753813.198010663]}, "properties": {"id": "845901912"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792546.0552682568, 5753804.896184428]}, "properties": {"id": "845901929"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790350.6461092948, 5751742.02855161]}, "properties": {"id": "845901952"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791943.6136875014, 5754251.371763776]}, "properties": {"id": "845901959"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788762.9680324176, 5752006.5024070265]}, "properties": {"id": "845902034"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791772.7380514364, 5754549.499988832]}, "properties": {"id": "845902046"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791811.1121169303, 5753540.187145146]}, "properties": {"id": "845902051"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788773.641409717, 5752568.7620949]}, "properties": {"id": "845902138"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791771.8232297582, 5753503.173121621]}, "properties": {"id": "845902151"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790568.2139982809, 5751671.695489727]}, "properties": {"id": "845902161"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791952.3451394106, 5754311.186561789]}, "properties": {"id": "845902169"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789333.6088495302, 5752233.237068119]}, "properties": {"id": "845902172"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791379.6972742893, 5754339.092153915]}, "properties": {"id": "845902184"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793269.3288964665, 5753940.211776113]}, "properties": {"id": "845902217"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792547.9777932644, 5753810.583962405]}, "properties": {"id": "845902235"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789896.495129361, 5752076.818577846]}, "properties": {"id": "845902267"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789117.6831292659, 5752069.850999072]}, "properties": {"id": "845902275"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793741.4359111212, 5754162.792490177]}, "properties": {"id": "845902277"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792563.3038951673, 5753812.3180369185]}, "properties": {"id": "845902294"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789134.066764324, 5752113.187827437]}, "properties": {"id": "845902313"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790340.08845961, 5751683.91268234]}, "properties": {"id": "845902354"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792550.0232407365, 5753796.471819058]}, "properties": {"id": "845902426"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788752.9302106608, 5752085.095711997]}, "properties": {"id": "845902474"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789109.2535295802, 5752073.054011715]}, "properties": {"id": "845902516"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791945.0571802307, 5754293.944486715]}, "properties": {"id": "845902546"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768376.6877796019, 5741544.459015079]}, "properties": {"id": "845974518"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [767360.4016636058, 5744708.398441584]}, "properties": {"id": "845974558"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789809.4473405638, 5751839.984857221]}, "properties": {"id": "846506211"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789821.7663363784, 5751839.542185635]}, "properties": {"id": "846506232"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790471.1017499213, 5752164.401880683]}, "properties": {"id": "846538717"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789874.089587366, 5752987.755826856]}, "properties": {"id": "846538889"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785213.3467672473, 5751577.396121989]}, "properties": {"id": "846619476"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785138.2598249624, 5751642.756038796]}, "properties": {"id": "846620186"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789863.7862293537, 5752092.365155314]}, "properties": {"id": "847653935"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786063.5957600735, 5758619.284871614]}, "properties": {"id": "847812392"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782930.8013649513, 5758654.669704507]}, "properties": {"id": "847813498"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785330.6322530536, 5758216.256150144]}, "properties": {"id": "847814531"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789097.3220635385, 5751774.626549953]}, "properties": {"id": "848692434"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788055.7722306425, 5751234.69670349]}, "properties": {"id": "848692492"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791053.0573084746, 5753044.6763459025]}, "properties": {"id": "848692546"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787775.5646346996, 5751431.387691778]}, "properties": {"id": "848692577"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788052.5823884853, 5751246.358393384]}, "properties": {"id": "848692738"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791010.4713681766, 5753052.269915621]}, "properties": {"id": "848692885"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787783.4296242673, 5751407.222505755]}, "properties": {"id": "848692895"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787788.2044686934, 5751433.092778095]}, "properties": {"id": "848692999"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757263.3176024422, 5755230.389225128]}, "properties": {"id": "849463174"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761235.7580013113, 5756982.642258016]}, "properties": {"id": "849463523"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764640.0193894318, 5757265.589121548]}, "properties": {"id": "849463573"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [766624.8387376126, 5757475.190292808]}, "properties": {"id": "849463639"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [790038.3258899674, 5753737.516536499]}, "properties": {"id": "849463697"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [764988.242079944, 5756624.349919003]}, "properties": {"id": "849463727"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [765436.367392837, 5756236.958454742]}, "properties": {"id": "849463730"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768181.2527652085, 5758910.875465117]}, "properties": {"id": "849463752"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755864.4875263066, 5754543.074059171]}, "properties": {"id": "849463760"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762231.6873823864, 5757250.035712574]}, "properties": {"id": "849463920"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [741985.6277864338, 5757158.39262689]}, "properties": {"id": "849464123"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768815.1514621626, 5758508.785098783]}, "properties": {"id": "849464226"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750830.3338326766, 5753906.709404595]}, "properties": {"id": "849464268"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768178.5776719301, 5758916.575619103]}, "properties": {"id": "849464310"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794219.4370305487, 5777862.8004460875]}, "properties": {"id": "857118603"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [732056.5886227835, 5706527.560148765]}, "properties": {"id": "861264069"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [732074.4638974043, 5707722.182440526]}, "properties": {"id": "861264089"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [732072.1405797028, 5706548.412548565]}, "properties": {"id": "861264206"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758212.2473208534, 5726593.539714377]}, "properties": {"id": "863348682"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [733990.0219513945, 5709435.199858315]}, "properties": {"id": "863348888"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [736587.3736904067, 5710571.217958178]}, "properties": {"id": "863349778"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759032.6908518835, 5727198.688510917]}, "properties": {"id": "863349822"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758500.0449335829, 5727138.415995723]}, "properties": {"id": "863349856"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759239.4141916581, 5728303.821202017]}, "properties": {"id": "863350152"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [735062.2625570393, 5709951.1351992395]}, "properties": {"id": "863350437"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759473.678566121, 5728338.6079379795]}, "properties": {"id": "863350933"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [733243.2513206275, 5709167.415690361]}, "properties": {"id": "863352664"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794161.3969552558, 5777540.023182388]}, "properties": {"id": "867695760"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794014.0249331456, 5776875.471348298]}, "properties": {"id": "867695761"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794033.8859067227, 5776871.240964768]}, "properties": {"id": "867695762"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793874.3495755354, 5775008.517905575]}, "properties": {"id": "867706358"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793852.8814339074, 5775012.850915695]}, "properties": {"id": "867706362"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [794024.3072156918, 5775768.061568903]}, "properties": {"id": "867706489"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796287.7329012122, 5781188.747546855]}, "properties": {"id": "867731683"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [795126.1369852042, 5780062.694064946]}, "properties": {"id": "867731693"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [799323.318756271, 5784114.94202945]}, "properties": {"id": "867732171"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [799753.6089515297, 5784406.481815942]}, "properties": {"id": "867732178"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793715.8979242158, 5774214.5694930265]}, "properties": {"id": "870702524"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [791275.5474336584, 5773001.15882421]}, "properties": {"id": "880227919"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [799954.7674624512, 5784586.082040942]}, "properties": {"id": "880404429"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796089.6721652728, 5781025.019849798]}, "properties": {"id": "880404462"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793960.7759629488, 5775509.190758606]}, "properties": {"id": "880404467"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793791.817187117, 5772464.218633173]}, "properties": {"id": "880404478"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793647.5793819162, 5770275.69963745]}, "properties": {"id": "880499702"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793722.2158518918, 5770077.147671824]}, "properties": {"id": "880499710"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793524.3999111198, 5770545.928418105]}, "properties": {"id": "880499716"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793449.7287163507, 5768833.146242249]}, "properties": {"id": "880526853(1)"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793470.0323020095, 5768823.591613743]}, "properties": {"id": "880526853(2)"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793727.3697331301, 5769786.878194796]}, "properties": {"id": "880526891"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [793676.6114116593, 5769521.545850031]}, "properties": {"id": "880526921"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768316.5938566274, 5764023.605399749]}, "properties": {"id": "888208900"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771373.4426123461, 5763489.7538996665]}, "properties": {"id": "888208905"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770096.6976743138, 5762074.96113075]}, "properties": {"id": "888208909"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772745.6031197396, 5765877.620695917]}, "properties": {"id": "888208920"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768865.432238825, 5762717.455629952]}, "properties": {"id": "888208922"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772536.7452559271, 5764799.823534181]}, "properties": {"id": "888208926"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772374.3811213452, 5763943.001029186]}, "properties": {"id": "888208930"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770888.865375286, 5761932.414240668]}, "properties": {"id": "888208931"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [768025.7290015351, 5762861.025243592]}, "properties": {"id": "888208932"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797051.0994629877, 5758663.609226915]}, "properties": {"id": "916567900"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797424.3490227036, 5759748.86693756]}, "properties": {"id": "916567915"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797414.2276345631, 5759456.072906844]}, "properties": {"id": "916567948"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797217.2579825046, 5759556.495348353]}, "properties": {"id": "916567954"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [797862.0696307991, 5759220.853536836]}, "properties": {"id": "916567973"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769982.636367133, 5768841.45920906]}, "properties": {"id": "916620001"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777461.9205399698, 5773944.090159143]}, "properties": {"id": "916620002"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775506.9502957624, 5774307.009829934]}, "properties": {"id": "916620018"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [769653.9766842297, 5767105.630789551]}, "properties": {"id": "916620024"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762423.3115469685, 5773340.209967869]}, "properties": {"id": "916620067"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758517.335876317, 5764771.15280911]}, "properties": {"id": "916681351"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759301.0805032105, 5764453.842995132]}, "properties": {"id": "916681362"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757391.9423633706, 5765045.617903435]}, "properties": {"id": "916681366"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758991.614850824, 5766891.096111228]}, "properties": {"id": "916681367"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758293.5538706814, 5769455.355279451]}, "properties": {"id": "916681369"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755559.8553528162, 5766243.466592105]}, "properties": {"id": "916681381"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759152.5666029732, 5767593.453005351]}, "properties": {"id": "916681406"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753495.6089601967, 5767144.98881856]}, "properties": {"id": "916681416"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758043.9954395593, 5766969.768496636]}, "properties": {"id": "916681432"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756484.5333724311, 5765841.0321551375]}, "properties": {"id": "916681437"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758968.8268049752, 5766804.018582092]}, "properties": {"id": "916681455"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754743.176613266, 5766595.43144713]}, "properties": {"id": "916681520"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [757114.9971505163, 5769655.124444833]}, "properties": {"id": "916686705"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [756469.6513528598, 5769759.593821456]}, "properties": {"id": "916686712"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755775.6861366188, 5769856.822605612]}, "properties": {"id": "916686748"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754571.403238252, 5760999.664243276]}, "properties": {"id": "917801313"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [745806.6864639882, 5751653.192074377]}, "properties": {"id": "917801325"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755959.9939418136, 5761225.671641862]}, "properties": {"id": "917801342"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747435.497749371, 5757935.0659528235]}, "properties": {"id": "917801348"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [747927.3176912256, 5758105.671443811]}, "properties": {"id": "917801363"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749855.5327706411, 5746576.712941924]}, "properties": {"id": "917846344"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752497.3186287675, 5742819.140027054]}, "properties": {"id": "917846355"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752138.9084894881, 5746724.753679549]}, "properties": {"id": "917854696"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759115.981597441, 5752131.895269056]}, "properties": {"id": "917854710"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [750951.692528015, 5746076.153166712]}, "properties": {"id": "917854715"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754465.2572237263, 5749232.174195298]}, "properties": {"id": "917854731"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761770.8450444607, 5763685.046723629]}, "properties": {"id": "917877750"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762863.9395032143, 5762551.0506693665]}, "properties": {"id": "917877756"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [761490.0798414499, 5763423.684094583]}, "properties": {"id": "917877774"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773373.0333497468, 5760378.56441353]}, "properties": {"id": "934542719"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [773185.4367538533, 5760243.989473116]}, "properties": {"id": "934542720"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [777518.8301855145, 5776809.114155767]}, "properties": {"id": "941364961"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774634.9940357993, 5777925.161601207]}, "properties": {"id": "941365138"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [776877.5921589253, 5776804.230045623]}, "properties": {"id": "941365239"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786146.1788021403, 5774293.737472678]}, "properties": {"id": "942275932"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785789.4717094986, 5772527.813814107]}, "properties": {"id": "942275944"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785818.593090177, 5772452.09458899]}, "properties": {"id": "942275950"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785790.3491579905, 5772961.921957494]}, "properties": {"id": "942276025"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782596.3032496165, 5770317.2744491305]}, "properties": {"id": "942276035"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [796514.3972554753, 5760827.8347141305]}, "properties": {"id": "944855272"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751967.2093646594, 5838221.541004753]}, "properties": {"id": "945445405"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [782306.7120426407, 5782260.154416008]}, "properties": {"id": "945648185"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780920.6759287129, 5783798.2484009955]}, "properties": {"id": "945648289"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781752.2367389711, 5771499.747318091]}, "properties": {"id": "948960402"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781831.493661625, 5773244.410973294]}, "properties": {"id": "948960413"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780977.060485403, 5771411.934360248]}, "properties": {"id": "948960415"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781028.0945478814, 5770431.5919003775]}, "properties": {"id": "948960423"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [781305.0710229167, 5772554.767052035]}, "properties": {"id": "948960428"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [780775.5582220815, 5772012.271656308]}, "properties": {"id": "948960453"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787557.4442566669, 5750898.828537839]}, "properties": {"id": "956658441"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [803814.2921034298, 5767392.819871391]}, "properties": {"id": "957930684"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [837709.5274403951, 5819116.427928694]}, "properties": {"id": "961256781"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [792670.9310835886, 5766985.008325792]}, "properties": {"id": "967743152"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789421.1668404224, 5753093.053296222]}, "properties": {"id": "971202624"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789420.7236458227, 5753105.595141499]}, "properties": {"id": "971202631"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789412.5965810497, 5753011.3252037475]}, "properties": {"id": "971202636"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789401.316111839, 5753013.430338722]}, "properties": {"id": "971202642"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789426.0697273797, 5753131.611168148]}, "properties": {"id": "971202646"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789499.3078303686, 5753010.237178226]}, "properties": {"id": "971202662"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789041.1829063935, 5752320.665919076]}, "properties": {"id": "971202666"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789406.1663884453, 5753103.249785689]}, "properties": {"id": "971202670"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789378.7922382103, 5752815.090126646]}, "properties": {"id": "971202671"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789430.4641570692, 5753093.0198787395]}, "properties": {"id": "971202675"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788821.527874755, 5752150.303879677]}, "properties": {"id": "971202678"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [788772.1772163007, 5752153.204510795]}, "properties": {"id": "971202681"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [789418.1757140217, 5753097.295152421]}, "properties": {"id": "971202692"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [803856.1102343771, 5767363.473614904]}, "properties": {"id": "974357971"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [803860.4947824073, 5767376.292743529]}, "properties": {"id": "974358037"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786768.125065655, 5761542.6779855015]}, "properties": {"id": "976339273"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786396.0437757832, 5761784.869964049]}, "properties": {"id": "976339274"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [784530.8128261552, 5758364.882796447]}, "properties": {"id": "976339303"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [783893.2673709223, 5758481.612708985]}, "properties": {"id": "976339305"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785591.9262047864, 5749011.469857245]}, "properties": {"id": "976340767"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785083.964851251, 5749037.404170029]}, "properties": {"id": "976340776"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787167.143006895, 5750980.291238882]}, "properties": {"id": "976342867"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787240.195379534, 5751500.7223419435]}, "properties": {"id": "976342869"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786906.548261402, 5749763.276912094]}, "properties": {"id": "976342870"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [787081.907607176, 5750581.882752031]}, "properties": {"id": "976342877"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786825.942054317, 5749335.82774009]}, "properties": {"id": "976342882"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [786981.3059913993, 5750157.81370845]}, "properties": {"id": "976342888"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833204.5996059399, 5806490.849760583]}, "properties": {"id": "976462468"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [833178.8087800099, 5806519.038321845]}, "properties": {"id": "976462504"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830213.3914907192, 5814258.566682481]}, "properties": {"id": "981835734"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830219.3415682648, 5814275.9620828405]}, "properties": {"id": "981835755"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830274.1833672941, 5814220.247954434]}, "properties": {"id": "981838877"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830623.2556110325, 5813998.904566133]}, "properties": {"id": "981838880"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830109.0741539192, 5814324.681369584]}, "properties": {"id": "981838881"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830224.835088626, 5814272.294931652]}, "properties": {"id": "981838892"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830610.4610357416, 5814030.005945943]}, "properties": {"id": "981838906"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [830252.9030833812, 5814254.6243778]}, "properties": {"id": "981838907"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754070.2347551793, 5752257.521042673]}, "properties": {"id": "982267816"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [754998.9681102857, 5758229.957514729]}, "properties": {"id": "982267819"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753560.3761066385, 5750655.2848100625]}, "properties": {"id": "982267846"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753873.960372927, 5751509.320938928]}, "properties": {"id": "982267878"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [752617.8002769395, 5757254.994941878]}, "properties": {"id": "982267888"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753499.471983874, 5750144.09967423]}, "properties": {"id": "982267895"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753392.0385486739, 5757148.94249464]}, "properties": {"id": "982267898"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759972.7173143012, 5760589.111396431]}, "properties": {"id": "982267914"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753957.6886796223, 5749313.861084356]}, "properties": {"id": "982267961"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759693.5368369468, 5760396.923015353]}, "properties": {"id": "982267975"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753884.348830998, 5753179.185234362]}, "properties": {"id": "982267984"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751817.8497608372, 5759655.971159738]}, "properties": {"id": "982268022"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [759848.3087035489, 5760184.803573718]}, "properties": {"id": "982268205"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [758091.3387892, 5759278.59506828]}, "properties": {"id": "982268269"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [751695.4995957811, 5758576.799694707]}, "properties": {"id": "982268290"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [755311.3615612786, 5748070.457612445]}, "properties": {"id": "984102789"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [749991.8755220333, 5749256.635854158]}, "properties": {"id": "984102795"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [753195.6211679574, 5748688.066780674]}, "properties": {"id": "984102858"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [762911.132321617, 5822444.126149132]}, "properties": {"id": "987235875"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [772070.681908275, 5799653.095455103]}, "properties": {"id": "988430087"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [774685.2291886493, 5795887.23916157]}, "properties": {"id": "988447400"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775717.1971423065, 5793736.952748407]}, "properties": {"id": "988447443"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775018.151314747, 5795196.4824538855]}, "properties": {"id": "988447466"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [775940.5336875337, 5793002.2221563]}, "properties": {"id": "988518843"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [770697.0305335124, 5801717.042774366]}, "properties": {"id": "988539602"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [771301.3954689519, 5800690.731854379]}, "properties": {"id": "988539825"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [811138.1538005623, 5762410.53092564]}, "properties": {"id": "990976124"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [809565.3322112351, 5763533.245892497]}, "properties": {"id": "990976132"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [809164.7936390936, 5763842.967461633]}, "properties": {"id": "990976145"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785470.6219331467, 5757219.071010898]}, "properties": {"id": "994354523"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [785925.8128182171, 5757152.450430012]}, "properties": {"id": "994354529"}}]} \ No newline at end of file From aa3dbca63abbf258aaf0e895f587cfd92b69f2ad Mon Sep 17 00:00:00 2001 From: Anirudh Reddy B Date: Wed, 5 Aug 2026 23:56:09 +0000 Subject: [PATCH 8/8] Point midweek-in-jan scenario at reduced 10k population file Second data point for the ~1min runtime target (per Dhirendra): try halving the already-reduced 20k population down to 10k, generated from the 20k file via scripts/reduce_population.py. --- ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml b/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml index c0b69912..eacdd686 100644 --- a/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml +++ b/ees/scenarios/surf-coast-shire/midweek-in-jan/matsim-config.xml @@ -17,7 +17,7 @@ - +