From 4454bee822348259039ed2e917f6e3ce98b99e01 Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Wed, 29 Jun 2022 19:44:53 +0200 Subject: [PATCH 01/14] added aggregation to network --- dhnx/network.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/dhnx/network.py b/dhnx/network.py index 801692e0..d07733d2 100644 --- a/dhnx/network.py +++ b/dhnx/network.py @@ -316,3 +316,19 @@ def optimize_investment(self, invest_options, **kwargs): def simulate(self, *args, **kwargs): self.results.simulation = simulate(self, *args, **kwargs) + + def aggregate(self, maxlength = 100): + """ + + :param maxlength: + :return: + """ + self.aggregatednetwork = dict() + test_dict = aggregation(forks = self.components["forks"], + pipes = self.components["pipes"], + consumers = self.components["consumers"], + producers = self.components["producers"]) + + +def aggregation(forks, pipes, consumers, producers): + pass From 05cb9e10064fd6b9bd56730d1fcefdeb469bcea5 Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Tue, 5 Jul 2022 14:07:40 +0200 Subject: [PATCH 02/14] aggregation update --- dhnx/network.py | 55 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 53 insertions(+), 2 deletions(-) diff --git a/dhnx/network.py b/dhnx/network.py index d07733d2..6d1365f6 100644 --- a/dhnx/network.py +++ b/dhnx/network.py @@ -14,6 +14,7 @@ import os import pandas as pd +import geopandas as gpd from .graph import thermal_network_to_nx_graph from .helpers import Dict @@ -319,7 +320,6 @@ def simulate(self, *args, **kwargs): def aggregate(self, maxlength = 100): """ - :param maxlength: :return: """ @@ -331,4 +331,55 @@ def aggregate(self, maxlength = 100): def aggregation(forks, pipes, consumers, producers): - pass + + + from shapely import geometry, ops + import geopandas as gpd + pipe42geo = pipes.loc[42]['geometry'] # pipe42geo = tn_input['pipes'].loc[42]['geometry'] + pipe87geo = pipes.loc[87]['geometry'] # pipe87geo = tn_input['pipes'].loc[87]['geometry'] + + #superpipe1geo = pipe42geo.union(pipe87geo) Multiline String + + superpipe1geo = geometry.MultiLineString([pipe42geo, pipe87geo]) + superpipe1geom = ops.linemerge(superpipe1geo) + + + # super_pipe1 als Series initialisieren + # super_pipe1 = pd.Series(data = [superpipe1geom, 'DL', 1, 2], index=['geometry', 'type', 'from_node', 'to_node']) + + + super_pipe1 = pipes.loc[42].copy() # super_pipe1 = tn_input['pipes'].loc[42].copy() + super_pipe1['geometry'] = superpipe1geom + + + + #super_pipes als GeoDataFrame initialisieren + #super_pipes = gpd.GeoDataFrame(geometry=[], crs=pipes.crs) # super_pipes = gpd.GeoDataFrame(geometry=[], crs=tn_input['pipes'].crs) + super_pipes = pipes.copy() # super_pipes = tn_input['pipes'].copy() + + super_pipes.loc[0] = super_pipe1 + + super_pipes.loc[1:30] = 0 + + # plotten + _, ax = plt.subplots() + super_pipes.plot(ax=ax, color='grey') + plt.show() + + # Exportieren als geojson + # path_geo = 'qgis' + # super_pipes.to_file(os.path.join(path_geo, super_pipes + '.geojson'), driver='GeoJSON') + super_pipes.to_file('super_pipes.geojson', driver='GeoJSON') + + # Funktionen die weiterhelfen könnten: + # super_pipes['from_node'].value_counts().head() + # go.insert_node_ids(lines_all, points_all) + + # return + return { + 'super_forks': forks, # not yet defined + 'super_consumers': consumers, # not yet defined + 'super_producers': producers, # not yet defined + 'super_pipes': super_pipes, + } + From 6ae3f8ff32093248b62c786c9addf71ad794cf5d Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Tue, 5 Jul 2022 20:20:10 +0200 Subject: [PATCH 03/14] update aggregation --- dhnx/network.py | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/dhnx/network.py b/dhnx/network.py index 6d1365f6..ff314a13 100644 --- a/dhnx/network.py +++ b/dhnx/network.py @@ -332,9 +332,11 @@ def aggregate(self, maxlength = 100): def aggregation(forks, pipes, consumers, producers): - from shapely import geometry, ops import geopandas as gpd + import matplotlib.pyplot as plt + + # Zwei pipes mergen pipe42geo = pipes.loc[42]['geometry'] # pipe42geo = tn_input['pipes'].loc[42]['geometry'] pipe87geo = pipes.loc[87]['geometry'] # pipe87geo = tn_input['pipes'].loc[87]['geometry'] @@ -345,25 +347,28 @@ def aggregation(forks, pipes, consumers, producers): # super_pipe1 als Series initialisieren - # super_pipe1 = pd.Series(data = [superpipe1geom, 'DL', 1, 2], index=['geometry', 'type', 'from_node', 'to_node']) - - + # super_pipe1 = pd.Series(data = [superpipe1geom, 'DL', 1, 2], index=['geometry', 'type', 'from_node', 'to_node']) + # super_pipe1 = gpd.geoseries(data=[superpipe1geom, 'DL', 1, 2], index=['geometry', 'type', 'from_node', 'to_node']) super_pipe1 = pipes.loc[42].copy() # super_pipe1 = tn_input['pipes'].loc[42].copy() super_pipe1['geometry'] = superpipe1geom - #super_pipes als GeoDataFrame initialisieren #super_pipes = gpd.GeoDataFrame(geometry=[], crs=pipes.crs) # super_pipes = gpd.GeoDataFrame(geometry=[], crs=tn_input['pipes'].crs) super_pipes = pipes.copy() # super_pipes = tn_input['pipes'].copy() super_pipes.loc[0] = super_pipe1 - super_pipes.loc[1:30] = 0 + #super_pipes.loc[1:len(pipes)] = none + super_pipes = super_pipes.drop(range(1, len(pipes))) # plotten _, ax = plt.subplots() - super_pipes.plot(ax=ax, color='grey') + super_pipes.plot(ax=ax, color='red') + consumers.plot(ax=ax, color='green') + producers.plot(ax=ax, color='blue') + forks.plot(ax=ax, color='grey') + plt.title('Geometry after aggregation of pipes') plt.show() # Exportieren als geojson @@ -374,6 +379,12 @@ def aggregation(forks, pipes, consumers, producers): # Funktionen die weiterhelfen könnten: # super_pipes['from_node'].value_counts().head() # go.insert_node_ids(lines_all, points_all) + # testgeometry["geometry"].wkt + # testgeometry["geometry"].coords[2][0] + # testgeometry["geometry"].touches(tn_input['pipes'].loc[13]["geometry"]) + + + # return return { From 594a16c0fcafeb0f72d740ddfff25809dcaa18ec Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Fri, 8 Jul 2022 17:47:25 +0200 Subject: [PATCH 04/14] aggregation update --- dhnx/network.py | 60 ++++++++++++++++++++++++++++++++----------------- 1 file changed, 40 insertions(+), 20 deletions(-) diff --git a/dhnx/network.py b/dhnx/network.py index ff314a13..2d7784da 100644 --- a/dhnx/network.py +++ b/dhnx/network.py @@ -335,31 +335,59 @@ def aggregation(forks, pipes, consumers, producers): from shapely import geometry, ops import geopandas as gpd import matplotlib.pyplot as plt + import pandas as pd + # # # 1. Identifizierung der Superforks + # DL und GL aus pipes speichern + DLGLpipes = pipes.loc[pipes['type'].isin(['DL', 'GL'])] + # Anzahl von Verbindungen von den forks zählen (from_node und to_node) + count_forks_from_node = DLGLpipes['from_node'].value_counts() + count_forks_to_node = DLGLpipes['to_node'].value_counts() + # Anzahl von from_node und to_node addieren + count_forks = count_forks_from_node.add(count_forks_to_node, fill_value=0) + # Die Superforks, also forks mit 1, 3, 4 Verbindungen, identifizieren + count_superforks = count_forks[count_forks.isin([1, 3, 4])] + # Index von den Superforks speichern + superforks_indexlist = count_superforks.index.tolist() + # Superforks aus forks nehmen, wenn die forks als Superfork identifiziert wurden + super_forks = forks.copy() + super_forks = super_forks[super_forks['id_full'].isin(superforks_indexlist)] + # Anzahl der Verbindungen + # super_forks['Verbindungen'] = count_superforks.tolist() #Fehler, weil producer-0 in count_superforks drin ist und nicht in super_forks + + # # # 2. SuperPipes identifizieren + # # 2.1 Pipe1 für SuperFork1 raussuchen + # erst durch from_node dann to_node + i = 1 # # # 1. Schleife Superforks durchgehen + superfork_id_1 = super_forks.loc[i]['id_full'] + superpipes_SF_1_from_node = pipes[pipes['from_node'] == superfork_id_1] # # # 2. Schleife Superpipes durchgehen + superpipes_SF_1_to_node = pipes[pipes['to_node'] == superfork_id_1] + superpipes_SF_1 = superpipes_SF_1_from_node.append(superpipes_SF_1_to_node) + a = 1# forks zu SP 1 raussuchen und anschließend uprüfen of SF + segment1 = superpipes_SF_1.loc[a] + forks_SP1 = superpipes_SF_1.loc[a]['from_node'] + + # Zwei pipes mergen pipe42geo = pipes.loc[42]['geometry'] # pipe42geo = tn_input['pipes'].loc[42]['geometry'] pipe87geo = pipes.loc[87]['geometry'] # pipe87geo = tn_input['pipes'].loc[87]['geometry'] - #superpipe1geo = pipe42geo.union(pipe87geo) Multiline String superpipe1geo = geometry.MultiLineString([pipe42geo, pipe87geo]) superpipe1geom = ops.linemerge(superpipe1geo) - - # super_pipe1 als Series initialisieren - # super_pipe1 = pd.Series(data = [superpipe1geom, 'DL', 1, 2], index=['geometry', 'type', 'from_node', 'to_node']) - # super_pipe1 = gpd.geoseries(data=[superpipe1geom, 'DL', 1, 2], index=['geometry', 'type', 'from_node', 'to_node']) super_pipe1 = pipes.loc[42].copy() # super_pipe1 = tn_input['pipes'].loc[42].copy() super_pipe1['geometry'] = superpipe1geom - #super_pipes als GeoDataFrame initialisieren - #super_pipes = gpd.GeoDataFrame(geometry=[], crs=pipes.crs) # super_pipes = gpd.GeoDataFrame(geometry=[], crs=tn_input['pipes'].crs) super_pipes = pipes.copy() # super_pipes = tn_input['pipes'].copy() + # for row, col in super_pipes.iterrows(): + # if + # continue + super_pipes.loc[0] = super_pipe1 - #super_pipes.loc[1:len(pipes)] = none super_pipes = super_pipes.drop(range(1, len(pipes))) # plotten @@ -367,28 +395,20 @@ def aggregation(forks, pipes, consumers, producers): super_pipes.plot(ax=ax, color='red') consumers.plot(ax=ax, color='green') producers.plot(ax=ax, color='blue') - forks.plot(ax=ax, color='grey') + super_forks.plot(ax=ax, color='grey') plt.title('Geometry after aggregation of pipes') plt.show() + # Exportieren als geojson - # path_geo = 'qgis' - # super_pipes.to_file(os.path.join(path_geo, super_pipes + '.geojson'), driver='GeoJSON') + super_forks.to_file('super_forks.geojson', driver='GeoJSON') super_pipes.to_file('super_pipes.geojson', driver='GeoJSON') - # Funktionen die weiterhelfen könnten: - # super_pipes['from_node'].value_counts().head() - # go.insert_node_ids(lines_all, points_all) - # testgeometry["geometry"].wkt - # testgeometry["geometry"].coords[2][0] - # testgeometry["geometry"].touches(tn_input['pipes'].loc[13]["geometry"]) - - # return return { - 'super_forks': forks, # not yet defined + 'super_forks': super_forks, 'super_consumers': consumers, # not yet defined 'super_producers': producers, # not yet defined 'super_pipes': super_pipes, From 32c5fe169514ddd2af55f04fd6a8069e15cfc447 Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Fri, 22 Jul 2022 18:54:09 +0200 Subject: [PATCH 05/14] update aggregation --- dhnx/network.py | 199 +++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 161 insertions(+), 38 deletions(-) diff --git a/dhnx/network.py b/dhnx/network.py index 2d7784da..2f272c30 100644 --- a/dhnx/network.py +++ b/dhnx/network.py @@ -329,6 +329,9 @@ def aggregate(self, maxlength = 100): consumers = self.components["consumers"], producers = self.components["producers"]) +# TODO: Länge der Superpipes berechnen +# TODO: Leistungsabhängige Aggregation +# TODO: Straßen werden als ganzes aggregiert, obwohl das nicht immer sinnvoll ist (siehe Straße "Im Grund" oben rechts) def aggregation(forks, pipes, consumers, producers): @@ -336,76 +339,196 @@ def aggregation(forks, pipes, consumers, producers): import geopandas as gpd import matplotlib.pyplot as plt import pandas as pd - # # # 1. Identifizierung der Superforks + +# TODO: Warnings anschalten + import warnings + warnings.filterwarnings("ignore") + + # # # Identifizierung der Superforks # DL und GL aus pipes speichern DLGLpipes = pipes.loc[pipes['type'].isin(['DL', 'GL'])] + # Anzahl von Verbindungen von den forks zählen (from_node und to_node) count_forks_from_node = DLGLpipes['from_node'].value_counts() count_forks_to_node = DLGLpipes['to_node'].value_counts() + # Anzahl von from_node und to_node addieren count_forks = count_forks_from_node.add(count_forks_to_node, fill_value=0) + # Die Superforks, also forks mit 1, 3, 4 Verbindungen, identifizieren count_superforks = count_forks[count_forks.isin([1, 3, 4])] + # Index von den Superforks speichern superforks_indexlist = count_superforks.index.tolist() + # Superforks aus forks nehmen, wenn die forks als Superfork identifiziert wurden super_forks = forks.copy() super_forks = super_forks[super_forks['id_full'].isin(superforks_indexlist)] + super_forks = super_forks.reset_index(drop=True) + # Anzahl der Verbindungen # super_forks['Verbindungen'] = count_superforks.tolist() #Fehler, weil producer-0 in count_superforks drin ist und nicht in super_forks - # # # 2. SuperPipes identifizieren - # # 2.1 Pipe1 für SuperFork1 raussuchen - # erst durch from_node dann to_node - i = 1 # # # 1. Schleife Superforks durchgehen - superfork_id_1 = super_forks.loc[i]['id_full'] - superpipes_SF_1_from_node = pipes[pipes['from_node'] == superfork_id_1] # # # 2. Schleife Superpipes durchgehen - superpipes_SF_1_to_node = pipes[pipes['to_node'] == superfork_id_1] - superpipes_SF_1 = superpipes_SF_1_from_node.append(superpipes_SF_1_to_node) - a = 1# forks zu SP 1 raussuchen und anschließend uprüfen of SF - segment1 = superpipes_SF_1.loc[a] - forks_SP1 = superpipes_SF_1.loc[a]['from_node'] - - - # Zwei pipes mergen - pipe42geo = pipes.loc[42]['geometry'] # pipe42geo = tn_input['pipes'].loc[42]['geometry'] - pipe87geo = pipes.loc[87]['geometry'] # pipe87geo = tn_input['pipes'].loc[87]['geometry'] - - - superpipe1geo = geometry.MultiLineString([pipe42geo, pipe87geo]) - superpipe1geom = ops.linemerge(superpipe1geo) - - super_pipe1 = pipes.loc[42].copy() # super_pipe1 = tn_input['pipes'].loc[42].copy() - super_pipe1['geometry'] = superpipe1geom - - - super_pipes = pipes.copy() # super_pipes = tn_input['pipes'].copy() - - # for row, col in super_pipes.iterrows(): - # if - # continue - - super_pipes.loc[0] = super_pipe1 - - super_pipes = super_pipes.drop(range(1, len(pipes))) + # # # 2. SuperPipes identifizieren und mergen + + # super_pipes initialisieren + super_pipes = pipes.copy() + super_pipes = super_pipes.drop(range(0, len(pipes))) + # Liste für aggregierte forks und pipes initialisieren + aggregated_forks = [] + aggregated_pipes = [] + # TODO: Stopp bei producer! --> beseitigt durch neue abfrage, diese nochmal überprüfen + i = -1 # # # Erste Schleife: Superforks durchgehen + + while i <= len(super_forks) - 2: # länge ist absolut und id startet bei 0 + i += 1 + # Den aktuellen super_fork (i) aus der super_fork Liste auswählen ... + superfork_i_id_full = super_forks.loc[i]['id_full'] + # ... und zu den aggregierten hinzugügen + aggregated_forks.append(superfork_i_id_full) + # Pipes die am Superfork i verbunden sind raus suchen und in einen GeoDataFrame speichern + pipes_superfork_i_from_node = DLGLpipes[DLGLpipes['from_node'] == superfork_i_id_full] + pipes_superfork_i_to_node = DLGLpipes[DLGLpipes['to_node'] == superfork_i_id_full] + pipes_superfork_i = pipes_superfork_i_from_node.append(pipes_superfork_i_to_node) + pipes_superfork_i = pipes_superfork_i.reset_index(drop=True) + + a = - 1 # # # Zweite Schleife: Superpipes a vom Superfork i durchgehen + while a <= len(pipes_superfork_i) - 2: # länge ist absolut und id startet bei 0 + a += 1 + # Wenn die pipe schon aggregiert wurde, soll die nächst pipe überprüft werden + if pipes_superfork_i.loc[a]['id'] in aggregated_pipes: + continue # evtl. a += 1 vorher break oder continue + # Ein Segment ist die Anreihung von pipes bevor diese gemerget werden + # Das Segment wird initialisiert und die pipe a ist die erste pipe des Segments + segment_i_a = pipes_superfork_i.copy() + segment_i_a = segment_i_a[segment_i_a.index == a] + segment_i_a = segment_i_a.reset_index(drop=True) + + aggregation_segment = False # # # Dritte Schleife: Die Elemente b von pipe a durchgehen + b = 0 + while aggregation_segment == False: + + # print('Superfork i: ', superfork_i_id_full) + # print('pipe a: ', segment_i_a.at[0, 'id']) + # print('segment b: ', b) + + # Heraussuchen des nächsten forks der mit der pipe b verbunden ist + fork_from_pipe_b_segment_i_a = 0 # evtl nicht nötig + fork_to_pipe_b_segment_i_a = 0 # evtl nicht nötig + fork_from_pipe_b_segment_i_a = segment_i_a.at[b, 'from_node'] # hier tritt ein fehler auf + fork_to_pipe_b_segment_i_a = segment_i_a.at[b, 'to_node'] + count_type_forks_pipe_b_segment_i_a = 0 + status_fork_from_pipe_b_segment_i_a = 0 # nicht benötigt + status_fork_to_pipe_b_segment_i_a = 0 # nicht benötigt + # Initialisieren des nächsten forks + fork_next_segment_i_a = 0 + # TODO: Kann der nächste Fork überhaupt in aggregated forks sein, wenn die pipe nicht aggregiert ist? + # Prüfen ob der fork 'from' bereits aggregiert oder ein superfork ist oder ein producer ist + # Wenn ja wird die Anzahl der count_type_forks_pipe_b_segment_i_a erhöht ... + # ... falls nicht ist der fork zum nächsten segment der fork 'from' + if fork_from_pipe_b_segment_i_a in super_forks[ + 'id_full'].unique() or fork_from_pipe_b_segment_i_a in aggregated_forks or fork_from_pipe_b_segment_i_a in \ + producers['id_full'].unique(): + count_type_forks_pipe_b_segment_i_a += 1 + status_fork_from_pipe_b_segment_i_a = 'aggregated/superfork' # nicht benötigt + else: + fork_next_segment_i_a = fork_from_pipe_b_segment_i_a # Der nächste fork darf noch nicht aggregiert sein + # Prüfen ob der fork 'to' bereits aggregiert oder ein superfork ist oder ein producer ist + # Wenn ja wird die Anzahl der count_type_forks_pipe_b_segment_i_a erhöht + # ... falls nicht ist der fork zum nächsten segment der fork 'to' + if fork_to_pipe_b_segment_i_a in super_forks[ + 'id_full'].unique() or fork_to_pipe_b_segment_i_a in aggregated_forks or fork_to_pipe_b_segment_i_a in \ + producers['id_full'].unique(): + count_type_forks_pipe_b_segment_i_a += 1 + status_fork_to_pipe_b_segment_i_a = 'aggregated/superfork' # nicht benötigt + else: + fork_next_segment_i_a = fork_to_pipe_b_segment_i_a # Der nächste fork darf noch nicht aggregiert sein + # Wenn beide forks aggregiert sind wird das Segment gemergt + if count_type_forks_pipe_b_segment_i_a == 2: + # merge new geometry + geom_multi_segment_i_a = geometry.MultiLineString(segment_i_a['geometry'].unique()) + geom_line_segment_i_a = ops.linemerge(geom_multi_segment_i_a) + # create new pipe + merged_segment_i_a = segment_i_a[segment_i_a.index == 0] + merged_segment_i_a['geometry'] = geom_line_segment_i_a + # + merged_segment_i_a['to_node'] = segment_i_a.loc[b]['to_node'] + # add new pipe to super pipes + super_pipes = super_pipes.append(merged_segment_i_a) + # add pipe_ids to aggregated pipes + aggregated_pipes = aggregated_pipes + segment_i_a['id'].tolist() + + aggregation_segment == True + # TODO: Länge des Segments berechnen und to node from node anpassen + + break + + + # Identifizieren welche pipes mit fork_next_segment_i_a verbunden sind + elif count_type_forks_pipe_b_segment_i_a == 1: # + + pipe_next_segment_i_a = 0 # + # Nächste Pipe darf nicht die aktuelle sein! + # TODO: Von einigen Forks gehen zwei pipes hin oder zwei pipes weg. Daher andere Überprüfung nötig! + # TODO:EVTL from und to in ein Array und dann die pipe die nicht die letzte ist als neue + # TODO:Abfrage schlauer gestalten + + list_of_connected_pipes_to_next_fork = [] + list_of_connected_pipes_to_next_fork = list_of_connected_pipes_to_next_fork + DLGLpipes.loc[ + DLGLpipes['from_node'].isin([fork_next_segment_i_a])]['id'].tolist() + DLGLpipes.loc[ + DLGLpipes['to_node'].isin([fork_next_segment_i_a])][ + 'id'].tolist() + + #print('list of connected pipes: ', list_of_connected_pipes_to_next_fork) + + if segment_i_a.at[b, 'id'] == list_of_connected_pipes_to_next_fork[0]: + pipe_next_segment_i_a = DLGLpipes.loc[ + DLGLpipes['id'].isin([list_of_connected_pipes_to_next_fork[1]])] + + elif segment_i_a.at[b, 'id'] == list_of_connected_pipes_to_next_fork[1]: + pipe_next_segment_i_a = DLGLpipes.loc[ + DLGLpipes['id'].isin([list_of_connected_pipes_to_next_fork[0]])] + + else: + print('error: next fork doesnt connect to any new pipe') + + # b hoch zählen + b += 1 + + # hinzufügen zu segment i_a + segment_i_a = segment_i_a.append(pipe_next_segment_i_a) + + # index resetten + segment_i_a = segment_i_a.reset_index(drop=True) + + # fork zu aggregated fork + aggregated_forks.append(fork_next_segment_i_a) + + + else: + print('error: pipe is not connected to any aggregated fork or super fork') + + # Länge der super_pipes berechnen + super_pipes['length'] = super_pipes.length + + print('list of aggregated pipes: ', aggregated_pipes) + print('list of aggregated forks: ', aggregated_forks) # plotten _, ax = plt.subplots() super_pipes.plot(ax=ax, color='red') - consumers.plot(ax=ax, color='green') + # consumers.plot(ax=ax, color='green') producers.plot(ax=ax, color='blue') super_forks.plot(ax=ax, color='grey') plt.title('Geometry after aggregation of pipes') plt.show() - # Exportieren als geojson super_forks.to_file('super_forks.geojson', driver='GeoJSON') super_pipes.to_file('super_pipes.geojson', driver='GeoJSON') - # return return { 'super_forks': super_forks, From 47b852823920860daf4858ce0ff43fa0d346307d Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Wed, 27 Jul 2022 14:29:43 +0200 Subject: [PATCH 06/14] updated aggregation --- dhnx/network.py | 91 ++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 74 insertions(+), 17 deletions(-) diff --git a/dhnx/network.py b/dhnx/network.py index 2f272c30..3052afd8 100644 --- a/dhnx/network.py +++ b/dhnx/network.py @@ -329,8 +329,6 @@ def aggregate(self, maxlength = 100): consumers = self.components["consumers"], producers = self.components["producers"]) -# TODO: Länge der Superpipes berechnen -# TODO: Leistungsabhängige Aggregation # TODO: Straßen werden als ganzes aggregiert, obwohl das nicht immer sinnvoll ist (siehe Straße "Im Grund" oben rechts) def aggregation(forks, pipes, consumers, producers): @@ -366,10 +364,6 @@ def aggregation(forks, pipes, consumers, producers): super_forks = super_forks[super_forks['id_full'].isin(superforks_indexlist)] super_forks = super_forks.reset_index(drop=True) - # Anzahl der Verbindungen - # super_forks['Verbindungen'] = count_superforks.tolist() #Fehler, weil producer-0 in count_superforks drin ist und nicht in super_forks - - # # # 2. SuperPipes identifizieren und mergen # super_pipes initialisieren @@ -378,7 +372,11 @@ def aggregation(forks, pipes, consumers, producers): # Liste für aggregierte forks und pipes initialisieren aggregated_forks = [] aggregated_pipes = [] - # TODO: Stopp bei producer! --> beseitigt durch neue abfrage, diese nochmal überprüfen + + # HL pipes für aggregated_HLpipes_segment_i_a + HLpipes = pipes.loc[pipes['type'].isin(['HL'])] + + # i = -1 i = -1 # # # Erste Schleife: Superforks durchgehen while i <= len(super_forks) - 2: # länge ist absolut und id startet bei 0 @@ -387,13 +385,28 @@ def aggregation(forks, pipes, consumers, producers): superfork_i_id_full = super_forks.loc[i]['id_full'] # ... und zu den aggregierten hinzugügen aggregated_forks.append(superfork_i_id_full) + + # Consumer die mit dem super-fork verbunden sind Heraussuchen + aggregated_consumer_super_fork_i = [] + aggregated_consumer_super_fork_i = HLpipes.loc[HLpipes['from_node'] == superfork_i_id_full]['to_node'].tolist() + str_aggregated_consumer_super_forks = ', '.join(aggregated_consumer_super_fork_i) + index = super_forks.loc[super_forks['id_full'] == superfork_i_id_full].index[0] + super_forks.at[index, 'aggregated_consumers'] = str_aggregated_consumer_super_forks + + # max heat raus suchen + aggregated_P_heat_super_fork_i = [] + aggregated_P_heat_super_fork_i = consumers.loc[consumers['id_full'].isin(aggregated_consumer_super_fork_i)][ + 'P_heat_max'].tolist() + sum_aggregated_P_heat_max_super_fork_i = sum(aggregated_P_heat_super_fork_i) + super_forks.at[index, 'aggregated_P_heat_max'] = sum_aggregated_P_heat_max_super_fork_i + # Pipes die am Superfork i verbunden sind raus suchen und in einen GeoDataFrame speichern pipes_superfork_i_from_node = DLGLpipes[DLGLpipes['from_node'] == superfork_i_id_full] pipes_superfork_i_to_node = DLGLpipes[DLGLpipes['to_node'] == superfork_i_id_full] pipes_superfork_i = pipes_superfork_i_from_node.append(pipes_superfork_i_to_node) pipes_superfork_i = pipes_superfork_i.reset_index(drop=True) - a = - 1 # # # Zweite Schleife: Superpipes a vom Superfork i durchgehen + a = - 1 # # # Zweite Schleife: Superpipes a vom Superfork i durchgehen while a <= len(pipes_superfork_i) - 2: # länge ist absolut und id startet bei 0 a += 1 # Wenn die pipe schon aggregiert wurde, soll die nächst pipe überprüft werden @@ -404,8 +417,9 @@ def aggregation(forks, pipes, consumers, producers): segment_i_a = pipes_superfork_i.copy() segment_i_a = segment_i_a[segment_i_a.index == a] segment_i_a = segment_i_a.reset_index(drop=True) + included_forks_segment_i_a = [] - aggregation_segment = False # # # Dritte Schleife: Die Elemente b von pipe a durchgehen + aggregation_segment = False # # # Dritte Schleife: Die Elemente b von pipe a durchgehen b = 0 while aggregation_segment == False: @@ -452,26 +466,68 @@ def aggregation(forks, pipes, consumers, producers): # create new pipe merged_segment_i_a = segment_i_a[segment_i_a.index == 0] merged_segment_i_a['geometry'] = geom_line_segment_i_a - # - merged_segment_i_a['to_node'] = segment_i_a.loc[b]['to_node'] + + # # set from_node and to_node of the merged segment + # from_node is the super fork i + merged_segment_i_a.at[0, 'from_node'] = superfork_i_id_full + # to_node is not the super fork i and ether a super fork or a producer + last_fork_segment_i_a = 0 + if fork_to_pipe_b_segment_i_a != superfork_i_id_full and (fork_to_pipe_b_segment_i_a in super_forks[ + 'id_full'].unique() or fork_to_pipe_b_segment_i_a in \ + producers['id_full'].unique()): + + last_fork_segment_i_a = fork_to_pipe_b_segment_i_a + + elif fork_from_pipe_b_segment_i_a != superfork_i_id_full and ( + fork_from_pipe_b_segment_i_a in super_forks[ + 'id_full'].unique() or fork_from_pipe_b_segment_i_a in \ + producers['id_full'].unique()): + + last_fork_segment_i_a = fork_from_pipe_b_segment_i_a + + else: + print('error: last fork is not a') + + merged_segment_i_a.at[0, 'to_node'] = last_fork_segment_i_a + # # + # # add column 'included_forks' + # merged_segment_i_a['aggregated_forks'] = merged_segment_i_a['aggregated_forks'].astype(object) + str_included_forks_segment_i_a = ', '.join(included_forks_segment_i_a) + merged_segment_i_a.at[0, 'included_forks'] = str_included_forks_segment_i_a + + # # add column 'aggregated_consumers' + included_consumer_segment_i_a = [] + included_consumer_segment_i_a = HLpipes.loc[HLpipes['from_node'].isin(included_forks_segment_i_a)][ + 'to_node'].tolist() + str_included_consumer_segment_i_a = ', '.join(included_consumer_segment_i_a) + merged_segment_i_a.at[0, 'included_consumer'] = str_included_consumer_segment_i_a + + # # add column 'aggregated_P_heat_max' + included_P_heat_max_segment_i_a = [] + included_P_heat_max_segment_i_a = \ + consumers.loc[consumers['id_full'].isin(included_consumer_segment_i_a)]['P_heat_max'].tolist() + sum_included_P_heat_max_segment_i_a = sum(included_P_heat_max_segment_i_a) + merged_segment_i_a.at[0, 'included_P_heat_max'] = sum_included_P_heat_max_segment_i_a + + # # add column 'Gleichzeitigkeitsfaktor' + number_included_consumer_segment_i_a = len(included_consumer_segment_i_a) + Gleichzeitigkeitsfaktor_segment_i_a = pow(1.05, -number_included_consumer_segment_i_a) + merged_segment_i_a.at[0, 'Gleichzeitigkeitsfaktor'] = Gleichzeitigkeitsfaktor_segment_i_a + # add new pipe to super pipes super_pipes = super_pipes.append(merged_segment_i_a) # add pipe_ids to aggregated pipes aggregated_pipes = aggregated_pipes + segment_i_a['id'].tolist() aggregation_segment == True - # TODO: Länge des Segments berechnen und to node from node anpassen break - # Identifizieren welche pipes mit fork_next_segment_i_a verbunden sind elif count_type_forks_pipe_b_segment_i_a == 1: # pipe_next_segment_i_a = 0 # # Nächste Pipe darf nicht die aktuelle sein! - # TODO: Von einigen Forks gehen zwei pipes hin oder zwei pipes weg. Daher andere Überprüfung nötig! - # TODO:EVTL from und to in ein Array und dann die pipe die nicht die letzte ist als neue # TODO:Abfrage schlauer gestalten list_of_connected_pipes_to_next_fork = [] @@ -480,7 +536,7 @@ def aggregation(forks, pipes, consumers, producers): DLGLpipes['to_node'].isin([fork_next_segment_i_a])][ 'id'].tolist() - #print('list of connected pipes: ', list_of_connected_pipes_to_next_fork) + # print('list of connected pipes: ', list_of_connected_pipes_to_next_fork) if segment_i_a.at[b, 'id'] == list_of_connected_pipes_to_next_fork[0]: pipe_next_segment_i_a = DLGLpipes.loc[ @@ -505,7 +561,8 @@ def aggregation(forks, pipes, consumers, producers): # fork zu aggregated fork aggregated_forks.append(fork_next_segment_i_a) - + # aggregated forks segment i a + included_forks_segment_i_a.append(fork_next_segment_i_a) else: print('error: pipe is not connected to any aggregated fork or super fork') From 32dc245476a43385016ab3e703212d8ab7ce8044 Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Thu, 4 Aug 2022 18:49:33 +0200 Subject: [PATCH 07/14] moved aggregation from network to geometry_operations created am example for aggregation translated comments --- dhnx/gistools/geometry_operations.py | 274 +++++++++++++- dhnx/network.py | 282 +-------------- dhnx/optimization/dhs_nodes.py | 1 + dhnx/optimization/optimization_models.py | 1 - .../network_aggregation.py | 59 +++ .../network_data/consumers.geojson | 164 +++++++++ .../network_data/forks.geojson | 170 +++++++++ .../network_data/pipes.geojson | 339 ++++++++++++++++++ .../network_data/producers.geojson | 7 + .../super_network/super_forks.geojson | 44 +++ .../super_network/super_pipes.geojson | 55 +++ 11 files changed, 1120 insertions(+), 276 deletions(-) create mode 100644 examples/optimisation/network_aggregation/network_aggregation.py create mode 100644 examples/optimisation/network_aggregation/network_data/consumers.geojson create mode 100644 examples/optimisation/network_aggregation/network_data/forks.geojson create mode 100644 examples/optimisation/network_aggregation/network_data/pipes.geojson create mode 100644 examples/optimisation/network_aggregation/network_data/producers.geojson create mode 100644 examples/optimisation/network_aggregation/super_network/super_forks.geojson create mode 100644 examples/optimisation/network_aggregation/super_network/super_pipes.geojson diff --git a/dhnx/gistools/geometry_operations.py b/dhnx/gistools/geometry_operations.py index a8efab39..f9fc33e0 100644 --- a/dhnx/gistools/geometry_operations.py +++ b/dhnx/gistools/geometry_operations.py @@ -27,14 +27,17 @@ from shapely.ops import linemerge from shapely.ops import nearest_points from shapely.ops import unary_union + except ImportError: print("Need to install shapely to process geometry.") import logging import matplotlib.pyplot as plt +# from shapely import geometry, ops import pandas as pd - +from shapely import geometry +from shapely import ops def create_forks(lines): """ @@ -511,3 +514,272 @@ def check_crs(gdf, crs=4647): logging.info('CRS of GeoDataFrame converted to EPSG:{0}'.format(crs)) return gdf + +def aggregation(forks, pipes, consumers, producers): + + """ + This function forms a new aggregated network consisting of super forks, super pipes and super produsers + Super forks are forks with less or more than two connections to DL or are connected to GL. + Super pipes are all pipes between those super forks + + Parameters + ---------- + forks : geopandas.GeoDataFrame + Location of forks. Expected geometry: Polygons or Points. + pipes : geopandas.GeoDataFrame + Routes for the DHS. Expected geometry Linestrings or MultilineStrings. + The graph of this line network should be connected. + consumers : geopandas.GeoDataFrame + Location of demand/consumers. Expected geometry: Polygons or Points. + producers : geopandas.GeoDataFrame + Location of supply sites. Expected geometry: Polygons or Points. + + Returns + ------- + dict : Results of aggregation. Contains: + - 'super_forks' : geopandas.GeoDataFrame + forks identifyed as super forks + - 'super_pipes' : geopandas.GeoDataFrame + pipes aggregated to super pipes + - 'super_producer' : geopandas.GeoDataFrame + unchanged producers + - 'super_consumer' : geopandas.GeoDataFrame + unchanged consumers + + Example: + network_aggregation + """ + + + # # # 1. identify super forks + # DL and GL pipes copied from pipes + DLpipes = pipes.loc[pipes['type'].isin(['DL'])] + GLpipes = pipes.loc[pipes['type'].isin(['GL'])] + + # count connections of forks to DL pipes + count_forks = DLpipes['from_node'].value_counts() + DLpipes['to_node'].value_counts() + + # identify super forks with less or more than two connections + count_superforks = count_forks[~count_forks.isin([2])] + + # add producer super forks + producers_superforks = GLpipes['from_node'].tolist() + GLpipes['to_node'].tolist() + + # save indexes of super forks + superforks_indexlist = count_superforks.index.tolist() + producers_superforks + + # copy super forks out of forks, if they are identified as super fork + super_forks = forks.copy() + super_forks = super_forks[super_forks['id_full'].isin(superforks_indexlist)] + super_forks = super_forks.reset_index(drop=True) + + # # # 2. identify and merge super pipes + + # initialize super pipes + super_pipes = pipes.copy() + super_pipes = super_pipes.drop(range(0, len(pipes))) + # initialize lists for aggregated forks and pipes + aggregated_forks = [] + aggregated_pipes = [] + + # initialize HL pipes for aggregated_consumers_segment_i_a + HLpipes = pipes.loc[pipes['type'].isin(['HL'])] + # DL and GL pipes + DLGLpipes = pipes.loc[pipes['type'].isin(['DL', 'GL'])] + + # # # first loop: go throught super forks + # the length is absolute and id starts at 0 + i = -1 + while i <= len(super_forks) - 2: + i += 1 + # select the current super fork (i)... + superfork_i_id_full = super_forks.loc[i]['id_full'] + # ... and add to the aggregated forks + aggregated_forks.append(superfork_i_id_full) + + # search for consumer which are connected with super fork i + aggregated_consumer_super_fork_i = [] + aggregated_consumer_super_fork_i = HLpipes.loc[HLpipes['from_node'] == superfork_i_id_full]['to_node'].tolist() + str_aggregated_consumer_super_forks = ', '.join(aggregated_consumer_super_fork_i) + index = super_forks.loc[super_forks['id_full'] == superfork_i_id_full].index[0] + super_forks.at[index, 'aggregated_consumers'] = str_aggregated_consumer_super_forks + + # add the max_heat off all connected consumers to super fork i + aggregated_P_heat_super_fork_i = [] + aggregated_P_heat_super_fork_i = consumers.loc[consumers['id_full'].isin(aggregated_consumer_super_fork_i)][ + 'P_heat_max'].tolist() + sum_aggregated_P_heat_max_super_fork_i = sum(aggregated_P_heat_super_fork_i) + super_forks.at[index, 'aggregated_P_heat_max'] = sum_aggregated_P_heat_max_super_fork_i + + # Find pipes connected to the super fork i and save them in a GeoDataFrame. + pipes_superfork_i_from_node = DLGLpipes[DLGLpipes['from_node'] == superfork_i_id_full] + pipes_superfork_i_to_node = DLGLpipes[DLGLpipes['to_node'] == superfork_i_id_full] + pipes_superfork_i = pipes_superfork_i_from_node.append(pipes_superfork_i_to_node) + pipes_superfork_i = pipes_superfork_i.reset_index(drop=True) + + # # # second loop: go through super pipes a from super fork i + # the length is absolute and id starts at 0 + a = - 1 + while a <= len(pipes_superfork_i) - 2: + a += 1 + # If the pipe has already been aggregated, the next pipe should be checked + if pipes_superfork_i.loc[a]['id'] in aggregated_pipes: + continue # evtl. a += 1 vorher break oder continue + # A segment is the accumulation of pipes before they are merged + # The segment is initialized and the pipe a is the first pipe of the segment + segment_i_a = pipes_superfork_i.copy() + segment_i_a = segment_i_a[segment_i_a.index == a] + segment_i_a = segment_i_a.reset_index(drop=True) + included_forks_segment_i_a = [] + # # # thrid loop: Go through the elements b (pipes and forks) of super pipe a + aggregation_segment = False + b = 0 + while aggregation_segment == False: + + # Searching for the next fork connected to pipe b + fork_from_pipe_b_segment_i_a = segment_i_a.at[b, 'from_node'] + fork_to_pipe_b_segment_i_a = segment_i_a.at[b, 'to_node'] + count_type_forks_pipe_b_segment_i_a = 0 + + # Initialize the next fork + fork_next_segment_i_a = 0 + + # Check if the fork 'from' is already aggregated or is a superfork or is a producer + # If yes the number of count_type_forks_pipe_b_segment_i_a is increased ... + # ... if not the fork to the next segment is the fork 'from'. + if fork_from_pipe_b_segment_i_a in super_forks[ + 'id_full'].unique() or fork_from_pipe_b_segment_i_a in aggregated_forks or fork_from_pipe_b_segment_i_a in \ + producers['id_full'].unique(): + count_type_forks_pipe_b_segment_i_a += 1 + # The next fork must not be aggregated yet + else: + fork_next_segment_i_a = fork_from_pipe_b_segment_i_a + + # Check if the fork 'to' is already aggregated or is a superfork or is a producer + # If yes the number of count_type_forks_pipe_b_segment_i_a is increased + # ... if not the fork to the next segment is the fork 'to'. + if fork_to_pipe_b_segment_i_a in super_forks[ + 'id_full'].unique() or fork_to_pipe_b_segment_i_a in aggregated_forks or fork_to_pipe_b_segment_i_a in \ + producers['id_full'].unique(): + count_type_forks_pipe_b_segment_i_a += 1 + # The next fork must not be aggregated yet + else: + fork_next_segment_i_a = fork_to_pipe_b_segment_i_a + + # If both forks are aggregated or are super forks the segment is merged + if count_type_forks_pipe_b_segment_i_a == 2: + # merge new geometry + geom_multi_segment_i_a = geometry.MultiLineString(segment_i_a['geometry'].unique()) + geom_line_segment_i_a = ops.linemerge(geom_multi_segment_i_a) + # create new pipe + merged_segment_i_a = segment_i_a[segment_i_a.index == 0] + merged_segment_i_a['geometry'] = geom_line_segment_i_a + + # # set from_node and to_node of the merged segment + # from_node is the super fork i + merged_segment_i_a.at[0, 'from_node'] = superfork_i_id_full + # to_node is not the super fork i and ether a super fork or a producer + last_fork_segment_i_a = 0 + if fork_to_pipe_b_segment_i_a != superfork_i_id_full and (fork_to_pipe_b_segment_i_a in super_forks[ + 'id_full'].unique() or fork_to_pipe_b_segment_i_a in \ + producers['id_full'].unique()): + + last_fork_segment_i_a = fork_to_pipe_b_segment_i_a + + elif fork_from_pipe_b_segment_i_a != superfork_i_id_full and ( + fork_from_pipe_b_segment_i_a in super_forks[ + 'id_full'].unique() or fork_from_pipe_b_segment_i_a in \ + producers['id_full'].unique()): + + last_fork_segment_i_a = fork_from_pipe_b_segment_i_a + + else: + print('error: last fork is not a super fork') + + merged_segment_i_a.at[0, 'to_node'] = last_fork_segment_i_a + + + # # add column 'included_forks' + str_included_forks_segment_i_a = ', '.join(included_forks_segment_i_a) + merged_segment_i_a.at[0, 'included_forks'] = str_included_forks_segment_i_a + + # # add column 'aggregated_consumers' + included_consumer_segment_i_a = [] + included_consumer_segment_i_a = HLpipes.loc[HLpipes['from_node'].isin(included_forks_segment_i_a)][ + 'to_node'].tolist() + str_included_consumer_segment_i_a = ', '.join(included_consumer_segment_i_a) + merged_segment_i_a.at[0, 'included_consumer'] = str_included_consumer_segment_i_a + + # # add column 'aggregated_P_heat_max' + included_P_heat_max_segment_i_a = [] + included_P_heat_max_segment_i_a = \ + consumers.loc[consumers['id_full'].isin(included_consumer_segment_i_a)]['P_heat_max'].tolist() + sum_included_P_heat_max_segment_i_a = sum(included_P_heat_max_segment_i_a) + merged_segment_i_a.at[0, 'included_P_heat_max'] = sum_included_P_heat_max_segment_i_a + + # # add column 'Gleichzeitigkeitsfaktor' + number_included_consumer_segment_i_a = len(included_consumer_segment_i_a) + Gleichzeitigkeitsfaktor_segment_i_a = pow(1.05, -number_included_consumer_segment_i_a) # Note: this is just a placeholder formula + merged_segment_i_a.at[0, 'Gleichzeitigkeitsfaktor'] = Gleichzeitigkeitsfaktor_segment_i_a + + # add new pipe to super pipes + super_pipes = super_pipes.append(merged_segment_i_a) + # add pipe_ids to aggregated pipes + aggregated_pipes = aggregated_pipes + segment_i_a['id'].tolist() + + aggregation_segment == True + + break + + # Identify which pipes are connected to fork_next_segment_i_a + elif count_type_forks_pipe_b_segment_i_a == 1: # + + pipe_next_segment_i_a = 0 + + # Next pipe must not be the current one + list_of_connected_pipes_to_next_fork = [] + list_of_connected_pipes_to_next_fork = list_of_connected_pipes_to_next_fork + DLGLpipes.loc[ + DLGLpipes['from_node'].isin([fork_next_segment_i_a])]['id'].tolist() + DLGLpipes.loc[ + DLGLpipes['to_node'].isin([fork_next_segment_i_a])][ + 'id'].tolist() + + + if segment_i_a.at[b, 'id'] == list_of_connected_pipes_to_next_fork[0]: + pipe_next_segment_i_a = DLGLpipes.loc[ + DLGLpipes['id'].isin([list_of_connected_pipes_to_next_fork[1]])] + + elif segment_i_a.at[b, 'id'] == list_of_connected_pipes_to_next_fork[1]: + pipe_next_segment_i_a = DLGLpipes.loc[ + DLGLpipes['id'].isin([list_of_connected_pipes_to_next_fork[0]])] + + else: + print('error: next fork doesnt connect to any new pipe') + + # count b up + b += 1 + + # add to segment i_a + segment_i_a = segment_i_a.append(pipe_next_segment_i_a) + + # reset index + segment_i_a = segment_i_a.reset_index(drop=True) + + # add fork to aggregated forks + aggregated_forks.append(fork_next_segment_i_a) + + # add fork to aggregated forks segment i a + included_forks_segment_i_a.append(fork_next_segment_i_a) + else: + print('error: pipe is not connected to any aggregated fork or super fork') + + # Calculate length of super_pipes + super_pipes['length'] = super_pipes.length + + # return + return { + 'super_forks': super_forks, + 'super_consumers': consumers, # not yet defined + 'super_producers': producers, # not yet defined + 'super_pipes': super_pipes, + } + diff --git a/dhnx/network.py b/dhnx/network.py index 3052afd8..e913663a 100644 --- a/dhnx/network.py +++ b/dhnx/network.py @@ -25,6 +25,7 @@ from .optimization.optimization_models import setup_optimise_investment from .optimization.optimization_models import solve_optimisation_investment from .simulation import simulate +from .gistools.geometry_operations import aggregation dir_name = os.path.dirname(__file__) @@ -318,279 +319,12 @@ def optimize_investment(self, invest_options, **kwargs): def simulate(self, *args, **kwargs): self.results.simulation = simulate(self, *args, **kwargs) - def aggregate(self, maxlength = 100): - """ - :param maxlength: - :return: - """ + def aggregate(self): + self.aggregatednetwork = dict() - test_dict = aggregation(forks = self.components["forks"], - pipes = self.components["pipes"], - consumers = self.components["consumers"], - producers = self.components["producers"]) - -# TODO: Straßen werden als ganzes aggregiert, obwohl das nicht immer sinnvoll ist (siehe Straße "Im Grund" oben rechts) - -def aggregation(forks, pipes, consumers, producers): - - from shapely import geometry, ops - import geopandas as gpd - import matplotlib.pyplot as plt - import pandas as pd - -# TODO: Warnings anschalten - import warnings - warnings.filterwarnings("ignore") - - # # # Identifizierung der Superforks - # DL und GL aus pipes speichern - DLGLpipes = pipes.loc[pipes['type'].isin(['DL', 'GL'])] - - # Anzahl von Verbindungen von den forks zählen (from_node und to_node) - count_forks_from_node = DLGLpipes['from_node'].value_counts() - count_forks_to_node = DLGLpipes['to_node'].value_counts() - - # Anzahl von from_node und to_node addieren - count_forks = count_forks_from_node.add(count_forks_to_node, fill_value=0) - - # Die Superforks, also forks mit 1, 3, 4 Verbindungen, identifizieren - count_superforks = count_forks[count_forks.isin([1, 3, 4])] - - # Index von den Superforks speichern - superforks_indexlist = count_superforks.index.tolist() - - # Superforks aus forks nehmen, wenn die forks als Superfork identifiziert wurden - super_forks = forks.copy() - super_forks = super_forks[super_forks['id_full'].isin(superforks_indexlist)] - super_forks = super_forks.reset_index(drop=True) - - # # # 2. SuperPipes identifizieren und mergen - - # super_pipes initialisieren - super_pipes = pipes.copy() - super_pipes = super_pipes.drop(range(0, len(pipes))) - # Liste für aggregierte forks und pipes initialisieren - aggregated_forks = [] - aggregated_pipes = [] - - # HL pipes für aggregated_HLpipes_segment_i_a - HLpipes = pipes.loc[pipes['type'].isin(['HL'])] - - # i = -1 - i = -1 # # # Erste Schleife: Superforks durchgehen - - while i <= len(super_forks) - 2: # länge ist absolut und id startet bei 0 - i += 1 - # Den aktuellen super_fork (i) aus der super_fork Liste auswählen ... - superfork_i_id_full = super_forks.loc[i]['id_full'] - # ... und zu den aggregierten hinzugügen - aggregated_forks.append(superfork_i_id_full) - - # Consumer die mit dem super-fork verbunden sind Heraussuchen - aggregated_consumer_super_fork_i = [] - aggregated_consumer_super_fork_i = HLpipes.loc[HLpipes['from_node'] == superfork_i_id_full]['to_node'].tolist() - str_aggregated_consumer_super_forks = ', '.join(aggregated_consumer_super_fork_i) - index = super_forks.loc[super_forks['id_full'] == superfork_i_id_full].index[0] - super_forks.at[index, 'aggregated_consumers'] = str_aggregated_consumer_super_forks - - # max heat raus suchen - aggregated_P_heat_super_fork_i = [] - aggregated_P_heat_super_fork_i = consumers.loc[consumers['id_full'].isin(aggregated_consumer_super_fork_i)][ - 'P_heat_max'].tolist() - sum_aggregated_P_heat_max_super_fork_i = sum(aggregated_P_heat_super_fork_i) - super_forks.at[index, 'aggregated_P_heat_max'] = sum_aggregated_P_heat_max_super_fork_i - - # Pipes die am Superfork i verbunden sind raus suchen und in einen GeoDataFrame speichern - pipes_superfork_i_from_node = DLGLpipes[DLGLpipes['from_node'] == superfork_i_id_full] - pipes_superfork_i_to_node = DLGLpipes[DLGLpipes['to_node'] == superfork_i_id_full] - pipes_superfork_i = pipes_superfork_i_from_node.append(pipes_superfork_i_to_node) - pipes_superfork_i = pipes_superfork_i.reset_index(drop=True) - - a = - 1 # # # Zweite Schleife: Superpipes a vom Superfork i durchgehen - while a <= len(pipes_superfork_i) - 2: # länge ist absolut und id startet bei 0 - a += 1 - # Wenn die pipe schon aggregiert wurde, soll die nächst pipe überprüft werden - if pipes_superfork_i.loc[a]['id'] in aggregated_pipes: - continue # evtl. a += 1 vorher break oder continue - # Ein Segment ist die Anreihung von pipes bevor diese gemerget werden - # Das Segment wird initialisiert und die pipe a ist die erste pipe des Segments - segment_i_a = pipes_superfork_i.copy() - segment_i_a = segment_i_a[segment_i_a.index == a] - segment_i_a = segment_i_a.reset_index(drop=True) - included_forks_segment_i_a = [] - - aggregation_segment = False # # # Dritte Schleife: Die Elemente b von pipe a durchgehen - b = 0 - while aggregation_segment == False: - - # print('Superfork i: ', superfork_i_id_full) - # print('pipe a: ', segment_i_a.at[0, 'id']) - # print('segment b: ', b) - - # Heraussuchen des nächsten forks der mit der pipe b verbunden ist - fork_from_pipe_b_segment_i_a = 0 # evtl nicht nötig - fork_to_pipe_b_segment_i_a = 0 # evtl nicht nötig - fork_from_pipe_b_segment_i_a = segment_i_a.at[b, 'from_node'] # hier tritt ein fehler auf - fork_to_pipe_b_segment_i_a = segment_i_a.at[b, 'to_node'] - count_type_forks_pipe_b_segment_i_a = 0 - status_fork_from_pipe_b_segment_i_a = 0 # nicht benötigt - status_fork_to_pipe_b_segment_i_a = 0 # nicht benötigt - # Initialisieren des nächsten forks - fork_next_segment_i_a = 0 - # TODO: Kann der nächste Fork überhaupt in aggregated forks sein, wenn die pipe nicht aggregiert ist? - # Prüfen ob der fork 'from' bereits aggregiert oder ein superfork ist oder ein producer ist - # Wenn ja wird die Anzahl der count_type_forks_pipe_b_segment_i_a erhöht ... - # ... falls nicht ist der fork zum nächsten segment der fork 'from' - if fork_from_pipe_b_segment_i_a in super_forks[ - 'id_full'].unique() or fork_from_pipe_b_segment_i_a in aggregated_forks or fork_from_pipe_b_segment_i_a in \ - producers['id_full'].unique(): - count_type_forks_pipe_b_segment_i_a += 1 - status_fork_from_pipe_b_segment_i_a = 'aggregated/superfork' # nicht benötigt - else: - fork_next_segment_i_a = fork_from_pipe_b_segment_i_a # Der nächste fork darf noch nicht aggregiert sein - # Prüfen ob der fork 'to' bereits aggregiert oder ein superfork ist oder ein producer ist - # Wenn ja wird die Anzahl der count_type_forks_pipe_b_segment_i_a erhöht - # ... falls nicht ist der fork zum nächsten segment der fork 'to' - if fork_to_pipe_b_segment_i_a in super_forks[ - 'id_full'].unique() or fork_to_pipe_b_segment_i_a in aggregated_forks or fork_to_pipe_b_segment_i_a in \ - producers['id_full'].unique(): - count_type_forks_pipe_b_segment_i_a += 1 - status_fork_to_pipe_b_segment_i_a = 'aggregated/superfork' # nicht benötigt - else: - fork_next_segment_i_a = fork_to_pipe_b_segment_i_a # Der nächste fork darf noch nicht aggregiert sein - # Wenn beide forks aggregiert sind wird das Segment gemergt - if count_type_forks_pipe_b_segment_i_a == 2: - # merge new geometry - geom_multi_segment_i_a = geometry.MultiLineString(segment_i_a['geometry'].unique()) - geom_line_segment_i_a = ops.linemerge(geom_multi_segment_i_a) - # create new pipe - merged_segment_i_a = segment_i_a[segment_i_a.index == 0] - merged_segment_i_a['geometry'] = geom_line_segment_i_a - - # # set from_node and to_node of the merged segment - # from_node is the super fork i - merged_segment_i_a.at[0, 'from_node'] = superfork_i_id_full - # to_node is not the super fork i and ether a super fork or a producer - last_fork_segment_i_a = 0 - if fork_to_pipe_b_segment_i_a != superfork_i_id_full and (fork_to_pipe_b_segment_i_a in super_forks[ - 'id_full'].unique() or fork_to_pipe_b_segment_i_a in \ - producers['id_full'].unique()): - - last_fork_segment_i_a = fork_to_pipe_b_segment_i_a - - elif fork_from_pipe_b_segment_i_a != superfork_i_id_full and ( - fork_from_pipe_b_segment_i_a in super_forks[ - 'id_full'].unique() or fork_from_pipe_b_segment_i_a in \ - producers['id_full'].unique()): - - last_fork_segment_i_a = fork_from_pipe_b_segment_i_a - - else: - print('error: last fork is not a') - - merged_segment_i_a.at[0, 'to_node'] = last_fork_segment_i_a - # # - # # add column 'included_forks' - # merged_segment_i_a['aggregated_forks'] = merged_segment_i_a['aggregated_forks'].astype(object) - str_included_forks_segment_i_a = ', '.join(included_forks_segment_i_a) - merged_segment_i_a.at[0, 'included_forks'] = str_included_forks_segment_i_a - - # # add column 'aggregated_consumers' - included_consumer_segment_i_a = [] - included_consumer_segment_i_a = HLpipes.loc[HLpipes['from_node'].isin(included_forks_segment_i_a)][ - 'to_node'].tolist() - str_included_consumer_segment_i_a = ', '.join(included_consumer_segment_i_a) - merged_segment_i_a.at[0, 'included_consumer'] = str_included_consumer_segment_i_a - - # # add column 'aggregated_P_heat_max' - included_P_heat_max_segment_i_a = [] - included_P_heat_max_segment_i_a = \ - consumers.loc[consumers['id_full'].isin(included_consumer_segment_i_a)]['P_heat_max'].tolist() - sum_included_P_heat_max_segment_i_a = sum(included_P_heat_max_segment_i_a) - merged_segment_i_a.at[0, 'included_P_heat_max'] = sum_included_P_heat_max_segment_i_a - - # # add column 'Gleichzeitigkeitsfaktor' - number_included_consumer_segment_i_a = len(included_consumer_segment_i_a) - Gleichzeitigkeitsfaktor_segment_i_a = pow(1.05, -number_included_consumer_segment_i_a) - merged_segment_i_a.at[0, 'Gleichzeitigkeitsfaktor'] = Gleichzeitigkeitsfaktor_segment_i_a - - # add new pipe to super pipes - super_pipes = super_pipes.append(merged_segment_i_a) - # add pipe_ids to aggregated pipes - aggregated_pipes = aggregated_pipes + segment_i_a['id'].tolist() - - aggregation_segment == True - - break - - # Identifizieren welche pipes mit fork_next_segment_i_a verbunden sind - elif count_type_forks_pipe_b_segment_i_a == 1: # - - pipe_next_segment_i_a = 0 # - # Nächste Pipe darf nicht die aktuelle sein! - # TODO:Abfrage schlauer gestalten - - list_of_connected_pipes_to_next_fork = [] - list_of_connected_pipes_to_next_fork = list_of_connected_pipes_to_next_fork + DLGLpipes.loc[ - DLGLpipes['from_node'].isin([fork_next_segment_i_a])]['id'].tolist() + DLGLpipes.loc[ - DLGLpipes['to_node'].isin([fork_next_segment_i_a])][ - 'id'].tolist() - - # print('list of connected pipes: ', list_of_connected_pipes_to_next_fork) - - if segment_i_a.at[b, 'id'] == list_of_connected_pipes_to_next_fork[0]: - pipe_next_segment_i_a = DLGLpipes.loc[ - DLGLpipes['id'].isin([list_of_connected_pipes_to_next_fork[1]])] - - elif segment_i_a.at[b, 'id'] == list_of_connected_pipes_to_next_fork[1]: - pipe_next_segment_i_a = DLGLpipes.loc[ - DLGLpipes['id'].isin([list_of_connected_pipes_to_next_fork[0]])] - - else: - print('error: next fork doesnt connect to any new pipe') - - # b hoch zählen - b += 1 - - # hinzufügen zu segment i_a - segment_i_a = segment_i_a.append(pipe_next_segment_i_a) - - # index resetten - segment_i_a = segment_i_a.reset_index(drop=True) - - # fork zu aggregated fork - aggregated_forks.append(fork_next_segment_i_a) - - # aggregated forks segment i a - included_forks_segment_i_a.append(fork_next_segment_i_a) - else: - print('error: pipe is not connected to any aggregated fork or super fork') - - # Länge der super_pipes berechnen - super_pipes['length'] = super_pipes.length - - print('list of aggregated pipes: ', aggregated_pipes) - print('list of aggregated forks: ', aggregated_forks) - - # plotten - _, ax = plt.subplots() - super_pipes.plot(ax=ax, color='red') - # consumers.plot(ax=ax, color='green') - producers.plot(ax=ax, color='blue') - super_forks.plot(ax=ax, color='grey') - plt.title('Geometry after aggregation of pipes') - plt.show() - - # Exportieren als geojson - super_forks.to_file('super_forks.geojson', driver='GeoJSON') - super_pipes.to_file('super_pipes.geojson', driver='GeoJSON') - - - # return - return { - 'super_forks': super_forks, - 'super_consumers': consumers, # not yet defined - 'super_producers': producers, # not yet defined - 'super_pipes': super_pipes, - } + forks = self.components["forks"] + pipes = self.components["pipes"] + consumers = self.components["consumers"] + producers = self.components["producers"] + self.aggregatednetwork = aggregation(forks, pipes, consumers, producers) diff --git a/dhnx/optimization/dhs_nodes.py b/dhnx/optimization/dhs_nodes.py index fa158ef8..f8afe2a1 100644 --- a/dhnx/optimization/dhs_nodes.py +++ b/dhnx/optimization/dhs_nodes.py @@ -279,3 +279,4 @@ def add_nodes_houses(opti_network, nodes, busd, label_1): nodes = ac.add_storage(item, d_labels, nodes, busd) return nodes, busd + diff --git a/dhnx/optimization/optimization_models.py b/dhnx/optimization/optimization_models.py index e5993c9a..aa75dc63 100644 --- a/dhnx/optimization/optimization_models.py +++ b/dhnx/optimization/optimization_models.py @@ -704,7 +704,6 @@ def setup_optimise_investment( Additional logging info is printed. write_lp_file : bool Linear program file is stored (‘User/.oemof/lp_files/DHNx.lp’). - Returns ------- oemof.solph.Model : The oemof.solph.Model is build. diff --git a/examples/optimisation/network_aggregation/network_aggregation.py b/examples/optimisation/network_aggregation/network_aggregation.py new file mode 100644 index 00000000..bd6a2502 --- /dev/null +++ b/examples/optimisation/network_aggregation/network_aggregation.py @@ -0,0 +1,59 @@ + +""" +Using the aggregation function to aggregate a network to a super network + +""" + +from dhnx.network import ThermalNetwork +from dhnx.gistools.geometry_operations import aggregation +import geopandas as gpd +import matplotlib.pyplot as plt + +# Part I: Create a new network out of components using aggregation(forks, pipes, consumers, producers) + +# import the components +pipes = gpd.read_file('network_data/pipes.geojson') +forks = gpd.read_file('network_data/forks.geojson') +consumers = gpd.read_file('network_data/consumers.geojson') +producers = gpd.read_file('network_data/producers.geojson') + +# a new dict with the components of the super network is created +super_network = aggregation(forks, pipes, consumers, producers) + +# plot of the super network +_, ax = plt.subplots() +super_network['super_pipes'].plot(ax=ax, color='red') +super_network['super_producers'].plot(ax=ax, color='blue') +super_network['super_forks'].plot(ax=ax, color='grey') +plt.title('Geometry after aggregation of network') +plt.show() + +# export as geojson +super_network['super_forks'].to_file('super_network/super_forks.geojson', driver='GeoJSON') +super_network['super_pipes'].to_file('super_network/super_pipes.geojson', driver='GeoJSON') + +# Part II: Create a new network out an existing network using aggregate() +# save the imported components in a dict +tn_input = { + 'forks': forks, + 'consumers': consumers, + 'producers': producers, + 'pipes': pipes, +} +# initialize a ThermalNetwork +network = ThermalNetwork() + +# add the pipes, forks, consumer, and producers to the ThermalNetwork +for k, v in tn_input.items(): + network.components[k] = v + +# create a new dict in network with the components of the super network +network.aggregate() + +# plot the supernetwork +_, ax = plt.subplots() +network.aggregatednetwork['super_pipes'].plot(ax=ax, color='red') +network.aggregatednetwork['super_producers'].plot(ax=ax, color='blue') +network.aggregatednetwork['super_forks'].plot(ax=ax, color='grey') +plt.title('Geometry after aggregation of network') +plt.show() diff --git a/examples/optimisation/network_aggregation/network_data/consumers.geojson b/examples/optimisation/network_aggregation/network_data/consumers.geojson new file mode 100644 index 00000000..cccb3839 --- /dev/null +++ b/examples/optimisation/network_aggregation/network_data/consumers.geojson @@ -0,0 +1,164 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, +"features": [ +{ "type": "Feature", "properties": { "id": 0, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "26", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6005014.398159652, "lon": 32506955.091667686, "id_full": "consumers-0", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506955.09166768565774, 6005014.398159652017057 ] } }, +{ "type": "Feature", "properties": { "id": 1, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "7", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 13, "lat": 6005039.2001243038, "lon": 32506801.19564756, "id_full": "consumers-1", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506801.195647560060024, 6005039.200124303810298 ] } }, +{ "type": "Feature", "properties": { "id": 2, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "23", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6005117.4716855129, "lon": 32506947.681407206, "id_full": "consumers-2", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506947.681407205760479, 6005117.471685512922704 ] } }, +{ "type": "Feature", "properties": { "id": 3, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "15", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6004965.1418920262, "lon": 32506936.092872586, "id_full": "consumers-3", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506936.092872586101294, 6004965.141892026178539 ] } }, +{ "type": "Feature", "properties": { "id": 4, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "18", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 10, "lat": 6005020.7555000177, "lon": 32506912.159830295, "id_full": "consumers-4", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506912.159830294549465, 6005020.755500017665327 ] } }, +{ "type": "Feature", "properties": { "id": 5, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "24", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6005069.0707217436, "lon": 32506905.141416907, "id_full": "consumers-5", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506905.141416907310486, 6005069.070721743628383 ] } }, +{ "type": "Feature", "properties": { "id": 6, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "14", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 29, "lat": 6005157.8084080378, "lon": 32506860.149385698, "id_full": "consumers-6", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506860.149385698139668, 6005157.808408037759364 ] } }, +{ "type": "Feature", "properties": { "id": 7, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "38", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 19, "lat": 6004946.5755345263, "lon": 32506980.289583649, "id_full": "consumers-7", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506980.289583649486303, 6004946.575534526258707 ] } }, +{ "type": "Feature", "properties": { "id": 8, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "14", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 37, "lat": 6004969.5314309904, "lon": 32506907.347752009, "id_full": "consumers-8", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506907.347752008587122, 6004969.531430990435183 ] } }, +{ "type": "Feature", "properties": { "id": 9, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "12", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6005105.8724987824, "lon": 32506831.701748647, "id_full": "consumers-9", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506831.70174864679575, 6005105.872498782351613 ] } }, +{ "type": "Feature", "properties": { "id": 10, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "11", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 21, "lat": 6005102.6700107055, "lon": 32506807.097907729, "id_full": "consumers-10", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506807.097907729446888, 6005102.670010705478489 ] } }, +{ "type": "Feature", "properties": { "id": 11, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "1", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6005003.6841488769, "lon": 32506912.889645789, "id_full": "consumers-11", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506912.889645788818598, 6005003.684148876927793 ] } }, +{ "type": "Feature", "properties": { "id": 12, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "15", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6005124.2090706732, "lon": 32506805.105399035, "id_full": "consumers-12", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506805.105399034917355, 6005124.209070673212409 ] } }, +{ "type": "Feature", "properties": { "id": 13, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "23", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 18, "lat": 6004967.7664943011, "lon": 32506969.710390974, "id_full": "consumers-13", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506969.710390973836184, 6004967.766494301147759 ] } }, +{ "type": "Feature", "properties": { "id": 14, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "28", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 47, "lat": 6004917.8796548136, "lon": 32506988.938321896, "id_full": "consumers-14", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506988.938321895897388, 6004917.879654813557863 ] } }, +{ "type": "Feature", "properties": { "id": 15, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "7", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 19, "lat": 6005079.1816411465, "lon": 32506809.699875001, "id_full": "consumers-15", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506809.699875, 6005079.181641146540642 ] } }, +{ "type": "Feature", "properties": { "id": 16, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "24", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6004938.8065498779, "lon": 32506937.939764459, "id_full": "consumers-16", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506937.939764458686113, 6004938.806549877859652 ] } }, +{ "type": "Feature", "properties": { "id": 17, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "8", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 35, "lat": 6005081.0198890623, "lon": 32506830.531552043, "id_full": "consumers-17", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506830.531552042812109, 6005081.019889062270522 ] } }, +{ "type": "Feature", "properties": { "id": 18, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "3", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 13, "lat": 6005056.8914554343, "lon": 32506810.789779346, "id_full": "consumers-18", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506810.789779346436262, 6005056.891455434262753 ] } }, +{ "type": "Feature", "properties": { "id": 19, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "20", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 22, "lat": 6005150.1473607281, "lon": 32506826.503114428, "id_full": "consumers-19", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506826.503114428371191, 6005150.147360728122294 ] } }, +{ "type": "Feature", "properties": { "id": 20, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "19", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6005148.5918906117, "lon": 32506805.018891096, "id_full": "consumers-20", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506805.018891096115112, 6005148.591890611685812 ] } }, +{ "type": "Feature", "properties": { "id": 21, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "4", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6005058.4252985809, "lon": 32506832.678980179, "id_full": "consumers-21", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506832.678980179131031, 6005058.425298580899835 ] } }, +{ "type": "Feature", "properties": { "id": 22, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "15", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6005049.6898071039, "lon": 32506890.606906869, "id_full": "consumers-22", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506890.606906868517399, 6005049.689807103946805 ] } }, +{ "type": "Feature", "properties": { "id": 23, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "16", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6005143.9086001301, "lon": 32506878.119526301, "id_full": "consumers-23", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506878.119526300579309, 6005143.90860013011843 ] } }, +{ "type": "Feature", "properties": { "id": 24, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "20", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 41, "lat": 6005111.882618608, "lon": 32506885.800216243, "id_full": "consumers-24", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506885.800216242671013, 6005111.882618607953191 ] } }, +{ "type": "Feature", "properties": { "id": 25, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "4", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 11, "lat": 6004998.2642213628, "lon": 32506887.716799375, "id_full": "consumers-25", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506887.71679937466979, 6004998.264221362769604 ] } }, +{ "type": "Feature", "properties": { "id": 26, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "16", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 30, "lat": 6005127.3075135322, "lon": 32506832.157563895, "id_full": "consumers-26", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506832.157563894987106, 6005127.307513532228768 ] } }, +{ "type": "Feature", "properties": { "id": 27, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "11", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 42, "lat": 6005045.7003009589, "lon": 32506849.502673149, "id_full": "consumers-27", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506849.502673149108887, 6005045.700300958938897 ] } }, +{ "type": "Feature", "properties": { "id": 28, "addr:city": null, "addr:country": null, "addr:housenumber": null, "addr:postcode": null, "addr:street": null, "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6005117.5736557655, "lon": 32506748.283596221, "id_full": "consumers-28", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506748.283596221357584, 6005117.573655765503645 ] } }, +{ "type": "Feature", "properties": { "id": 29, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "8", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 12, "lat": 6005268.9250492593, "lon": 32506643.900641382, "id_full": "consumers-29", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506643.90064138174057, 6005268.925049259327352 ] } }, +{ "type": "Feature", "properties": { "id": 30, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "16", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 45, "lat": 6005290.2845184356, "lon": 32506704.650234036, "id_full": "consumers-30", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506704.650234036147594, 6005290.28451843559742 ] } }, +{ "type": "Feature", "properties": { "id": 31, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "4", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6005258.7629708126, "lon": 32506614.063669916, "id_full": "consumers-31", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506614.063669916242361, 6005258.762970812618732 ] } }, +{ "type": "Feature", "properties": { "id": 32, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "2", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005256.8101138333, "lon": 32506605.618858032, "id_full": "consumers-32", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506605.618858031928539, 6005256.810113833285868 ] } }, +{ "type": "Feature", "properties": { "id": 33, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "20", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6005297.4618501561, "lon": 32506730.313123833, "id_full": "consumers-33", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506730.31312383338809, 6005297.461850156076252 ] } }, +{ "type": "Feature", "properties": { "id": 34, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "24", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005301.12637321, "lon": 32506753.056819227, "id_full": "consumers-34", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506753.056819226592779, 6005301.126373209990561 ] } }, +{ "type": "Feature", "properties": { "id": 35, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "30", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005311.0729700895, "lon": 32506788.281840146, "id_full": "consumers-35", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506788.281840145587921, 6005311.072970089502633 ] } }, +{ "type": "Feature", "properties": { "id": 36, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "18", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 45, "lat": 6005294.7157154214, "lon": 32506718.955610078, "id_full": "consumers-36", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506718.955610077828169, 6005294.715715421363711 ] } }, +{ "type": "Feature", "properties": { "id": 37, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "10", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 41, "lat": 6005274.7220947165, "lon": 32506666.151909608, "id_full": "consumers-37", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506666.151909608393908, 6005274.722094716504216 ] } }, +{ "type": "Feature", "properties": { "id": 38, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "26-28", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 14, "lat": 6005303.687501289, "lon": 32506769.625647165, "id_full": "consumers-38", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506769.625647164881229, 6005303.687501288950443 ] } }, +{ "type": "Feature", "properties": { "id": 39, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "14", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 44, "lat": 6005287.4198318198, "lon": 32506692.624002319, "id_full": "consumers-39", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506692.624002318829298, 6005287.419831819832325 ] } }, +{ "type": "Feature", "properties": { "id": 40, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "22", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6005297.435577265, "lon": 32506744.274268441, "id_full": "consumers-40", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506744.274268440902233, 6005297.435577264986932 ] } }, +{ "type": "Feature", "properties": { "id": 41, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "6", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6005262.7867935933, "lon": 32506628.192365296, "id_full": "consumers-41", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506628.192365296185017, 6005262.78679359331727 ] } }, +{ "type": "Feature", "properties": { "id": 42, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "34", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": "expert", "opening_hours": "Mo-Fr 10:00-19:00; Sa 10:00-18:00", "shop": "electronics", "toilets:wheelchair": "no", "website": "https://www.expert.de/heide", "wheelchair": "yes", "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6005279.8268856313, "lon": 32506833.239296399, "id_full": "consumers-42", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506833.239296399056911, 6005279.82688563130796 ] } }, +{ "type": "Feature", "properties": { "id": 43, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "12", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 27, "lat": 6005278.9765616804, "lon": 32506682.052598346, "id_full": "consumers-43", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506682.052598346024752, 6005278.976561680436134 ] } }, +{ "type": "Feature", "properties": { "id": 44, "addr:city": null, "addr:country": null, "addr:housenumber": null, "addr:postcode": null, "addr:street": null, "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 16, "lat": 6004937.8572175251, "lon": 32506694.255998805, "id_full": "consumers-44", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506694.255998805165291, 6004937.857217525132 ] } }, +{ "type": "Feature", "properties": { "id": 45, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "76b", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 47, "lat": 6004774.3591262139, "lon": 32506927.587524947, "id_full": "consumers-45", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506927.587524946779013, 6004774.359126213937998 ] } }, +{ "type": "Feature", "properties": { "id": 46, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "22", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 30, "lat": 6004956.1403770419, "lon": 32506790.224478904, "id_full": "consumers-46", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506790.224478904157877, 6004956.140377041883767 ] } }, +{ "type": "Feature", "properties": { "id": 47, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "51", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6004976.8933069119, "lon": 32506800.673641693, "id_full": "consumers-47", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506800.673641692847013, 6004976.893306911922991 ] } }, +{ "type": "Feature", "properties": { "id": 48, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "32", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 29, "lat": 6004880.5506579829, "lon": 32507019.014392219, "id_full": "consumers-48", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507019.014392219483852, 6004880.550657982937992 ] } }, +{ "type": "Feature", "properties": { "id": 49, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "33", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6005020.8652904602, "lon": 32506703.973344795, "id_full": "consumers-49", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506703.973344795405865, 6005020.865290460176766 ] } }, +{ "type": "Feature", "properties": { "id": 50, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "76a", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 12, "lat": 6004753.8610179368, "lon": 32506933.140344154, "id_full": "consumers-50", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506933.140344154089689, 6004753.861017936840653 ] } }, +{ "type": "Feature", "properties": { "id": 51, "addr:city": null, "addr:country": null, "addr:housenumber": null, "addr:postcode": null, "addr:street": null, "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6004722.3495585024, "lon": 32506942.488591094, "id_full": "consumers-51", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506942.488591093569994, 6004722.349558502435684 ] } }, +{ "type": "Feature", "properties": { "id": 52, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "39", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 21, "lat": 6005023.2842090596, "lon": 32506735.023828138, "id_full": "consumers-52", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506735.023828137665987, 6005023.284209059551358 ] } }, +{ "type": "Feature", "properties": { "id": 53, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "60", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 11, "lat": 6004793.0713815745, "lon": 32507000.015993539, "id_full": "consumers-53", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507000.015993539243937, 6004793.071381574496627 ] } }, +{ "type": "Feature", "properties": { "id": 54, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "5", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005046.1254884526, "lon": 32506779.872779753, "id_full": "consumers-54", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506779.872779753059149, 6005046.125488452613354 ] } }, +{ "type": "Feature", "properties": { "id": 55, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "55", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 14, "lat": 6004963.519941763, "lon": 32506818.462146334, "id_full": "consumers-55", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506818.462146334350109, 6004963.519941763021052 ] } }, +{ "type": "Feature", "properties": { "id": 56, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "57", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6004956.3345135441, "lon": 32506828.5784017, "id_full": "consumers-56", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506828.578401699662209, 6004956.334513544104993 ] } }, +{ "type": "Feature", "properties": { "id": 57, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "96", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 27, "lat": 6004684.7745752875, "lon": 32506812.902853854, "id_full": "consumers-57", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506812.902853854000568, 6004684.774575287476182 ] } }, +{ "type": "Feature", "properties": { "id": 58, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "24", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 32, "lat": 6004949.1519113015, "lon": 32506801.047282852, "id_full": "consumers-58", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506801.047282852232456, 6004949.151911301538348 ] } }, +{ "type": "Feature", "properties": { "id": 59, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "63", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6004933.7556771878, "lon": 32506858.966233443, "id_full": "consumers-59", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506858.966233443468809, 6004933.755677187815309 ] } }, +{ "type": "Feature", "properties": { "id": 60, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "82-88", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "commercial", "name": "Raiffeisen Technik Westküste", "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": "http://geno.raiffeisen.com/hage-technik-heide/", "wheelchair": null, "craft": "agricultural_engines", "fixme": null, "P_heat_max": 20, "lat": 6004703.7686009808, "lon": 32506911.747826271, "id_full": "consumers-60", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506911.747826270759106, 6004703.768600980751216 ] } }, +{ "type": "Feature", "properties": { "id": 61, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "58", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 25, "lat": 6004809.1633872585, "lon": 32506988.24335172, "id_full": "consumers-61", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506988.243351720273495, 6004809.163387258537114 ] } }, +{ "type": "Feature", "properties": { "id": 62, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "87", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 22, "lat": 6004828.5793374656, "lon": 32507038.519862838, "id_full": "consumers-62", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507038.519862838089466, 6004828.579337465576828 ] } }, +{ "type": "Feature", "properties": { "id": 63, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "71", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 11, "lat": 6004899.3544207178, "lon": 32506907.280615181, "id_full": "consumers-63", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506907.28061518073082, 6004899.354420717805624 ] } }, +{ "type": "Feature", "properties": { "id": 64, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "37", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 41, "lat": 6005021.0393528491, "lon": 32506724.17186816, "id_full": "consumers-64", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506724.171868160367012, 6005021.039352849125862 ] } }, +{ "type": "Feature", "properties": { "id": 65, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "81", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6004852.6126259826, "lon": 32506969.203761656, "id_full": "consumers-65", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506969.203761655837297, 6004852.612625982612371 ] } }, +{ "type": "Feature", "properties": { "id": 66, "addr:city": null, "addr:country": null, "addr:housenumber": null, "addr:postcode": null, "addr:street": null, "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 41, "lat": 6004918.2173551591, "lon": 32506698.879691444, "id_full": "consumers-66", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506698.879691444337368, 6004918.217355159111321 ] } }, +{ "type": "Feature", "properties": { "id": 67, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "22", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6004944.8971530152, "lon": 32506922.212192755, "id_full": "consumers-67", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506922.212192755192518, 6004944.897153015248477 ] } }, +{ "type": "Feature", "properties": { "id": 68, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "26", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 33, "lat": 6004941.1577597568, "lon": 32506809.732562188, "id_full": "consumers-68", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506809.732562188059092, 6004941.157759756781161 ] } }, +{ "type": "Feature", "properties": { "id": 69, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "98", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 41, "lat": 6004673.4424787452, "lon": 32506802.083184846, "id_full": "consumers-69", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506802.083184845745564, 6004673.442478745244443 ] } }, +{ "type": "Feature", "properties": { "id": 70, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "12", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 30, "lat": 6004998.7397155529, "lon": 32506705.227665149, "id_full": "consumers-70", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506705.227665148675442, 6004998.739715552888811 ] } }, +{ "type": "Feature", "properties": { "id": 71, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "70", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004755.3701343266, "lon": 32507026.970478341, "id_full": "consumers-71", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507026.970478340983391, 6004755.370134326629341 ] } }, +{ "type": "Feature", "properties": { "id": 72, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "64", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 17, "lat": 6004780.3847515341, "lon": 32507021.442586396, "id_full": "consumers-72", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507021.442586395889521, 6004780.384751534089446 ] } }, +{ "type": "Feature", "properties": { "id": 73, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "85", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6004833.0207618298, "lon": 32507013.935856551, "id_full": "consumers-73", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507013.935856550931931, 6004833.020761829800904 ] } }, +{ "type": "Feature", "properties": { "id": 74, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "79", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 37, "lat": 6004860.1978684654, "lon": 32506960.185587, "id_full": "consumers-74", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506960.185587, 6004860.197868465445936 ] } }, +{ "type": "Feature", "properties": { "id": 75, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "92", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 12, "lat": 6004683.5310968822, "lon": 32506839.303071409, "id_full": "consumers-75", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506839.303071409463882, 6004683.53109688218683 ] } }, +{ "type": "Feature", "properties": { "id": 76, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "59", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 15, "lat": 6004948.3785943724, "lon": 32506840.081979629, "id_full": "consumers-76", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506840.081979628652334, 6004948.378594372421503 ] } }, +{ "type": "Feature", "properties": { "id": 77, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "45", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 27, "lat": 6005001.0415692255, "lon": 32506765.211176943, "id_full": "consumers-77", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506765.211176943033934, 6005001.041569225490093 ] } }, +{ "type": "Feature", "properties": { "id": 78, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "3", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 44, "lat": 6005031.2216832787, "lon": 32506767.961118907, "id_full": "consumers-78", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506767.961118906736374, 6005031.221683278679848 ] } }, +{ "type": "Feature", "properties": { "id": 79, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "73", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6004885.0032165097, "lon": 32506925.711909156, "id_full": "consumers-79", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506925.711909156292677, 6004885.003216509707272 ] } }, +{ "type": "Feature", "properties": { "id": 80, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "78", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 29, "lat": 6004712.9377350034, "lon": 32506942.83220705, "id_full": "consumers-80", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506942.832207050174475, 6004712.93773500341922 ] } }, +{ "type": "Feature", "properties": { "id": 81, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "49", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6004989.4165181965, "lon": 32506785.013545528, "id_full": "consumers-81", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506785.013545528054237, 6004989.416518196463585 ] } }, +{ "type": "Feature", "properties": { "id": 82, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "35", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 25, "lat": 6005021.5204845667, "lon": 32506714.735420961, "id_full": "consumers-82", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506714.73542096093297, 6005021.520484566688538 ] } }, +{ "type": "Feature", "properties": { "id": 83, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "67", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 34, "lat": 6004918.728310721, "lon": 32506879.134264857, "id_full": "consumers-83", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506879.13426485657692, 6004918.728310720995069 ] } }, +{ "type": "Feature", "properties": { "id": 84, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "20", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 39, "lat": 6004964.5058532031, "lon": 32506780.074384347, "id_full": "consumers-84", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506780.074384346604347, 6004964.505853203125298 ] } }, +{ "type": "Feature", "properties": { "id": 85, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "8", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 26, "lat": 6004960.5605987525, "lon": 32506702.267492007, "id_full": "consumers-85", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506702.26749200746417, 6004960.560598752461374 ] } }, +{ "type": "Feature", "properties": { "id": 86, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "31", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 42, "lat": 6005029.7369962903, "lon": 32506693.432355523, "id_full": "consumers-86", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506693.432355523109436, 6005029.736996290273964 ] } }, +{ "type": "Feature", "properties": { "id": 87, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "65", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 40, "lat": 6004927.2545030387, "lon": 32506868.723374065, "id_full": "consumers-87", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506868.72337406501174, 6004927.254503038711846 ] } }, +{ "type": "Feature", "properties": { "id": 88, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "1", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 29, "lat": 6005027.5448837001, "lon": 32506755.536638945, "id_full": "consumers-88", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506755.53663894534111, 6005027.544883700087667 ] } }, +{ "type": "Feature", "properties": { "id": 89, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "47", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004993.7782234615, "lon": 32506773.220998388, "id_full": "consumers-89", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506773.220998387783766, 6004993.778223461471498 ] } }, +{ "type": "Feature", "properties": { "id": 90, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "61", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 46, "lat": 6004943.9131416231, "lon": 32506848.507188026, "id_full": "consumers-90", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506848.507188025861979, 6004943.913141623139381 ] } }, +{ "type": "Feature", "properties": { "id": 91, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "83", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 45, "lat": 6004842.7832632717, "lon": 32506995.652057737, "id_full": "consumers-91", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506995.652057737112045, 6004842.783263271674514 ] } }, +{ "type": "Feature", "properties": { "id": 92, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "75", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 32, "lat": 6004875.8126192996, "lon": 32506938.311188925, "id_full": "consumers-92", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506938.31118892505765, 6004875.812619299627841 ] } }, +{ "type": "Feature", "properties": { "id": 93, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "77", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 16, "lat": 6004870.7620361941, "lon": 32506945.479837418, "id_full": "consumers-93", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506945.479837417602539, 6004870.762036194093525 ] } }, +{ "type": "Feature", "properties": { "id": 94, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "23", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 33, "lat": 6005074.0846991772, "lon": 32506669.221525811, "id_full": "consumers-94", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506669.221525810658932, 6005074.084699177183211 ] } }, +{ "type": "Feature", "properties": { "id": 95, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "69", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 34, "lat": 6004909.8316204697, "lon": 32506895.810843542, "id_full": "consumers-95", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506895.810843542218208, 6004909.831620469689369 ] } }, +{ "type": "Feature", "properties": { "id": 96, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "74", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "commercial", "name": "TC-Hydraulik", "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": "https://www.tc-hydraulik.de/", "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 34, "lat": 6004753.4929851666, "lon": 32506973.329735886, "id_full": "consumers-96", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506973.329735886305571, 6004753.492985166609287 ] } }, +{ "type": "Feature", "properties": { "id": 97, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "36", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004909.9075214053, "lon": 32506854.906595927, "id_full": "consumers-97", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506854.906595926731825, 6004909.907521405257285 ] } }, +{ "type": "Feature", "properties": { "id": 98, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "46", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 33, "lat": 6004869.6315114992, "lon": 32506910.150826644, "id_full": "consumers-98", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506910.150826644152403, 6004869.631511499173939 ] } }, +{ "type": "Feature", "properties": { "id": 99, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "42", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 20, "lat": 6004890.3840006869, "lon": 32506879.766101882, "id_full": "consumers-99", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506879.766101881861687, 6004890.38400068692863 ] } }, +{ "type": "Feature", "properties": { "id": 100, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "44", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6004879.2373334914, "lon": 32506894.072427262, "id_full": "consumers-100", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506894.07242726162076, 6004879.237333491444588 ] } }, +{ "type": "Feature", "properties": { "id": 101, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "34", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004914.9350390593, "lon": 32506845.747697491, "id_full": "consumers-101", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506845.747697491198778, 6004914.935039059258997 ] } }, +{ "type": "Feature", "properties": { "id": 102, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "32", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6004924.4554928178, "lon": 32506835.314610954, "id_full": "consumers-102", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506835.314610954374075, 6004924.455492817796767 ] } }, +{ "type": "Feature", "properties": { "id": 103, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "30", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "semidetached_house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 16, "lat": 6004931.0617589271, "lon": 32506824.472275782, "id_full": "consumers-103", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506824.472275782376528, 6004931.061758927069604 ] } }, +{ "type": "Feature", "properties": { "id": 104, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "17", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005174.3473145496, "lon": 32506923.191534139, "id_full": "consumers-104", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506923.191534139215946, 6005174.347314549610019 ] } }, +{ "type": "Feature", "properties": { "id": 105, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "18", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6005127.5398804722, "lon": 32506881.192307916, "id_full": "consumers-105", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506881.192307915538549, 6005127.539880472235382 ] } }, +{ "type": "Feature", "properties": { "id": 106, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "22", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 19, "lat": 6005086.207022367, "lon": 32506899.35027615, "id_full": "consumers-106", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506899.350276149809361, 6005086.207022367045283 ] } }, +{ "type": "Feature", "properties": { "id": 107, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "72", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 47, "lat": 6004727.2611511331, "lon": 32506994.143456344, "id_full": "consumers-107", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506994.143456343561411, 6004727.261151133105159 ] } }, +{ "type": "Feature", "properties": { "id": 108, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "13", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 21, "lat": 6005046.9658822007, "lon": 32506862.415233277, "id_full": "consumers-108", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506862.41523327678442, 6005046.965882200747728 ] } }, +{ "type": "Feature", "properties": { "id": 109, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "17", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 33, "lat": 6005066.3100751257, "lon": 32506975.025434896, "id_full": "consumers-109", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506975.025434896349907, 6005066.310075125657022 ] } }, +{ "type": "Feature", "properties": { "id": 110, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "9", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 37, "lat": 6005044.4395875167, "lon": 32506836.588345636, "id_full": "consumers-110", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506836.588345635682344, 6005044.439587516710162 ] } }, +{ "type": "Feature", "properties": { "id": 111, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "10", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 12, "lat": 6005088.549216033, "lon": 32506830.142781686, "id_full": "consumers-111", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506830.142781686037779, 6005088.549216032959521 ] } }, +{ "type": "Feature", "properties": { "id": 112, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "13", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 26, "lat": 6005110.2026483128, "lon": 32506806.709942408, "id_full": "consumers-112", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506806.709942407906055, 6005110.202648312784731 ] } }, +{ "type": "Feature", "properties": { "id": 113, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "14", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 13, "lat": 6005113.4016366536, "lon": 32506831.311364524, "id_full": "consumers-113", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506831.311364524066448, 6005113.401636653579772 ] } }, +{ "type": "Feature", "properties": { "id": 114, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "17", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 45, "lat": 6005131.7377835736, "lon": 32506804.718359739, "id_full": "consumers-114", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506804.718359738588333, 6005131.737783573567867 ] } }, +{ "type": "Feature", "properties": { "id": 115, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "18", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005134.7096251054, "lon": 32506829.517301597, "id_full": "consumers-115", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506829.517301596701145, 6005134.709625105373561 ] } }, +{ "type": "Feature", "properties": { "id": 116, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "21", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6005156.1239074264, "lon": 32506804.629356716, "id_full": "consumers-116", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506804.62935671582818, 6005156.12390742637217 ] } }, +{ "type": "Feature", "properties": { "id": 117, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "22", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6005157.6771208365, "lon": 32506826.114318337, "id_full": "consumers-117", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506826.114318337291479, 6005157.67712083645165 ] } }, +{ "type": "Feature", "properties": { "id": 118, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "5", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 15, "lat": 6005064.420167109, "lon": 32506810.402725525, "id_full": "consumers-118", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506810.402725525200367, 6005064.420167108997703 ] } }, +{ "type": "Feature", "properties": { "id": 119, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "6", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 26, "lat": 6005065.9573120773, "lon": 32506832.289393526, "id_full": "consumers-119", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506832.289393525570631, 6005065.957312077283859 ] } }, +{ "type": "Feature", "properties": { "id": 120, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "9", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 37, "lat": 6005086.7101640236, "lon": 32506809.311211679, "id_full": "consumers-120", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506809.311211679130793, 6005086.710164023563266 ] } }, +{ "type": "Feature", "properties": { "id": 121, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "10", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 16, "lat": 6004978.6460267892, "lon": 32506901.808295634, "id_full": "consumers-121", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506901.808295633643866, 6004978.646026789210737 ] } }, +{ "type": "Feature", "properties": { "id": 122, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "11", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6004974.6427852949, "lon": 32506932.119569965, "id_full": "consumers-122", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506932.119569964706898, 6004974.642785294912755 ] } }, +{ "type": "Feature", "properties": { "id": 123, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "12", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 18, "lat": 6004974.0920868777, "lon": 32506904.584658977, "id_full": "consumers-123", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506904.584658976644278, 6004974.092086877673864 ] } }, +{ "type": "Feature", "properties": { "id": 124, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "13", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6004969.6070375647, "lon": 32506933.47070761, "id_full": "consumers-124", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506933.470707610249519, 6004969.607037564739585 ] } }, +{ "type": "Feature", "properties": { "id": 125, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "16", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 39, "lat": 6004958.9032218512, "lon": 32506913.902167611, "id_full": "consumers-125", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506913.902167610824108, 6004958.903221851214767 ] } }, +{ "type": "Feature", "properties": { "id": 126, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "17", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 10, "lat": 6004964.7884946056, "lon": 32506953.863235988, "id_full": "consumers-126", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506953.863235987722874, 6004964.788494605571032 ] } }, +{ "type": "Feature", "properties": { "id": 127, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "18", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 34, "lat": 6004954.2254579682, "lon": 32506916.657145664, "id_full": "consumers-127", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506916.657145664095879, 6004954.225457968190312 ] } }, +{ "type": "Feature", "properties": { "id": 128, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "19", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 10, "lat": 6004965.780332461, "lon": 32506959.145298298, "id_full": "consumers-128", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506959.145298298448324, 6004965.780332460999489 ] } }, +{ "type": "Feature", "properties": { "id": 129, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "2", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 37, "lat": 6005002.4358568806, "lon": 32506885.263785467, "id_full": "consumers-129", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506885.263785466551781, 6005002.435856880620122 ] } }, +{ "type": "Feature", "properties": { "id": 130, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "20", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 19, "lat": 6004949.5491307126, "lon": 32506919.414187755, "id_full": "consumers-130", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506919.414187755435705, 6004949.549130712635815 ] } }, +{ "type": "Feature", "properties": { "id": 131, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "21", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 26, "lat": 6004966.773820038, "lon": 32506964.426920805, "id_full": "consumers-131", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506964.426920805126429, 6004966.773820037953556 ] } }, +{ "type": "Feature", "properties": { "id": 132, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "26", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 29, "lat": 6004939.799233024, "lon": 32506943.249371059, "id_full": "consumers-132", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506943.249371059238911, 6004939.799233024008572 ] } }, +{ "type": "Feature", "properties": { "id": 133, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "28", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 32, "lat": 6004940.7919222889, "lon": 32506948.55897538, "id_full": "consumers-133", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506948.558975379914045, 6004940.791922288946807 ] } }, +{ "type": "Feature", "properties": { "id": 134, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "3", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6004999.1079525622, "lon": 32506915.618785091, "id_full": "consumers-134", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506915.618785090744495, 6004999.10795256216079 ] } }, +{ "type": "Feature", "properties": { "id": 135, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "30", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 44, "lat": 6004941.7846176708, "lon": 32506953.868577439, "id_full": "consumers-135", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506953.868577439337969, 6004941.784617670811713 ] } }, +{ "type": "Feature", "properties": { "id": 136, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "32", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 11, "lat": 6004943.7588363402, "lon": 32506964.445381105, "id_full": "consumers-136", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506964.445381104946136, 6004943.758836340159178 ] } }, +{ "type": "Feature", "properties": { "id": 137, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "34", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6004944.7014368353, "lon": 32506969.725691035, "id_full": "consumers-137", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506969.7256910353899, 6004944.701436835341156 ] } }, +{ "type": "Feature", "properties": { "id": 138, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "36", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 21, "lat": 6004945.6384801846, "lon": 32506975.006007243, "id_full": "consumers-138", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506975.006007242947817, 6004945.638480184599757 ] } }, +{ "type": "Feature", "properties": { "id": 139, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "5", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6004994.5352942692, "lon": 32506918.35142066, "id_full": "consumers-139", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506918.351420659571886, 6004994.53529426921159 ] } }, +{ "type": "Feature", "properties": { "id": 140, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "6", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 45, "lat": 6004994.836294149, "lon": 32506891.986426871, "id_full": "consumers-140", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506891.986426871269941, 6004994.836294149048626 ] } }, +{ "type": "Feature", "properties": { "id": 141, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "7", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 32, "lat": 6004989.9571988843, "lon": 32506921.078184702, "id_full": "consumers-141", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506921.078184701502323, 6004989.95719888433814 ] } }, +{ "type": "Feature", "properties": { "id": 142, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "8", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 21, "lat": 6004983.1926160334, "lon": 32506899.017207444, "id_full": "consumers-142", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506899.017207443714142, 6004983.192616033367813 ] } }, +{ "type": "Feature", "properties": { "id": 143, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "9", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004978.5361703169, "lon": 32506928.226274975, "id_full": "consumers-143", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506928.226274974644184, 6004978.53617031686008 ] } }, +{ "type": "Feature", "properties": { "id": 144, "addr:city": null, "addr:country": null, "addr:housenumber": null, "addr:postcode": null, "addr:street": null, "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 10, "lat": 6004970.7615029663, "lon": 32506675.289672256, "id_full": "consumers-144", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506675.289672255516052, 6004970.761502966284752 ] } }, +{ "type": "Feature", "properties": { "id": 145, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "8b", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 46, "lat": 6004927.4596800348, "lon": 32506685.417284355, "id_full": "consumers-145", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506685.417284354567528, 6004927.459680034779012 ] } }, +{ "type": "Feature", "properties": { "id": 146, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "8", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6004762.6165426858, "lon": 32506756.074181572, "id_full": "consumers-146", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506756.074181571602821, 6004762.616542685776949 ] } }, +{ "type": "Feature", "properties": { "id": 147, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1b", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 28, "lat": 6004665.5432580691, "lon": 32506759.306074966, "id_full": "consumers-147", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506759.306074965745211, 6004665.543258069083095 ] } }, +{ "type": "Feature", "properties": { "id": 148, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "5", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 10, "lat": 6004698.6937393323, "lon": 32506762.631048795, "id_full": "consumers-148", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506762.631048794835806, 6004698.693739332258701 ] } }, +{ "type": "Feature", "properties": { "id": 149, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "10", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6004761.1497047683, "lon": 32506738.659805857, "id_full": "consumers-149", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506738.659805856645107, 6004761.149704768322408 ] } }, +{ "type": "Feature", "properties": { "id": 150, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "100", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 12, "lat": 6004676.5512994817, "lon": 32506788.54180884, "id_full": "consumers-150", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506788.541808839887381, 6004676.551299481652677 ] } }, +{ "type": "Feature", "properties": { "id": 151, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1a", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6004667.4967969265, "lon": 32506765.09116878, "id_full": "consumers-151", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506765.091168779879808, 6004667.496796926483512 ] } }, +{ "type": "Feature", "properties": { "id": 152, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1c", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6004663.6329921409, "lon": 32506753.646940958, "id_full": "consumers-152", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506753.64694095775485, 6004663.632992140948772 ] } }, +{ "type": "Feature", "properties": { "id": 153, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1d", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 46, "lat": 6004662.5675576301, "lon": 32506747.540288478, "id_full": "consumers-153", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506747.540288478136063, 6004662.567557630129158 ] } }, +{ "type": "Feature", "properties": { "id": 154, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1e", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 39, "lat": 6004660.608715592, "lon": 32506741.738194317, "id_full": "consumers-154", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506741.738194316625595, 6004660.608715591952205 ] } }, +{ "type": "Feature", "properties": { "id": 155, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1f", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 27, "lat": 6004658.7613560716, "lon": 32506736.262873858, "id_full": "consumers-155", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506736.262873858213425, 6004658.761356071569026 ] } }, +{ "type": "Feature", "properties": { "id": 156, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "2", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004694.7449218221, "lon": 32506753.26549615, "id_full": "consumers-156", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506753.265496149659157, 6004694.744921822100878 ] } }, +{ "type": "Feature", "properties": { "id": 157, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "7", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": "Umriss&Position", "P_heat_max": 28, "lat": 6004713.7517163604, "lon": 32506752.307921536, "id_full": "consumers-157", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506752.307921536266804, 6004713.751716360449791 ] } } +] +} diff --git a/examples/optimisation/network_aggregation/network_data/forks.geojson b/examples/optimisation/network_aggregation/network_data/forks.geojson new file mode 100644 index 00000000..02900b77 --- /dev/null +++ b/examples/optimisation/network_aggregation/network_data/forks.geojson @@ -0,0 +1,170 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, +"features": [ +{ "type": "Feature", "properties": { "id": 0, "geometry_wkt": "POINT (32506909.02895385 6005036.67567633)", "id_full": "forks-0", "lat": 6005036.67567633, "lon": 32506909.02895385 }, "geometry": { "type": "Point", "coordinates": [ 32506909.028953850269318, 6005036.675676329992712 ] } }, +{ "type": "Feature", "properties": { "id": 1, "geometry_wkt": "POINT (32506957.828444872 6005039.452800406)", "id_full": "forks-1", "lat": 6005039.4528004061, "lon": 32506957.828444872 }, "geometry": { "type": "Point", "coordinates": [ 32506957.828444872051477, 6005039.452800406143069 ] } }, +{ "type": "Feature", "properties": { "id": 2, "geometry_wkt": "POINT (32506849.569266543 6005309.829775801)", "id_full": "forks-2", "lat": 6005309.8297758009, "lon": 32506849.569266543 }, "geometry": { "type": "Point", "coordinates": [ 32506849.56926654279232, 6005309.829775800928473 ] } }, +{ "type": "Feature", "properties": { "id": 3, "geometry_wkt": "POINT (32506884.118155308 6005233.286900076)", "id_full": "forks-3", "lat": 6005233.2869000761, "lon": 32506884.118155308 }, "geometry": { "type": "Point", "coordinates": [ 32506884.118155308067799, 6005233.286900076083839 ] } }, +{ "type": "Feature", "properties": { "id": 4, "geometry_wkt": "POINT (32507059.691856742 6004782.464862994)", "id_full": "forks-4", "lat": 6004782.4648629939, "lon": 32507059.691856742 }, "geometry": { "type": "Point", "coordinates": [ 32507059.691856741905212, 6004782.464862993918359 ] } }, +{ "type": "Feature", "properties": { "id": 5, "geometry_wkt": "POINT (32507062.90499444 6004810.397108196)", "id_full": "forks-5", "lat": 6004810.3971081963, "lon": 32507062.904994439 }, "geometry": { "type": "Point", "coordinates": [ 32507062.904994439333677, 6004810.397108196280897 ] } }, +{ "type": "Feature", "properties": { "id": 6, "geometry_wkt": "POINT (32507049.679193664 6004797.514717632)", "id_full": "forks-6", "lat": 6004797.514717632, "lon": 32507049.679193664 }, "geometry": { "type": "Point", "coordinates": [ 32507049.679193664342165, 6004797.514717631973326 ] } }, +{ "type": "Feature", "properties": { "id": 7, "geometry_wkt": "POINT (32506824.270652454 6005308.401445041)", "id_full": "forks-7", "lat": 6005308.4014450414, "lon": 32506824.270652454 }, "geometry": { "type": "Point", "coordinates": [ 32506824.270652454346418, 6005308.401445041410625 ] } }, +{ "type": "Feature", "properties": { "id": 8, "geometry_wkt": "POINT (32507029.144705784 6004800.936656161)", "id_full": "forks-8", "lat": 6004800.9366561612, "lon": 32507029.144705784 }, "geometry": { "type": "Point", "coordinates": [ 32507029.144705783575773, 6004800.936656161211431 ] } }, +{ "type": "Feature", "properties": { "id": 9, "geometry_wkt": "POINT (32506689.95937176 6005014.698657348)", "id_full": "forks-9", "lat": 6005014.6986573478, "lon": 32506689.95937176 }, "geometry": { "type": "Point", "coordinates": [ 32506689.959371760487556, 6005014.698657347820699 ] } }, +{ "type": "Feature", "properties": { "id": 10, "geometry_wkt": "POINT (32506654.861689653 6005025.3310652645)", "id_full": "forks-10", "lat": 6005025.3310652645, "lon": 32506654.861689653 }, "geometry": { "type": "Point", "coordinates": [ 32506654.861689653247595, 6005025.33106526453048 ] } }, +{ "type": "Feature", "properties": { "id": 11, "geometry_wkt": "POINT (32506640.28949501 6005081.643143247)", "id_full": "forks-11", "lat": 6005081.6431432469, "lon": 32506640.28949501 }, "geometry": { "type": "Point", "coordinates": [ 32506640.289495009928942, 6005081.643143246881664 ] } }, +{ "type": "Feature", "properties": { "id": 12, "geometry_wkt": "POINT (32506635.98050358 6005097.202808099)", "id_full": "forks-12", "lat": 6005097.2028080989, "lon": 32506635.980503581 }, "geometry": { "type": "Point", "coordinates": [ 32506635.980503581464291, 6005097.202808098867536 ] } }, +{ "type": "Feature", "properties": { "id": 13, "geometry_wkt": "POINT (32506634.19730888 6005104.876539121)", "id_full": "forks-13", "lat": 6005104.8765391214, "lon": 32506634.197308879 }, "geometry": { "type": "Point", "coordinates": [ 32506634.197308879345655, 6005104.876539121381938 ] } }, +{ "type": "Feature", "properties": { "id": 14, "geometry_wkt": "POINT (32506592.558225196 6005249.951128247)", "id_full": "forks-14", "lat": 6005249.9511282472, "lon": 32506592.558225196 }, "geometry": { "type": "Point", "coordinates": [ 32506592.558225195854902, 6005249.951128247193992 ] } }, +{ "type": "Feature", "properties": { "id": 15, "geometry_wkt": "POINT (32506589.465335622 6005258.491528047)", "id_full": "forks-15", "lat": 6005258.4915280472, "lon": 32506589.465335622 }, "geometry": { "type": "Point", "coordinates": [ 32506589.465335622429848, 6005258.491528047248721 ] } }, +{ "type": "Feature", "properties": { "id": 16, "geometry_wkt": "POINT (32506610.01704668 6005273.422141656)", "id_full": "forks-16", "lat": 6005273.4221416563, "lon": 32506610.017046679 }, "geometry": { "type": "Point", "coordinates": [ 32506610.017046678811312, 6005273.422141656279564 ] } }, +{ "type": "Feature", "properties": { "id": 17, "geometry_wkt": "POINT (32506973.341402162 6004704.626499322)", "id_full": "forks-17", "lat": 6004704.6264993222, "lon": 32506973.341402162 }, "geometry": { "type": "Point", "coordinates": [ 32506973.341402161866426, 6004704.626499322243035 ] } }, +{ "type": "Feature", "properties": { "id": 18, "geometry_wkt": "POINT (32506966.35593917 6004702.746699204)", "id_full": "forks-18", "lat": 6004702.7466992037, "lon": 32506966.355939168 }, "geometry": { "type": "Point", "coordinates": [ 32506966.355939168483019, 6004702.74669920373708 ] } }, +{ "type": "Feature", "properties": { "id": 19, "geometry_wkt": "POINT (32506905.580154143 6004686.432937293)", "id_full": "forks-19", "lat": 6004686.4329372933, "lon": 32506905.580154143 }, "geometry": { "type": "Point", "coordinates": [ 32506905.58015414327383, 6004686.432937293313444 ] } }, +{ "type": "Feature", "properties": { "id": 20, "geometry_wkt": "POINT (32506834.06771552 6004667.389202644)", "id_full": "forks-20", "lat": 6004667.3892026441, "lon": 32506834.067715518 }, "geometry": { "type": "Point", "coordinates": [ 32506834.067715518176556, 6004667.389202644117177 ] } }, +{ "type": "Feature", "properties": { "id": 21, "geometry_wkt": "POINT (32506805.84401365 6004659.677821843)", "id_full": "forks-21", "lat": 6004659.677821843, "lon": 32506805.84401365 }, "geometry": { "type": "Point", "coordinates": [ 32506805.844013649970293, 6004659.677821842953563 ] } }, +{ "type": "Feature", "properties": { "id": 22, "geometry_wkt": "POINT (32506782.94580446 6004652.671333202)", "id_full": "forks-22", "lat": 6004652.6713332022, "lon": 32506782.945804462 }, "geometry": { "type": "Point", "coordinates": [ 32506782.945804461836815, 6004652.671333202160895 ] } }, +{ "type": "Feature", "properties": { "id": 23, "geometry_wkt": "POINT (32506785.85355188 6005321.162249531)", "id_full": "forks-23", "lat": 6005321.1622495307, "lon": 32506785.85355188 }, "geometry": { "type": "Point", "coordinates": [ 32506785.853551879525185, 6005321.162249530665576 ] } }, +{ "type": "Feature", "properties": { "id": 24, "geometry_wkt": "POINT (32506746.461005732 6005002.454771279)", "id_full": "forks-24", "lat": 6005002.4547712794, "lon": 32506746.461005732 }, "geometry": { "type": "Point", "coordinates": [ 32506746.461005732417107, 6005002.454771279357374 ] } }, +{ "type": "Feature", "properties": { "id": 25, "geometry_wkt": "POINT (32506758.059295017 6005017.481309016)", "id_full": "forks-25", "lat": 6005017.4813090162, "lon": 32506758.059295017 }, "geometry": { "type": "Point", "coordinates": [ 32506758.059295017272234, 6005017.481309016235173 ] } }, +{ "type": "Feature", "properties": { "id": 26, "geometry_wkt": "POINT (32506815.6312102 6005156.803712631)", "id_full": "forks-26", "lat": 6005156.8037126306, "lon": 32506815.6312102 }, "geometry": { "type": "Point", "coordinates": [ 32506815.631210200488567, 6005156.803712630644441 ] } }, +{ "type": "Feature", "properties": { "id": 27, "geometry_wkt": "POINT (32506857.420281686 6005175.401853865)", "id_full": "forks-27", "lat": 6005175.401853865, "lon": 32506857.420281686 }, "geometry": { "type": "Point", "coordinates": [ 32506857.420281685888767, 6005175.401853865012527 ] } }, +{ "type": "Feature", "properties": { "id": 28, "geometry_wkt": "POINT (32506901.09680305 6005183.699540134)", "id_full": "forks-28", "lat": 6005183.6995401336, "lon": 32506901.09680305 }, "geometry": { "type": "Point", "coordinates": [ 32506901.096803050488234, 6005183.699540133588016 ] } }, +{ "type": "Feature", "properties": { "id": 29, "geometry_wkt": "POINT (32506983.839984797 6005006.224120298)", "id_full": "forks-29", "lat": 6005006.2241202984, "lon": 32506983.839984797 }, "geometry": { "type": "Point", "coordinates": [ 32506983.83998479694128, 6005006.224120298400521 ] } }, +{ "type": "Feature", "properties": { "id": 30, "geometry_wkt": "POINT (32506990.21066587 6005043.18464113)", "id_full": "forks-30", "lat": 6005043.1846411303, "lon": 32506990.21066587 }, "geometry": { "type": "Point", "coordinates": [ 32506990.210665870457888, 6005043.184641130268574 ] } }, +{ "type": "Feature", "properties": { "id": 31, "geometry_wkt": "POINT (32506758.48775236 6005302.2604126185)", "id_full": "forks-31", "lat": 6005302.2604126185, "lon": 32506758.487752359 }, "geometry": { "type": "Point", "coordinates": [ 32506758.487752359360456, 6005302.260412618517876 ] } }, +{ "type": "Feature", "properties": { "id": 32, "geometry_wkt": "POINT (32507023.054066256 6004915.480935483)", "id_full": "forks-32", "lat": 6004915.4809354832, "lon": 32507023.054066256 }, "geometry": { "type": "Point", "coordinates": [ 32507023.054066255688667, 6004915.480935483239591 ] } }, +{ "type": "Feature", "properties": { "id": 33, "geometry_wkt": "POINT (32506931.03989272 6005095.022326571)", "id_full": "forks-33", "lat": 6005095.0223265709, "lon": 32506931.039892718 }, "geometry": { "type": "Point", "coordinates": [ 32506931.039892718195915, 6005095.022326570935547 ] } }, +{ "type": "Feature", "properties": { "id": 34, "geometry_wkt": "POINT (32506959.267871153 6005121.259273383)", "id_full": "forks-34", "lat": 6005121.2592733828, "lon": 32506959.267871153 }, "geometry": { "type": "Point", "coordinates": [ 32506959.267871152609587, 6005121.25927338283509 ] } }, +{ "type": "Feature", "properties": { "id": 35, "geometry_wkt": "POINT (32506920.064067416 6005126.549259349)", "id_full": "forks-35", "lat": 6005126.5492593488, "lon": 32506920.064067416 }, "geometry": { "type": "Point", "coordinates": [ 32506920.064067415893078, 6005126.549259348772466 ] } }, +{ "type": "Feature", "properties": { "id": 36, "geometry_wkt": "POINT (32506871.2233493 6005117.018729404)", "id_full": "forks-36", "lat": 6005117.0187294036, "lon": 32506871.223349299 }, "geometry": { "type": "Point", "coordinates": [ 32506871.223349299281836, 6005117.018729403614998 ] } }, +{ "type": "Feature", "properties": { "id": 37, "geometry_wkt": "POINT (32506863.052863058 6005113.902283473)", "id_full": "forks-37", "lat": 6005113.9022834729, "lon": 32506863.052863058 }, "geometry": { "type": "Point", "coordinates": [ 32506863.05286305770278, 6005113.902283472940326 ] } }, +{ "type": "Feature", "properties": { "id": 38, "geometry_wkt": "POINT (32506890.007688235 6005098.978906006)", "id_full": "forks-38", "lat": 6005098.9789060056, "lon": 32506890.007688235 }, "geometry": { "type": "Point", "coordinates": [ 32506890.007688235491514, 6005098.978906005620956 ] } }, +{ "type": "Feature", "properties": { "id": 39, "geometry_wkt": "POINT (32506894.688163236 6005100.505053408)", "id_full": "forks-39", "lat": 6005100.5050534084, "lon": 32506894.688163236 }, "geometry": { "type": "Point", "coordinates": [ 32506894.688163235783577, 6005100.505053408443928 ] } }, +{ "type": "Feature", "properties": { "id": 40, "geometry_wkt": "POINT (32506925.62074382 6005110.602306801)", "id_full": "forks-40", "lat": 6005110.6023068009, "lon": 32506925.620743819 }, "geometry": { "type": "Point", "coordinates": [ 32506925.620743818581104, 6005110.602306800894439 ] } }, +{ "type": "Feature", "properties": { "id": 41, "geometry_wkt": "POINT (32506906.060875576 6005168.6839949405)", "id_full": "forks-41", "lat": 6005168.6839949405, "lon": 32506906.060875576 }, "geometry": { "type": "Point", "coordinates": [ 32506906.060875575989485, 6005168.68399494048208 ] } }, +{ "type": "Feature", "properties": { "id": 42, "geometry_wkt": "POINT (32506968.895207815 6005028.968333294)", "id_full": "forks-42", "lat": 6005028.9683332937, "lon": 32506968.895207815 }, "geometry": { "type": "Point", "coordinates": [ 32506968.895207814872265, 6005028.968333293683827 ] } }, +{ "type": "Feature", "properties": { "id": 43, "geometry_wkt": "POINT (32507016.180187117 6004930.53564811)", "id_full": "forks-43", "lat": 6004930.5356481103, "lon": 32507016.180187117 }, "geometry": { "type": "Point", "coordinates": [ 32507016.180187117308378, 6004930.535648110322654 ] } }, +{ "type": "Feature", "properties": { "id": 44, "geometry_wkt": "POINT (32507055.788943462 6004835.756441549)", "id_full": "forks-44", "lat": 6004835.7564415494, "lon": 32507055.788943462 }, "geometry": { "type": "Point", "coordinates": [ 32507055.788943462073803, 6004835.756441549398005 ] } }, +{ "type": "Feature", "properties": { "id": 45, "geometry_wkt": "POINT (32506977.857269514 6005041.763435141)", "id_full": "forks-45", "lat": 6005041.7634351412, "lon": 32506977.857269514 }, "geometry": { "type": "Point", "coordinates": [ 32506977.857269514352083, 6005041.763435141183436 ] } }, +{ "type": "Feature", "properties": { "id": 46, "geometry_wkt": "POINT (32506834.086465627 6005306.068311981)", "id_full": "forks-46", "lat": 6005306.0683119809, "lon": 32506834.086465627 }, "geometry": { "type": "Point", "coordinates": [ 32506834.086465626955032, 6005306.0683119809255 ] } }, +{ "type": "Feature", "properties": { "id": 47, "geometry_wkt": "POINT (32507040.4248311 6004741.460822492)", "id_full": "forks-47", "lat": 6004741.4608224919, "lon": 32507040.4248311 }, "geometry": { "type": "Point", "coordinates": [ 32507040.424831099808216, 6004741.460822491906583 ] } }, +{ "type": "Feature", "properties": { "id": 48, "geometry_wkt": "POINT (32506999.82516114 6004717.383402614)", "id_full": "forks-48", "lat": 6004717.3834026139, "lon": 32506999.82516114 }, "geometry": { "type": "Point", "coordinates": [ 32506999.825161140412092, 6004717.383402613922954 ] } }, +{ "type": "Feature", "properties": { "id": 49, "geometry_wkt": "POINT (32506774.162415158 6004688.607881281)", "id_full": "forks-49", "lat": 6004688.6078812806, "lon": 32506774.162415158 }, "geometry": { "type": "Point", "coordinates": [ 32506774.162415158003569, 6004688.607881280593574 ] } }, +{ "type": "Feature", "properties": { "id": 50, "geometry_wkt": "POINT (32506774.079425685 6004700.679925447)", "id_full": "forks-50", "lat": 6004700.6799254473, "lon": 32506774.079425685 }, "geometry": { "type": "Point", "coordinates": [ 32506774.079425685107708, 6004700.679925447329879 ] } }, +{ "type": "Feature", "properties": { "id": 51, "geometry_wkt": "POINT (32506770.973308653 6004717.554045321)", "id_full": "forks-51", "lat": 6004717.5540453214, "lon": 32506770.973308653 }, "geometry": { "type": "Point", "coordinates": [ 32506770.973308652639389, 6004717.554045321419835 ] } }, +{ "type": "Feature", "properties": { "id": 52, "geometry_wkt": "POINT (32506756.913997628 6004748.952905902)", "id_full": "forks-52", "lat": 6004748.9529059017, "lon": 32506756.913997628 }, "geometry": { "type": "Point", "coordinates": [ 32506756.913997627794743, 6004748.952905901707709 ] } }, +{ "type": "Feature", "properties": { "id": 53, "geometry_wkt": "POINT (32506740.583661333 6004747.206024529)", "id_full": "forks-53", "lat": 6004747.2060245294, "lon": 32506740.583661333 }, "geometry": { "type": "Point", "coordinates": [ 32506740.583661332726479, 6004747.206024529412389 ] } }, +{ "type": "Feature", "properties": { "id": 54, "geometry_wkt": "POINT (32506726.41674512 6005101.2837742865)", "id_full": "forks-54", "lat": 6005101.2837742865, "lon": 32506726.416745119 }, "geometry": { "type": "Point", "coordinates": [ 32506726.416745118796825, 6005101.28377428650856 ] } }, +{ "type": "Feature", "properties": { "id": 55, "geometry_wkt": "POINT (32506696.98699388 6005095.343915768)", "id_full": "forks-55", "lat": 6005095.343915768, "lon": 32506696.986993879 }, "geometry": { "type": "Point", "coordinates": [ 32506696.986993879079819, 6005095.343915767967701 ] } }, +{ "type": "Feature", "properties": { "id": 56, "geometry_wkt": "POINT (32506665.899223614 6005087.829689491)", "id_full": "forks-56", "lat": 6005087.8296894906, "lon": 32506665.899223614 }, "geometry": { "type": "Point", "coordinates": [ 32506665.899223614484072, 6005087.829689490608871 ] } }, +{ "type": "Feature", "properties": { "id": 57, "geometry_wkt": "POINT (32506803.475475002 6005024.547870637)", "id_full": "forks-57", "lat": 6005024.5478706369, "lon": 32506803.475475002 }, "geometry": { "type": "Point", "coordinates": [ 32506803.475475002080202, 6005024.547870636917651 ] } }, +{ "type": "Feature", "properties": { "id": 58, "geometry_wkt": "POINT (32506823.60973072 6005027.680673941)", "id_full": "forks-58", "lat": 6005027.680673941, "lon": 32506823.609730721 }, "geometry": { "type": "Point", "coordinates": [ 32506823.60973072052002, 6005027.680673941038549 ] } }, +{ "type": "Feature", "properties": { "id": 59, "geometry_wkt": "POINT (32506971.99656725 6004956.330777766)", "id_full": "forks-59", "lat": 6004956.3307777662, "lon": 32506971.996567249 }, "geometry": { "type": "Point", "coordinates": [ 32506971.996567249298096, 6004956.330777766183019 ] } }, +{ "type": "Feature", "properties": { "id": 60, "geometry_wkt": "POINT (32506978.648154818 6004957.660532805)", "id_full": "forks-60", "lat": 6004957.6605328051, "lon": 32506978.648154818 }, "geometry": { "type": "Point", "coordinates": [ 32506978.648154817521572, 6004957.660532805137336 ] } }, +{ "type": "Feature", "properties": { "id": 61, "geometry_wkt": "POINT (32506932.40408786 6004951.471220351)", "id_full": "forks-61", "lat": 6004951.4712203508, "lon": 32506932.40408786 }, "geometry": { "type": "Point", "coordinates": [ 32506932.404087860137224, 6004951.471220350824296 ] } }, +{ "type": "Feature", "properties": { "id": 62, "geometry_wkt": "POINT (32506939.293046627 6004950.686475987)", "id_full": "forks-62", "lat": 6004950.6864759866, "lon": 32506939.293046627 }, "geometry": { "type": "Point", "coordinates": [ 32506939.293046627193689, 6004950.686475986614823 ] } }, +{ "type": "Feature", "properties": { "id": 63, "geometry_wkt": "POINT (32506942.140576534 6004950.362104319)", "id_full": "forks-63", "lat": 6004950.362104319, "lon": 32506942.140576534 }, "geometry": { "type": "Point", "coordinates": [ 32506942.140576533973217, 6004950.362104319036007 ] } }, +{ "type": "Feature", "properties": { "id": 64, "geometry_wkt": "POINT (32506882.491420675 6005033.754231971)", "id_full": "forks-64", "lat": 6005033.7542319708, "lon": 32506882.491420675 }, "geometry": { "type": "Point", "coordinates": [ 32506882.491420675069094, 6005033.754231970757246 ] } }, +{ "type": "Feature", "properties": { "id": 65, "geometry_wkt": "POINT (32506892.243028957 6005034.827759824)", "id_full": "forks-65", "lat": 6005034.8277598238, "lon": 32506892.243028957 }, "geometry": { "type": "Point", "coordinates": [ 32506892.243028957396746, 6005034.82775982376188 ] } }, +{ "type": "Feature", "properties": { "id": 66, "geometry_wkt": "POINT (32506851.069212396 6005030.513078302)", "id_full": "forks-66", "lat": 6005030.5130783021, "lon": 32506851.069212396 }, "geometry": { "type": "Point", "coordinates": [ 32506851.069212395697832, 6005030.513078302145004 ] } }, +{ "type": "Feature", "properties": { "id": 67, "geometry_wkt": "POINT (32506662.474677395 6005287.922711677)", "id_full": "forks-67", "lat": 6005287.9227116769, "lon": 32506662.474677395 }, "geometry": { "type": "Point", "coordinates": [ 32506662.47467739507556, 6005287.92271167691797 ] } }, +{ "type": "Feature", "properties": { "id": 68, "geometry_wkt": "POINT (32506640.347953863 6005281.79490401)", "id_full": "forks-68", "lat": 6005281.7949040104, "lon": 32506640.347953863 }, "geometry": { "type": "Point", "coordinates": [ 32506640.347953863441944, 6005281.794904010370374 ] } }, +{ "type": "Feature", "properties": { "id": 69, "geometry_wkt": "POINT (32506756.039207898 6005313.986531776)", "id_full": "forks-69", "lat": 6005313.9865317764, "lon": 32506756.039207898 }, "geometry": { "type": "Point", "coordinates": [ 32506756.039207898080349, 6005313.986531776376069 ] } }, +{ "type": "Feature", "properties": { "id": 70, "geometry_wkt": "POINT (32506727.89395408 6005306.146244135)", "id_full": "forks-70", "lat": 6005306.1462441348, "lon": 32506727.89395408 }, "geometry": { "type": "Point", "coordinates": [ 32506727.893954079598188, 6005306.146244134753942 ] } }, +{ "type": "Feature", "properties": { "id": 71, "geometry_wkt": "POINT (32506716.644411128 6005303.0125132)", "id_full": "forks-71", "lat": 6005303.0125131998, "lon": 32506716.644411128 }, "geometry": { "type": "Point", "coordinates": [ 32506716.644411128014326, 6005303.012513199821115 ] } }, +{ "type": "Feature", "properties": { "id": 72, "geometry_wkt": "POINT (32506702.223685432 6005298.995401179)", "id_full": "forks-72", "lat": 6005298.9954011794, "lon": 32506702.223685432 }, "geometry": { "type": "Point", "coordinates": [ 32506702.223685432225466, 6005298.995401179417968 ] } }, +{ "type": "Feature", "properties": { "id": 73, "geometry_wkt": "POINT (32506690.32293301 6005295.680265962)", "id_full": "forks-73", "lat": 6005295.6802659621, "lon": 32506690.322933011 }, "geometry": { "type": "Point", "coordinates": [ 32506690.322933010756969, 6005295.680265962146223 ] } }, +{ "type": "Feature", "properties": { "id": 74, "geometry_wkt": "POINT (32506740.842956085 6005309.753385184)", "id_full": "forks-74", "lat": 6005309.7533851843, "lon": 32506740.842956085 }, "geometry": { "type": "Point", "coordinates": [ 32506740.842956084758043, 6005309.753385184332728 ] } }, +{ "type": "Feature", "properties": { "id": 75, "geometry_wkt": "POINT (32506624.177454807 6005277.331082835)", "id_full": "forks-75", "lat": 6005277.3310828349, "lon": 32506624.177454807 }, "geometry": { "type": "Point", "coordinates": [ 32506624.177454806864262, 6005277.331082834862173 ] } }, +{ "type": "Feature", "properties": { "id": 76, "geometry_wkt": "POINT (32506678.330150615 6005292.339494398)", "id_full": "forks-76", "lat": 6005292.3394943979, "lon": 32506678.330150615 }, "geometry": { "type": "Point", "coordinates": [ 32506678.330150615423918, 6005292.339494397863746 ] } }, +{ "type": "Feature", "properties": { "id": 77, "geometry_wkt": "POINT (32506797.956073493 6004967.277614417)", "id_full": "forks-77", "lat": 6004967.2776144166, "lon": 32506797.956073493 }, "geometry": { "type": "Point", "coordinates": [ 32506797.956073492765427, 6004967.27761441655457 ] } }, +{ "type": "Feature", "properties": { "id": 78, "geometry_wkt": "POINT (32506795.285397273 6004969.131627681)", "id_full": "forks-78", "lat": 6004969.1316276807, "lon": 32506795.285397273 }, "geometry": { "type": "Point", "coordinates": [ 32506795.28539727255702, 6004969.1316276807338 ] } }, +{ "type": "Feature", "properties": { "id": 79, "geometry_wkt": "POINT (32507034.713617396 6004886.971107841)", "id_full": "forks-79", "lat": 6004886.9711078405, "lon": 32507034.713617396 }, "geometry": { "type": "Point", "coordinates": [ 32507034.713617395609617, 6004886.971107840538025 ] } }, +{ "type": "Feature", "properties": { "id": 80, "geometry_wkt": "POINT (32506944.88088702 6004777.161187518)", "id_full": "forks-80", "lat": 6004777.1611875184, "lon": 32506944.88088702 }, "geometry": { "type": "Point", "coordinates": [ 32506944.880887020379305, 6004777.161187518388033 ] } }, +{ "type": "Feature", "properties": { "id": 81, "geometry_wkt": "POINT (32506950.185454108 6004758.780014672)", "id_full": "forks-81", "lat": 6004758.7800146723, "lon": 32506950.185454108 }, "geometry": { "type": "Point", "coordinates": [ 32506950.185454107820988, 6004758.780014672316611 ] } }, +{ "type": "Feature", "properties": { "id": 82, "geometry_wkt": "POINT (32506959.29881295 6004727.200769591)", "id_full": "forks-82", "lat": 6004727.2007695911, "lon": 32506959.298812948 }, "geometry": { "type": "Point", "coordinates": [ 32506959.298812948167324, 6004727.200769591145217 ] } }, +{ "type": "Feature", "properties": { "id": 83, "geometry_wkt": "POINT (32506731.28551286 6005005.676744328)", "id_full": "forks-83", "lat": 6005005.6767443279, "lon": 32506731.285512861 }, "geometry": { "type": "Point", "coordinates": [ 32506731.285512860864401, 6005005.676744327880442 ] } }, +{ "type": "Feature", "properties": { "id": 84, "geometry_wkt": "POINT (32507012.29895811 6004811.175051882)", "id_full": "forks-84", "lat": 6004811.1750518819, "lon": 32507012.298958112 }, "geometry": { "type": "Point", "coordinates": [ 32507012.298958111554384, 6004811.175051881931722 ] } }, +{ "type": "Feature", "properties": { "id": 85, "geometry_wkt": "POINT (32506783.708717506 6005021.47224847)", "id_full": "forks-85", "lat": 6005021.4722484704, "lon": 32506783.708717506 }, "geometry": { "type": "Point", "coordinates": [ 32506783.708717506378889, 6005021.472248470410705 ] } }, +{ "type": "Feature", "properties": { "id": 86, "geometry_wkt": "POINT (32506817.141993094 6004953.958534721)", "id_full": "forks-86", "lat": 6004953.9585347213, "lon": 32506817.141993094 }, "geometry": { "type": "Point", "coordinates": [ 32506817.141993094235659, 6004953.958534721285105 ] } }, +{ "type": "Feature", "properties": { "id": 87, "geometry_wkt": "POINT (32506813.553776793 6004956.449514559)", "id_full": "forks-87", "lat": 6004956.4495145585, "lon": 32506813.553776793 }, "geometry": { "type": "Point", "coordinates": [ 32506813.553776793181896, 6004956.449514558538795 ] } }, +{ "type": "Feature", "properties": { "id": 88, "geometry_wkt": "POINT (32506823.312253438 6004949.3237391785)", "id_full": "forks-88", "lat": 6004949.3237391785, "lon": 32506823.312253438 }, "geometry": { "type": "Point", "coordinates": [ 32506823.312253437936306, 6004949.323739178478718 ] } }, +{ "type": "Feature", "properties": { "id": 89, "geometry_wkt": "POINT (32506808.53301298 6004959.9349848805)", "id_full": "forks-89", "lat": 6004959.9349848805, "lon": 32506808.533012979 }, "geometry": { "type": "Point", "coordinates": [ 32506808.533012978732586, 6004959.934984880499542 ] } }, +{ "type": "Feature", "properties": { "id": 90, "geometry_wkt": "POINT (32506901.36241106 6004700.69793768)", "id_full": "forks-90", "lat": 6004700.6979376804, "lon": 32506901.362411059 }, "geometry": { "type": "Point", "coordinates": [ 32506901.362411059439182, 6004700.697937680408359 ] } }, +{ "type": "Feature", "properties": { "id": 91, "geometry_wkt": "POINT (32506721.357687663 6005007.784562867)", "id_full": "forks-91", "lat": 6005007.7845628671, "lon": 32506721.357687663 }, "geometry": { "type": "Point", "coordinates": [ 32506721.357687663286924, 6005007.784562867134809 ] } }, +{ "type": "Feature", "properties": { "id": 92, "geometry_wkt": "POINT (32506963.5363283 6004844.259484168)", "id_full": "forks-92", "lat": 6004844.2594841681, "lon": 32506963.536328301 }, "geometry": { "type": "Point", "coordinates": [ 32506963.536328300833702, 6004844.25948416814208 ] } }, +{ "type": "Feature", "properties": { "id": 93, "geometry_wkt": "POINT (32506953.613189355 6004851.448096405)", "id_full": "forks-93", "lat": 6004851.4480964048, "lon": 32506953.613189355 }, "geometry": { "type": "Point", "coordinates": [ 32506953.613189354538918, 6004851.448096404783428 ] } }, +{ "type": "Feature", "properties": { "id": 94, "geometry_wkt": "POINT (32506707.760920882 6005010.671349905)", "id_full": "forks-94", "lat": 6005010.6713499054, "lon": 32506707.760920882 }, "geometry": { "type": "Point", "coordinates": [ 32506707.760920882225037, 6005010.671349905431271 ] } }, +{ "type": "Feature", "properties": { "id": 95, "geometry_wkt": "POINT (32506703.261314716 6005011.626680313)", "id_full": "forks-95", "lat": 6005011.6266803127, "lon": 32506703.261314716 }, "geometry": { "type": "Point", "coordinates": [ 32506703.2613147161901, 6005011.626680312678218 ] } }, +{ "type": "Feature", "properties": { "id": 96, "geometry_wkt": "POINT (32507003.270227984 6004817.300857887)", "id_full": "forks-96", "lat": 6004817.3008578867, "lon": 32507003.270227984 }, "geometry": { "type": "Point", "coordinates": [ 32507003.270227983593941, 6004817.30085788667202 ] } }, +{ "type": "Feature", "properties": { "id": 97, "geometry_wkt": "POINT (32506996.760915205 6004821.71729151)", "id_full": "forks-97", "lat": 6004821.7172915097, "lon": 32506996.760915205 }, "geometry": { "type": "Point", "coordinates": [ 32506996.760915204882622, 6004821.717291509732604 ] } }, +{ "type": "Feature", "properties": { "id": 98, "geometry_wkt": "POINT (32506829.5379491 6004688.366671883)", "id_full": "forks-98", "lat": 6004688.3666718826, "lon": 32506829.5379491 }, "geometry": { "type": "Point", "coordinates": [ 32506829.537949100136757, 6004688.36667188256979 ] } }, +{ "type": "Feature", "properties": { "id": 99, "geometry_wkt": "POINT (32506830.970641527 6004681.731834987)", "id_full": "forks-99", "lat": 6004681.7318349872, "lon": 32506830.970641527 }, "geometry": { "type": "Point", "coordinates": [ 32506830.970641527324915, 6004681.731834987178445 ] } }, +{ "type": "Feature", "properties": { "id": 100, "geometry_wkt": "POINT (32506760.001660306 6004993.319673928)", "id_full": "forks-100", "lat": 6004993.3196739284, "lon": 32506760.001660306 }, "geometry": { "type": "Point", "coordinates": [ 32506760.00166030600667, 6004993.319673928432167 ] } }, +{ "type": "Feature", "properties": { "id": 101, "geometry_wkt": "POINT (32506769.814468887 6005019.310363343)", "id_full": "forks-101", "lat": 6005019.310363343, "lon": 32506769.814468887 }, "geometry": { "type": "Point", "coordinates": [ 32506769.814468886703253, 6005019.310363342985511 ] } }, +{ "type": "Feature", "properties": { "id": 102, "geometry_wkt": "POINT (32506946.964905605 6004697.541654059)", "id_full": "forks-102", "lat": 6004697.5416540587, "lon": 32506946.964905605 }, "geometry": { "type": "Point", "coordinates": [ 32506946.964905604720116, 6004697.541654058732092 ] } }, +{ "type": "Feature", "properties": { "id": 103, "geometry_wkt": "POINT (32506778.851514895 6004980.5402123965)", "id_full": "forks-103", "lat": 6004980.5402123965, "lon": 32506778.851514895 }, "geometry": { "type": "Point", "coordinates": [ 32506778.851514894515276, 6004980.540212396532297 ] } }, +{ "type": "Feature", "properties": { "id": 104, "geometry_wkt": "POINT (32506768.87363295 6004987.33426655)", "id_full": "forks-104", "lat": 6004987.3342665499, "lon": 32506768.873632949 }, "geometry": { "type": "Point", "coordinates": [ 32506768.873632948845625, 6004987.334266549907625 ] } }, +{ "type": "Feature", "properties": { "id": 105, "geometry_wkt": "POINT (32506712.230517812 6005009.722390885)", "id_full": "forks-105", "lat": 6005009.7223908855, "lon": 32506712.230517812 }, "geometry": { "type": "Point", "coordinates": [ 32506712.230517812073231, 6005009.722390885464847 ] } }, +{ "type": "Feature", "properties": { "id": 106, "geometry_wkt": "POINT (32506787.18801379 6004974.752921744)", "id_full": "forks-106", "lat": 6004974.7529217442, "lon": 32506787.188013788 }, "geometry": { "type": "Point", "coordinates": [ 32506787.188013788312674, 6004974.752921744249761 ] } }, +{ "type": "Feature", "properties": { "id": 107, "geometry_wkt": "POINT (32506672.198070195 6004953.321366431)", "id_full": "forks-107", "lat": 6004953.3213664312, "lon": 32506672.198070195 }, "geometry": { "type": "Point", "coordinates": [ 32506672.19807019457221, 6004953.321366431191564 ] } }, +{ "type": "Feature", "properties": { "id": 108, "geometry_wkt": "POINT (32506676.925561026 6004933.684903668)", "id_full": "forks-108", "lat": 6004933.6849036682, "lon": 32506676.925561026 }, "geometry": { "type": "Point", "coordinates": [ 32506676.925561025738716, 6004933.684903668239713 ] } }, +{ "type": "Feature", "properties": { "id": 109, "geometry_wkt": "POINT (32506873.690982897 6004911.481719907)", "id_full": "forks-109", "lat": 6004911.4817199074, "lon": 32506873.690982897 }, "geometry": { "type": "Point", "coordinates": [ 32506873.690982896834612, 6004911.48171990737319 ] } }, +{ "type": "Feature", "properties": { "id": 110, "geometry_wkt": "POINT (32506862.941045776 6004919.556542992)", "id_full": "forks-110", "lat": 6004919.5565429917, "lon": 32506862.941045776 }, "geometry": { "type": "Point", "coordinates": [ 32506862.94104577600956, 6004919.556542991660535 ] } }, +{ "type": "Feature", "properties": { "id": 111, "geometry_wkt": "POINT (32506853.581471734 6004926.586993841)", "id_full": "forks-111", "lat": 6004926.5869938415, "lon": 32506853.581471734 }, "geometry": { "type": "Point", "coordinates": [ 32506853.581471733748913, 6004926.586993841454387 ] } }, +{ "type": "Feature", "properties": { "id": 112, "geometry_wkt": "POINT (32506842.01740372 6004935.273351938)", "id_full": "forks-112", "lat": 6004935.2733519385, "lon": 32506842.017403722 }, "geometry": { "type": "Point", "coordinates": [ 32506842.017403721809387, 6004935.273351938463748 ] } }, +{ "type": "Feature", "properties": { "id": 113, "geometry_wkt": "POINT (32506834.4868897 6004940.929903021)", "id_full": "forks-113", "lat": 6004940.9299030211, "lon": 32506834.486889701 }, "geometry": { "type": "Point", "coordinates": [ 32506834.486889701336622, 6004940.929903021082282 ] } }, +{ "type": "Feature", "properties": { "id": 114, "geometry_wkt": "POINT (32506986.214231238 6004828.87299769)", "id_full": "forks-114", "lat": 6004828.87299769, "lon": 32506986.214231238 }, "geometry": { "type": "Point", "coordinates": [ 32506986.214231237769127, 6004828.872997689992189 ] } }, +{ "type": "Feature", "properties": { "id": 115, "geometry_wkt": "POINT (32506932.130744286 6004867.584650641)", "id_full": "forks-115", "lat": 6004867.5846506413, "lon": 32506932.130744286 }, "geometry": { "type": "Point", "coordinates": [ 32506932.130744285881519, 6004867.584650641307235 ] } }, +{ "type": "Feature", "properties": { "id": 116, "geometry_wkt": "POINT (32506919.66273397 6004876.950005657)", "id_full": "forks-116", "lat": 6004876.950005657, "lon": 32506919.662733968 }, "geometry": { "type": "Point", "coordinates": [ 32506919.662733968347311, 6004876.950005657039583 ] } }, +{ "type": "Feature", "properties": { "id": 117, "geometry_wkt": "POINT (32506939.13893092 6004862.320446154)", "id_full": "forks-117", "lat": 6004862.3204461541, "lon": 32506939.138930921 }, "geometry": { "type": "Point", "coordinates": [ 32506939.138930920511484, 6004862.320446154102683 ] } }, +{ "type": "Feature", "properties": { "id": 118, "geometry_wkt": "POINT (32506900.98820418 6004890.977392287)", "id_full": "forks-118", "lat": 6004890.977392287, "lon": 32506900.988204181 }, "geometry": { "type": "Point", "coordinates": [ 32506900.988204181194305, 6004890.977392286993563 ] } }, +{ "type": "Feature", "properties": { "id": 119, "geometry_wkt": "POINT (32506888.624447055 6004900.2644374445)", "id_full": "forks-119", "lat": 6004900.2644374445, "lon": 32506888.624447055 }, "geometry": { "type": "Point", "coordinates": [ 32506888.624447055160999, 6004900.264437444508076 ] } }, +{ "type": "Feature", "properties": { "id": 120, "geometry_wkt": "POINT (32506953.3732471 6004747.733802417)", "id_full": "forks-120", "lat": 6004747.7338024173, "lon": 32506953.373247098 }, "geometry": { "type": "Point", "coordinates": [ 32506953.373247098177671, 6004747.733802417293191 ] } }, +{ "type": "Feature", "properties": { "id": 121, "geometry_wkt": "POINT (32506917.096217696 6004878.877846222)", "id_full": "forks-121", "lat": 6004878.8778462224, "lon": 32506917.096217696 }, "geometry": { "type": "Point", "coordinates": [ 32506917.096217695623636, 6004878.877846222370863 ] } }, +{ "type": "Feature", "properties": { "id": 122, "geometry_wkt": "POINT (32506832.823352624 6004942.179470108)", "id_full": "forks-122", "lat": 6004942.1794701079, "lon": 32506832.823352624 }, "geometry": { "type": "Point", "coordinates": [ 32506832.823352623730898, 6004942.179470107890666 ] } }, +{ "type": "Feature", "properties": { "id": 123, "geometry_wkt": "POINT (32506863.975002714 6005031.844291222)", "id_full": "forks-123", "lat": 6005031.8442912223, "lon": 32506863.975002714 }, "geometry": { "type": "Point", "coordinates": [ 32506863.975002713501453, 6005031.844291222281754 ] } }, +{ "type": "Feature", "properties": { "id": 124, "geometry_wkt": "POINT (32506822.627499092 6005043.576945948)", "id_full": "forks-124", "lat": 6005043.5769459484, "lon": 32506822.627499092 }, "geometry": { "type": "Point", "coordinates": [ 32506822.627499092370272, 6005043.576945948414505 ] } }, +{ "type": "Feature", "properties": { "id": 125, "geometry_wkt": "POINT (32506821.76289923 6005057.569485188)", "id_full": "forks-125", "lat": 6005057.5694851885, "lon": 32506821.762899231 }, "geometry": { "type": "Point", "coordinates": [ 32506821.762899231165648, 6005057.56948518846184 ] } }, +{ "type": "Feature", "properties": { "id": 126, "geometry_wkt": "POINT (32506820.38668043 6005079.841979513)", "id_full": "forks-126", "lat": 6005079.8419795129, "lon": 32506820.386680432 }, "geometry": { "type": "Point", "coordinates": [ 32506820.38668043166399, 6005079.841979512944818 ] } }, +{ "type": "Feature", "properties": { "id": 127, "geometry_wkt": "POINT (32506819.88781334 6005087.915560907)", "id_full": "forks-127", "lat": 6005087.9155609068, "lon": 32506819.887813341 }, "geometry": { "type": "Point", "coordinates": [ 32506819.887813340872526, 6005087.915560906752944 ] } }, +{ "type": "Feature", "properties": { "id": 128, "geometry_wkt": "POINT (32506818.827407427 6005105.076992445)", "id_full": "forks-128", "lat": 6005105.0769924447, "lon": 32506818.827407427 }, "geometry": { "type": "Point", "coordinates": [ 32506818.82740742713213, 6005105.076992444694042 ] } }, +{ "type": "Feature", "properties": { "id": 129, "geometry_wkt": "POINT (32506818.4658088 6005110.929044021)", "id_full": "forks-129", "lat": 6005110.9290440213, "lon": 32506818.465808801 }, "geometry": { "type": "Point", "coordinates": [ 32506818.465808801352978, 6005110.929044021293521 ] } }, +{ "type": "Feature", "properties": { "id": 130, "geometry_wkt": "POINT (32506817.597539995 6005124.980960833)", "id_full": "forks-130", "lat": 6005124.9809608329, "lon": 32506817.597539995 }, "geometry": { "type": "Point", "coordinates": [ 32506817.597539994865656, 6005124.98096083290875 ] } }, +{ "type": "Feature", "properties": { "id": 131, "geometry_wkt": "POINT (32506817.132637642 6005132.504862571)", "id_full": "forks-131", "lat": 6005132.5048625711, "lon": 32506817.132637642 }, "geometry": { "type": "Point", "coordinates": [ 32506817.132637642323971, 6005132.504862571135163 ] } }, +{ "type": "Feature", "properties": { "id": 132, "geometry_wkt": "POINT (32506816.08229341 6005149.503457555)", "id_full": "forks-132", "lat": 6005149.5034575546, "lon": 32506816.08229341 }, "geometry": { "type": "Point", "coordinates": [ 32506816.082293409854174, 6005149.503457554616034 ] } }, +{ "type": "Feature", "properties": { "id": 133, "geometry_wkt": "POINT (32506821.297996897 6005065.0933866)", "id_full": "forks-133", "lat": 6005065.0933865998, "lon": 32506821.297996897 }, "geometry": { "type": "Point", "coordinates": [ 32506821.297996897250414, 6005065.09338659979403 ] } }, +{ "type": "Feature", "properties": { "id": 134, "geometry_wkt": "POINT (32506911.433677286 6004984.27643663)", "id_full": "forks-134", "lat": 6004984.2764366297, "lon": 32506911.433677286 }, "geometry": { "type": "Point", "coordinates": [ 32506911.433677285909653, 6004984.276436629705131 ] } }, +{ "type": "Feature", "properties": { "id": 135, "geometry_wkt": "POINT (32506914.126209386 6004979.67345926)", "id_full": "forks-135", "lat": 6004979.6734592598, "lon": 32506914.126209386 }, "geometry": { "type": "Point", "coordinates": [ 32506914.126209385693073, 6004979.673459259793162 ] } }, +{ "type": "Feature", "properties": { "id": 136, "geometry_wkt": "POINT (32506916.818285372 6004975.071261634)", "id_full": "forks-136", "lat": 6004975.0712616341, "lon": 32506916.818285372 }, "geometry": { "type": "Point", "coordinates": [ 32506916.818285372108221, 6004975.071261634118855 ] } }, +{ "type": "Feature", "properties": { "id": 137, "geometry_wkt": "POINT (32506920.90591873 6004968.083310094)", "id_full": "forks-137", "lat": 6004968.0833100937, "lon": 32506920.905918729 }, "geometry": { "type": "Point", "coordinates": [ 32506920.905918728560209, 6004968.083310093730688 ] } }, +{ "type": "Feature", "properties": { "id": 138, "geometry_wkt": "POINT (32506923.44509021 6004963.742508043)", "id_full": "forks-138", "lat": 6004963.7425080426, "lon": 32506923.445090208 }, "geometry": { "type": "Point", "coordinates": [ 32506923.4450902082026, 6004963.742508042603731 ] } }, +{ "type": "Feature", "properties": { "id": 139, "geometry_wkt": "POINT (32506926.560590386 6004958.416452017)", "id_full": "forks-139", "lat": 6004958.4164520167, "lon": 32506926.560590386 }, "geometry": { "type": "Point", "coordinates": [ 32506926.560590386390686, 6004958.416452016681433 ] } }, +{ "type": "Feature", "properties": { "id": 140, "geometry_wkt": "POINT (32506956.185954 6004953.1699921)", "id_full": "forks-140", "lat": 6004953.1699921004, "lon": 32506956.185954001 }, "geometry": { "type": "Point", "coordinates": [ 32506956.185954, 6004953.169992100447416 ] } }, +{ "type": "Feature", "properties": { "id": 141, "geometry_wkt": "POINT (32506961.455688827 6004954.223493444)", "id_full": "forks-141", "lat": 6004954.2234934438, "lon": 32506961.455688827 }, "geometry": { "type": "Point", "coordinates": [ 32506961.455688826739788, 6004954.223493443801999 ] } }, +{ "type": "Feature", "properties": { "id": 142, "geometry_wkt": "POINT (32506896.847592518 6005009.211856375)", "id_full": "forks-142", "lat": 6005009.2118563754, "lon": 32506896.847592518 }, "geometry": { "type": "Point", "coordinates": [ 32506896.847592517733574, 6005009.211856375448406 ] } }, +{ "type": "Feature", "properties": { "id": 143, "geometry_wkt": "POINT (32506899.291071773 6005005.034643518)", "id_full": "forks-143", "lat": 6005005.0346435178, "lon": 32506899.291071773 }, "geometry": { "type": "Point", "coordinates": [ 32506899.291071772575378, 6005005.034643517807126 ] } }, +{ "type": "Feature", "properties": { "id": 144, "geometry_wkt": "POINT (32506927.966843437 6004956.745063732)", "id_full": "forks-144", "lat": 6004956.7450637324, "lon": 32506927.966843437 }, "geometry": { "type": "Point", "coordinates": [ 32506927.96684343740344, 6004956.745063732378185 ] } }, +{ "type": "Feature", "properties": { "id": 145, "geometry_wkt": "POINT (32506966.725317884 6004955.276973642)", "id_full": "forks-145", "lat": 6004955.2769736424, "lon": 32506966.725317884 }, "geometry": { "type": "Point", "coordinates": [ 32506966.725317884236574, 6004955.276973642408848 ] } }, +{ "type": "Feature", "properties": { "id": 146, "geometry_wkt": "POINT (32506946.472613283 6004951.228145341)", "id_full": "forks-146", "lat": 6004951.2281453414, "lon": 32506946.472613283 }, "geometry": { "type": "Point", "coordinates": [ 32506946.472613282501698, 6004951.228145341388881 ] } }, +{ "type": "Feature", "properties": { "id": 147, "geometry_wkt": "POINT (32506903.346458375 6004998.101818923)", "id_full": "forks-147", "lat": 6004998.1018189229, "lon": 32506903.346458375 }, "geometry": { "type": "Point", "coordinates": [ 32506903.346458375453949, 6004998.101818922907114 ] } }, +{ "type": "Feature", "properties": { "id": 148, "geometry_wkt": "POINT (32506906.03665117 6004993.502840675)", "id_full": "forks-148", "lat": 6004993.5028406754, "lon": 32506906.036651172 }, "geometry": { "type": "Point", "coordinates": [ 32506906.03665117174387, 6004993.502840675413609 ] } }, +{ "type": "Feature", "properties": { "id": 149, "geometry_wkt": "POINT (32506951.768994343 6004952.2869736785)", "id_full": "forks-149", "lat": 6004952.2869736785, "lon": 32506951.768994343 }, "geometry": { "type": "Point", "coordinates": [ 32506951.768994342535734, 6004952.286973678506911 ] } }, +{ "type": "Feature", "properties": { "id": 150, "geometry_wkt": "POINT (32506908.72619334 6004988.904974705)", "id_full": "forks-150", "lat": 6004988.9049747046, "lon": 32506908.726193339 }, "geometry": { "type": "Point", "coordinates": [ 32506908.726193338632584, 6004988.904974704608321 ] } }, +{ "type": "Feature", "properties": { "id": 151, "geometry_wkt": "POINT (32506901.873548362 6005000.619809871)", "id_full": "forks-151", "lat": 6005000.6198098706, "lon": 32506901.873548362 }, "geometry": { "type": "Point", "coordinates": [ 32506901.873548362404108, 6005000.619809870608151 ] } }, +{ "type": "Feature", "properties": { "id": 152, "geometry_wkt": "POINT (32506918.21652491 6004972.680922464)", "id_full": "forks-152", "lat": 6004972.6809224635, "lon": 32506918.21652491 }, "geometry": { "type": "Point", "coordinates": [ 32506918.216524910181761, 6004972.680922463536263 ] } }, +{ "type": "Feature", "properties": { "id": 153, "geometry_wkt": "POINT (32506668.398750115 6004969.102509102)", "id_full": "forks-153", "lat": 6004969.1025091019, "lon": 32506668.398750115 }, "geometry": { "type": "Point", "coordinates": [ 32506668.398750115185976, 6004969.102509101852775 ] } }, +{ "type": "Feature", "properties": { "id": 154, "geometry_wkt": "POINT (32506678.807402063 6004925.868346692)", "id_full": "forks-154", "lat": 6004925.8683466921, "lon": 32506678.807402063 }, "geometry": { "type": "Point", "coordinates": [ 32506678.807402063161135, 6004925.868346692062914 ] } }, +{ "type": "Feature", "properties": { "id": 155, "geometry_wkt": "POINT (32506681.648138843 6004914.068847971)", "id_full": "forks-155", "lat": 6004914.068847971, "lon": 32506681.648138843 }, "geometry": { "type": "Point", "coordinates": [ 32506681.648138843476772, 6004914.06884797103703 ] } }, +{ "type": "Feature", "properties": { "id": 156, "geometry_wkt": "POINT (32506777.7536734 6004673.914529995)", "id_full": "forks-156", "lat": 6004673.9145299951, "lon": 32506777.753673401 }, "geometry": { "type": "Point", "coordinates": [ 32506777.753673400729895, 6004673.914529995061457 ] } }, +{ "type": "Feature", "properties": { "id": 157, "geometry_wkt": "POINT (32506778.52004056 6004670.778998894)", "id_full": "forks-157", "lat": 6004670.7789988937, "lon": 32506778.520040561 }, "geometry": { "type": "Point", "coordinates": [ 32506778.520040560513735, 6004670.778998893685639 ] } }, +{ "type": "Feature", "properties": { "id": 158, "geometry_wkt": "POINT (32506754.1685734 6004682.577916228)", "id_full": "forks-158", "lat": 6004682.5779162282, "lon": 32506754.168573398 }, "geometry": { "type": "Point", "coordinates": [ 32506754.168573398143053, 6004682.577916228212416 ] } }, +{ "type": "Feature", "properties": { "id": 159, "geometry_wkt": "POINT (32506748.45317665 6004680.854203343)", "id_full": "forks-159", "lat": 6004680.8542033434, "lon": 32506748.453176651 }, "geometry": { "type": "Point", "coordinates": [ 32506748.453176651149988, 6004680.854203343391418 ] } }, +{ "type": "Feature", "properties": { "id": 160, "geometry_wkt": "POINT (32506742.561123274 6004679.077212389)", "id_full": "forks-160", "lat": 6004679.0772123886, "lon": 32506742.561123274 }, "geometry": { "type": "Point", "coordinates": [ 32506742.56112327426672, 6004679.077212388627231 ] } }, +{ "type": "Feature", "properties": { "id": 161, "geometry_wkt": "POINT (32506736.701256808 6004677.309928721)", "id_full": "forks-161", "lat": 6004677.3099287208, "lon": 32506736.701256808 }, "geometry": { "type": "Point", "coordinates": [ 32506736.701256807893515, 6004677.30992872081697 ] } }, +{ "type": "Feature", "properties": { "id": 162, "geometry_wkt": "POINT (32506731.17173863 6004675.642275162)", "id_full": "forks-162", "lat": 6004675.642275162, "lon": 32506731.171738628 }, "geometry": { "type": "Point", "coordinates": [ 32506731.171738628298044, 6004675.642275162041187 ] } }, +{ "type": "Feature", "properties": { "id": 163, "geometry_wkt": "POINT (32506756.704313155 6004683.342672812)", "id_full": "forks-163", "lat": 6004683.3426728118, "lon": 32506756.704313155 }, "geometry": { "type": "Point", "coordinates": [ 32506756.704313155263662, 6004683.342672811821103 ] } } +] +} diff --git a/examples/optimisation/network_aggregation/network_data/pipes.geojson b/examples/optimisation/network_aggregation/network_data/pipes.geojson new file mode 100644 index 00000000..bfd4c795 --- /dev/null +++ b/examples/optimisation/network_aggregation/network_data/pipes.geojson @@ -0,0 +1,339 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, +"features": [ +{ "type": "Feature", "properties": { "id": 0, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-0", "to_node": "forks-1", "length": 48.930750408040154 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506930.132400441914797, 6005038.999399862252176 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-3", "length": 84.101415234176301 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506849.56926654279232, 6005309.829775800928473 ], [ 32506852.788861401379108, 6005303.303346553817391 ], [ 32506857.729554239660501, 6005293.263527888804674 ], [ 32506874.377478789538145, 6005259.486231505870819 ], [ 32506877.43430345505476, 6005252.781554163433611 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-5", "length": 49.65468218997448 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507066.510839566588402, 6004782.174897360615432 ], [ 32507072.530063845217228, 6004784.309275067411363 ], [ 32507075.421466507017612, 6004787.996558192186058 ], [ 32507077.794186722487211, 6004793.774814426898956 ], [ 32507077.255080308765173, 6004800.672369468957186 ], [ 32507074.454373985528946, 6004805.919742610305548 ], [ 32507067.962735038250685, 6004809.770653950050473 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-5", "to_node": "forks-6", "length": 20.118775802046997 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507062.904994439333677, 6004810.397108196280897 ], [ 32507057.250238422304392, 6004808.886380590498447 ], [ 32507053.053128503262997, 6004805.67554706055671 ], [ 32507050.371553130447865, 6004801.309886945411563 ], [ 32507049.679193664342165, 6004797.514717631973326 ] ] } }, +{ "type": "Feature", "properties": { "id": 4, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-6", "to_node": "forks-4", "length": 19.483020231991176 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507051.015878472477198, 6004789.583621971309185 ], [ 32507055.721855498850346, 6004784.328024078160524 ], [ 32507059.691856741905212, 6004782.464862993918359 ] ] } }, +{ "type": "Feature", "properties": { "id": 5, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-7", "to_node": "forks-2", "length": 32.69106870034981 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506831.632401779294014, 6005311.127199975773692 ], [ 32506836.87445405870676, 6005313.4047647183761 ], [ 32506846.360497884452343, 6005317.858291626907885 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 6, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-6", "to_node": "forks-8", "length": 21.050810792646477 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507040.76520436629653, 6004798.157553435303271 ], [ 32507036.399958070367575, 6004798.217646886594594 ], [ 32507029.144705783575773, 6004800.936656161211431 ] ] } }, +{ "type": "Feature", "properties": { "id": 7, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-9", "to_node": "forks-10", "length": 36.734210973200092 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506674.726261701434851, 6005018.216621937230229 ], [ 32506654.861689653247595, 6005025.33106526453048 ] ] } }, +{ "type": "Feature", "properties": { "id": 8, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-11", "length": 58.167007772036605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506643.196130774915218, 6005070.34288255404681 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 9, "highway": "residential", "name": "Rüsdorfer Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-11", "to_node": "forks-12", "length": 16.145295829953266 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.289495009928942, 6005081.643143246881664 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 10, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-13", "to_node": "forks-14", "length": 151.40987648790704 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506632.455033458769321, 6005112.374179692007601 ], [ 32506627.507085636258125, 6005132.205481625162065 ], [ 32506623.818144433200359, 6005147.66591256391257 ], [ 32506620.064255829900503, 6005162.937104214914143 ], [ 32506615.55568515136838, 6005181.278110017068684 ], [ 32506613.350609008222818, 6005190.265099276788533 ], [ 32506610.443355057388544, 6005202.099448162131011 ], [ 32506608.262401930987835, 6005207.926569108851254 ], [ 32506604.114207334816456, 6005225.255598852410913 ], [ 32506597.784114979207516, 6005240.000177503563464 ], [ 32506592.558225195854902, 6005249.951128247193992 ] ] } }, +{ "type": "Feature", "properties": { "id": 11, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-14", "to_node": "forks-15", "length": 9.1179305943723072 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506591.320538651198149, 6005252.307886299677193 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, +{ "type": "Feature", "properties": { "id": 12, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-15", "to_node": "forks-16", "length": 32.100377577737376 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506587.964162901043892, 6005263.474022278562188 ], [ 32506587.762997552752495, 6005267.278973447158933 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, +{ "type": "Feature", "properties": { "id": 13, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-17", "to_node": "forks-18", "length": 7.23397136554079 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506973.341402161866426, 6004704.626499322243035 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 14, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-19", "to_node": "forks-20", "length": 74.004680308054191 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506905.58015414327383, 6004686.432937293313444 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 15, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-21", "to_node": "forks-22", "length": 23.950407844761276 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506799.387847676873207, 6004657.913845077157021 ], [ 32506782.945804461836815, 6004652.671333202160895 ] ] } }, +{ "type": "Feature", "properties": { "id": 16, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-22", "to_node": "forks-17", "length": 340.26583045827465 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506755.443020176142454, 6004643.41827427316457 ], [ 32506785.601000711321831, 6004608.692504844628274 ], [ 32506825.060652066022158, 6004563.265953474678099 ], [ 32506831.744175631552935, 6004570.930828711017966 ], [ 32506840.820324942469597, 6004580.012318628840148 ], [ 32506853.381121914833784, 6004593.327044745907187 ], [ 32506869.332918431609869, 6004607.993153758347034 ], [ 32506916.344829179346561, 6004648.39671597443521 ], [ 32506938.577460221946239, 6004669.014002612791955 ], [ 32506958.951517555862665, 6004688.794110026210546 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 17, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-7", "to_node": "forks-23", "length": 41.544433354428605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506818.050234023481607, 6005310.350491045974195 ], [ 32506800.642851490527391, 6005319.804492926225066 ], [ 32506796.837095130234957, 6005321.278694453649223 ], [ 32506793.04543898999691, 6005322.040828321129084 ], [ 32506788.133238516747952, 6005321.710924620740116 ], [ 32506785.853551879525185, 6005321.162249530665576 ] ] } }, +{ "type": "Feature", "properties": { "id": 18, "highway": "residential", "name": "Stettiner Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-24", "to_node": "forks-25", "length": 18.982021775696019 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506758.059295017272234, 6005017.481309016235173 ] ] } }, +{ "type": "Feature", "properties": { "id": 19, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-26", "to_node": "forks-27", "length": 52.701423082946803 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506815.066916454583406, 6005165.936148005537689 ], [ 32506830.834934014827013, 6005171.277921593748033 ], [ 32506857.420281685888767, 6005175.401853865012527 ] ] } }, +{ "type": "Feature", "properties": { "id": 20, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-27", "to_node": "forks-28", "length": 44.573572810303936 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506875.229494299739599, 6005178.164427729323506 ], [ 32506877.851715076714754, 6005178.546638377942145 ], [ 32506880.474450293928385, 6005178.583931988105178 ], [ 32506884.531792610883713, 6005179.124058937653899 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 21, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-30", "length": 38.483474769190238 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506983.146614462137222, 6005024.615053474903107 ], [ 32506984.83666018769145, 6005033.107077995315194 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 22, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-31", "to_node": "forks-3", "length": 189.88504086378893 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506761.41373110935092, 6005288.247852889820933 ], [ 32506768.106216792017221, 6005284.719470574520528 ], [ 32506768.58904629573226, 6005275.807909052819014 ], [ 32506772.436157487332821, 6005237.327239649370313 ], [ 32506778.249345108866692, 6005228.412388440221548 ], [ 32506784.139542851597071, 6005224.816091160289943 ], [ 32506794.208307005465031, 6005219.178695933893323 ], [ 32506815.131370950490236, 6005219.420987154357135 ], [ 32506849.753633692860603, 6005225.280305446125567 ], [ 32506870.448009263724089, 6005230.106597077101469 ], [ 32506874.400354873389006, 6005231.024857359007001 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 23, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-30", "to_node": "forks-32", "length": 340.86861334048416 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506990.210665870457888, 6005043.184641130268574 ], [ 32507017.173750825226307, 6005049.356270640157163 ], [ 32507024.24387625977397, 6005050.980371178127825 ], [ 32507032.057673122733831, 6005052.683502029627562 ], [ 32507039.030090410262346, 6005054.196211940608919 ], [ 32507095.425084549933672, 6005068.902803309261799 ], [ 32507099.61846774071455, 6005070.12204088177532 ], [ 32507105.079793032258749, 6005048.756587056443095 ], [ 32507108.880019243806601, 6005029.925403732806444 ], [ 32507113.154372714459896, 6005012.519138348288834 ], [ 32507115.639401003718376, 6005000.384041387587786 ], [ 32507119.159936010837555, 6004985.268662626855075 ], [ 32507125.537302955985069, 6004958.130034665577114 ], [ 32507123.130625989288092, 6004953.308572310954332 ], [ 32507119.20999788120389, 6004948.6294163800776 ], [ 32507112.447489432990551, 6004946.304680480621755 ], [ 32507096.74439213424921, 6004940.884161343798041 ], [ 32507081.034716226160526, 6004935.474812150001526 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 24, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-34", "length": 50.586773458177269 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506964.114786304533482, 6005106.432262209244072 ], [ 32506959.267871152609587, 6005121.25927338283509 ] ] } }, +{ "type": "Feature", "properties": { "id": 25, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-34", "to_node": "forks-35", "length": 49.532371763572257 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506954.997180473059416, 6005134.323578499257565 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 26, "highway": "service", "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": "driveway", "access": null, "type": "DL", "from_node": "forks-36", "to_node": "forks-37", "length": 8.7446601227635696 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506863.05286305770278, 6005113.902283472940326 ] ] } }, +{ "type": "Feature", "properties": { "id": 27, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-37", "to_node": "forks-38", "length": 44.866942083977705 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506863.05286305770278, 6005113.902283472940326 ], [ 32506868.820386204868555, 6005092.069696916267276 ], [ 32506875.811225049197674, 6005094.349910996854305 ], [ 32506890.007688235491514, 6005098.978906005620956 ] ] } }, +{ "type": "Feature", "properties": { "id": 28, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-39", "to_node": "forks-40", "length": 32.538886962521097 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506905.326579809188843, 6005103.973887623287737 ], [ 32506909.884949542582035, 6005105.460533680394292 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 29, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-3", "to_node": "forks-28", "length": 52.413555485224038 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506884.118155308067799, 6005233.286900076083839 ], [ 32506897.695788338780403, 6005193.641477124765515 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 30, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-41", "to_node": "forks-35", "length": 44.401197384328732 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506909.269722919911146, 6005158.977732182480395 ], [ 32506918.045713808387518, 6005132.432110263034701 ], [ 32506918.576595596969128, 6005130.830701379105449 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 31, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-35", "to_node": "forks-40", "length": 16.887330997184353 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.064067415893078, 6005126.549259348772466 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 32, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-40", "to_node": "forks-33", "length": 16.495543603110093 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506925.620743818581104, 6005110.602306800894439 ], [ 32506931.039892718195915, 6005095.022326570935547 ] ] } }, +{ "type": "Feature", "properties": { "id": 33, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-1", "length": 62.273477677616725 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506936.85857841745019, 6005078.441575756296515 ], [ 32506943.116743721067905, 6005060.337174004875124 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 34, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-42", "to_node": "forks-29", "length": 27.378709179057996 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506972.555892087519169, 6005025.500261910259724 ], [ 32506983.83998479694128, 6005006.224120298400521 ] ] } }, +{ "type": "Feature", "properties": { "id": 35, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-43", "length": 82.309282614808183 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506997.676446001976728, 6004973.299755467101932 ], [ 32507001.493707738816738, 6004964.482295924797654 ], [ 32507016.180187117308378, 6004930.535648110322654 ] ] } }, +{ "type": "Feature", "properties": { "id": 36, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": "DE:253,10", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": "track", "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-43", "to_node": "forks-32", "length": 16.549760925557624 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 37, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-44", "to_node": "forks-5", "length": 26.569819452160623 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507056.958943579345942, 6004832.941263437271118 ], [ 32507062.226572059094906, 6004818.80764533020556 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 38, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-45", "to_node": "forks-30", "length": 12.434883382597702 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506988.514574155211449, 6005042.992920082062483 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 39, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-7", "to_node": "forks-46", "length": 10.105680894875992 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506828.487186539918184, 6005307.105897605419159 ], [ 32506834.086465626955032, 6005306.0683119809255 ] ] } }, +{ "type": "Feature", "properties": { "id": 40, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-46", "to_node": "forks-2", "length": 16.093642909239808 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506839.983860768377781, 6005306.377473699860275 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 41, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-15", "to_node": "forks-12", "length": 186.83480570927742 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506580.43083043769002, 6005248.253432797268033 ], [ 32506586.498014286160469, 6005225.686575460247695 ], [ 32506599.077679563313723, 6005179.529892827384174 ], [ 32506610.953214820474386, 6005133.194214399904013 ], [ 32506617.463154081255198, 6005106.92293609213084 ], [ 32506620.289027590304613, 6005097.291508676484227 ], [ 32506622.654141690582037, 6005095.025115229189396 ], [ 32506626.497879713773727, 6005094.452065224759281 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 42, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-47", "length": 46.601378996993553 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507058.269206289201975, 6004774.08448775857687 ], [ 32507055.049979239702225, 6004762.886378192342818 ], [ 32507049.614296812564135, 6004750.349710370413959 ], [ 32507040.424831099808216, 6004741.460822491906583 ] ] } }, +{ "type": "Feature", "properties": { "id": 43, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-48", "to_node": "forks-17", "length": 29.417395299614718 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.376538667827845, 6004714.249341813847423 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 44, "highway": "residential", "name": "Auguste-Ebeling-Straße", "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": "no", "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-50", "length": 12.072329419637438 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506774.079425685107708, 6004700.679925447329879 ] ] } }, +{ "type": "Feature", "properties": { "id": 45, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-50", "to_node": "forks-51", "length": 17.159504622818627 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506772.276173859834671, 6004711.158364219591022 ], [ 32506770.973308652639389, 6004717.554045321419835 ] ] } }, +{ "type": "Feature", "properties": { "id": 46, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-51", "to_node": "forks-52", "length": 38.487725169228518 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506770.028414003551006, 6004722.192472075112164 ], [ 32506767.165194243192673, 6004734.672112413682044 ], [ 32506762.504478130489588, 6004749.296516856178641 ], [ 32506756.913997627794743, 6004748.952905901707709 ] ] } }, +{ "type": "Feature", "properties": { "id": 47, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-52", "to_node": "forks-53", "length": 16.431622515339562 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506751.563101142644882, 6004748.624020638875663 ], [ 32506740.583661332726479, 6004747.206024529412389 ] ] } }, +{ "type": "Feature", "properties": { "id": 48, "highway": "service", "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": "private", "type": "DL", "from_node": "forks-54", "to_node": "forks-55", "length": 30.023193988180321 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506696.986993879079819, 6005095.343915767967701 ] ] } }, +{ "type": "Feature", "properties": { "id": 49, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-56", "to_node": "forks-11", "length": 26.346376967566655 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506648.500972010195255, 6005083.624357352033257 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 50, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-42", "length": 15.244582403753499 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506968.895207814872265, 6005028.968333293683827 ] ] } }, +{ "type": "Feature", "properties": { "id": 51, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-57", "to_node": "forks-58", "length": 20.37652349832614 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506823.60973072052002, 6005027.680673941038549 ] ] } }, +{ "type": "Feature", "properties": { "id": 52, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-59", "to_node": "forks-60", "length": 6.7832046734098697 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506978.648154817521572, 6004957.660532805137336 ] ] } }, +{ "type": "Feature", "properties": { "id": 53, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-61", "to_node": "forks-62", "length": 6.9335111315525166 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506939.293046627193689, 6004950.686475986614823 ] ] } }, +{ "type": "Feature", "properties": { "id": 54, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-62", "to_node": "forks-63", "length": 2.8659454894906302 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506942.140576533973217, 6004950.362104319036007 ] ] } }, +{ "type": "Feature", "properties": { "id": 55, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-64", "to_node": "forks-65", "length": 9.8105211963044052 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506892.243028957396746, 6005034.82775982376188 ] ] } }, +{ "type": "Feature", "properties": { "id": 56, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-65", "to_node": "forks-0", "length": 16.887334600911991 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506909.028953850269318, 6005036.675676329992712 ] ] } }, +{ "type": "Feature", "properties": { "id": 57, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-58", "to_node": "forks-66", "length": 27.605174303638094 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506851.069212395697832, 6005030.513078302145004 ] ] } }, +{ "type": "Feature", "properties": { "id": 58, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-67", "to_node": "forks-68", "length": 22.959585823349634 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506654.616219203919172, 6005285.733618872240186 ], [ 32506640.347953863441944, 6005281.794904010370374 ] ] } }, +{ "type": "Feature", "properties": { "id": 59, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-69", "to_node": "forks-31", "length": 11.979033370149464 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506758.487752359360456, 6005302.260412618517876 ] ] } }, +{ "type": "Feature", "properties": { "id": 60, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-23", "to_node": "forks-69", "length": 30.66571428049804 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506756.039207898080349, 6005313.986531776376069 ] ] } }, +{ "type": "Feature", "properties": { "id": 61, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-70", "to_node": "forks-71", "length": 11.677863083290758 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506716.644411128014326, 6005303.012513199821115 ] ] } }, +{ "type": "Feature", "properties": { "id": 62, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-71", "to_node": "forks-72", "length": 14.969786858123685 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506702.223685432225466, 6005298.995401179417968 ] ] } }, +{ "type": "Feature", "properties": { "id": 63, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-72", "to_node": "forks-73", "length": 12.353866994017851 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506690.322933010756969, 6005295.680265962146223 ] ] } }, +{ "type": "Feature", "properties": { "id": 64, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-69", "to_node": "forks-74", "length": 15.774840704223596 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506740.842956084758043, 6005309.753385184332728 ] ] } }, +{ "type": "Feature", "properties": { "id": 65, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-74", "to_node": "forks-70", "length": 13.442028101487896 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506727.893954079598188, 6005306.146244134753942 ] ] } }, +{ "type": "Feature", "properties": { "id": 66, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-68", "to_node": "forks-75", "length": 16.775301464525015 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506624.177454806864262, 6005277.331082834862173 ] ] } }, +{ "type": "Feature", "properties": { "id": 67, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-75", "to_node": "forks-16", "length": 14.690029934981304 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, +{ "type": "Feature", "properties": { "id": 68, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-73", "to_node": "forks-76", "length": 12.449400958541288 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506678.330150615423918, 6005292.339494397863746 ] ] } }, +{ "type": "Feature", "properties": { "id": 69, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-76", "to_node": "forks-67", "length": 16.459161602136028 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506662.47467739507556, 6005287.92271167691797 ] ] } }, +{ "type": "Feature", "properties": { "id": 70, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-77", "to_node": "forks-78", "length": 3.2511346722243273 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506795.28539727255702, 6004969.1316276807338 ] ] } }, +{ "type": "Feature", "properties": { "id": 71, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-32", "to_node": "forks-79", "length": 30.801873400833628 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507023.054066255688667, 6004915.480935483239591 ], [ 32507034.713617395609617, 6004886.971107840538025 ] ] } }, +{ "type": "Feature", "properties": { "id": 72, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-79", "to_node": "forks-44", "length": 55.381718657617995 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507047.633258003741503, 6004855.380120977759361 ], [ 32507055.788943462073803, 6004835.756441549398005 ] ] } }, +{ "type": "Feature", "properties": { "id": 73, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-80", "to_node": "forks-81", "length": 19.13128190117753 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506950.185454107820988, 6004758.780014672316611 ] ] } }, +{ "type": "Feature", "properties": { "id": 74, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-82", "to_node": "forks-18", "length": 25.452005598808491 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 75, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-24", "to_node": "forks-83", "length": 15.513758223588377 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506731.285512860864401, 6005005.676744327880442 ] ] } }, +{ "type": "Feature", "properties": { "id": 76, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-8", "to_node": "forks-84", "length": 19.806018603355987 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507025.222955066710711, 6004802.406388177536428 ], [ 32507012.298958111554384, 6004811.175051881931722 ] ] } }, +{ "type": "Feature", "properties": { "id": 77, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-85", "to_node": "forks-57", "length": 20.004603310362665 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506803.475475002080202, 6005024.547870636917651 ] ] } }, +{ "type": "Feature", "properties": { "id": 78, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-86", "to_node": "forks-87", "length": 4.3680976148378781 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506813.553776793181896, 6004956.449514558538795 ] ] } }, +{ "type": "Feature", "properties": { "id": 79, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-88", "to_node": "forks-86", "length": 7.7170876911347053 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506817.141993094235659, 6004953.958534721285105 ] ] } }, +{ "type": "Feature", "properties": { "id": 80, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-87", "to_node": "forks-89", "length": 6.1120023434020982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506808.533012978732586, 6004959.934984880499542 ] ] } }, +{ "type": "Feature", "properties": { "id": 81, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-89", "to_node": "forks-77", "length": 12.875785700047937 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506797.956073492765427, 6004967.27761441655457 ] ] } }, +{ "type": "Feature", "properties": { "id": 82, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-90", "to_node": "forks-19", "length": 14.875469497298331 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 83, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-83", "to_node": "forks-91", "length": 10.149118786775464 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506721.357687663286924, 6005007.784562867134809 ] ] } }, +{ "type": "Feature", "properties": { "id": 84, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-92", "to_node": "forks-93", "length": 12.256625746103836 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506959.887568239122629, 6004846.735092141665518 ], [ 32506953.613189354538918, 6004851.448096404783428 ] ] } }, +{ "type": "Feature", "properties": { "id": 85, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-20", "to_node": "forks-21", "length": 29.258208096292304 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.067715518176556, 6004667.389202644117177 ], [ 32506805.844013649970293, 6004659.677821842953563 ] ] } }, +{ "type": "Feature", "properties": { "id": 86, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-94", "to_node": "forks-95", "length": 4.5999034594684964 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506703.2613147161901, 6005011.626680312678218 ] ] } }, +{ "type": "Feature", "properties": { "id": 87, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-47", "to_node": "forks-48", "length": 47.275981869211954 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507038.577310808002949, 6004739.673732661642134 ], [ 32506999.825161140412092, 6004717.383402613922954 ] ] } }, +{ "type": "Feature", "properties": { "id": 88, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-84", "to_node": "forks-96", "length": 10.910704236265087 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507003.270227983593941, 6004817.30085788667202 ] ] } }, +{ "type": "Feature", "properties": { "id": 89, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-96", "to_node": "forks-97", "length": 7.8661323913340357 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32506996.760915204882622, 6004821.717291509732604 ] ] } }, +{ "type": "Feature", "properties": { "id": 90, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-98", "to_node": "forks-99", "length": 6.7877587036788922 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506830.970641527324915, 6004681.731834987178445 ] ] } }, +{ "type": "Feature", "properties": { "id": 91, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-99", "to_node": "forks-20", "length": 14.673205847156813 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 92, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-100", "to_node": "forks-24", "length": 16.333993078612245 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506746.461005732417107, 6005002.454771279357374 ] ] } }, +{ "type": "Feature", "properties": { "id": 93, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-25", "to_node": "forks-101", "length": 11.896619369836037 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506769.814468886703253, 6005019.310363342985511 ] ] } }, +{ "type": "Feature", "properties": { "id": 94, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-101", "to_node": "forks-85", "length": 14.061432786510078 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506783.708717506378889, 6005021.472248470410705 ] ] } }, +{ "type": "Feature", "properties": { "id": 95, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-18", "to_node": "forks-102", "length": 20.077466912748715 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.355939168483019, 6004702.74669920373708 ], [ 32506946.964905604720116, 6004697.541654058732092 ] ] } }, +{ "type": "Feature", "properties": { "id": 96, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-102", "to_node": "forks-19", "length": 42.849751944439234 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 97, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-103", "to_node": "forks-104", "length": 12.071576245623099 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506775.654936447739601, 6004982.75931285880506 ], [ 32506768.873632948845625, 6004987.334266549907625 ] ] } }, +{ "type": "Feature", "properties": { "id": 98, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-91", "to_node": "forks-105", "length": 9.3306166420836902 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506712.230517812073231, 6005009.722390885464847 ] ] } }, +{ "type": "Feature", "properties": { "id": 99, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-105", "to_node": "forks-94", "length": 4.5692253103654279 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506707.760920882225037, 6005010.671349905431271 ] ] } }, +{ "type": "Feature", "properties": { "id": 100, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-78", "to_node": "forks-106", "length": 9.8573102943669628 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506787.188013788312674, 6004974.752921744249761 ] ] } }, +{ "type": "Feature", "properties": { "id": 101, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-106", "to_node": "forks-103", "length": 10.148396272332 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506778.851514894515276, 6004980.540212396532297 ] ] } }, +{ "type": "Feature", "properties": { "id": 102, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-107", "to_node": "forks-108", "length": 20.197520625055891 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506676.925561025738716, 6004933.684903668239713 ] ] } }, +{ "type": "Feature", "properties": { "id": 103, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-95", "to_node": "forks-9", "length": 13.652059525991209 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506689.959371760487556, 6005014.698657347820699 ] ] } }, +{ "type": "Feature", "properties": { "id": 104, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-109", "to_node": "forks-110", "length": 13.444847189322466 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506862.94104577600956, 6004919.556542991660535 ] ] } }, +{ "type": "Feature", "properties": { "id": 105, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-110", "to_node": "forks-111", "length": 11.705932914720055 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506853.581471733748913, 6004926.586993841454387 ] ] } }, +{ "type": "Feature", "properties": { "id": 106, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-104", "to_node": "forks-100", "length": 10.702196039233204 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506760.00166030600667, 6004993.319673928432167 ] ] } }, +{ "type": "Feature", "properties": { "id": 107, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-111", "to_node": "forks-112", "length": 14.463073185676793 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506842.017403721809387, 6004935.273351938463748 ] ] } }, +{ "type": "Feature", "properties": { "id": 108, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-112", "to_node": "forks-113", "length": 9.4183444172959518 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506834.486889701336622, 6004940.929903021082282 ] ] } }, +{ "type": "Feature", "properties": { "id": 109, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-97", "to_node": "forks-114", "length": 12.74506467776347 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506986.214231237769127, 6004828.872997689992189 ] ] } }, +{ "type": "Feature", "properties": { "id": 110, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-114", "to_node": "forks-92", "length": 27.40494932962573 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506963.536328300833702, 6004844.25948416814208 ] ] } }, +{ "type": "Feature", "properties": { "id": 111, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-115", "to_node": "forks-116", "length": 15.593625487642139 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506919.662733968347311, 6004876.950005657039583 ] ] } }, +{ "type": "Feature", "properties": { "id": 112, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-93", "to_node": "forks-117", "length": 18.10282150070913 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506939.138930920511484, 6004862.320446154102683 ] ] } }, +{ "type": "Feature", "properties": { "id": 113, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-117", "to_node": "forks-115", "length": 8.765074374408389 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506932.130744285881519, 6004867.584650641307235 ] ] } }, +{ "type": "Feature", "properties": { "id": 114, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-55", "to_node": "forks-56", "length": 31.983011999679352 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506696.986993879079819, 6005095.343915767967701 ], [ 32506665.899223614484072, 6005087.829689490608871 ] ] } }, +{ "type": "Feature", "properties": { "id": 115, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-118", "to_node": "forks-119", "length": 15.463236984191026 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506888.624447055160999, 6004900.264437444508076 ] ] } }, +{ "type": "Feature", "properties": { "id": 116, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-119", "to_node": "forks-109", "length": 18.67714586385511 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506873.690982896834612, 6004911.48171990737319 ] ] } }, +{ "type": "Feature", "properties": { "id": 117, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-81", "to_node": "forks-120", "length": 11.496992186324073 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506953.373247098177671, 6004747.733802417293191 ] ] } }, +{ "type": "Feature", "properties": { "id": 118, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-120", "to_node": "forks-82", "length": 21.370956171454608 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506959.298812948167324, 6004727.200769591145217 ] ] } }, +{ "type": "Feature", "properties": { "id": 119, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-116", "to_node": "forks-121", "length": 3.2099182269167317 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506917.096217695623636, 6004878.877846222370863 ] ] } }, +{ "type": "Feature", "properties": { "id": 120, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-121", "to_node": "forks-118", "length": 20.14614390772995 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506900.988204181194305, 6004890.977392286993563 ] ] } }, +{ "type": "Feature", "properties": { "id": 121, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-113", "to_node": "forks-122", "length": 2.0805704777785787 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506832.823352623730898, 6004942.179470107890666 ] ] } }, +{ "type": "Feature", "properties": { "id": 122, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-122", "to_node": "forks-88", "length": 11.895444013360057 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506823.312253437936306, 6004949.323739178478718 ] ] } }, +{ "type": "Feature", "properties": { "id": 123, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-28", "to_node": "forks-41", "length": 15.814822587833325 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.096803050488234, 6005183.699540133588016 ], [ 32506906.060875575989485, 6005168.68399494048208 ] ] } }, +{ "type": "Feature", "properties": { "id": 124, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-38", "to_node": "forks-39", "length": 4.9230043797971872 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506894.688163235783577, 6005100.505053408443928 ] ] } }, +{ "type": "Feature", "properties": { "id": 125, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-66", "to_node": "forks-123", "length": 12.974264972084265 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506863.975002713501453, 6005031.844291222281754 ] ] } }, +{ "type": "Feature", "properties": { "id": 126, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-123", "to_node": "forks-64", "length": 18.614661097912897 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506882.491420675069094, 6005033.754231970757246 ] ] } }, +{ "type": "Feature", "properties": { "id": 127, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-45", "length": 20.161667823640062 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506977.857269514352083, 6005041.763435141183436 ] ] } }, +{ "type": "Feature", "properties": { "id": 128, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-58", "to_node": "forks-124", "length": 15.92658917357455 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506822.627499092370272, 6005043.576945948414505 ] ] } }, +{ "type": "Feature", "properties": { "id": 129, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-124", "to_node": "forks-125", "length": 14.019225631405591 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506821.762899231165648, 6005057.56948518846184 ] ] } }, +{ "type": "Feature", "properties": { "id": 130, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-126", "to_node": "forks-127", "length": 8.0889792246438308 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506819.887813340872526, 6005087.915560906752944 ] ] } }, +{ "type": "Feature", "properties": { "id": 131, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-127", "to_node": "forks-128", "length": 17.194161600186703 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506818.82740742713213, 6005105.076992444694042 ] ] } }, +{ "type": "Feature", "properties": { "id": 132, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-128", "to_node": "forks-129", "length": 5.8632125342124359 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506818.465808801352978, 6005110.929044021293521 ] ] } }, +{ "type": "Feature", "properties": { "id": 133, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-129", "to_node": "forks-130", "length": 14.078716447207594 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506817.597539994865656, 6005124.98096083290875 ] ] } }, +{ "type": "Feature", "properties": { "id": 134, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-130", "to_node": "forks-131", "length": 7.5382512271670308 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506817.132637642323971, 6005132.504862571135163 ] ] } }, +{ "type": "Feature", "properties": { "id": 135, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-131", "to_node": "forks-132", "length": 17.031014485904933 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506816.082293409854174, 6005149.503457554616034 ] ] } }, +{ "type": "Feature", "properties": { "id": 136, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-132", "to_node": "forks-26", "length": 7.3141780287910745 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506815.631210200488567, 6005156.803712630644441 ] ] } }, +{ "type": "Feature", "properties": { "id": 137, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-125", "to_node": "forks-133", "length": 7.5382508997463304 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506821.297996897250414, 6005065.09338659979403 ] ] } }, +{ "type": "Feature", "properties": { "id": 138, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-133", "to_node": "forks-126", "length": 14.776721240460976 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506820.38668043166399, 6005079.841979512944818 ] ] } }, +{ "type": "Feature", "properties": { "id": 139, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-134", "to_node": "forks-135", "length": 5.3326475391015506 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506914.126209385693073, 6004979.673459259793162 ] ] } }, +{ "type": "Feature", "properties": { "id": 140, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-135", "to_node": "forks-136", "length": 5.3317441895120332 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506916.818285372108221, 6004975.071261634118855 ] ] } }, +{ "type": "Feature", "properties": { "id": 141, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-137", "to_node": "forks-138", "length": 5.0289118355860376 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506923.4450902082026, 6004963.742508042603731 ] ] } }, +{ "type": "Feature", "properties": { "id": 142, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-138", "to_node": "forks-139", "length": 6.1703495971908442 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506926.560590386390686, 6004958.416452016681433 ] ] } }, +{ "type": "Feature", "properties": { "id": 143, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-140", "to_node": "forks-141", "length": 5.3740087659180107 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506956.185954, 6004953.169992100447416 ], [ 32506961.455688826739788, 6004954.223493443801999 ] ] } }, +{ "type": "Feature", "properties": { "id": 144, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-64", "to_node": "forks-142", "length": 28.432866015182562 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506896.847592517733574, 6005009.211856375448406 ] ] } }, +{ "type": "Feature", "properties": { "id": 145, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-142", "to_node": "forks-143", "length": 4.839390263957422 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506899.291071772575378, 6005005.034643517807126 ] ] } }, +{ "type": "Feature", "properties": { "id": 146, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-139", "to_node": "forks-144", "length": 2.1842816760639723 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506927.96684343740344, 6004956.745063732378185 ] ] } }, +{ "type": "Feature", "properties": { "id": 147, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-144", "to_node": "forks-61", "length": 6.8922102463753827 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506932.404087860137224, 6004951.471220350824296 ] ] } }, +{ "type": "Feature", "properties": { "id": 148, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-141", "to_node": "forks-145", "length": 5.3739009046009762 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506966.725317884236574, 6004955.276973642408848 ] ] } }, +{ "type": "Feature", "properties": { "id": 149, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-145", "to_node": "forks-59", "length": 5.3755532738449299 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506971.996567249298096, 6004956.330777766183019 ] ] } }, +{ "type": "Feature", "properties": { "id": 150, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-63", "to_node": "forks-146", "length": 4.4177561547689814 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506946.472613282501698, 6004951.228145341388881 ] ] } }, +{ "type": "Feature", "properties": { "id": 151, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-147", "to_node": "forks-148", "length": 5.3280144709008272 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506906.03665117174387, 6004993.502840675413609 ] ] } }, +{ "type": "Feature", "properties": { "id": 152, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-146", "to_node": "forks-149", "length": 5.4011822576702038 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506951.768994342535734, 6004952.286973678506911 ] ] } }, +{ "type": "Feature", "properties": { "id": 153, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-149", "to_node": "forks-140", "length": 4.5043594612583675 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506956.185954, 6004953.169992100447416 ] ] } }, +{ "type": "Feature", "properties": { "id": 154, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-148", "to_node": "forks-150", "length": 5.3267258755225697 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506908.726193338632584, 6004988.904974704608321 ] ] } }, +{ "type": "Feature", "properties": { "id": 155, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-150", "to_node": "forks-134", "length": 5.3622601611253016 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506911.433677285909653, 6004984.276436629705131 ] ] } }, +{ "type": "Feature", "properties": { "id": 156, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-143", "to_node": "forks-151", "length": 5.1146790192008753 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506901.873548362404108, 6005000.619809870608151 ] ] } }, +{ "type": "Feature", "properties": { "id": 157, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-151", "to_node": "forks-147", "length": 2.9171462629163538 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506903.346458375453949, 6004998.101818922907114 ] ] } }, +{ "type": "Feature", "properties": { "id": 158, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-136", "to_node": "forks-152", "length": 2.7692589543510699 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506918.216524910181761, 6004972.680922463536263 ] ] } }, +{ "type": "Feature", "properties": { "id": 159, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-152", "to_node": "forks-137", "length": 5.3264320715955291 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506920.905918728560209, 6004968.083310093730688 ] ] } }, +{ "type": "Feature", "properties": { "id": 160, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-153", "length": 57.835132351275696 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506668.398750115185976, 6004969.102509101852775 ] ] } }, +{ "type": "Feature", "properties": { "id": 161, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-153", "to_node": "forks-107", "length": 16.232045375041046 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506672.19807019457221, 6004953.321366431191564 ] ] } }, +{ "type": "Feature", "properties": { "id": 162, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-108", "to_node": "forks-154", "length": 8.0398935721777605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506678.807402063161135, 6004925.868346692062914 ] ] } }, +{ "type": "Feature", "properties": { "id": 163, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-154", "to_node": "forks-155", "length": 12.136636911538943 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506681.648138843476772, 6004914.06884797103703 ] ] } }, +{ "type": "Feature", "properties": { "id": 164, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-156", "to_node": "forks-49", "length": 15.125862215622554 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506774.162415158003569, 6004688.607881280593574 ] ] } }, +{ "type": "Feature", "properties": { "id": 165, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-22", "to_node": "forks-157", "length": 18.640679786592461 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506778.520040560513735, 6004670.778998893685639 ] ] } }, +{ "type": "Feature", "properties": { "id": 166, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-157", "to_node": "forks-156", "length": 3.2278280485940081 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506777.753673400729895, 6004673.914529995061457 ] ] } }, +{ "type": "Feature", "properties": { "id": 167, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-158", "to_node": "forks-159", "length": 5.9696688421416511 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506748.453176651149988, 6004680.854203343391418 ] ] } }, +{ "type": "Feature", "properties": { "id": 168, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-159", "to_node": "forks-160", "length": 6.1541847428684866 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506742.56112327426672, 6004679.077212388627231 ] ] } }, +{ "type": "Feature", "properties": { "id": 169, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-160", "to_node": "forks-161", "length": 6.1205658697733236 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506736.701256807893515, 6004677.30992872081697 ] ] } }, +{ "type": "Feature", "properties": { "id": 170, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-161", "to_node": "forks-162", "length": 5.7755207289537402 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506731.171738628298044, 6004675.642275162041187 ] ] } }, +{ "type": "Feature", "properties": { "id": 171, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-163", "length": 18.234794919540622 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506756.704313155263662, 6004683.342672811821103 ] ] } }, +{ "type": "Feature", "properties": { "id": 172, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-163", "to_node": "forks-158", "length": 2.6485521984689893 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506754.168573398143053, 6004682.577916228212416 ] ] } }, +{ "type": "Feature", "properties": { "id": 173, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-12", "to_node": "forks-13", "length": 7.8781933938920234 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506635.980503581464291, 6005097.202808098867536 ], [ 32506634.197308879345655, 6005104.876539121381938 ] ] } }, +{ "type": "Feature", "properties": { "id": 174, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-42", "to_node": "consumers-0", "length": 20.070567506853333 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506955.09166768565774, 6005014.398159652017057 ] ] } }, +{ "type": "Feature", "properties": { "id": 175, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-57", "to_node": "consumers-1", "length": 14.828558617895311 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506801.195647560060024, 6005039.200124303810298 ] ] } }, +{ "type": "Feature", "properties": { "id": 176, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-34", "to_node": "consumers-2", "length": 12.18983054287227 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506947.681407205760479, 6005117.471685512922704 ] ] } }, +{ "type": "Feature", "properties": { "id": 177, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-139", "to_node": "consumers-3", "length": 11.666016769071787 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506936.092872586101294, 6004965.141892026178539 ] ] } }, +{ "type": "Feature", "properties": { "id": 178, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-0", "to_node": "consumers-4", "length": 16.225116367069244 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506912.159830294549465, 6005020.755500017665327 ] ] } }, +{ "type": "Feature", "properties": { "id": 179, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-0", "to_node": "consumers-5", "length": 32.627471719923186 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506905.141416907310486, 6005069.070721743628383 ] ] } }, +{ "type": "Feature", "properties": { "id": 180, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-27", "to_node": "consumers-6", "length": 17.803857581607861 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506860.149385698139668, 6005157.808408037759364 ] ] } }, +{ "type": "Feature", "properties": { "id": 181, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-60", "to_node": "consumers-7", "length": 11.205867902717186 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506978.648154817521572, 6004957.660532805137336 ], [ 32506980.289583649486303, 6004946.575534526258707 ] ] } }, +{ "type": "Feature", "properties": { "id": 182, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-136", "to_node": "consumers-8", "length": 10.971815061796425 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506907.347752008587122, 6004969.531430990435183 ] ] } }, +{ "type": "Feature", "properties": { "id": 183, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-128", "to_node": "consumers-9", "length": 12.89889499816101 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506831.70174864679575, 6005105.872498782351613 ] ] } }, +{ "type": "Feature", "properties": { "id": 184, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-128", "to_node": "consumers-10", "length": 11.973918500261945 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506807.097907729446888, 6005102.670010705478489 ] ] } }, +{ "type": "Feature", "properties": { "id": 185, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-147", "to_node": "consumers-11", "length": 11.055986329683931 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506912.889645788818598, 6005003.684148876927793 ] ] } }, +{ "type": "Feature", "properties": { "id": 186, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-130", "to_node": "consumers-12", "length": 12.515965810989343 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506805.105399034917355, 6005124.209070673212409 ] ] } }, +{ "type": "Feature", "properties": { "id": 187, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-59", "to_node": "consumers-13", "length": 11.661998740805577 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506969.710390973836184, 6004967.766494301147759 ] ] } }, +{ "type": "Feature", "properties": { "id": 188, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-43", "to_node": "consumers-14", "length": 30.038198798684267 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32506988.938321895897388, 6004917.879654813557863 ] ] } }, +{ "type": "Feature", "properties": { "id": 189, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-126", "to_node": "consumers-15", "length": 10.707187169089545 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506809.699875, 6005079.181641146540642 ] ] } }, +{ "type": "Feature", "properties": { "id": 190, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-62", "to_node": "consumers-16", "length": 11.956756122673212 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506937.939764458686113, 6004938.806549877859652 ] ] } }, +{ "type": "Feature", "properties": { "id": 191, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-126", "to_node": "consumers-17", "length": 10.213025551376619 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506830.531552042812109, 6005081.019889062270522 ] ] } }, +{ "type": "Feature", "properties": { "id": 192, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-125", "to_node": "consumers-18", "length": 10.994047678276765 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506810.789779346436262, 6005056.891455434262753 ] ] } }, +{ "type": "Feature", "properties": { "id": 193, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-132", "to_node": "consumers-19", "length": 10.440695474766875 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506826.503114428371191, 6005150.147360728122294 ] ] } }, +{ "type": "Feature", "properties": { "id": 194, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-132", "to_node": "consumers-20", "length": 11.10089298421933 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506805.018891096115112, 6005148.591890611685812 ] ] } }, +{ "type": "Feature", "properties": { "id": 195, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-125", "to_node": "consumers-21", "length": 10.949577152804078 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506832.678980179131031, 6005058.425298580899835 ] ] } }, +{ "type": "Feature", "properties": { "id": 196, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-65", "to_node": "consumers-22", "length": 14.951834163345012 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506890.606906868517399, 6005049.689807103946805 ] ] } }, +{ "type": "Feature", "properties": { "id": 197, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-36", "to_node": "consumers-23", "length": 27.760086543836465 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506878.119526300579309, 6005143.90860013011843 ] ] } }, +{ "type": "Feature", "properties": { "id": 198, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-38", "to_node": "consumers-24", "length": 13.572347604373999 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506885.800216242671013, 6005111.882618607953191 ] ] } }, +{ "type": "Feature", "properties": { "id": 199, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-143", "to_node": "consumers-25", "length": 13.409041639816849 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506887.71679937466979, 6004998.264221362769604 ] ] } }, +{ "type": "Feature", "properties": { "id": 200, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-130", "to_node": "consumers-26", "length": 14.74473273527944 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506832.157563894987106, 6005127.307513532228768 ] ] } }, +{ "type": "Feature", "properties": { "id": 201, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-66", "to_node": "consumers-27", "length": 15.267801977957966 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506849.502673149108887, 6005045.700300958938897 ] ] } }, +{ "type": "Feature", "properties": { "id": 202, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-54", "to_node": "consumers-28", "length": 27.26755243400606 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506748.283596221357584, 6005117.573655765503645 ] ] } }, +{ "type": "Feature", "properties": { "id": 203, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-68", "to_node": "consumers-29", "length": 13.351207807371567 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506643.90064138174057, 6005268.925049259327352 ] ] } }, +{ "type": "Feature", "properties": { "id": 204, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-72", "to_node": "consumers-30", "length": 9.0425447913619443 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506704.650234036147594, 6005290.28451843559742 ] ] } }, +{ "type": "Feature", "properties": { "id": 205, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-16", "to_node": "consumers-31", "length": 15.207447170690838 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506610.017046678811312, 6005273.422141656279564 ], [ 32506614.063669916242361, 6005258.762970812618732 ] ] } }, +{ "type": "Feature", "properties": { "id": 206, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-14", "to_node": "consumers-32", "length": 14.752146059097333 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506605.618858031928539, 6005256.810113833285868 ] ] } }, +{ "type": "Feature", "properties": { "id": 207, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-70", "to_node": "consumers-33", "length": 9.0150474804376497 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506730.31312383338809, 6005297.461850156076252 ] ] } }, +{ "type": "Feature", "properties": { "id": 208, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-31", "to_node": "consumers-34", "length": 5.5480699412216063 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506753.056819226592779, 6005301.126373209990561 ] ] } }, +{ "type": "Feature", "properties": { "id": 209, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-23", "to_node": "consumers-35", "length": 10.377386161503832 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506788.281840145587921, 6005311.072970089502633 ] ] } }, +{ "type": "Feature", "properties": { "id": 210, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-71", "to_node": "consumers-36", "length": 8.6126937692127612 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506718.955610077828169, 6005294.715715421363711 ] ] } }, +{ "type": "Feature", "properties": { "id": 211, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-67", "to_node": "consumers-37", "length": 13.703223156842679 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506666.151909608393908, 6005274.722094716504216 ] ] } }, +{ "type": "Feature", "properties": { "id": 212, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-31", "to_node": "consumers-38", "length": 11.22894842681734 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506769.625647164881229, 6005303.687501288950443 ] ] } }, +{ "type": "Feature", "properties": { "id": 213, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-73", "to_node": "consumers-39", "length": 8.5749456079941169 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506692.624002318829298, 6005287.419831819832325 ] ] } }, +{ "type": "Feature", "properties": { "id": 214, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-74", "to_node": "consumers-40", "length": 12.78680164948709 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506744.274268440902233, 6005297.435577264986932 ] ] } }, +{ "type": "Feature", "properties": { "id": 215, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-75", "to_node": "consumers-41", "length": 15.088268813186509 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506628.192365296185017, 6005262.78679359331727 ] ] } }, +{ "type": "Feature", "properties": { "id": 216, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-46", "to_node": "consumers-42", "length": 26.255097649087105 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506833.239296399056911, 6005279.82688563130796 ] ] } }, +{ "type": "Feature", "properties": { "id": 217, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-76", "to_node": "consumers-43", "length": 13.871718996488957 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506682.052598346024752, 6005278.976561680436134 ] ] } }, +{ "type": "Feature", "properties": { "id": 218, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-108", "to_node": "consumers-44", "length": 17.825607326175209 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506694.255998805165291, 6004937.857217525132 ] ] } }, +{ "type": "Feature", "properties": { "id": 219, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-80", "to_node": "consumers-45", "length": 17.518901773870795 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506927.587524946779013, 6004774.359126213937998 ] ] } }, +{ "type": "Feature", "properties": { "id": 220, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-77", "to_node": "consumers-46", "length": 13.557861602124051 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506790.224478904157877, 6004956.140377041883767 ] ] } }, +{ "type": "Feature", "properties": { "id": 221, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-78", "to_node": "consumers-47", "length": 9.4486423585962793 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506800.673641692847013, 6004976.893306911922991 ] ] } }, +{ "type": "Feature", "properties": { "id": 222, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-79", "to_node": "consumers-48", "length": 16.96136337399377 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507019.014392219483852, 6004880.550657982937992 ] ] } }, +{ "type": "Feature", "properties": { "id": 223, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-95", "to_node": "consumers-49", "length": 9.2660080018944058 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506703.973344795405865, 6005020.865290460176766 ] ] } }, +{ "type": "Feature", "properties": { "id": 224, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-81", "to_node": "consumers-50", "length": 17.740696215718618 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506933.140344154089689, 6004753.861017936840653 ] ] } }, +{ "type": "Feature", "properties": { "id": 225, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-82", "to_node": "consumers-51", "length": 17.496222673137193 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506942.488591093569994, 6004722.349558502435684 ] ] } }, +{ "type": "Feature", "properties": { "id": 226, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-83", "to_node": "consumers-52", "length": 17.999939316170021 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506735.023828137665987, 6005023.284209059551358 ] ] } }, +{ "type": "Feature", "properties": { "id": 227, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-84", "to_node": "consumers-53", "length": 21.877250679300193 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507000.015993539243937, 6004793.071381574496627 ] ] } }, +{ "type": "Feature", "properties": { "id": 228, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-85", "to_node": "consumers-54", "length": 24.949882967008463 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506779.872779753059149, 6005046.125488452613354 ] ] } }, +{ "type": "Feature", "properties": { "id": 229, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-87", "to_node": "consumers-55", "length": 8.6071500745920915 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506818.462146334350109, 6004963.519941763021052 ] ] } }, +{ "type": "Feature", "properties": { "id": 230, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-88", "to_node": "consumers-56", "length": 8.7683108247940922 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506828.578401699662209, 6004956.334513544104993 ] ] } }, +{ "type": "Feature", "properties": { "id": 231, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-98", "to_node": "consumers-57", "length": 17.018506156431766 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506812.902853854000568, 6004684.774575287476182 ] ] } }, +{ "type": "Feature", "properties": { "id": 232, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-89", "to_node": "consumers-58", "length": 13.12672203316893 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506801.047282852232456, 6004949.151911301538348 ] ] } }, +{ "type": "Feature", "properties": { "id": 233, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-111", "to_node": "consumers-59", "length": 8.9658061316792903 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506858.966233443468809, 6004933.755677187815309 ] ] } }, +{ "type": "Feature", "properties": { "id": 234, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-90", "to_node": "consumers-60", "length": 10.829857903757913 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506911.747826270759106, 6004703.768600980751216 ] ] } }, +{ "type": "Feature", "properties": { "id": 235, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-97", "to_node": "consumers-61", "length": 15.170675649506549 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506988.243351720273495, 6004809.163387258537114 ] ] } }, +{ "type": "Feature", "properties": { "id": 236, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-44", "to_node": "consumers-62", "length": 18.701122122152828 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507038.519862838089466, 6004828.579337465576828 ] ] } }, +{ "type": "Feature", "properties": { "id": 237, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-118", "to_node": "consumers-63", "length": 10.477072182519393 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506907.28061518073082, 6004899.354420717805624 ] ] } }, +{ "type": "Feature", "properties": { "id": 238, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-91", "to_node": "consumers-64", "length": 13.550242408785028 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506724.171868160367012, 6005021.039352849125862 ] ] } }, +{ "type": "Feature", "properties": { "id": 239, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-92", "to_node": "consumers-65", "length": 10.094294378809217 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506969.203761655837297, 6004852.612625982612371 ] ] } }, +{ "type": "Feature", "properties": { "id": 240, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-155", "to_node": "consumers-66", "length": 17.723896775983818 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506681.648138843476772, 6004914.06884797103703 ], [ 32506698.879691444337368, 6004918.217355159111321 ] ] } }, +{ "type": "Feature", "properties": { "id": 241, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-61", "to_node": "consumers-67", "length": 12.128193895336635 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506922.212192755192518, 6004944.897153015248477 ] ] } }, +{ "type": "Feature", "properties": { "id": 242, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-86", "to_node": "consumers-68", "length": 14.79052081724222 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506809.732562188059092, 6004941.157759756781161 ] ] } }, +{ "type": "Feature", "properties": { "id": 243, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-21", "to_node": "consumers-69", "length": 14.269184031768264 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506802.083184845745564, 6004673.442478745244443 ] ] } }, +{ "type": "Feature", "properties": { "id": 244, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-94", "to_node": "consumers-70", "length": 12.197593325502092 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506705.227665148675442, 6004998.739715552888811 ] ] } }, +{ "type": "Feature", "properties": { "id": 245, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-47", "to_node": "consumers-71", "length": 19.351707001565927 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507026.970478340983391, 6004755.370134326629341 ] ] } }, +{ "type": "Feature", "properties": { "id": 246, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-8", "to_node": "consumers-72", "length": 21.947743092730299 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507021.442586395889521, 6004780.384751534089446 ] ] } }, +{ "type": "Feature", "properties": { "id": 247, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-96", "to_node": "consumers-73", "length": 18.996605294568166 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32507013.935856550931931, 6004833.020761829800904 ] ] } }, +{ "type": "Feature", "properties": { "id": 248, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-93", "to_node": "consumers-74", "length": 10.943259200300011 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506960.185587, 6004860.197868465445936 ] ] } }, +{ "type": "Feature", "properties": { "id": 249, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-99", "to_node": "consumers-75", "length": 8.5244783481214608 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506839.303071409463882, 6004683.53109688218683 ] ] } }, +{ "type": "Feature", "properties": { "id": 250, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-113", "to_node": "consumers-76", "length": 9.316009561087057 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506840.081979628652334, 6004948.378594372421503 ] ] } }, +{ "type": "Feature", "properties": { "id": 251, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-100", "to_node": "consumers-77", "length": 9.3148661058648159 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506765.211176943033934, 6005001.041569225490093 ] ] } }, +{ "type": "Feature", "properties": { "id": 252, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-101", "to_node": "consumers-78", "length": 12.054644281716179 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506767.961118906736374, 6005031.221683278679848 ] ] } }, +{ "type": "Feature", "properties": { "id": 253, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-116", "to_node": "consumers-79", "length": 10.072076523338099 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506925.711909156292677, 6004885.003216509707272 ] ] } }, +{ "type": "Feature", "properties": { "id": 254, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-102", "to_node": "consumers-80", "length": 15.941094874509144 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506942.832207050174475, 6004712.93773500341922 ] ] } }, +{ "type": "Feature", "properties": { "id": 255, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-103", "to_node": "consumers-81", "length": 10.805527575392439 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506785.013545528054237, 6004989.416518196463585 ] ] } }, +{ "type": "Feature", "properties": { "id": 256, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-105", "to_node": "consumers-82", "length": 12.061076000759543 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506714.73542096093297, 6005021.520484566688538 ] ] } }, +{ "type": "Feature", "properties": { "id": 257, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-109", "to_node": "consumers-83", "length": 9.0632442818962495 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506879.13426485657692, 6004918.728310720995069 ] ] } }, +{ "type": "Feature", "properties": { "id": 258, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-106", "to_node": "consumers-84", "length": 12.474218914242371 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506780.074384346604347, 6004964.505853203125298 ] ] } }, +{ "type": "Feature", "properties": { "id": 259, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-107", "to_node": "consumers-85", "length": 30.928572756642691 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506702.26749200746417, 6004960.560598752461374 ] ] } }, +{ "type": "Feature", "properties": { "id": 260, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-9", "to_node": "consumers-86", "length": 15.43415868661268 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506693.432355523109436, 6005029.736996290273964 ] ] } }, +{ "type": "Feature", "properties": { "id": 261, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-110", "to_node": "consumers-87", "length": 9.6277676191209096 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506868.72337406501174, 6004927.254503038711846 ] ] } }, +{ "type": "Feature", "properties": { "id": 262, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-25", "to_node": "consumers-88", "length": 10.374937545582036 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506755.53663894534111, 6005027.544883700087667 ] ] } }, +{ "type": "Feature", "properties": { "id": 263, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-104", "to_node": "consumers-89", "length": 7.7732983306808459 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506773.220998387783766, 6004993.778223461471498 ] ] } }, +{ "type": "Feature", "properties": { "id": 264, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-112", "to_node": "consumers-90", "length": 10.805705257342293 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506848.507188025861979, 6004943.913141623139381 ] ] } }, +{ "type": "Feature", "properties": { "id": 265, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-114", "to_node": "consumers-91", "length": 16.809760783087764 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506995.652057737112045, 6004842.783263271674514 ] ] } }, +{ "type": "Feature", "properties": { "id": 266, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-115", "to_node": "consumers-92", "length": 10.29064449780611 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506938.31118892505765, 6004875.812619299627841 ] ] } }, +{ "type": "Feature", "properties": { "id": 267, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-117", "to_node": "consumers-93", "length": 10.557818790267437 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506945.479837417602539, 6004870.762036194093525 ] ] } }, +{ "type": "Feature", "properties": { "id": 268, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-56", "to_node": "consumers-94", "length": 14.140807989604891 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506669.221525810658932, 6005074.084699177183211 ] ] } }, +{ "type": "Feature", "properties": { "id": 269, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-119", "to_node": "consumers-95", "length": 11.965587553752023 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506895.810843542218208, 6004909.831620469689369 ] ] } }, +{ "type": "Feature", "properties": { "id": 270, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-120", "to_node": "consumers-96", "length": 20.770884205798623 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506973.329735886305571, 6004753.492985166609287 ] ] } }, +{ "type": "Feature", "properties": { "id": 271, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-110", "to_node": "consumers-97", "length": 12.556114126410087 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506854.906595926731825, 6004909.907521405257285 ] ] } }, +{ "type": "Feature", "properties": { "id": 272, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-121", "to_node": "consumers-98", "length": 11.564305542109038 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506910.150826644152403, 6004869.631511499173939 ] ] } }, +{ "type": "Feature", "properties": { "id": 273, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-119", "to_node": "consumers-99", "length": 13.270015438191557 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506879.766101881861687, 6004890.38400068692863 ] ] } }, +{ "type": "Feature", "properties": { "id": 274, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-118", "to_node": "consumers-100", "length": 13.625599103314798 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506894.07242726162076, 6004879.237333491444588 ] ] } }, +{ "type": "Feature", "properties": { "id": 275, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-111", "to_node": "consumers-101", "length": 14.040515272936672 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506845.747697491198778, 6004914.935039059258997 ] ] } }, +{ "type": "Feature", "properties": { "id": 276, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-112", "to_node": "consumers-102", "length": 12.726095506390832 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506835.314610954374075, 6004924.455492817796767 ] ] } }, +{ "type": "Feature", "properties": { "id": 277, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-122", "to_node": "consumers-103", "length": 13.904818816164378 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506824.472275782376528, 6004931.061758927069604 ] ] } }, +{ "type": "Feature", "properties": { "id": 278, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-41", "to_node": "consumers-104", "length": 18.042523432296743 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506923.191534139215946, 6005174.347314549610019 ] ] } }, +{ "type": "Feature", "properties": { "id": 279, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-36", "to_node": "consumers-105", "length": 14.49395583342832 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506881.192307915538549, 6005127.539880472235382 ] ] } }, +{ "type": "Feature", "properties": { "id": 280, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-39", "to_node": "consumers-106", "length": 15.038915801477353 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506899.350276149809361, 6005086.207022367045283 ] ] } }, +{ "type": "Feature", "properties": { "id": 281, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-48", "to_node": "consumers-107", "length": 11.395248360907377 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.143456343561411, 6004727.261151133105159 ] ] } }, +{ "type": "Feature", "properties": { "id": 282, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-123", "to_node": "consumers-108", "length": 15.201822075519109 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506862.41523327678442, 6005046.965882200747728 ] ] } }, +{ "type": "Feature", "properties": { "id": 283, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-45", "to_node": "consumers-109", "length": 24.709448027648712 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506975.025434896349907, 6005066.310075125657022 ] ] } }, +{ "type": "Feature", "properties": { "id": 284, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-124", "to_node": "consumers-110", "length": 13.987472490813351 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506836.588345635682344, 6005044.439587516710162 ] ] } }, +{ "type": "Feature", "properties": { "id": 285, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-127", "to_node": "consumers-111", "length": 10.274526489299117 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506830.142781686037779, 6005088.549216032959521 ] ] } }, +{ "type": "Feature", "properties": { "id": 286, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-129", "to_node": "consumers-112", "length": 11.778287031054843 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506806.709942407906055, 6005110.202648312784731 ] ] } }, +{ "type": "Feature", "properties": { "id": 287, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-129", "to_node": "consumers-113", "length": 13.081361402796462 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506831.311364524066448, 6005113.401636653579772 ] ] } }, +{ "type": "Feature", "properties": { "id": 288, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-131", "to_node": "consumers-114", "length": 12.437954255410645 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506804.718359738588333, 6005131.737783573567867 ] ] } }, +{ "type": "Feature", "properties": { "id": 289, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-131", "to_node": "consumers-115", "length": 12.579383096767129 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506829.517301596701145, 6005134.709625105373561 ] ] } }, +{ "type": "Feature", "properties": { "id": 290, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-26", "to_node": "consumers-116", "length": 11.022836078509449 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506804.62935671582818, 6005156.12390742637217 ] ] } }, +{ "type": "Feature", "properties": { "id": 291, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-26", "to_node": "consumers-117", "length": 10.519429552113307 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506826.114318337291479, 6005157.67712083645165 ] ] } }, +{ "type": "Feature", "properties": { "id": 292, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-133", "to_node": "consumers-118", "length": 10.916050693973594 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506810.402725525200367, 6005064.420167108997703 ] ] } }, +{ "type": "Feature", "properties": { "id": 293, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-133", "to_node": "consumers-119", "length": 11.02529668860231 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506832.289393525570631, 6005065.957312077283859 ] ] } }, +{ "type": "Feature", "properties": { "id": 294, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-127", "to_node": "consumers-120", "length": 10.64506854638153 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506809.311211679130793, 6005086.710164023563266 ] ] } }, +{ "type": "Feature", "properties": { "id": 295, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-134", "to_node": "consumers-121", "length": 11.151210110284486 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506901.808295633643866, 6004978.646026789210737 ] ] } }, +{ "type": "Feature", "properties": { "id": 296, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-137", "to_node": "consumers-122", "length": 12.991254325924679 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506932.119569964706898, 6004974.642785294912755 ] ] } }, +{ "type": "Feature", "properties": { "id": 297, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-135", "to_node": "consumers-123", "length": 11.054089825775041 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506904.584658976644278, 6004974.092086877673864 ] ] } }, +{ "type": "Feature", "properties": { "id": 298, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-138", "to_node": "consumers-124", "length": 11.614891769113864 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506933.470707610249519, 6004969.607037564739585 ] ] } }, +{ "type": "Feature", "properties": { "id": 299, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-138", "to_node": "consumers-125", "length": 10.699816005040693 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506913.902167610824108, 6004958.903221851214767 ] ] } }, +{ "type": "Feature", "properties": { "id": 300, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-140", "to_node": "consumers-126", "length": 11.848401555899455 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506956.185954, 6004953.169992100447416 ], [ 32506953.863235987722874, 6004964.788494605571032 ] ] } }, +{ "type": "Feature", "properties": { "id": 301, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-139", "to_node": "consumers-127", "length": 10.753727190236734 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506916.657145664095879, 6004954.225457968190312 ] ] } }, +{ "type": "Feature", "properties": { "id": 302, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-141", "to_node": "consumers-128", "length": 11.785517912363341 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506959.145298298448324, 6004965.780332460999489 ] ] } }, +{ "type": "Feature", "properties": { "id": 303, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-142", "to_node": "consumers-129", "length": 13.420087740135017 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506885.263785466551781, 6005002.435856880620122 ] ] } }, +{ "type": "Feature", "properties": { "id": 304, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-144", "to_node": "consumers-130", "length": 11.177180826975714 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506919.414187755435705, 6004949.549130712635815 ] ] } }, +{ "type": "Feature", "properties": { "id": 305, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-145", "to_node": "consumers-131", "length": 11.724338197783762 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506964.426920805126429, 6004966.773820037953556 ] ] } }, +{ "type": "Feature", "properties": { "id": 306, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-63", "to_node": "consumers-132", "length": 10.620907460974026 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506943.249371059238911, 6004939.799233024008572 ] ] } }, +{ "type": "Feature", "properties": { "id": 307, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-146", "to_node": "consumers-133", "length": 10.642727958650555 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506948.558975379914045, 6004940.791922288946807 ] ] } }, +{ "type": "Feature", "properties": { "id": 308, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-148", "to_node": "consumers-134", "length": 11.101106688281886 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506915.618785090744495, 6004999.10795256216079 ] ] } }, +{ "type": "Feature", "properties": { "id": 309, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-149", "to_node": "consumers-135", "length": 10.710169508124 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506953.868577439337969, 6004941.784617670811713 ] ] } }, +{ "type": "Feature", "properties": { "id": 310, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-141", "to_node": "consumers-136", "length": 10.883350045605848 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506964.445381104946136, 6004943.758836340159178 ] ] } }, +{ "type": "Feature", "properties": { "id": 311, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-145", "to_node": "consumers-137", "length": 10.99291671049159 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506969.7256910353899, 6004944.701436835341156 ] ] } }, +{ "type": "Feature", "properties": { "id": 312, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-59", "to_node": "consumers-138", "length": 11.107743094279309 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506975.006007242947817, 6004945.638480184599757 ] ] } }, +{ "type": "Feature", "properties": { "id": 313, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-150", "to_node": "consumers-139", "length": 11.151031314605422 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506918.351420659571886, 6004994.53529426921159 ] ] } }, +{ "type": "Feature", "properties": { "id": 314, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-151", "to_node": "consumers-140", "length": 11.45444129942501 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506891.986426871269941, 6004994.836294149048626 ] ] } }, +{ "type": "Feature", "properties": { "id": 315, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-134", "to_node": "consumers-141", "length": 11.193193605181907 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506921.078184701502323, 6004989.95719888433814 ] ] } }, +{ "type": "Feature", "properties": { "id": 316, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-150", "to_node": "consumers-142", "length": 11.264788000518335 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506899.017207443714142, 6004983.192616033367813 ] ] } }, +{ "type": "Feature", "properties": { "id": 317, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-152", "to_node": "consumers-143", "length": 11.596509120285235 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506928.226274974644184, 6004978.53617031686008 ] ] } }, +{ "type": "Feature", "properties": { "id": 318, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-153", "to_node": "consumers-144", "length": 7.0878112690952895 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506675.289672255516052, 6004970.761502966284752 ] ] } }, +{ "type": "Feature", "properties": { "id": 319, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-154", "to_node": "consumers-145", "length": 6.7987414801482062 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506685.417284354567528, 6004927.459680034779012 ] ] } }, +{ "type": "Feature", "properties": { "id": 320, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-52", "to_node": "consumers-146", "length": 13.689421506229099 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506756.074181571602821, 6004762.616542685776949 ] ] } }, +{ "type": "Feature", "properties": { "id": 321, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-158", "to_node": "consumers-147", "length": 17.792512496988888 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506759.306074965745211, 6004665.543258069083095 ] ] } }, +{ "type": "Feature", "properties": { "id": 322, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-50", "to_node": "consumers-148", "length": 11.619391924942256 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506762.631048794835806, 6004698.693739332258701 ] ] } }, +{ "type": "Feature", "properties": { "id": 323, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-53", "to_node": "consumers-149", "length": 14.075774880901514 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506740.583661332726479, 6004747.206024529412389 ], [ 32506738.659805856645107, 6004761.149704768322408 ] ] } }, +{ "type": "Feature", "properties": { "id": 324, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-156", "to_node": "consumers-150", "length": 11.105693115651279 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506788.541808839887381, 6004676.551299481652677 ] ] } }, +{ "type": "Feature", "properties": { "id": 325, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-157", "to_node": "consumers-151", "length": 13.824161712531133 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506765.091168779879808, 6004667.496796926483512 ] ] } }, +{ "type": "Feature", "properties": { "id": 326, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-159", "to_node": "consumers-152", "length": 17.987365091966605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506753.64694095775485, 6004663.632992140948772 ] ] } }, +{ "type": "Feature", "properties": { "id": 327, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-160", "to_node": "consumers-153", "length": 17.244152236982288 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506747.540288478136063, 6004662.567557630129158 ] ] } }, +{ "type": "Feature", "properties": { "id": 328, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-161", "to_node": "consumers-154", "length": 17.444232841906146 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506741.738194316625595, 6004660.608715591952205 ] ] } }, +{ "type": "Feature", "properties": { "id": 329, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-162", "to_node": "consumers-155", "length": 17.63193373593359 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506731.171738628298044, 6004675.642275162041187 ], [ 32506736.262873858213425, 6004658.761356071569026 ] ] } }, +{ "type": "Feature", "properties": { "id": 330, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-163", "to_node": "consumers-156", "length": 11.909523285608909 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506753.265496149659157, 6004694.744921822100878 ] ] } }, +{ "type": "Feature", "properties": { "id": 331, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-51", "to_node": "consumers-157", "length": 19.04873701145247 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506752.307921536266804, 6004713.751716360449791 ] ] } }, +{ "type": "Feature", "properties": { "id": 332, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "GL", "from_node": "forks-13", "to_node": "producers-0", "length": 15.980908346991134 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506649.763465486466885, 6005108.493748000822961 ] ] } } +] +} diff --git a/examples/optimisation/network_aggregation/network_data/producers.geojson b/examples/optimisation/network_aggregation/network_data/producers.geojson new file mode 100644 index 00000000..7448560a --- /dev/null +++ b/examples/optimisation/network_aggregation/network_data/producers.geojson @@ -0,0 +1,7 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, +"features": [ +{ "type": "Feature", "properties": { "id": 0, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "19", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "lat": 6005108.4937480008, "lon": 32506649.763465486, "id_full": "producers-0", "type": "G" }, "geometry": { "type": "Point", "coordinates": [ 32506649.763465486466885, 6005108.493748000822961 ] } } +] +} diff --git a/examples/optimisation/network_aggregation/super_network/super_forks.geojson b/examples/optimisation/network_aggregation/super_network/super_forks.geojson new file mode 100644 index 00000000..d86b102e --- /dev/null +++ b/examples/optimisation/network_aggregation/super_network/super_forks.geojson @@ -0,0 +1,44 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, +"features": [ +{ "type": "Feature", "properties": { "id": 1, "geometry_wkt": "POINT (32506957.828444872 6005039.452800406)", "id_full": "forks-1", "lat": 6005039.4528004061, "lon": 32506957.828444872, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506957.828444872051477, 6005039.452800406143069 ] } }, +{ "type": "Feature", "properties": { "id": 2, "geometry_wkt": "POINT (32506849.569266543 6005309.829775801)", "id_full": "forks-2", "lat": 6005309.8297758009, "lon": 32506849.569266543, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506849.56926654279232, 6005309.829775800928473 ] } }, +{ "type": "Feature", "properties": { "id": 3, "geometry_wkt": "POINT (32506884.118155308 6005233.286900076)", "id_full": "forks-3", "lat": 6005233.2869000761, "lon": 32506884.118155308, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506884.118155308067799, 6005233.286900076083839 ] } }, +{ "type": "Feature", "properties": { "id": 4, "geometry_wkt": "POINT (32507059.691856742 6004782.464862994)", "id_full": "forks-4", "lat": 6004782.4648629939, "lon": 32507059.691856742, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507059.691856741905212, 6004782.464862993918359 ] } }, +{ "type": "Feature", "properties": { "id": 5, "geometry_wkt": "POINT (32507062.90499444 6004810.397108196)", "id_full": "forks-5", "lat": 6004810.3971081963, "lon": 32507062.904994439, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507062.904994439333677, 6004810.397108196280897 ] } }, +{ "type": "Feature", "properties": { "id": 6, "geometry_wkt": "POINT (32507049.679193664 6004797.514717632)", "id_full": "forks-6", "lat": 6004797.514717632, "lon": 32507049.679193664, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507049.679193664342165, 6004797.514717631973326 ] } }, +{ "type": "Feature", "properties": { "id": 7, "geometry_wkt": "POINT (32506824.270652454 6005308.401445041)", "id_full": "forks-7", "lat": 6005308.4014450414, "lon": 32506824.270652454, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506824.270652454346418, 6005308.401445041410625 ] } }, +{ "type": "Feature", "properties": { "id": 10, "geometry_wkt": "POINT (32506654.861689653 6005025.3310652645)", "id_full": "forks-10", "lat": 6005025.3310652645, "lon": 32506654.861689653, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506654.861689653247595, 6005025.33106526453048 ] } }, +{ "type": "Feature", "properties": { "id": 11, "geometry_wkt": "POINT (32506640.28949501 6005081.643143247)", "id_full": "forks-11", "lat": 6005081.6431432469, "lon": 32506640.28949501, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506640.289495009928942, 6005081.643143246881664 ] } }, +{ "type": "Feature", "properties": { "id": 12, "geometry_wkt": "POINT (32506635.98050358 6005097.202808099)", "id_full": "forks-12", "lat": 6005097.2028080989, "lon": 32506635.980503581, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506635.980503581464291, 6005097.202808098867536 ] } }, +{ "type": "Feature", "properties": { "id": 13, "geometry_wkt": "POINT (32506634.19730888 6005104.876539121)", "id_full": "forks-13", "lat": 6005104.8765391214, "lon": 32506634.197308879, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506634.197308879345655, 6005104.876539121381938 ] } }, +{ "type": "Feature", "properties": { "id": 15, "geometry_wkt": "POINT (32506589.465335622 6005258.491528047)", "id_full": "forks-15", "lat": 6005258.4915280472, "lon": 32506589.465335622, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506589.465335622429848, 6005258.491528047248721 ] } }, +{ "type": "Feature", "properties": { "id": 17, "geometry_wkt": "POINT (32506973.341402162 6004704.626499322)", "id_full": "forks-17", "lat": 6004704.6264993222, "lon": 32506973.341402162, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506973.341402161866426, 6004704.626499322243035 ] } }, +{ "type": "Feature", "properties": { "id": 18, "geometry_wkt": "POINT (32506966.35593917 6004702.746699204)", "id_full": "forks-18", "lat": 6004702.7466992037, "lon": 32506966.355939168, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506966.355939168483019, 6004702.74669920373708 ] } }, +{ "type": "Feature", "properties": { "id": 19, "geometry_wkt": "POINT (32506905.580154143 6004686.432937293)", "id_full": "forks-19", "lat": 6004686.4329372933, "lon": 32506905.580154143, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506905.58015414327383, 6004686.432937293313444 ] } }, +{ "type": "Feature", "properties": { "id": 20, "geometry_wkt": "POINT (32506834.06771552 6004667.389202644)", "id_full": "forks-20", "lat": 6004667.3892026441, "lon": 32506834.067715518, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506834.067715518176556, 6004667.389202644117177 ] } }, +{ "type": "Feature", "properties": { "id": 22, "geometry_wkt": "POINT (32506782.94580446 6004652.671333202)", "id_full": "forks-22", "lat": 6004652.6713332022, "lon": 32506782.945804462, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506782.945804461836815, 6004652.671333202160895 ] } }, +{ "type": "Feature", "properties": { "id": 24, "geometry_wkt": "POINT (32506746.461005732 6005002.454771279)", "id_full": "forks-24", "lat": 6005002.4547712794, "lon": 32506746.461005732, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506746.461005732417107, 6005002.454771279357374 ] } }, +{ "type": "Feature", "properties": { "id": 28, "geometry_wkt": "POINT (32506901.09680305 6005183.699540134)", "id_full": "forks-28", "lat": 6005183.6995401336, "lon": 32506901.09680305, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506901.096803050488234, 6005183.699540133588016 ] } }, +{ "type": "Feature", "properties": { "id": 29, "geometry_wkt": "POINT (32506983.839984797 6005006.224120298)", "id_full": "forks-29", "lat": 6005006.2241202984, "lon": 32506983.839984797, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506983.83998479694128, 6005006.224120298400521 ] } }, +{ "type": "Feature", "properties": { "id": 30, "geometry_wkt": "POINT (32506990.21066587 6005043.18464113)", "id_full": "forks-30", "lat": 6005043.1846411303, "lon": 32506990.21066587, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506990.210665870457888, 6005043.184641130268574 ] } }, +{ "type": "Feature", "properties": { "id": 32, "geometry_wkt": "POINT (32507023.054066256 6004915.480935483)", "id_full": "forks-32", "lat": 6004915.4809354832, "lon": 32507023.054066256, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507023.054066255688667, 6004915.480935483239591 ] } }, +{ "type": "Feature", "properties": { "id": 33, "geometry_wkt": "POINT (32506931.03989272 6005095.022326571)", "id_full": "forks-33", "lat": 6005095.0223265709, "lon": 32506931.039892718, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506931.039892718195915, 6005095.022326570935547 ] } }, +{ "type": "Feature", "properties": { "id": 35, "geometry_wkt": "POINT (32506920.064067416 6005126.549259349)", "id_full": "forks-35", "lat": 6005126.5492593488, "lon": 32506920.064067416, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506920.064067415893078, 6005126.549259348772466 ] } }, +{ "type": "Feature", "properties": { "id": 36, "geometry_wkt": "POINT (32506871.2233493 6005117.018729404)", "id_full": "forks-36", "lat": 6005117.0187294036, "lon": 32506871.223349299, "aggregated_consumers": "consumers-23, consumers-105", "aggregated_P_heat_max": 96.0 }, "geometry": { "type": "Point", "coordinates": [ 32506871.223349299281836, 6005117.018729403614998 ] } }, +{ "type": "Feature", "properties": { "id": 40, "geometry_wkt": "POINT (32506925.62074382 6005110.602306801)", "id_full": "forks-40", "lat": 6005110.6023068009, "lon": 32506925.620743819, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506925.620743818581104, 6005110.602306800894439 ] } }, +{ "type": "Feature", "properties": { "id": 49, "geometry_wkt": "POINT (32506774.162415158 6004688.607881281)", "id_full": "forks-49", "lat": 6004688.6078812806, "lon": 32506774.162415158, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506774.162415158003569, 6004688.607881280593574 ] } }, +{ "type": "Feature", "properties": { "id": 53, "geometry_wkt": "POINT (32506740.583661333 6004747.206024529)", "id_full": "forks-53", "lat": 6004747.2060245294, "lon": 32506740.583661333, "aggregated_consumers": "consumers-149", "aggregated_P_heat_max": 31.0 }, "geometry": { "type": "Point", "coordinates": [ 32506740.583661332726479, 6004747.206024529412389 ] } }, +{ "type": "Feature", "properties": { "id": 54, "geometry_wkt": "POINT (32506726.41674512 6005101.2837742865)", "id_full": "forks-54", "lat": 6005101.2837742865, "lon": 32506726.416745119, "aggregated_consumers": "consumers-28", "aggregated_P_heat_max": 38.0 }, "geometry": { "type": "Point", "coordinates": [ 32506726.416745118796825, 6005101.28377428650856 ] } }, +{ "type": "Feature", "properties": { "id": 58, "geometry_wkt": "POINT (32506823.60973072 6005027.680673941)", "id_full": "forks-58", "lat": 6005027.680673941, "lon": 32506823.609730721, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506823.60973072052002, 6005027.680673941038549 ] } }, +{ "type": "Feature", "properties": { "id": 60, "geometry_wkt": "POINT (32506978.648154818 6004957.660532805)", "id_full": "forks-60", "lat": 6004957.6605328051, "lon": 32506978.648154818, "aggregated_consumers": "consumers-7", "aggregated_P_heat_max": 19.0 }, "geometry": { "type": "Point", "coordinates": [ 32506978.648154817521572, 6004957.660532805137336 ] } }, +{ "type": "Feature", "properties": { "id": 64, "geometry_wkt": "POINT (32506882.491420675 6005033.754231971)", "id_full": "forks-64", "lat": 6005033.7542319708, "lon": 32506882.491420675, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506882.491420675069094, 6005033.754231970757246 ] } }, +{ "type": "Feature", "properties": { "id": 69, "geometry_wkt": "POINT (32506756.039207898 6005313.986531776)", "id_full": "forks-69", "lat": 6005313.9865317764, "lon": 32506756.039207898, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506756.039207898080349, 6005313.986531776376069 ] } }, +{ "type": "Feature", "properties": { "id": 80, "geometry_wkt": "POINT (32506944.88088702 6004777.161187518)", "id_full": "forks-80", "lat": 6004777.1611875184, "lon": 32506944.88088702, "aggregated_consumers": "consumers-45", "aggregated_P_heat_max": 47.0 }, "geometry": { "type": "Point", "coordinates": [ 32506944.880887020379305, 6004777.161187518388033 ] } }, +{ "type": "Feature", "properties": { "id": 90, "geometry_wkt": "POINT (32506901.36241106 6004700.69793768)", "id_full": "forks-90", "lat": 6004700.6979376804, "lon": 32506901.362411059, "aggregated_consumers": "consumers-60", "aggregated_P_heat_max": 20.0 }, "geometry": { "type": "Point", "coordinates": [ 32506901.362411059439182, 6004700.697937680408359 ] } }, +{ "type": "Feature", "properties": { "id": 98, "geometry_wkt": "POINT (32506829.5379491 6004688.366671883)", "id_full": "forks-98", "lat": 6004688.3666718826, "lon": 32506829.5379491, "aggregated_consumers": "consumers-57", "aggregated_P_heat_max": 27.0 }, "geometry": { "type": "Point", "coordinates": [ 32506829.537949100136757, 6004688.36667188256979 ] } }, +{ "type": "Feature", "properties": { "id": 155, "geometry_wkt": "POINT (32506681.648138843 6004914.068847971)", "id_full": "forks-155", "lat": 6004914.068847971, "lon": 32506681.648138843, "aggregated_consumers": "consumers-66", "aggregated_P_heat_max": 41.0 }, "geometry": { "type": "Point", "coordinates": [ 32506681.648138843476772, 6004914.06884797103703 ] } }, +{ "type": "Feature", "properties": { "id": 162, "geometry_wkt": "POINT (32506731.17173863 6004675.642275162)", "id_full": "forks-162", "lat": 6004675.642275162, "lon": 32506731.171738628, "aggregated_consumers": "consumers-155", "aggregated_P_heat_max": 27.0 }, "geometry": { "type": "Point", "coordinates": [ 32506731.171738628298044, 6004675.642275162041187 ] } } +] +} diff --git a/examples/optimisation/network_aggregation/super_network/super_pipes.geojson b/examples/optimisation/network_aggregation/super_network/super_pipes.geojson new file mode 100644 index 00000000..463d7d1e --- /dev/null +++ b/examples/optimisation/network_aggregation/super_network/super_pipes.geojson @@ -0,0 +1,55 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, +"features": [ +{ "type": "Feature", "properties": { "id": 50, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-29", "length": 42.62329158281149, "included_forks": "forks-42", "included_consumer": "consumers-0", "included_P_heat_max": 23.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506972.555892087519169, 6005025.500261910259724 ], [ 32506983.83998479694128, 6005006.224120298400521 ] ] } }, +{ "type": "Feature", "properties": { "id": 127, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-30", "length": 32.596551206237763, "included_forks": "forks-45", "included_consumer": "consumers-109", "included_P_heat_max": 33.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506988.514574155211449, 6005042.992920082062483 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-64", "length": 75.628606205256546, "included_forks": "forks-0, forks-65", "included_consumer": "consumers-4, consumers-5, consumers-22", "included_P_heat_max": 64.0, "Gleichzeitigkeitsfaktor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506930.132400441914797, 6005038.999399862252176 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 33, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-33", "length": 62.273477677616725, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506936.85857841745019, 6005078.441575756296515 ], [ 32506943.116743721067905, 6005060.337174004875124 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-3", "length": 84.101415234176301, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506849.56926654279232, 6005309.829775800928473 ], [ 32506852.788861401379108, 6005303.303346553817391 ], [ 32506857.729554239660501, 6005293.263527888804674 ], [ 32506874.377478789538145, 6005259.486231505870819 ], [ 32506877.43430345505476, 6005252.781554163433611 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 5, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 32.69106870034981, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506831.632401779294014, 6005311.127199975773692 ], [ 32506836.87445405870676, 6005313.4047647183761 ], [ 32506846.360497884452343, 6005317.858291626907885 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 40, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 26.199323804115799, "included_forks": "forks-46", "included_consumer": "consumers-42", "included_P_heat_max": 31.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506828.487186539918184, 6005307.105897605419159 ], [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506839.983860768377781, 6005306.377473699860275 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 29, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-3", "to_node": "forks-28", "length": 52.413555485224038, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506884.118155308067799, 6005233.286900076083839 ], [ 32506897.695788338780403, 6005193.641477124765515 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 22, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-3", "to_node": "forks-69", "length": 201.8640742339384, "included_forks": "forks-31", "included_consumer": "consumers-34, consumers-38", "included_P_heat_max": 50.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506761.41373110935092, 6005288.247852889820933 ], [ 32506768.106216792017221, 6005284.719470574520528 ], [ 32506768.58904629573226, 6005275.807909052819014 ], [ 32506772.436157487332821, 6005237.327239649370313 ], [ 32506778.249345108866692, 6005228.412388440221548 ], [ 32506784.139542851597071, 6005224.816091160289943 ], [ 32506794.208307005465031, 6005219.178695933893323 ], [ 32506815.131370950490236, 6005219.420987154357135 ], [ 32506849.753633692860603, 6005225.280305446125567 ], [ 32506870.448009263724089, 6005230.106597077101469 ], [ 32506874.400354873389006, 6005231.024857359007001 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-5", "length": 49.65468218997448, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507066.510839566588402, 6004782.174897360615432 ], [ 32507072.530063845217228, 6004784.309275067411363 ], [ 32507075.421466507017612, 6004787.996558192186058 ], [ 32507077.794186722487211, 6004793.774814426898956 ], [ 32507077.255080308765173, 6004800.672369468957186 ], [ 32507074.454373985528946, 6004805.919742610305548 ], [ 32507067.962735038250685, 6004809.770653950050473 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 42, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-17", "length": 123.29475616582023, "included_forks": "forks-47, forks-48", "included_consumer": "consumers-71, consumers-107", "included_P_heat_max": 85.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507058.269206289201975, 6004774.08448775857687 ], [ 32507055.049979239702225, 6004762.886378192342818 ], [ 32507049.614296812564135, 6004750.349710370413959 ], [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507038.577310808002949, 6004739.673732661642134 ], [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.376538667827845, 6004714.249341813847423 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 4, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-6", "length": 19.483020231991176, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507051.015878472477198, 6004789.583621971309185 ], [ 32507055.721855498850346, 6004784.328024078160524 ], [ 32507059.691856741905212, 6004782.464862993918359 ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-5", "to_node": "forks-6", "length": 20.118775802046997, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507062.904994439333677, 6004810.397108196280897 ], [ 32507057.250238422304392, 6004808.886380590498447 ], [ 32507053.053128503262997, 6004805.67554706055671 ], [ 32507050.371553130447865, 6004801.309886945411563 ], [ 32507049.679193664342165, 6004797.514717631973326 ] ] } }, +{ "type": "Feature", "properties": { "id": 37, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-5", "to_node": "forks-32", "length": 112.75341151061222, "included_forks": "forks-44, forks-79", "included_consumer": "consumers-48, consumers-62", "included_P_heat_max": 51.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507023.054066255688667, 6004915.480935483239591 ], [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507047.633258003741503, 6004855.380120977759361 ], [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507056.958943579345942, 6004832.941263437271118 ], [ 32507062.226572059094906, 6004818.80764533020556 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 6, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-6", "to_node": "forks-24", "length": 368.44406427251545, "included_forks": "forks-8, forks-84, forks-96, forks-97, forks-114, forks-92, forks-93, forks-117, forks-115, forks-116, forks-121, forks-118, forks-119, forks-109, forks-110, forks-111, forks-112, forks-113, forks-122, forks-88, forks-86, forks-87, forks-89, forks-77, forks-78, forks-106, forks-103, forks-104, forks-100", "included_consumer": "consumers-46, consumers-47, consumers-53, consumers-55, consumers-56, consumers-58, consumers-59, consumers-61, consumers-63, consumers-65, consumers-68, consumers-72, consumers-73, consumers-74, consumers-76, consumers-77, consumers-79, consumers-81, consumers-83, consumers-84, consumers-87, consumers-89, consumers-90, consumers-91, consumers-92, consumers-93, consumers-95, consumers-97, consumers-98, consumers-99, consumers-100, consumers-101, consumers-102, consumers-103", "included_P_heat_max": 1104.0, "Gleichzeitigkeitsfaktor": 0.19035479962020585 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507040.76520436629653, 6004798.157553435303271 ], [ 32507036.399958070367575, 6004798.217646886594594 ], [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507025.222955066710711, 6004802.406388177536428 ], [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506959.887568239122629, 6004846.735092141665518 ], [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506775.654936447739601, 6004982.75931285880506 ], [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506746.461005732417107, 6005002.454771279357374 ] ] } }, +{ "type": "Feature", "properties": { "id": 17, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-7", "to_node": "forks-69", "length": 72.210147634926642, "included_forks": "forks-23", "included_consumer": "consumers-35", "included_P_heat_max": 36.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506818.050234023481607, 6005310.350491045974195 ], [ 32506800.642851490527391, 6005319.804492926225066 ], [ 32506796.837095130234957, 6005321.278694453649223 ], [ 32506793.04543898999691, 6005322.040828321129084 ], [ 32506788.133238516747952, 6005321.710924620740116 ], [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506756.039207898080349, 6005313.986531776376069 ] ] } }, +{ "type": "Feature", "properties": { "id": 8, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-11", "length": 58.167007772036605, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506643.196130774915218, 6005070.34288255404681 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 160, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-155", "length": 114.44122883508933, "included_forks": "forks-153, forks-107, forks-108, forks-154", "included_consumer": "consumers-44, consumers-85, consumers-144, consumers-145", "included_P_heat_max": 98.0, "Gleichzeitigkeitsfaktor": 0.82270247479188185 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506681.648138843476772, 6004914.06884797103703 ] ] } }, +{ "type": "Feature", "properties": { "id": 7, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-24", "length": 94.548892921472756, "included_forks": "forks-9, forks-95, forks-94, forks-105, forks-91, forks-83", "included_consumer": "consumers-49, consumers-52, consumers-64, consumers-70, consumers-82, consumers-86", "included_P_heat_max": 208.0, "Gleichzeitigkeitsfaktor": 0.7462153966366275 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506674.726261701434851, 6005018.216621937230229 ], [ 32506654.861689653247595, 6005025.33106526453048 ] ] } }, +{ "type": "Feature", "properties": { "id": 9, "highway": "residential", "name": "Rüsdorfer Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-11", "to_node": "forks-12", "length": 16.145295829953266, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.289495009928942, 6005081.643143246881664 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 49, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-11", "to_node": "forks-54", "length": 88.352582955426328, "included_forks": "forks-56, forks-55", "included_consumer": "consumers-94", "included_P_heat_max": 33.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506696.986993879079819, 6005095.343915767967701 ], [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506648.500972010195255, 6005083.624357352033257 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 173, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-12", "to_node": "forks-13", "length": 7.8781933938920234, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506635.980503581464291, 6005097.202808098867536 ], [ 32506634.197308879345655, 6005104.876539121381938 ] ] } }, +{ "type": "Feature", "properties": { "id": 41, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-12", "to_node": "forks-15", "length": 186.83480570927742, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506580.43083043769002, 6005248.253432797268033 ], [ 32506586.498014286160469, 6005225.686575460247695 ], [ 32506599.077679563313723, 6005179.529892827384174 ], [ 32506610.953214820474386, 6005133.194214399904013 ], [ 32506617.463154081255198, 6005106.92293609213084 ], [ 32506620.289027590304613, 6005097.291508676484227 ], [ 32506622.654141690582037, 6005095.025115229189396 ], [ 32506626.497879713773727, 6005094.452065224759281 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 10, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-13", "to_node": "forks-15", "length": 160.52780708227937, "included_forks": "forks-14", "included_consumer": "consumers-32", "included_P_heat_max": 36.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506632.455033458769321, 6005112.374179692007601 ], [ 32506627.507085636258125, 6005132.205481625162065 ], [ 32506623.818144433200359, 6005147.66591256391257 ], [ 32506620.064255829900503, 6005162.937104214914143 ], [ 32506615.55568515136838, 6005181.278110017068684 ], [ 32506613.350609008222818, 6005190.265099276788533 ], [ 32506610.443355057388544, 6005202.099448162131011 ], [ 32506608.262401930987835, 6005207.926569108851254 ], [ 32506604.114207334816456, 6005225.255598852410913 ], [ 32506597.784114979207516, 6005240.000177503563464 ], [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506591.320538651198149, 6005252.307886299677193 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, +{ "type": "Feature", "properties": { "id": 332, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "GL", "from_node": "forks-13", "to_node": "producers-0", "length": 15.980908346991134, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506649.763465486466885, 6005108.493748000822961 ] ] } }, +{ "type": "Feature", "properties": { "id": 12, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-15", "to_node": "forks-69", "length": 183.65224310241445, "included_forks": "forks-16, forks-75, forks-68, forks-67, forks-76, forks-73, forks-72, forks-71, forks-70, forks-74", "included_consumer": "consumers-29, consumers-30, consumers-31, consumers-33, consumers-36, consumers-37, consumers-39, consumers-40, consumers-41, consumers-43", "included_P_heat_max": 398.0, "Gleichzeitigkeitsfaktor": 0.6139132535407591 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506654.616219203919172, 6005285.733618872240186 ], [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506610.017046678811312, 6005273.422141656279564 ], [ 32506587.762997552752495, 6005267.278973447158933 ], [ 32506587.964162901043892, 6005263.474022278562188 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, +{ "type": "Feature", "properties": { "id": 13, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-17", "to_node": "forks-18", "length": 7.23397136554079, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506973.341402161866426, 6004704.626499322243035 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 16, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-17", "to_node": "forks-22", "length": 340.26583045827465, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506755.443020176142454, 6004643.41827427316457 ], [ 32506785.601000711321831, 6004608.692504844628274 ], [ 32506825.060652066022158, 6004563.265953474678099 ], [ 32506831.744175631552935, 6004570.930828711017966 ], [ 32506840.820324942469597, 6004580.012318628840148 ], [ 32506853.381121914833784, 6004593.327044745907187 ], [ 32506869.332918431609869, 6004607.993153758347034 ], [ 32506916.344829179346561, 6004648.39671597443521 ], [ 32506938.577460221946239, 6004669.014002612791955 ], [ 32506958.951517555862665, 6004688.794110026210546 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 95, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-18", "to_node": "forks-19", "length": 62.927218857187952, "included_forks": "forks-102", "included_consumer": "consumers-80", "included_P_heat_max": 29.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.355939168483019, 6004702.74669920373708 ], [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 74, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-18", "to_node": "forks-80", "length": 77.451235857764701, "included_forks": "forks-82, forks-120, forks-81", "included_consumer": "consumers-50, consumers-51, consumers-96", "included_P_heat_max": 70.0, "Gleichzeitigkeitsfaktor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 14, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-19", "to_node": "forks-20", "length": 74.004680308054191, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506905.58015414327383, 6004686.432937293313444 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 82, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-19", "to_node": "forks-90", "length": 14.875469497298331, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 85, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-20", "to_node": "forks-22", "length": 53.20861594105358, "included_forks": "forks-21", "included_consumer": "consumers-69", "included_P_heat_max": 41.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.067715518176556, 6004667.389202644117177 ], [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506799.387847676873207, 6004657.913845077157021 ], [ 32506782.945804461836815, 6004652.671333202160895 ] ] } }, +{ "type": "Feature", "properties": { "id": 91, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-20", "to_node": "forks-98", "length": 21.460964550835705, "included_forks": "forks-99", "included_consumer": "consumers-75", "included_P_heat_max": 12.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 165, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-22", "to_node": "forks-49", "length": 36.994370050809025, "included_forks": "forks-157, forks-156", "included_consumer": "consumers-150, consumers-151", "included_P_heat_max": 35.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506774.162415158003569, 6004688.607881280593574 ] ] } }, +{ "type": "Feature", "properties": { "id": 18, "highway": "residential", "name": "Stettiner Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-24", "to_node": "forks-58", "length": 85.321200740730944, "included_forks": "forks-25, forks-101, forks-85, forks-57", "included_consumer": "consumers-1, consumers-54, consumers-78, consumers-88", "included_P_heat_max": 122.0, "Gleichzeitigkeitsfaktor": 0.82270247479188185 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506823.60973072052002, 6005027.680673941038549 ] ] } }, +{ "type": "Feature", "properties": { "id": 123, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-28", "to_node": "forks-35", "length": 60.216019972162059, "included_forks": "forks-41", "included_consumer": "consumers-104", "included_P_heat_max": 36.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.096803050488234, 6005183.699540133588016 ], [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506909.269722919911146, 6005158.977732182480395 ], [ 32506918.045713808387518, 6005132.432110263034701 ], [ 32506918.576595596969128, 6005130.830701379105449 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 20, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-28", "to_node": "forks-58", "length": 226.64429638655182, "included_forks": "forks-27, forks-26, forks-132, forks-131, forks-130, forks-129, forks-128, forks-127, forks-126, forks-133, forks-125, forks-124", "included_consumer": "consumers-6, consumers-9, consumers-10, consumers-12, consumers-15, consumers-17, consumers-18, consumers-19, consumers-20, consumers-21, consumers-26, consumers-110, consumers-111, consumers-112, consumers-113, consumers-114, consumers-115, consumers-116, consumers-117, consumers-118, consumers-119, consumers-120", "included_P_heat_max": 623.0, "Gleichzeitigkeitsfaktor": 0.34184987108662163 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506815.066916454583406, 6005165.936148005537689 ], [ 32506830.834934014827013, 6005171.277921593748033 ], [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506875.229494299739599, 6005178.164427729323506 ], [ 32506877.851715076714754, 6005178.546638377942145 ], [ 32506880.474450293928385, 6005178.583931988105178 ], [ 32506884.531792610883713, 6005179.124058937653899 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 21, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-30", "length": 38.483474769190238, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506983.146614462137222, 6005024.615053474903107 ], [ 32506984.83666018769145, 6005033.107077995315194 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 35, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-32", "length": 98.859043540365803, "included_forks": "forks-43", "included_consumer": "consumers-14", "included_P_heat_max": 47.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506997.676446001976728, 6004973.299755467101932 ], [ 32507001.493707738816738, 6004964.482295924797654 ], [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 23, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-30", "to_node": "forks-32", "length": 340.86861334048416, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506990.210665870457888, 6005043.184641130268574 ], [ 32507017.173750825226307, 6005049.356270640157163 ], [ 32507024.24387625977397, 6005050.980371178127825 ], [ 32507032.057673122733831, 6005052.683502029627562 ], [ 32507039.030090410262346, 6005054.196211940608919 ], [ 32507095.425084549933672, 6005068.902803309261799 ], [ 32507099.61846774071455, 6005070.12204088177532 ], [ 32507105.079793032258749, 6005048.756587056443095 ], [ 32507108.880019243806601, 6005029.925403732806444 ], [ 32507113.154372714459896, 6005012.519138348288834 ], [ 32507115.639401003718376, 6005000.384041387587786 ], [ 32507119.159936010837555, 6004985.268662626855075 ], [ 32507125.537302955985069, 6004958.130034665577114 ], [ 32507123.130625989288092, 6004953.308572310954332 ], [ 32507119.20999788120389, 6004948.6294163800776 ], [ 32507112.447489432990551, 6004946.304680480621755 ], [ 32507096.74439213424921, 6004940.884161343798041 ], [ 32507081.034716226160526, 6004935.474812150001526 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 24, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-35", "length": 100.11914522174953, "included_forks": "forks-34", "included_consumer": "consumers-2", "included_P_heat_max": 31.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506964.114786304533482, 6005106.432262209244072 ], [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506954.997180473059416, 6005134.323578499257565 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 32, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-40", "length": 16.495543603110093, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506925.620743818581104, 6005110.602306800894439 ], [ 32506931.039892718195915, 6005095.022326570935547 ] ] } }, +{ "type": "Feature", "properties": { "id": 31, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-35", "to_node": "forks-40", "length": 16.887330997184353, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.064067415893078, 6005126.549259348772466 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 26, "highway": "service", "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": "driveway", "access": null, "type": "DL", "from_node": "forks-36", "to_node": "forks-40", "length": 91.073493549059549, "included_forks": "forks-37, forks-38, forks-39", "included_consumer": "consumers-24, consumers-106", "included_P_heat_max": 60.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506863.05286305770278, 6005113.902283472940326 ], [ 32506868.820386204868555, 6005092.069696916267276 ], [ 32506875.811225049197674, 6005094.349910996854305 ], [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506905.326579809188843, 6005103.973887623287737 ], [ 32506909.884949542582035, 6005105.460533680394292 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 44, "highway": "residential", "name": "Auguste-Ebeling-Straße", "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": "no", "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-53", "length": 84.151181727024152, "included_forks": "forks-50, forks-51, forks-52", "included_consumer": "consumers-146, consumers-148, consumers-157", "included_P_heat_max": 87.0, "Gleichzeitigkeitsfaktor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506772.276173859834671, 6004711.158364219591022 ], [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506770.028414003551006, 6004722.192472075112164 ], [ 32506767.165194243192673, 6004734.672112413682044 ], [ 32506762.504478130489588, 6004749.296516856178641 ], [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506751.563101142644882, 6004748.624020638875663 ], [ 32506740.583661332726479, 6004747.206024529412389 ] ] } }, +{ "type": "Feature", "properties": { "id": 171, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-162", "length": 44.903287301746815, "included_forks": "forks-163, forks-158, forks-159, forks-160, forks-161", "included_consumer": "consumers-147, consumers-152, consumers-153, consumers-154, consumers-156", "included_P_heat_max": 199.0, "Gleichzeitigkeitsfaktor": 0.78352616646845885 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506731.171738628298044, 6004675.642275162041187 ] ] } }, +{ "type": "Feature", "properties": { "id": 57, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-58", "to_node": "forks-64", "length": 59.194100373635251, "included_forks": "forks-66, forks-123", "included_consumer": "consumers-27, consumers-108", "included_P_heat_max": 63.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506882.491420675069094, 6005033.754231970757246 ] ] } }, +{ "type": "Feature", "properties": { "id": 52, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-60", "to_node": "forks-64", "length": 143.38634029109684, "included_forks": "forks-59, forks-145, forks-141, forks-140, forks-149, forks-146, forks-63, forks-62, forks-61, forks-144, forks-139, forks-138, forks-137, forks-152, forks-136, forks-135, forks-134, forks-150, forks-148, forks-147, forks-151, forks-143, forks-142", "included_consumer": "consumers-3, consumers-8, consumers-11, consumers-13, consumers-16, consumers-25, consumers-67, consumers-121, consumers-122, consumers-123, consumers-124, consumers-125, consumers-126, consumers-127, consumers-128, consumers-129, consumers-130, consumers-131, consumers-132, consumers-133, consumers-134, consumers-135, consumers-136, consumers-137, consumers-138, consumers-139, consumers-140, consumers-141, consumers-142, consumers-143", "included_P_heat_max": 821.0, "Gleichzeitigkeitsfaktor": 0.23137744865585788 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506956.185954, 6004953.169992100447416 ], [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506978.648154817521572, 6004957.660532805137336 ] ] } } +] +} From 6314ff40393d23aa63e0343c2dbcab5a76ffb6b8 Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Tue, 9 Aug 2022 14:02:38 +0200 Subject: [PATCH 08/14] adjusted column names for super_pipes and super_forks --- dhnx/gistools/geometry_operations.py | 38 +++---- .../super_network/super_forks.geojson | 77 ++++++++------- .../super_network/super_pipes.geojson | 99 ++++++++++--------- 3 files changed, 108 insertions(+), 106 deletions(-) diff --git a/dhnx/gistools/geometry_operations.py b/dhnx/gistools/geometry_operations.py index f9fc33e0..5aab8f6f 100644 --- a/dhnx/gistools/geometry_operations.py +++ b/dhnx/gistools/geometry_operations.py @@ -609,7 +609,7 @@ def aggregation(forks, pipes, consumers, producers): aggregated_P_heat_super_fork_i = consumers.loc[consumers['id_full'].isin(aggregated_consumer_super_fork_i)][ 'P_heat_max'].tolist() sum_aggregated_P_heat_max_super_fork_i = sum(aggregated_P_heat_super_fork_i) - super_forks.at[index, 'aggregated_P_heat_max'] = sum_aggregated_P_heat_max_super_fork_i + super_forks.at[index, 'P_heat_max'] = sum_aggregated_P_heat_max_super_fork_i # Find pipes connected to the super fork i and save them in a GeoDataFrame. pipes_superfork_i_from_node = DLGLpipes[DLGLpipes['from_node'] == superfork_i_id_full] @@ -630,7 +630,7 @@ def aggregation(forks, pipes, consumers, producers): segment_i_a = pipes_superfork_i.copy() segment_i_a = segment_i_a[segment_i_a.index == a] segment_i_a = segment_i_a.reset_index(drop=True) - included_forks_segment_i_a = [] + aggregated_forks_segment_i_a = [] # # # thrid loop: Go through the elements b (pipes and forks) of super pipe a aggregation_segment = False b = 0 @@ -699,28 +699,28 @@ def aggregation(forks, pipes, consumers, producers): merged_segment_i_a.at[0, 'to_node'] = last_fork_segment_i_a - # # add column 'included_forks' - str_included_forks_segment_i_a = ', '.join(included_forks_segment_i_a) - merged_segment_i_a.at[0, 'included_forks'] = str_included_forks_segment_i_a + # # add column 'aggregated_forks' + str_aggregated_forks_segment_i_a = ', '.join(aggregated_forks_segment_i_a) + merged_segment_i_a.at[0, 'aggregated_forks'] = str_aggregated_forks_segment_i_a # # add column 'aggregated_consumers' - included_consumer_segment_i_a = [] - included_consumer_segment_i_a = HLpipes.loc[HLpipes['from_node'].isin(included_forks_segment_i_a)][ + aggregated_consumer_segment_i_a = [] + aggregated_consumer_segment_i_a = HLpipes.loc[HLpipes['from_node'].isin(aggregated_forks_segment_i_a)][ 'to_node'].tolist() - str_included_consumer_segment_i_a = ', '.join(included_consumer_segment_i_a) - merged_segment_i_a.at[0, 'included_consumer'] = str_included_consumer_segment_i_a + str_aggregated_consumer_segment_i_a = ', '.join(aggregated_consumer_segment_i_a) + merged_segment_i_a.at[0, 'aggregated_consumer'] = str_aggregated_consumer_segment_i_a # # add column 'aggregated_P_heat_max' - included_P_heat_max_segment_i_a = [] - included_P_heat_max_segment_i_a = \ - consumers.loc[consumers['id_full'].isin(included_consumer_segment_i_a)]['P_heat_max'].tolist() - sum_included_P_heat_max_segment_i_a = sum(included_P_heat_max_segment_i_a) - merged_segment_i_a.at[0, 'included_P_heat_max'] = sum_included_P_heat_max_segment_i_a + aggregated_P_heat_max_segment_i_a = [] + aggregated_P_heat_max_segment_i_a = \ + consumers.loc[consumers['id_full'].isin(aggregated_consumer_segment_i_a)]['P_heat_max'].tolist() + sum_aggregated_P_heat_max_segment_i_a = sum(aggregated_P_heat_max_segment_i_a) + merged_segment_i_a.at[0, 'P_heat_max'] = sum_aggregated_P_heat_max_segment_i_a - # # add column 'Gleichzeitigkeitsfaktor' - number_included_consumer_segment_i_a = len(included_consumer_segment_i_a) - Gleichzeitigkeitsfaktor_segment_i_a = pow(1.05, -number_included_consumer_segment_i_a) # Note: this is just a placeholder formula - merged_segment_i_a.at[0, 'Gleichzeitigkeitsfaktor'] = Gleichzeitigkeitsfaktor_segment_i_a + # # add column 'simultaneity factor' + number_aggregated_consumer_segment_i_a = len(aggregated_consumer_segment_i_a) + simultaneity_factor_segment_i_a = pow(1.05, -number_aggregated_consumer_segment_i_a) # Note: this is just a placeholder formula + merged_segment_i_a.at[0, 'simultaneity factor'] = simultaneity_factor_segment_i_a # add new pipe to super pipes super_pipes = super_pipes.append(merged_segment_i_a) @@ -768,7 +768,7 @@ def aggregation(forks, pipes, consumers, producers): aggregated_forks.append(fork_next_segment_i_a) # add fork to aggregated forks segment i a - included_forks_segment_i_a.append(fork_next_segment_i_a) + aggregated_forks_segment_i_a.append(fork_next_segment_i_a) else: print('error: pipe is not connected to any aggregated fork or super fork') diff --git a/examples/optimisation/network_aggregation/super_network/super_forks.geojson b/examples/optimisation/network_aggregation/super_network/super_forks.geojson index d86b102e..1df88b39 100644 --- a/examples/optimisation/network_aggregation/super_network/super_forks.geojson +++ b/examples/optimisation/network_aggregation/super_network/super_forks.geojson @@ -2,43 +2,44 @@ "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, "features": [ -{ "type": "Feature", "properties": { "id": 1, "geometry_wkt": "POINT (32506957.828444872 6005039.452800406)", "id_full": "forks-1", "lat": 6005039.4528004061, "lon": 32506957.828444872, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506957.828444872051477, 6005039.452800406143069 ] } }, -{ "type": "Feature", "properties": { "id": 2, "geometry_wkt": "POINT (32506849.569266543 6005309.829775801)", "id_full": "forks-2", "lat": 6005309.8297758009, "lon": 32506849.569266543, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506849.56926654279232, 6005309.829775800928473 ] } }, -{ "type": "Feature", "properties": { "id": 3, "geometry_wkt": "POINT (32506884.118155308 6005233.286900076)", "id_full": "forks-3", "lat": 6005233.2869000761, "lon": 32506884.118155308, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506884.118155308067799, 6005233.286900076083839 ] } }, -{ "type": "Feature", "properties": { "id": 4, "geometry_wkt": "POINT (32507059.691856742 6004782.464862994)", "id_full": "forks-4", "lat": 6004782.4648629939, "lon": 32507059.691856742, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507059.691856741905212, 6004782.464862993918359 ] } }, -{ "type": "Feature", "properties": { "id": 5, "geometry_wkt": "POINT (32507062.90499444 6004810.397108196)", "id_full": "forks-5", "lat": 6004810.3971081963, "lon": 32507062.904994439, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507062.904994439333677, 6004810.397108196280897 ] } }, -{ "type": "Feature", "properties": { "id": 6, "geometry_wkt": "POINT (32507049.679193664 6004797.514717632)", "id_full": "forks-6", "lat": 6004797.514717632, "lon": 32507049.679193664, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507049.679193664342165, 6004797.514717631973326 ] } }, -{ "type": "Feature", "properties": { "id": 7, "geometry_wkt": "POINT (32506824.270652454 6005308.401445041)", "id_full": "forks-7", "lat": 6005308.4014450414, "lon": 32506824.270652454, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506824.270652454346418, 6005308.401445041410625 ] } }, -{ "type": "Feature", "properties": { "id": 10, "geometry_wkt": "POINT (32506654.861689653 6005025.3310652645)", "id_full": "forks-10", "lat": 6005025.3310652645, "lon": 32506654.861689653, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506654.861689653247595, 6005025.33106526453048 ] } }, -{ "type": "Feature", "properties": { "id": 11, "geometry_wkt": "POINT (32506640.28949501 6005081.643143247)", "id_full": "forks-11", "lat": 6005081.6431432469, "lon": 32506640.28949501, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506640.289495009928942, 6005081.643143246881664 ] } }, -{ "type": "Feature", "properties": { "id": 12, "geometry_wkt": "POINT (32506635.98050358 6005097.202808099)", "id_full": "forks-12", "lat": 6005097.2028080989, "lon": 32506635.980503581, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506635.980503581464291, 6005097.202808098867536 ] } }, -{ "type": "Feature", "properties": { "id": 13, "geometry_wkt": "POINT (32506634.19730888 6005104.876539121)", "id_full": "forks-13", "lat": 6005104.8765391214, "lon": 32506634.197308879, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506634.197308879345655, 6005104.876539121381938 ] } }, -{ "type": "Feature", "properties": { "id": 15, "geometry_wkt": "POINT (32506589.465335622 6005258.491528047)", "id_full": "forks-15", "lat": 6005258.4915280472, "lon": 32506589.465335622, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506589.465335622429848, 6005258.491528047248721 ] } }, -{ "type": "Feature", "properties": { "id": 17, "geometry_wkt": "POINT (32506973.341402162 6004704.626499322)", "id_full": "forks-17", "lat": 6004704.6264993222, "lon": 32506973.341402162, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506973.341402161866426, 6004704.626499322243035 ] } }, -{ "type": "Feature", "properties": { "id": 18, "geometry_wkt": "POINT (32506966.35593917 6004702.746699204)", "id_full": "forks-18", "lat": 6004702.7466992037, "lon": 32506966.355939168, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506966.355939168483019, 6004702.74669920373708 ] } }, -{ "type": "Feature", "properties": { "id": 19, "geometry_wkt": "POINT (32506905.580154143 6004686.432937293)", "id_full": "forks-19", "lat": 6004686.4329372933, "lon": 32506905.580154143, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506905.58015414327383, 6004686.432937293313444 ] } }, -{ "type": "Feature", "properties": { "id": 20, "geometry_wkt": "POINT (32506834.06771552 6004667.389202644)", "id_full": "forks-20", "lat": 6004667.3892026441, "lon": 32506834.067715518, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506834.067715518176556, 6004667.389202644117177 ] } }, -{ "type": "Feature", "properties": { "id": 22, "geometry_wkt": "POINT (32506782.94580446 6004652.671333202)", "id_full": "forks-22", "lat": 6004652.6713332022, "lon": 32506782.945804462, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506782.945804461836815, 6004652.671333202160895 ] } }, -{ "type": "Feature", "properties": { "id": 24, "geometry_wkt": "POINT (32506746.461005732 6005002.454771279)", "id_full": "forks-24", "lat": 6005002.4547712794, "lon": 32506746.461005732, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506746.461005732417107, 6005002.454771279357374 ] } }, -{ "type": "Feature", "properties": { "id": 28, "geometry_wkt": "POINT (32506901.09680305 6005183.699540134)", "id_full": "forks-28", "lat": 6005183.6995401336, "lon": 32506901.09680305, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506901.096803050488234, 6005183.699540133588016 ] } }, -{ "type": "Feature", "properties": { "id": 29, "geometry_wkt": "POINT (32506983.839984797 6005006.224120298)", "id_full": "forks-29", "lat": 6005006.2241202984, "lon": 32506983.839984797, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506983.83998479694128, 6005006.224120298400521 ] } }, -{ "type": "Feature", "properties": { "id": 30, "geometry_wkt": "POINT (32506990.21066587 6005043.18464113)", "id_full": "forks-30", "lat": 6005043.1846411303, "lon": 32506990.21066587, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506990.210665870457888, 6005043.184641130268574 ] } }, -{ "type": "Feature", "properties": { "id": 32, "geometry_wkt": "POINT (32507023.054066256 6004915.480935483)", "id_full": "forks-32", "lat": 6004915.4809354832, "lon": 32507023.054066256, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507023.054066255688667, 6004915.480935483239591 ] } }, -{ "type": "Feature", "properties": { "id": 33, "geometry_wkt": "POINT (32506931.03989272 6005095.022326571)", "id_full": "forks-33", "lat": 6005095.0223265709, "lon": 32506931.039892718, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506931.039892718195915, 6005095.022326570935547 ] } }, -{ "type": "Feature", "properties": { "id": 35, "geometry_wkt": "POINT (32506920.064067416 6005126.549259349)", "id_full": "forks-35", "lat": 6005126.5492593488, "lon": 32506920.064067416, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506920.064067415893078, 6005126.549259348772466 ] } }, -{ "type": "Feature", "properties": { "id": 36, "geometry_wkt": "POINT (32506871.2233493 6005117.018729404)", "id_full": "forks-36", "lat": 6005117.0187294036, "lon": 32506871.223349299, "aggregated_consumers": "consumers-23, consumers-105", "aggregated_P_heat_max": 96.0 }, "geometry": { "type": "Point", "coordinates": [ 32506871.223349299281836, 6005117.018729403614998 ] } }, -{ "type": "Feature", "properties": { "id": 40, "geometry_wkt": "POINT (32506925.62074382 6005110.602306801)", "id_full": "forks-40", "lat": 6005110.6023068009, "lon": 32506925.620743819, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506925.620743818581104, 6005110.602306800894439 ] } }, -{ "type": "Feature", "properties": { "id": 49, "geometry_wkt": "POINT (32506774.162415158 6004688.607881281)", "id_full": "forks-49", "lat": 6004688.6078812806, "lon": 32506774.162415158, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506774.162415158003569, 6004688.607881280593574 ] } }, -{ "type": "Feature", "properties": { "id": 53, "geometry_wkt": "POINT (32506740.583661333 6004747.206024529)", "id_full": "forks-53", "lat": 6004747.2060245294, "lon": 32506740.583661333, "aggregated_consumers": "consumers-149", "aggregated_P_heat_max": 31.0 }, "geometry": { "type": "Point", "coordinates": [ 32506740.583661332726479, 6004747.206024529412389 ] } }, -{ "type": "Feature", "properties": { "id": 54, "geometry_wkt": "POINT (32506726.41674512 6005101.2837742865)", "id_full": "forks-54", "lat": 6005101.2837742865, "lon": 32506726.416745119, "aggregated_consumers": "consumers-28", "aggregated_P_heat_max": 38.0 }, "geometry": { "type": "Point", "coordinates": [ 32506726.416745118796825, 6005101.28377428650856 ] } }, -{ "type": "Feature", "properties": { "id": 58, "geometry_wkt": "POINT (32506823.60973072 6005027.680673941)", "id_full": "forks-58", "lat": 6005027.680673941, "lon": 32506823.609730721, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506823.60973072052002, 6005027.680673941038549 ] } }, -{ "type": "Feature", "properties": { "id": 60, "geometry_wkt": "POINT (32506978.648154818 6004957.660532805)", "id_full": "forks-60", "lat": 6004957.6605328051, "lon": 32506978.648154818, "aggregated_consumers": "consumers-7", "aggregated_P_heat_max": 19.0 }, "geometry": { "type": "Point", "coordinates": [ 32506978.648154817521572, 6004957.660532805137336 ] } }, -{ "type": "Feature", "properties": { "id": 64, "geometry_wkt": "POINT (32506882.491420675 6005033.754231971)", "id_full": "forks-64", "lat": 6005033.7542319708, "lon": 32506882.491420675, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506882.491420675069094, 6005033.754231970757246 ] } }, -{ "type": "Feature", "properties": { "id": 69, "geometry_wkt": "POINT (32506756.039207898 6005313.986531776)", "id_full": "forks-69", "lat": 6005313.9865317764, "lon": 32506756.039207898, "aggregated_consumers": "", "aggregated_P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506756.039207898080349, 6005313.986531776376069 ] } }, -{ "type": "Feature", "properties": { "id": 80, "geometry_wkt": "POINT (32506944.88088702 6004777.161187518)", "id_full": "forks-80", "lat": 6004777.1611875184, "lon": 32506944.88088702, "aggregated_consumers": "consumers-45", "aggregated_P_heat_max": 47.0 }, "geometry": { "type": "Point", "coordinates": [ 32506944.880887020379305, 6004777.161187518388033 ] } }, -{ "type": "Feature", "properties": { "id": 90, "geometry_wkt": "POINT (32506901.36241106 6004700.69793768)", "id_full": "forks-90", "lat": 6004700.6979376804, "lon": 32506901.362411059, "aggregated_consumers": "consumers-60", "aggregated_P_heat_max": 20.0 }, "geometry": { "type": "Point", "coordinates": [ 32506901.362411059439182, 6004700.697937680408359 ] } }, -{ "type": "Feature", "properties": { "id": 98, "geometry_wkt": "POINT (32506829.5379491 6004688.366671883)", "id_full": "forks-98", "lat": 6004688.3666718826, "lon": 32506829.5379491, "aggregated_consumers": "consumers-57", "aggregated_P_heat_max": 27.0 }, "geometry": { "type": "Point", "coordinates": [ 32506829.537949100136757, 6004688.36667188256979 ] } }, -{ "type": "Feature", "properties": { "id": 155, "geometry_wkt": "POINT (32506681.648138843 6004914.068847971)", "id_full": "forks-155", "lat": 6004914.068847971, "lon": 32506681.648138843, "aggregated_consumers": "consumers-66", "aggregated_P_heat_max": 41.0 }, "geometry": { "type": "Point", "coordinates": [ 32506681.648138843476772, 6004914.06884797103703 ] } }, -{ "type": "Feature", "properties": { "id": 162, "geometry_wkt": "POINT (32506731.17173863 6004675.642275162)", "id_full": "forks-162", "lat": 6004675.642275162, "lon": 32506731.171738628, "aggregated_consumers": "consumers-155", "aggregated_P_heat_max": 27.0 }, "geometry": { "type": "Point", "coordinates": [ 32506731.171738628298044, 6004675.642275162041187 ] } } +{ "type": "Feature", "properties": { "id": 1, "geometry_wkt": "POINT (32506957.828444872 6005039.452800406)", "id_full": "forks-1", "lat": 6005039.4528004061, "lon": 32506957.828444872, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506957.828444872051477, 6005039.452800406143069 ] } }, +{ "type": "Feature", "properties": { "id": 2, "geometry_wkt": "POINT (32506849.569266543 6005309.829775801)", "id_full": "forks-2", "lat": 6005309.8297758009, "lon": 32506849.569266543, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506849.56926654279232, 6005309.829775800928473 ] } }, +{ "type": "Feature", "properties": { "id": 3, "geometry_wkt": "POINT (32506884.118155308 6005233.286900076)", "id_full": "forks-3", "lat": 6005233.2869000761, "lon": 32506884.118155308, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506884.118155308067799, 6005233.286900076083839 ] } }, +{ "type": "Feature", "properties": { "id": 4, "geometry_wkt": "POINT (32507059.691856742 6004782.464862994)", "id_full": "forks-4", "lat": 6004782.4648629939, "lon": 32507059.691856742, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507059.691856741905212, 6004782.464862993918359 ] } }, +{ "type": "Feature", "properties": { "id": 5, "geometry_wkt": "POINT (32507062.90499444 6004810.397108196)", "id_full": "forks-5", "lat": 6004810.3971081963, "lon": 32507062.904994439, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507062.904994439333677, 6004810.397108196280897 ] } }, +{ "type": "Feature", "properties": { "id": 6, "geometry_wkt": "POINT (32507049.679193664 6004797.514717632)", "id_full": "forks-6", "lat": 6004797.514717632, "lon": 32507049.679193664, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507049.679193664342165, 6004797.514717631973326 ] } }, +{ "type": "Feature", "properties": { "id": 7, "geometry_wkt": "POINT (32506824.270652454 6005308.401445041)", "id_full": "forks-7", "lat": 6005308.4014450414, "lon": 32506824.270652454, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506824.270652454346418, 6005308.401445041410625 ] } }, +{ "type": "Feature", "properties": { "id": 10, "geometry_wkt": "POINT (32506654.861689653 6005025.3310652645)", "id_full": "forks-10", "lat": 6005025.3310652645, "lon": 32506654.861689653, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506654.861689653247595, 6005025.33106526453048 ] } }, +{ "type": "Feature", "properties": { "id": 11, "geometry_wkt": "POINT (32506640.28949501 6005081.643143247)", "id_full": "forks-11", "lat": 6005081.6431432469, "lon": 32506640.28949501, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506640.289495009928942, 6005081.643143246881664 ] } }, +{ "type": "Feature", "properties": { "id": 12, "geometry_wkt": "POINT (32506635.98050358 6005097.202808099)", "id_full": "forks-12", "lat": 6005097.2028080989, "lon": 32506635.980503581, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506635.980503581464291, 6005097.202808098867536 ] } }, +{ "type": "Feature", "properties": { "id": 13, "geometry_wkt": "POINT (32506634.19730888 6005104.876539121)", "id_full": "forks-13", "lat": 6005104.8765391214, "lon": 32506634.197308879, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506634.197308879345655, 6005104.876539121381938 ] } }, +{ "type": "Feature", "properties": { "id": 15, "geometry_wkt": "POINT (32506589.465335622 6005258.491528047)", "id_full": "forks-15", "lat": 6005258.4915280472, "lon": 32506589.465335622, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506589.465335622429848, 6005258.491528047248721 ] } }, +{ "type": "Feature", "properties": { "id": 16, "geometry_wkt": "POINT (32506610.01704668 6005273.422141656)", "id_full": "forks-16", "lat": 6005273.4221416563, "lon": 32506610.017046679, "aggregated_consumers": "consumers-31", "P_heat_max": 49.0 }, "geometry": { "type": "Point", "coordinates": [ 32506610.017046678811312, 6005273.422141656279564 ] } }, +{ "type": "Feature", "properties": { "id": 17, "geometry_wkt": "POINT (32506973.341402162 6004704.626499322)", "id_full": "forks-17", "lat": 6004704.6264993222, "lon": 32506973.341402162, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506973.341402161866426, 6004704.626499322243035 ] } }, +{ "type": "Feature", "properties": { "id": 18, "geometry_wkt": "POINT (32506966.35593917 6004702.746699204)", "id_full": "forks-18", "lat": 6004702.7466992037, "lon": 32506966.355939168, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506966.355939168483019, 6004702.74669920373708 ] } }, +{ "type": "Feature", "properties": { "id": 19, "geometry_wkt": "POINT (32506905.580154143 6004686.432937293)", "id_full": "forks-19", "lat": 6004686.4329372933, "lon": 32506905.580154143, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506905.58015414327383, 6004686.432937293313444 ] } }, +{ "type": "Feature", "properties": { "id": 20, "geometry_wkt": "POINT (32506834.06771552 6004667.389202644)", "id_full": "forks-20", "lat": 6004667.3892026441, "lon": 32506834.067715518, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506834.067715518176556, 6004667.389202644117177 ] } }, +{ "type": "Feature", "properties": { "id": 22, "geometry_wkt": "POINT (32506782.94580446 6004652.671333202)", "id_full": "forks-22", "lat": 6004652.6713332022, "lon": 32506782.945804462, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506782.945804461836815, 6004652.671333202160895 ] } }, +{ "type": "Feature", "properties": { "id": 24, "geometry_wkt": "POINT (32506746.461005732 6005002.454771279)", "id_full": "forks-24", "lat": 6005002.4547712794, "lon": 32506746.461005732, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506746.461005732417107, 6005002.454771279357374 ] } }, +{ "type": "Feature", "properties": { "id": 28, "geometry_wkt": "POINT (32506901.09680305 6005183.699540134)", "id_full": "forks-28", "lat": 6005183.6995401336, "lon": 32506901.09680305, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506901.096803050488234, 6005183.699540133588016 ] } }, +{ "type": "Feature", "properties": { "id": 29, "geometry_wkt": "POINT (32506983.839984797 6005006.224120298)", "id_full": "forks-29", "lat": 6005006.2241202984, "lon": 32506983.839984797, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506983.83998479694128, 6005006.224120298400521 ] } }, +{ "type": "Feature", "properties": { "id": 30, "geometry_wkt": "POINT (32506990.21066587 6005043.18464113)", "id_full": "forks-30", "lat": 6005043.1846411303, "lon": 32506990.21066587, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506990.210665870457888, 6005043.184641130268574 ] } }, +{ "type": "Feature", "properties": { "id": 32, "geometry_wkt": "POINT (32507023.054066256 6004915.480935483)", "id_full": "forks-32", "lat": 6004915.4809354832, "lon": 32507023.054066256, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507023.054066255688667, 6004915.480935483239591 ] } }, +{ "type": "Feature", "properties": { "id": 33, "geometry_wkt": "POINT (32506931.03989272 6005095.022326571)", "id_full": "forks-33", "lat": 6005095.0223265709, "lon": 32506931.039892718, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506931.039892718195915, 6005095.022326570935547 ] } }, +{ "type": "Feature", "properties": { "id": 35, "geometry_wkt": "POINT (32506920.064067416 6005126.549259349)", "id_full": "forks-35", "lat": 6005126.5492593488, "lon": 32506920.064067416, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506920.064067415893078, 6005126.549259348772466 ] } }, +{ "type": "Feature", "properties": { "id": 36, "geometry_wkt": "POINT (32506871.2233493 6005117.018729404)", "id_full": "forks-36", "lat": 6005117.0187294036, "lon": 32506871.223349299, "aggregated_consumers": "consumers-23, consumers-105", "P_heat_max": 96.0 }, "geometry": { "type": "Point", "coordinates": [ 32506871.223349299281836, 6005117.018729403614998 ] } }, +{ "type": "Feature", "properties": { "id": 40, "geometry_wkt": "POINT (32506925.62074382 6005110.602306801)", "id_full": "forks-40", "lat": 6005110.6023068009, "lon": 32506925.620743819, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506925.620743818581104, 6005110.602306800894439 ] } }, +{ "type": "Feature", "properties": { "id": 49, "geometry_wkt": "POINT (32506774.162415158 6004688.607881281)", "id_full": "forks-49", "lat": 6004688.6078812806, "lon": 32506774.162415158, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506774.162415158003569, 6004688.607881280593574 ] } }, +{ "type": "Feature", "properties": { "id": 53, "geometry_wkt": "POINT (32506740.583661333 6004747.206024529)", "id_full": "forks-53", "lat": 6004747.2060245294, "lon": 32506740.583661333, "aggregated_consumers": "consumers-149", "P_heat_max": 31.0 }, "geometry": { "type": "Point", "coordinates": [ 32506740.583661332726479, 6004747.206024529412389 ] } }, +{ "type": "Feature", "properties": { "id": 54, "geometry_wkt": "POINT (32506726.41674512 6005101.2837742865)", "id_full": "forks-54", "lat": 6005101.2837742865, "lon": 32506726.416745119, "aggregated_consumers": "consumers-28", "P_heat_max": 38.0 }, "geometry": { "type": "Point", "coordinates": [ 32506726.416745118796825, 6005101.28377428650856 ] } }, +{ "type": "Feature", "properties": { "id": 58, "geometry_wkt": "POINT (32506823.60973072 6005027.680673941)", "id_full": "forks-58", "lat": 6005027.680673941, "lon": 32506823.609730721, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506823.60973072052002, 6005027.680673941038549 ] } }, +{ "type": "Feature", "properties": { "id": 60, "geometry_wkt": "POINT (32506978.648154818 6004957.660532805)", "id_full": "forks-60", "lat": 6004957.6605328051, "lon": 32506978.648154818, "aggregated_consumers": "consumers-7", "P_heat_max": 19.0 }, "geometry": { "type": "Point", "coordinates": [ 32506978.648154817521572, 6004957.660532805137336 ] } }, +{ "type": "Feature", "properties": { "id": 64, "geometry_wkt": "POINT (32506882.491420675 6005033.754231971)", "id_full": "forks-64", "lat": 6005033.7542319708, "lon": 32506882.491420675, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506882.491420675069094, 6005033.754231970757246 ] } }, +{ "type": "Feature", "properties": { "id": 69, "geometry_wkt": "POINT (32506756.039207898 6005313.986531776)", "id_full": "forks-69", "lat": 6005313.9865317764, "lon": 32506756.039207898, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506756.039207898080349, 6005313.986531776376069 ] } }, +{ "type": "Feature", "properties": { "id": 80, "geometry_wkt": "POINT (32506944.88088702 6004777.161187518)", "id_full": "forks-80", "lat": 6004777.1611875184, "lon": 32506944.88088702, "aggregated_consumers": "consumers-45", "P_heat_max": 47.0 }, "geometry": { "type": "Point", "coordinates": [ 32506944.880887020379305, 6004777.161187518388033 ] } }, +{ "type": "Feature", "properties": { "id": 90, "geometry_wkt": "POINT (32506901.36241106 6004700.69793768)", "id_full": "forks-90", "lat": 6004700.6979376804, "lon": 32506901.362411059, "aggregated_consumers": "consumers-60", "P_heat_max": 20.0 }, "geometry": { "type": "Point", "coordinates": [ 32506901.362411059439182, 6004700.697937680408359 ] } }, +{ "type": "Feature", "properties": { "id": 98, "geometry_wkt": "POINT (32506829.5379491 6004688.366671883)", "id_full": "forks-98", "lat": 6004688.3666718826, "lon": 32506829.5379491, "aggregated_consumers": "consumers-57", "P_heat_max": 27.0 }, "geometry": { "type": "Point", "coordinates": [ 32506829.537949100136757, 6004688.36667188256979 ] } }, +{ "type": "Feature", "properties": { "id": 155, "geometry_wkt": "POINT (32506681.648138843 6004914.068847971)", "id_full": "forks-155", "lat": 6004914.068847971, "lon": 32506681.648138843, "aggregated_consumers": "consumers-66", "P_heat_max": 41.0 }, "geometry": { "type": "Point", "coordinates": [ 32506681.648138843476772, 6004914.06884797103703 ] } }, +{ "type": "Feature", "properties": { "id": 162, "geometry_wkt": "POINT (32506731.17173863 6004675.642275162)", "id_full": "forks-162", "lat": 6004675.642275162, "lon": 32506731.171738628, "aggregated_consumers": "consumers-155", "P_heat_max": 27.0 }, "geometry": { "type": "Point", "coordinates": [ 32506731.171738628298044, 6004675.642275162041187 ] } } ] } diff --git a/examples/optimisation/network_aggregation/super_network/super_pipes.geojson b/examples/optimisation/network_aggregation/super_network/super_pipes.geojson index 463d7d1e..cc3dcf7d 100644 --- a/examples/optimisation/network_aggregation/super_network/super_pipes.geojson +++ b/examples/optimisation/network_aggregation/super_network/super_pipes.geojson @@ -2,54 +2,55 @@ "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, "features": [ -{ "type": "Feature", "properties": { "id": 50, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-29", "length": 42.62329158281149, "included_forks": "forks-42", "included_consumer": "consumers-0", "included_P_heat_max": 23.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506972.555892087519169, 6005025.500261910259724 ], [ 32506983.83998479694128, 6005006.224120298400521 ] ] } }, -{ "type": "Feature", "properties": { "id": 127, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-30", "length": 32.596551206237763, "included_forks": "forks-45", "included_consumer": "consumers-109", "included_P_heat_max": 33.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506988.514574155211449, 6005042.992920082062483 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, -{ "type": "Feature", "properties": { "id": 0, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-64", "length": 75.628606205256546, "included_forks": "forks-0, forks-65", "included_consumer": "consumers-4, consumers-5, consumers-22", "included_P_heat_max": 64.0, "Gleichzeitigkeitsfaktor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506930.132400441914797, 6005038.999399862252176 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, -{ "type": "Feature", "properties": { "id": 33, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-33", "length": 62.273477677616725, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506936.85857841745019, 6005078.441575756296515 ], [ 32506943.116743721067905, 6005060.337174004875124 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, -{ "type": "Feature", "properties": { "id": 1, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-3", "length": 84.101415234176301, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506849.56926654279232, 6005309.829775800928473 ], [ 32506852.788861401379108, 6005303.303346553817391 ], [ 32506857.729554239660501, 6005293.263527888804674 ], [ 32506874.377478789538145, 6005259.486231505870819 ], [ 32506877.43430345505476, 6005252.781554163433611 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, -{ "type": "Feature", "properties": { "id": 5, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 32.69106870034981, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506831.632401779294014, 6005311.127199975773692 ], [ 32506836.87445405870676, 6005313.4047647183761 ], [ 32506846.360497884452343, 6005317.858291626907885 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, -{ "type": "Feature", "properties": { "id": 40, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 26.199323804115799, "included_forks": "forks-46", "included_consumer": "consumers-42", "included_P_heat_max": 31.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506828.487186539918184, 6005307.105897605419159 ], [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506839.983860768377781, 6005306.377473699860275 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, -{ "type": "Feature", "properties": { "id": 29, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-3", "to_node": "forks-28", "length": 52.413555485224038, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506884.118155308067799, 6005233.286900076083839 ], [ 32506897.695788338780403, 6005193.641477124765515 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, -{ "type": "Feature", "properties": { "id": 22, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-3", "to_node": "forks-69", "length": 201.8640742339384, "included_forks": "forks-31", "included_consumer": "consumers-34, consumers-38", "included_P_heat_max": 50.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506761.41373110935092, 6005288.247852889820933 ], [ 32506768.106216792017221, 6005284.719470574520528 ], [ 32506768.58904629573226, 6005275.807909052819014 ], [ 32506772.436157487332821, 6005237.327239649370313 ], [ 32506778.249345108866692, 6005228.412388440221548 ], [ 32506784.139542851597071, 6005224.816091160289943 ], [ 32506794.208307005465031, 6005219.178695933893323 ], [ 32506815.131370950490236, 6005219.420987154357135 ], [ 32506849.753633692860603, 6005225.280305446125567 ], [ 32506870.448009263724089, 6005230.106597077101469 ], [ 32506874.400354873389006, 6005231.024857359007001 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, -{ "type": "Feature", "properties": { "id": 2, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-5", "length": 49.65468218997448, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507066.510839566588402, 6004782.174897360615432 ], [ 32507072.530063845217228, 6004784.309275067411363 ], [ 32507075.421466507017612, 6004787.996558192186058 ], [ 32507077.794186722487211, 6004793.774814426898956 ], [ 32507077.255080308765173, 6004800.672369468957186 ], [ 32507074.454373985528946, 6004805.919742610305548 ], [ 32507067.962735038250685, 6004809.770653950050473 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, -{ "type": "Feature", "properties": { "id": 42, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-17", "length": 123.29475616582023, "included_forks": "forks-47, forks-48", "included_consumer": "consumers-71, consumers-107", "included_P_heat_max": 85.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507058.269206289201975, 6004774.08448775857687 ], [ 32507055.049979239702225, 6004762.886378192342818 ], [ 32507049.614296812564135, 6004750.349710370413959 ], [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507038.577310808002949, 6004739.673732661642134 ], [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.376538667827845, 6004714.249341813847423 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, -{ "type": "Feature", "properties": { "id": 4, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-6", "length": 19.483020231991176, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507051.015878472477198, 6004789.583621971309185 ], [ 32507055.721855498850346, 6004784.328024078160524 ], [ 32507059.691856741905212, 6004782.464862993918359 ] ] } }, -{ "type": "Feature", "properties": { "id": 3, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-5", "to_node": "forks-6", "length": 20.118775802046997, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507062.904994439333677, 6004810.397108196280897 ], [ 32507057.250238422304392, 6004808.886380590498447 ], [ 32507053.053128503262997, 6004805.67554706055671 ], [ 32507050.371553130447865, 6004801.309886945411563 ], [ 32507049.679193664342165, 6004797.514717631973326 ] ] } }, -{ "type": "Feature", "properties": { "id": 37, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-5", "to_node": "forks-32", "length": 112.75341151061222, "included_forks": "forks-44, forks-79", "included_consumer": "consumers-48, consumers-62", "included_P_heat_max": 51.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507023.054066255688667, 6004915.480935483239591 ], [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507047.633258003741503, 6004855.380120977759361 ], [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507056.958943579345942, 6004832.941263437271118 ], [ 32507062.226572059094906, 6004818.80764533020556 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, -{ "type": "Feature", "properties": { "id": 6, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-6", "to_node": "forks-24", "length": 368.44406427251545, "included_forks": "forks-8, forks-84, forks-96, forks-97, forks-114, forks-92, forks-93, forks-117, forks-115, forks-116, forks-121, forks-118, forks-119, forks-109, forks-110, forks-111, forks-112, forks-113, forks-122, forks-88, forks-86, forks-87, forks-89, forks-77, forks-78, forks-106, forks-103, forks-104, forks-100", "included_consumer": "consumers-46, consumers-47, consumers-53, consumers-55, consumers-56, consumers-58, consumers-59, consumers-61, consumers-63, consumers-65, consumers-68, consumers-72, consumers-73, consumers-74, consumers-76, consumers-77, consumers-79, consumers-81, consumers-83, consumers-84, consumers-87, consumers-89, consumers-90, consumers-91, consumers-92, consumers-93, consumers-95, consumers-97, consumers-98, consumers-99, consumers-100, consumers-101, consumers-102, consumers-103", "included_P_heat_max": 1104.0, "Gleichzeitigkeitsfaktor": 0.19035479962020585 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507040.76520436629653, 6004798.157553435303271 ], [ 32507036.399958070367575, 6004798.217646886594594 ], [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507025.222955066710711, 6004802.406388177536428 ], [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506959.887568239122629, 6004846.735092141665518 ], [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506775.654936447739601, 6004982.75931285880506 ], [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506746.461005732417107, 6005002.454771279357374 ] ] } }, -{ "type": "Feature", "properties": { "id": 17, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-7", "to_node": "forks-69", "length": 72.210147634926642, "included_forks": "forks-23", "included_consumer": "consumers-35", "included_P_heat_max": 36.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506818.050234023481607, 6005310.350491045974195 ], [ 32506800.642851490527391, 6005319.804492926225066 ], [ 32506796.837095130234957, 6005321.278694453649223 ], [ 32506793.04543898999691, 6005322.040828321129084 ], [ 32506788.133238516747952, 6005321.710924620740116 ], [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506756.039207898080349, 6005313.986531776376069 ] ] } }, -{ "type": "Feature", "properties": { "id": 8, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-11", "length": 58.167007772036605, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506643.196130774915218, 6005070.34288255404681 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, -{ "type": "Feature", "properties": { "id": 160, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-155", "length": 114.44122883508933, "included_forks": "forks-153, forks-107, forks-108, forks-154", "included_consumer": "consumers-44, consumers-85, consumers-144, consumers-145", "included_P_heat_max": 98.0, "Gleichzeitigkeitsfaktor": 0.82270247479188185 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506681.648138843476772, 6004914.06884797103703 ] ] } }, -{ "type": "Feature", "properties": { "id": 7, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-24", "length": 94.548892921472756, "included_forks": "forks-9, forks-95, forks-94, forks-105, forks-91, forks-83", "included_consumer": "consumers-49, consumers-52, consumers-64, consumers-70, consumers-82, consumers-86", "included_P_heat_max": 208.0, "Gleichzeitigkeitsfaktor": 0.7462153966366275 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506674.726261701434851, 6005018.216621937230229 ], [ 32506654.861689653247595, 6005025.33106526453048 ] ] } }, -{ "type": "Feature", "properties": { "id": 9, "highway": "residential", "name": "Rüsdorfer Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-11", "to_node": "forks-12", "length": 16.145295829953266, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.289495009928942, 6005081.643143246881664 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, -{ "type": "Feature", "properties": { "id": 49, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-11", "to_node": "forks-54", "length": 88.352582955426328, "included_forks": "forks-56, forks-55", "included_consumer": "consumers-94", "included_P_heat_max": 33.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506696.986993879079819, 6005095.343915767967701 ], [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506648.500972010195255, 6005083.624357352033257 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, -{ "type": "Feature", "properties": { "id": 173, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-12", "to_node": "forks-13", "length": 7.8781933938920234, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506635.980503581464291, 6005097.202808098867536 ], [ 32506634.197308879345655, 6005104.876539121381938 ] ] } }, -{ "type": "Feature", "properties": { "id": 41, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-12", "to_node": "forks-15", "length": 186.83480570927742, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506580.43083043769002, 6005248.253432797268033 ], [ 32506586.498014286160469, 6005225.686575460247695 ], [ 32506599.077679563313723, 6005179.529892827384174 ], [ 32506610.953214820474386, 6005133.194214399904013 ], [ 32506617.463154081255198, 6005106.92293609213084 ], [ 32506620.289027590304613, 6005097.291508676484227 ], [ 32506622.654141690582037, 6005095.025115229189396 ], [ 32506626.497879713773727, 6005094.452065224759281 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, -{ "type": "Feature", "properties": { "id": 10, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-13", "to_node": "forks-15", "length": 160.52780708227937, "included_forks": "forks-14", "included_consumer": "consumers-32", "included_P_heat_max": 36.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506632.455033458769321, 6005112.374179692007601 ], [ 32506627.507085636258125, 6005132.205481625162065 ], [ 32506623.818144433200359, 6005147.66591256391257 ], [ 32506620.064255829900503, 6005162.937104214914143 ], [ 32506615.55568515136838, 6005181.278110017068684 ], [ 32506613.350609008222818, 6005190.265099276788533 ], [ 32506610.443355057388544, 6005202.099448162131011 ], [ 32506608.262401930987835, 6005207.926569108851254 ], [ 32506604.114207334816456, 6005225.255598852410913 ], [ 32506597.784114979207516, 6005240.000177503563464 ], [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506591.320538651198149, 6005252.307886299677193 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, -{ "type": "Feature", "properties": { "id": 332, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "GL", "from_node": "forks-13", "to_node": "producers-0", "length": 15.980908346991134, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506649.763465486466885, 6005108.493748000822961 ] ] } }, -{ "type": "Feature", "properties": { "id": 12, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-15", "to_node": "forks-69", "length": 183.65224310241445, "included_forks": "forks-16, forks-75, forks-68, forks-67, forks-76, forks-73, forks-72, forks-71, forks-70, forks-74", "included_consumer": "consumers-29, consumers-30, consumers-31, consumers-33, consumers-36, consumers-37, consumers-39, consumers-40, consumers-41, consumers-43", "included_P_heat_max": 398.0, "Gleichzeitigkeitsfaktor": 0.6139132535407591 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506654.616219203919172, 6005285.733618872240186 ], [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506610.017046678811312, 6005273.422141656279564 ], [ 32506587.762997552752495, 6005267.278973447158933 ], [ 32506587.964162901043892, 6005263.474022278562188 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, -{ "type": "Feature", "properties": { "id": 13, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-17", "to_node": "forks-18", "length": 7.23397136554079, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506973.341402161866426, 6004704.626499322243035 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, -{ "type": "Feature", "properties": { "id": 16, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-17", "to_node": "forks-22", "length": 340.26583045827465, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506755.443020176142454, 6004643.41827427316457 ], [ 32506785.601000711321831, 6004608.692504844628274 ], [ 32506825.060652066022158, 6004563.265953474678099 ], [ 32506831.744175631552935, 6004570.930828711017966 ], [ 32506840.820324942469597, 6004580.012318628840148 ], [ 32506853.381121914833784, 6004593.327044745907187 ], [ 32506869.332918431609869, 6004607.993153758347034 ], [ 32506916.344829179346561, 6004648.39671597443521 ], [ 32506938.577460221946239, 6004669.014002612791955 ], [ 32506958.951517555862665, 6004688.794110026210546 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, -{ "type": "Feature", "properties": { "id": 95, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-18", "to_node": "forks-19", "length": 62.927218857187952, "included_forks": "forks-102", "included_consumer": "consumers-80", "included_P_heat_max": 29.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.355939168483019, 6004702.74669920373708 ], [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, -{ "type": "Feature", "properties": { "id": 74, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-18", "to_node": "forks-80", "length": 77.451235857764701, "included_forks": "forks-82, forks-120, forks-81", "included_consumer": "consumers-50, consumers-51, consumers-96", "included_P_heat_max": 70.0, "Gleichzeitigkeitsfaktor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, -{ "type": "Feature", "properties": { "id": 14, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-19", "to_node": "forks-20", "length": 74.004680308054191, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506905.58015414327383, 6004686.432937293313444 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, -{ "type": "Feature", "properties": { "id": 82, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-19", "to_node": "forks-90", "length": 14.875469497298331, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, -{ "type": "Feature", "properties": { "id": 85, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-20", "to_node": "forks-22", "length": 53.20861594105358, "included_forks": "forks-21", "included_consumer": "consumers-69", "included_P_heat_max": 41.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.067715518176556, 6004667.389202644117177 ], [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506799.387847676873207, 6004657.913845077157021 ], [ 32506782.945804461836815, 6004652.671333202160895 ] ] } }, -{ "type": "Feature", "properties": { "id": 91, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-20", "to_node": "forks-98", "length": 21.460964550835705, "included_forks": "forks-99", "included_consumer": "consumers-75", "included_P_heat_max": 12.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, -{ "type": "Feature", "properties": { "id": 165, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-22", "to_node": "forks-49", "length": 36.994370050809025, "included_forks": "forks-157, forks-156", "included_consumer": "consumers-150, consumers-151", "included_P_heat_max": 35.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506774.162415158003569, 6004688.607881280593574 ] ] } }, -{ "type": "Feature", "properties": { "id": 18, "highway": "residential", "name": "Stettiner Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-24", "to_node": "forks-58", "length": 85.321200740730944, "included_forks": "forks-25, forks-101, forks-85, forks-57", "included_consumer": "consumers-1, consumers-54, consumers-78, consumers-88", "included_P_heat_max": 122.0, "Gleichzeitigkeitsfaktor": 0.82270247479188185 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506823.60973072052002, 6005027.680673941038549 ] ] } }, -{ "type": "Feature", "properties": { "id": 123, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-28", "to_node": "forks-35", "length": 60.216019972162059, "included_forks": "forks-41", "included_consumer": "consumers-104", "included_P_heat_max": 36.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.096803050488234, 6005183.699540133588016 ], [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506909.269722919911146, 6005158.977732182480395 ], [ 32506918.045713808387518, 6005132.432110263034701 ], [ 32506918.576595596969128, 6005130.830701379105449 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, -{ "type": "Feature", "properties": { "id": 20, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-28", "to_node": "forks-58", "length": 226.64429638655182, "included_forks": "forks-27, forks-26, forks-132, forks-131, forks-130, forks-129, forks-128, forks-127, forks-126, forks-133, forks-125, forks-124", "included_consumer": "consumers-6, consumers-9, consumers-10, consumers-12, consumers-15, consumers-17, consumers-18, consumers-19, consumers-20, consumers-21, consumers-26, consumers-110, consumers-111, consumers-112, consumers-113, consumers-114, consumers-115, consumers-116, consumers-117, consumers-118, consumers-119, consumers-120", "included_P_heat_max": 623.0, "Gleichzeitigkeitsfaktor": 0.34184987108662163 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506815.066916454583406, 6005165.936148005537689 ], [ 32506830.834934014827013, 6005171.277921593748033 ], [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506875.229494299739599, 6005178.164427729323506 ], [ 32506877.851715076714754, 6005178.546638377942145 ], [ 32506880.474450293928385, 6005178.583931988105178 ], [ 32506884.531792610883713, 6005179.124058937653899 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, -{ "type": "Feature", "properties": { "id": 21, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-30", "length": 38.483474769190238, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506983.146614462137222, 6005024.615053474903107 ], [ 32506984.83666018769145, 6005033.107077995315194 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, -{ "type": "Feature", "properties": { "id": 35, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-32", "length": 98.859043540365803, "included_forks": "forks-43", "included_consumer": "consumers-14", "included_P_heat_max": 47.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506997.676446001976728, 6004973.299755467101932 ], [ 32507001.493707738816738, 6004964.482295924797654 ], [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, -{ "type": "Feature", "properties": { "id": 23, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-30", "to_node": "forks-32", "length": 340.86861334048416, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506990.210665870457888, 6005043.184641130268574 ], [ 32507017.173750825226307, 6005049.356270640157163 ], [ 32507024.24387625977397, 6005050.980371178127825 ], [ 32507032.057673122733831, 6005052.683502029627562 ], [ 32507039.030090410262346, 6005054.196211940608919 ], [ 32507095.425084549933672, 6005068.902803309261799 ], [ 32507099.61846774071455, 6005070.12204088177532 ], [ 32507105.079793032258749, 6005048.756587056443095 ], [ 32507108.880019243806601, 6005029.925403732806444 ], [ 32507113.154372714459896, 6005012.519138348288834 ], [ 32507115.639401003718376, 6005000.384041387587786 ], [ 32507119.159936010837555, 6004985.268662626855075 ], [ 32507125.537302955985069, 6004958.130034665577114 ], [ 32507123.130625989288092, 6004953.308572310954332 ], [ 32507119.20999788120389, 6004948.6294163800776 ], [ 32507112.447489432990551, 6004946.304680480621755 ], [ 32507096.74439213424921, 6004940.884161343798041 ], [ 32507081.034716226160526, 6004935.474812150001526 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, -{ "type": "Feature", "properties": { "id": 24, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-35", "length": 100.11914522174953, "included_forks": "forks-34", "included_consumer": "consumers-2", "included_P_heat_max": 31.0, "Gleichzeitigkeitsfaktor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506964.114786304533482, 6005106.432262209244072 ], [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506954.997180473059416, 6005134.323578499257565 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, -{ "type": "Feature", "properties": { "id": 32, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-40", "length": 16.495543603110093, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506925.620743818581104, 6005110.602306800894439 ], [ 32506931.039892718195915, 6005095.022326570935547 ] ] } }, -{ "type": "Feature", "properties": { "id": 31, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-35", "to_node": "forks-40", "length": 16.887330997184353, "included_forks": "", "included_consumer": "", "included_P_heat_max": 0.0, "Gleichzeitigkeitsfaktor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.064067415893078, 6005126.549259348772466 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, -{ "type": "Feature", "properties": { "id": 26, "highway": "service", "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": "driveway", "access": null, "type": "DL", "from_node": "forks-36", "to_node": "forks-40", "length": 91.073493549059549, "included_forks": "forks-37, forks-38, forks-39", "included_consumer": "consumers-24, consumers-106", "included_P_heat_max": 60.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506863.05286305770278, 6005113.902283472940326 ], [ 32506868.820386204868555, 6005092.069696916267276 ], [ 32506875.811225049197674, 6005094.349910996854305 ], [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506905.326579809188843, 6005103.973887623287737 ], [ 32506909.884949542582035, 6005105.460533680394292 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, -{ "type": "Feature", "properties": { "id": 44, "highway": "residential", "name": "Auguste-Ebeling-Straße", "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": "no", "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-53", "length": 84.151181727024152, "included_forks": "forks-50, forks-51, forks-52", "included_consumer": "consumers-146, consumers-148, consumers-157", "included_P_heat_max": 87.0, "Gleichzeitigkeitsfaktor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506772.276173859834671, 6004711.158364219591022 ], [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506770.028414003551006, 6004722.192472075112164 ], [ 32506767.165194243192673, 6004734.672112413682044 ], [ 32506762.504478130489588, 6004749.296516856178641 ], [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506751.563101142644882, 6004748.624020638875663 ], [ 32506740.583661332726479, 6004747.206024529412389 ] ] } }, -{ "type": "Feature", "properties": { "id": 171, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-162", "length": 44.903287301746815, "included_forks": "forks-163, forks-158, forks-159, forks-160, forks-161", "included_consumer": "consumers-147, consumers-152, consumers-153, consumers-154, consumers-156", "included_P_heat_max": 199.0, "Gleichzeitigkeitsfaktor": 0.78352616646845885 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506731.171738628298044, 6004675.642275162041187 ] ] } }, -{ "type": "Feature", "properties": { "id": 57, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-58", "to_node": "forks-64", "length": 59.194100373635251, "included_forks": "forks-66, forks-123", "included_consumer": "consumers-27, consumers-108", "included_P_heat_max": 63.0, "Gleichzeitigkeitsfaktor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506882.491420675069094, 6005033.754231970757246 ] ] } }, -{ "type": "Feature", "properties": { "id": 52, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-60", "to_node": "forks-64", "length": 143.38634029109684, "included_forks": "forks-59, forks-145, forks-141, forks-140, forks-149, forks-146, forks-63, forks-62, forks-61, forks-144, forks-139, forks-138, forks-137, forks-152, forks-136, forks-135, forks-134, forks-150, forks-148, forks-147, forks-151, forks-143, forks-142", "included_consumer": "consumers-3, consumers-8, consumers-11, consumers-13, consumers-16, consumers-25, consumers-67, consumers-121, consumers-122, consumers-123, consumers-124, consumers-125, consumers-126, consumers-127, consumers-128, consumers-129, consumers-130, consumers-131, consumers-132, consumers-133, consumers-134, consumers-135, consumers-136, consumers-137, consumers-138, consumers-139, consumers-140, consumers-141, consumers-142, consumers-143", "included_P_heat_max": 821.0, "Gleichzeitigkeitsfaktor": 0.23137744865585788 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506956.185954, 6004953.169992100447416 ], [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506978.648154817521572, 6004957.660532805137336 ] ] } } +{ "type": "Feature", "properties": { "id": 50, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-29", "length": 42.62329158281149, "aggregated_forks": "forks-42", "aggregated_consumer": "consumers-0", "P_heat_max": 23.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506972.555892087519169, 6005025.500261910259724 ], [ 32506983.83998479694128, 6005006.224120298400521 ] ] } }, +{ "type": "Feature", "properties": { "id": 127, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-30", "length": 32.596551206237763, "aggregated_forks": "forks-45", "aggregated_consumer": "consumers-109", "P_heat_max": 33.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506988.514574155211449, 6005042.992920082062483 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-64", "length": 75.628606205256546, "aggregated_forks": "forks-0, forks-65", "aggregated_consumer": "consumers-4, consumers-5, consumers-22", "P_heat_max": 64.0, "simultaneity factor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506930.132400441914797, 6005038.999399862252176 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 33, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-33", "length": 62.273477677616725, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506936.85857841745019, 6005078.441575756296515 ], [ 32506943.116743721067905, 6005060.337174004875124 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-3", "length": 84.101415234176301, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506849.56926654279232, 6005309.829775800928473 ], [ 32506852.788861401379108, 6005303.303346553817391 ], [ 32506857.729554239660501, 6005293.263527888804674 ], [ 32506874.377478789538145, 6005259.486231505870819 ], [ 32506877.43430345505476, 6005252.781554163433611 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 5, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 32.69106870034981, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506831.632401779294014, 6005311.127199975773692 ], [ 32506836.87445405870676, 6005313.4047647183761 ], [ 32506846.360497884452343, 6005317.858291626907885 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 40, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 26.199323804115799, "aggregated_forks": "forks-46", "aggregated_consumer": "consumers-42", "P_heat_max": 31.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506828.487186539918184, 6005307.105897605419159 ], [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506839.983860768377781, 6005306.377473699860275 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 29, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-3", "to_node": "forks-28", "length": 52.413555485224038, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506884.118155308067799, 6005233.286900076083839 ], [ 32506897.695788338780403, 6005193.641477124765515 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 22, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-3", "to_node": "forks-69", "length": 201.8640742339384, "aggregated_forks": "forks-31", "aggregated_consumer": "consumers-34, consumers-38", "P_heat_max": 50.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506761.41373110935092, 6005288.247852889820933 ], [ 32506768.106216792017221, 6005284.719470574520528 ], [ 32506768.58904629573226, 6005275.807909052819014 ], [ 32506772.436157487332821, 6005237.327239649370313 ], [ 32506778.249345108866692, 6005228.412388440221548 ], [ 32506784.139542851597071, 6005224.816091160289943 ], [ 32506794.208307005465031, 6005219.178695933893323 ], [ 32506815.131370950490236, 6005219.420987154357135 ], [ 32506849.753633692860603, 6005225.280305446125567 ], [ 32506870.448009263724089, 6005230.106597077101469 ], [ 32506874.400354873389006, 6005231.024857359007001 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-5", "length": 49.65468218997448, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507066.510839566588402, 6004782.174897360615432 ], [ 32507072.530063845217228, 6004784.309275067411363 ], [ 32507075.421466507017612, 6004787.996558192186058 ], [ 32507077.794186722487211, 6004793.774814426898956 ], [ 32507077.255080308765173, 6004800.672369468957186 ], [ 32507074.454373985528946, 6004805.919742610305548 ], [ 32507067.962735038250685, 6004809.770653950050473 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 42, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-17", "length": 123.29475616582023, "aggregated_forks": "forks-47, forks-48", "aggregated_consumer": "consumers-71, consumers-107", "P_heat_max": 85.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507058.269206289201975, 6004774.08448775857687 ], [ 32507055.049979239702225, 6004762.886378192342818 ], [ 32507049.614296812564135, 6004750.349710370413959 ], [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507038.577310808002949, 6004739.673732661642134 ], [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.376538667827845, 6004714.249341813847423 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 4, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-6", "length": 19.483020231991176, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507051.015878472477198, 6004789.583621971309185 ], [ 32507055.721855498850346, 6004784.328024078160524 ], [ 32507059.691856741905212, 6004782.464862993918359 ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-5", "to_node": "forks-6", "length": 20.118775802046997, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507062.904994439333677, 6004810.397108196280897 ], [ 32507057.250238422304392, 6004808.886380590498447 ], [ 32507053.053128503262997, 6004805.67554706055671 ], [ 32507050.371553130447865, 6004801.309886945411563 ], [ 32507049.679193664342165, 6004797.514717631973326 ] ] } }, +{ "type": "Feature", "properties": { "id": 37, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-5", "to_node": "forks-32", "length": 112.75341151061222, "aggregated_forks": "forks-44, forks-79", "aggregated_consumer": "consumers-48, consumers-62", "P_heat_max": 51.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507023.054066255688667, 6004915.480935483239591 ], [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507047.633258003741503, 6004855.380120977759361 ], [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507056.958943579345942, 6004832.941263437271118 ], [ 32507062.226572059094906, 6004818.80764533020556 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 6, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-6", "to_node": "forks-24", "length": 368.44406427251545, "aggregated_forks": "forks-8, forks-84, forks-96, forks-97, forks-114, forks-92, forks-93, forks-117, forks-115, forks-116, forks-121, forks-118, forks-119, forks-109, forks-110, forks-111, forks-112, forks-113, forks-122, forks-88, forks-86, forks-87, forks-89, forks-77, forks-78, forks-106, forks-103, forks-104, forks-100", "aggregated_consumer": "consumers-46, consumers-47, consumers-53, consumers-55, consumers-56, consumers-58, consumers-59, consumers-61, consumers-63, consumers-65, consumers-68, consumers-72, consumers-73, consumers-74, consumers-76, consumers-77, consumers-79, consumers-81, consumers-83, consumers-84, consumers-87, consumers-89, consumers-90, consumers-91, consumers-92, consumers-93, consumers-95, consumers-97, consumers-98, consumers-99, consumers-100, consumers-101, consumers-102, consumers-103", "P_heat_max": 1104.0, "simultaneity factor": 0.19035479962020585 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507040.76520436629653, 6004798.157553435303271 ], [ 32507036.399958070367575, 6004798.217646886594594 ], [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507025.222955066710711, 6004802.406388177536428 ], [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506959.887568239122629, 6004846.735092141665518 ], [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506775.654936447739601, 6004982.75931285880506 ], [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506746.461005732417107, 6005002.454771279357374 ] ] } }, +{ "type": "Feature", "properties": { "id": 17, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-7", "to_node": "forks-69", "length": 72.210147634926642, "aggregated_forks": "forks-23", "aggregated_consumer": "consumers-35", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506818.050234023481607, 6005310.350491045974195 ], [ 32506800.642851490527391, 6005319.804492926225066 ], [ 32506796.837095130234957, 6005321.278694453649223 ], [ 32506793.04543898999691, 6005322.040828321129084 ], [ 32506788.133238516747952, 6005321.710924620740116 ], [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506756.039207898080349, 6005313.986531776376069 ] ] } }, +{ "type": "Feature", "properties": { "id": 8, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-11", "length": 58.167007772036605, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506643.196130774915218, 6005070.34288255404681 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 160, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-155", "length": 114.44122883508933, "aggregated_forks": "forks-153, forks-107, forks-108, forks-154", "aggregated_consumer": "consumers-44, consumers-85, consumers-144, consumers-145", "P_heat_max": 98.0, "simultaneity factor": 0.82270247479188185 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506681.648138843476772, 6004914.06884797103703 ] ] } }, +{ "type": "Feature", "properties": { "id": 7, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-24", "length": 94.548892921472756, "aggregated_forks": "forks-9, forks-95, forks-94, forks-105, forks-91, forks-83", "aggregated_consumer": "consumers-49, consumers-52, consumers-64, consumers-70, consumers-82, consumers-86", "P_heat_max": 208.0, "simultaneity factor": 0.7462153966366275 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506674.726261701434851, 6005018.216621937230229 ], [ 32506654.861689653247595, 6005025.33106526453048 ] ] } }, +{ "type": "Feature", "properties": { "id": 9, "highway": "residential", "name": "Rüsdorfer Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-11", "to_node": "forks-12", "length": 16.145295829953266, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.289495009928942, 6005081.643143246881664 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 49, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-11", "to_node": "forks-54", "length": 88.352582955426328, "aggregated_forks": "forks-56, forks-55", "aggregated_consumer": "consumers-94", "P_heat_max": 33.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506696.986993879079819, 6005095.343915767967701 ], [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506648.500972010195255, 6005083.624357352033257 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 173, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-12", "to_node": "forks-13", "length": 7.8781933938920234, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506635.980503581464291, 6005097.202808098867536 ], [ 32506634.197308879345655, 6005104.876539121381938 ] ] } }, +{ "type": "Feature", "properties": { "id": 41, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-12", "to_node": "forks-15", "length": 186.83480570927742, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506580.43083043769002, 6005248.253432797268033 ], [ 32506586.498014286160469, 6005225.686575460247695 ], [ 32506599.077679563313723, 6005179.529892827384174 ], [ 32506610.953214820474386, 6005133.194214399904013 ], [ 32506617.463154081255198, 6005106.92293609213084 ], [ 32506620.289027590304613, 6005097.291508676484227 ], [ 32506622.654141690582037, 6005095.025115229189396 ], [ 32506626.497879713773727, 6005094.452065224759281 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 10, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-13", "to_node": "forks-15", "length": 160.52780708227937, "aggregated_forks": "forks-14", "aggregated_consumer": "consumers-32", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506632.455033458769321, 6005112.374179692007601 ], [ 32506627.507085636258125, 6005132.205481625162065 ], [ 32506623.818144433200359, 6005147.66591256391257 ], [ 32506620.064255829900503, 6005162.937104214914143 ], [ 32506615.55568515136838, 6005181.278110017068684 ], [ 32506613.350609008222818, 6005190.265099276788533 ], [ 32506610.443355057388544, 6005202.099448162131011 ], [ 32506608.262401930987835, 6005207.926569108851254 ], [ 32506604.114207334816456, 6005225.255598852410913 ], [ 32506597.784114979207516, 6005240.000177503563464 ], [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506591.320538651198149, 6005252.307886299677193 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, +{ "type": "Feature", "properties": { "id": 332, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "GL", "from_node": "forks-13", "to_node": "producers-0", "length": 15.980908346991134, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506649.763465486466885, 6005108.493748000822961 ] ] } }, +{ "type": "Feature", "properties": { "id": 12, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-15", "to_node": "forks-16", "length": 32.100377577737376, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506587.964162901043892, 6005263.474022278562188 ], [ 32506587.762997552752495, 6005267.278973447158933 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, +{ "type": "Feature", "properties": { "id": 67, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-16", "to_node": "forks-69", "length": 151.55186552467708, "aggregated_forks": "forks-75, forks-68, forks-67, forks-76, forks-73, forks-72, forks-71, forks-70, forks-74", "aggregated_consumer": "consumers-29, consumers-30, consumers-33, consumers-36, consumers-37, consumers-39, consumers-40, consumers-41, consumers-43", "P_heat_max": 349.0, "simultaneity factor": 0.64460891621779715 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506654.616219203919172, 6005285.733618872240186 ], [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, +{ "type": "Feature", "properties": { "id": 13, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-17", "to_node": "forks-18", "length": 7.23397136554079, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506973.341402161866426, 6004704.626499322243035 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 16, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-17", "to_node": "forks-22", "length": 340.26583045827465, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506755.443020176142454, 6004643.41827427316457 ], [ 32506785.601000711321831, 6004608.692504844628274 ], [ 32506825.060652066022158, 6004563.265953474678099 ], [ 32506831.744175631552935, 6004570.930828711017966 ], [ 32506840.820324942469597, 6004580.012318628840148 ], [ 32506853.381121914833784, 6004593.327044745907187 ], [ 32506869.332918431609869, 6004607.993153758347034 ], [ 32506916.344829179346561, 6004648.39671597443521 ], [ 32506938.577460221946239, 6004669.014002612791955 ], [ 32506958.951517555862665, 6004688.794110026210546 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 95, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-18", "to_node": "forks-19", "length": 62.927218857187952, "aggregated_forks": "forks-102", "aggregated_consumer": "consumers-80", "P_heat_max": 29.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.355939168483019, 6004702.74669920373708 ], [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 74, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-18", "to_node": "forks-80", "length": 77.451235857764701, "aggregated_forks": "forks-82, forks-120, forks-81", "aggregated_consumer": "consumers-50, consumers-51, consumers-96", "P_heat_max": 70.0, "simultaneity factor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 14, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-19", "to_node": "forks-20", "length": 74.004680308054191, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506905.58015414327383, 6004686.432937293313444 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 82, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-19", "to_node": "forks-90", "length": 14.875469497298331, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 85, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-20", "to_node": "forks-22", "length": 53.20861594105358, "aggregated_forks": "forks-21", "aggregated_consumer": "consumers-69", "P_heat_max": 41.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.067715518176556, 6004667.389202644117177 ], [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506799.387847676873207, 6004657.913845077157021 ], [ 32506782.945804461836815, 6004652.671333202160895 ] ] } }, +{ "type": "Feature", "properties": { "id": 91, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-20", "to_node": "forks-98", "length": 21.460964550835705, "aggregated_forks": "forks-99", "aggregated_consumer": "consumers-75", "P_heat_max": 12.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 165, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-22", "to_node": "forks-49", "length": 36.994370050809025, "aggregated_forks": "forks-157, forks-156", "aggregated_consumer": "consumers-150, consumers-151", "P_heat_max": 35.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506774.162415158003569, 6004688.607881280593574 ] ] } }, +{ "type": "Feature", "properties": { "id": 18, "highway": "residential", "name": "Stettiner Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-24", "to_node": "forks-58", "length": 85.321200740730944, "aggregated_forks": "forks-25, forks-101, forks-85, forks-57", "aggregated_consumer": "consumers-1, consumers-54, consumers-78, consumers-88", "P_heat_max": 122.0, "simultaneity factor": 0.82270247479188185 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506823.60973072052002, 6005027.680673941038549 ] ] } }, +{ "type": "Feature", "properties": { "id": 123, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-28", "to_node": "forks-35", "length": 60.216019972162059, "aggregated_forks": "forks-41", "aggregated_consumer": "consumers-104", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.096803050488234, 6005183.699540133588016 ], [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506909.269722919911146, 6005158.977732182480395 ], [ 32506918.045713808387518, 6005132.432110263034701 ], [ 32506918.576595596969128, 6005130.830701379105449 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 20, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-28", "to_node": "forks-58", "length": 226.64429638655182, "aggregated_forks": "forks-27, forks-26, forks-132, forks-131, forks-130, forks-129, forks-128, forks-127, forks-126, forks-133, forks-125, forks-124", "aggregated_consumer": "consumers-6, consumers-9, consumers-10, consumers-12, consumers-15, consumers-17, consumers-18, consumers-19, consumers-20, consumers-21, consumers-26, consumers-110, consumers-111, consumers-112, consumers-113, consumers-114, consumers-115, consumers-116, consumers-117, consumers-118, consumers-119, consumers-120", "P_heat_max": 623.0, "simultaneity factor": 0.34184987108662163 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506815.066916454583406, 6005165.936148005537689 ], [ 32506830.834934014827013, 6005171.277921593748033 ], [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506875.229494299739599, 6005178.164427729323506 ], [ 32506877.851715076714754, 6005178.546638377942145 ], [ 32506880.474450293928385, 6005178.583931988105178 ], [ 32506884.531792610883713, 6005179.124058937653899 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 21, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-30", "length": 38.483474769190238, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506983.146614462137222, 6005024.615053474903107 ], [ 32506984.83666018769145, 6005033.107077995315194 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 35, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-32", "length": 98.859043540365803, "aggregated_forks": "forks-43", "aggregated_consumer": "consumers-14", "P_heat_max": 47.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506997.676446001976728, 6004973.299755467101932 ], [ 32507001.493707738816738, 6004964.482295924797654 ], [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 23, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-30", "to_node": "forks-32", "length": 340.86861334048416, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506990.210665870457888, 6005043.184641130268574 ], [ 32507017.173750825226307, 6005049.356270640157163 ], [ 32507024.24387625977397, 6005050.980371178127825 ], [ 32507032.057673122733831, 6005052.683502029627562 ], [ 32507039.030090410262346, 6005054.196211940608919 ], [ 32507095.425084549933672, 6005068.902803309261799 ], [ 32507099.61846774071455, 6005070.12204088177532 ], [ 32507105.079793032258749, 6005048.756587056443095 ], [ 32507108.880019243806601, 6005029.925403732806444 ], [ 32507113.154372714459896, 6005012.519138348288834 ], [ 32507115.639401003718376, 6005000.384041387587786 ], [ 32507119.159936010837555, 6004985.268662626855075 ], [ 32507125.537302955985069, 6004958.130034665577114 ], [ 32507123.130625989288092, 6004953.308572310954332 ], [ 32507119.20999788120389, 6004948.6294163800776 ], [ 32507112.447489432990551, 6004946.304680480621755 ], [ 32507096.74439213424921, 6004940.884161343798041 ], [ 32507081.034716226160526, 6004935.474812150001526 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 24, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-35", "length": 100.11914522174953, "aggregated_forks": "forks-34", "aggregated_consumer": "consumers-2", "P_heat_max": 31.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506964.114786304533482, 6005106.432262209244072 ], [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506954.997180473059416, 6005134.323578499257565 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 32, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-40", "length": 16.495543603110093, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506925.620743818581104, 6005110.602306800894439 ], [ 32506931.039892718195915, 6005095.022326570935547 ] ] } }, +{ "type": "Feature", "properties": { "id": 31, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-35", "to_node": "forks-40", "length": 16.887330997184353, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.064067415893078, 6005126.549259348772466 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 26, "highway": "service", "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": "driveway", "access": null, "type": "DL", "from_node": "forks-36", "to_node": "forks-40", "length": 91.073493549059549, "aggregated_forks": "forks-37, forks-38, forks-39", "aggregated_consumer": "consumers-24, consumers-106", "P_heat_max": 60.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506863.05286305770278, 6005113.902283472940326 ], [ 32506868.820386204868555, 6005092.069696916267276 ], [ 32506875.811225049197674, 6005094.349910996854305 ], [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506905.326579809188843, 6005103.973887623287737 ], [ 32506909.884949542582035, 6005105.460533680394292 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 44, "highway": "residential", "name": "Auguste-Ebeling-Straße", "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": "no", "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-53", "length": 84.151181727024152, "aggregated_forks": "forks-50, forks-51, forks-52", "aggregated_consumer": "consumers-146, consumers-148, consumers-157", "P_heat_max": 87.0, "simultaneity factor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506772.276173859834671, 6004711.158364219591022 ], [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506770.028414003551006, 6004722.192472075112164 ], [ 32506767.165194243192673, 6004734.672112413682044 ], [ 32506762.504478130489588, 6004749.296516856178641 ], [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506751.563101142644882, 6004748.624020638875663 ], [ 32506740.583661332726479, 6004747.206024529412389 ] ] } }, +{ "type": "Feature", "properties": { "id": 171, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-162", "length": 44.903287301746815, "aggregated_forks": "forks-163, forks-158, forks-159, forks-160, forks-161", "aggregated_consumer": "consumers-147, consumers-152, consumers-153, consumers-154, consumers-156", "P_heat_max": 199.0, "simultaneity factor": 0.78352616646845885 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506731.171738628298044, 6004675.642275162041187 ] ] } }, +{ "type": "Feature", "properties": { "id": 57, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-58", "to_node": "forks-64", "length": 59.194100373635251, "aggregated_forks": "forks-66, forks-123", "aggregated_consumer": "consumers-27, consumers-108", "P_heat_max": 63.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506882.491420675069094, 6005033.754231970757246 ] ] } }, +{ "type": "Feature", "properties": { "id": 52, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-60", "to_node": "forks-64", "length": 143.38634029109684, "aggregated_forks": "forks-59, forks-145, forks-141, forks-140, forks-149, forks-146, forks-63, forks-62, forks-61, forks-144, forks-139, forks-138, forks-137, forks-152, forks-136, forks-135, forks-134, forks-150, forks-148, forks-147, forks-151, forks-143, forks-142", "aggregated_consumer": "consumers-3, consumers-8, consumers-11, consumers-13, consumers-16, consumers-25, consumers-67, consumers-121, consumers-122, consumers-123, consumers-124, consumers-125, consumers-126, consumers-127, consumers-128, consumers-129, consumers-130, consumers-131, consumers-132, consumers-133, consumers-134, consumers-135, consumers-136, consumers-137, consumers-138, consumers-139, consumers-140, consumers-141, consumers-142, consumers-143", "P_heat_max": 821.0, "simultaneity factor": 0.23137744865585788 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506956.185954, 6004953.169992100447416 ], [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506978.648154817521572, 6004957.660532805137336 ] ] } } ] } From 8dae10cd039387794264d01371e18a5cb0aed607 Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Thu, 11 Aug 2022 14:37:18 +0200 Subject: [PATCH 09/14] changed example input data --- .../network_data/consumers.geojson | 316 ++++----- .../network_data/forks.geojson | 328 ++++----- .../network_data/pipes.geojson | 666 +++++++++--------- .../network_data/producers.geojson | 2 +- 4 files changed, 656 insertions(+), 656 deletions(-) diff --git a/examples/optimisation/network_aggregation/network_data/consumers.geojson b/examples/optimisation/network_aggregation/network_data/consumers.geojson index cccb3839..e57799fa 100644 --- a/examples/optimisation/network_aggregation/network_data/consumers.geojson +++ b/examples/optimisation/network_aggregation/network_data/consumers.geojson @@ -2,163 +2,163 @@ "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, "features": [ -{ "type": "Feature", "properties": { "id": 0, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "26", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6005014.398159652, "lon": 32506955.091667686, "id_full": "consumers-0", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506955.09166768565774, 6005014.398159652017057 ] } }, -{ "type": "Feature", "properties": { "id": 1, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "7", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 13, "lat": 6005039.2001243038, "lon": 32506801.19564756, "id_full": "consumers-1", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506801.195647560060024, 6005039.200124303810298 ] } }, -{ "type": "Feature", "properties": { "id": 2, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "23", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6005117.4716855129, "lon": 32506947.681407206, "id_full": "consumers-2", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506947.681407205760479, 6005117.471685512922704 ] } }, -{ "type": "Feature", "properties": { "id": 3, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "15", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6004965.1418920262, "lon": 32506936.092872586, "id_full": "consumers-3", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506936.092872586101294, 6004965.141892026178539 ] } }, -{ "type": "Feature", "properties": { "id": 4, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "18", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 10, "lat": 6005020.7555000177, "lon": 32506912.159830295, "id_full": "consumers-4", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506912.159830294549465, 6005020.755500017665327 ] } }, -{ "type": "Feature", "properties": { "id": 5, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "24", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6005069.0707217436, "lon": 32506905.141416907, "id_full": "consumers-5", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506905.141416907310486, 6005069.070721743628383 ] } }, -{ "type": "Feature", "properties": { "id": 6, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "14", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 29, "lat": 6005157.8084080378, "lon": 32506860.149385698, "id_full": "consumers-6", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506860.149385698139668, 6005157.808408037759364 ] } }, -{ "type": "Feature", "properties": { "id": 7, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "38", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 19, "lat": 6004946.5755345263, "lon": 32506980.289583649, "id_full": "consumers-7", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506980.289583649486303, 6004946.575534526258707 ] } }, -{ "type": "Feature", "properties": { "id": 8, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "14", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 37, "lat": 6004969.5314309904, "lon": 32506907.347752009, "id_full": "consumers-8", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506907.347752008587122, 6004969.531430990435183 ] } }, -{ "type": "Feature", "properties": { "id": 9, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "12", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6005105.8724987824, "lon": 32506831.701748647, "id_full": "consumers-9", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506831.70174864679575, 6005105.872498782351613 ] } }, -{ "type": "Feature", "properties": { "id": 10, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "11", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 21, "lat": 6005102.6700107055, "lon": 32506807.097907729, "id_full": "consumers-10", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506807.097907729446888, 6005102.670010705478489 ] } }, -{ "type": "Feature", "properties": { "id": 11, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "1", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6005003.6841488769, "lon": 32506912.889645789, "id_full": "consumers-11", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506912.889645788818598, 6005003.684148876927793 ] } }, -{ "type": "Feature", "properties": { "id": 12, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "15", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6005124.2090706732, "lon": 32506805.105399035, "id_full": "consumers-12", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506805.105399034917355, 6005124.209070673212409 ] } }, -{ "type": "Feature", "properties": { "id": 13, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "23", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 18, "lat": 6004967.7664943011, "lon": 32506969.710390974, "id_full": "consumers-13", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506969.710390973836184, 6004967.766494301147759 ] } }, -{ "type": "Feature", "properties": { "id": 14, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "28", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 47, "lat": 6004917.8796548136, "lon": 32506988.938321896, "id_full": "consumers-14", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506988.938321895897388, 6004917.879654813557863 ] } }, -{ "type": "Feature", "properties": { "id": 15, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "7", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 19, "lat": 6005079.1816411465, "lon": 32506809.699875001, "id_full": "consumers-15", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506809.699875, 6005079.181641146540642 ] } }, -{ "type": "Feature", "properties": { "id": 16, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "24", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6004938.8065498779, "lon": 32506937.939764459, "id_full": "consumers-16", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506937.939764458686113, 6004938.806549877859652 ] } }, -{ "type": "Feature", "properties": { "id": 17, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "8", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 35, "lat": 6005081.0198890623, "lon": 32506830.531552043, "id_full": "consumers-17", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506830.531552042812109, 6005081.019889062270522 ] } }, -{ "type": "Feature", "properties": { "id": 18, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "3", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 13, "lat": 6005056.8914554343, "lon": 32506810.789779346, "id_full": "consumers-18", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506810.789779346436262, 6005056.891455434262753 ] } }, -{ "type": "Feature", "properties": { "id": 19, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "20", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 22, "lat": 6005150.1473607281, "lon": 32506826.503114428, "id_full": "consumers-19", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506826.503114428371191, 6005150.147360728122294 ] } }, -{ "type": "Feature", "properties": { "id": 20, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "19", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6005148.5918906117, "lon": 32506805.018891096, "id_full": "consumers-20", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506805.018891096115112, 6005148.591890611685812 ] } }, -{ "type": "Feature", "properties": { "id": 21, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "4", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6005058.4252985809, "lon": 32506832.678980179, "id_full": "consumers-21", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506832.678980179131031, 6005058.425298580899835 ] } }, -{ "type": "Feature", "properties": { "id": 22, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "15", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6005049.6898071039, "lon": 32506890.606906869, "id_full": "consumers-22", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506890.606906868517399, 6005049.689807103946805 ] } }, -{ "type": "Feature", "properties": { "id": 23, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "16", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6005143.9086001301, "lon": 32506878.119526301, "id_full": "consumers-23", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506878.119526300579309, 6005143.90860013011843 ] } }, -{ "type": "Feature", "properties": { "id": 24, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "20", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 41, "lat": 6005111.882618608, "lon": 32506885.800216243, "id_full": "consumers-24", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506885.800216242671013, 6005111.882618607953191 ] } }, -{ "type": "Feature", "properties": { "id": 25, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "4", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 11, "lat": 6004998.2642213628, "lon": 32506887.716799375, "id_full": "consumers-25", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506887.71679937466979, 6004998.264221362769604 ] } }, -{ "type": "Feature", "properties": { "id": 26, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "16", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 30, "lat": 6005127.3075135322, "lon": 32506832.157563895, "id_full": "consumers-26", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506832.157563894987106, 6005127.307513532228768 ] } }, -{ "type": "Feature", "properties": { "id": 27, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "11", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 42, "lat": 6005045.7003009589, "lon": 32506849.502673149, "id_full": "consumers-27", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506849.502673149108887, 6005045.700300958938897 ] } }, -{ "type": "Feature", "properties": { "id": 28, "addr:city": null, "addr:country": null, "addr:housenumber": null, "addr:postcode": null, "addr:street": null, "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6005117.5736557655, "lon": 32506748.283596221, "id_full": "consumers-28", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506748.283596221357584, 6005117.573655765503645 ] } }, -{ "type": "Feature", "properties": { "id": 29, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "8", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 12, "lat": 6005268.9250492593, "lon": 32506643.900641382, "id_full": "consumers-29", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506643.90064138174057, 6005268.925049259327352 ] } }, -{ "type": "Feature", "properties": { "id": 30, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "16", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 45, "lat": 6005290.2845184356, "lon": 32506704.650234036, "id_full": "consumers-30", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506704.650234036147594, 6005290.28451843559742 ] } }, -{ "type": "Feature", "properties": { "id": 31, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "4", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6005258.7629708126, "lon": 32506614.063669916, "id_full": "consumers-31", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506614.063669916242361, 6005258.762970812618732 ] } }, -{ "type": "Feature", "properties": { "id": 32, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "2", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005256.8101138333, "lon": 32506605.618858032, "id_full": "consumers-32", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506605.618858031928539, 6005256.810113833285868 ] } }, -{ "type": "Feature", "properties": { "id": 33, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "20", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6005297.4618501561, "lon": 32506730.313123833, "id_full": "consumers-33", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506730.31312383338809, 6005297.461850156076252 ] } }, -{ "type": "Feature", "properties": { "id": 34, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "24", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005301.12637321, "lon": 32506753.056819227, "id_full": "consumers-34", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506753.056819226592779, 6005301.126373209990561 ] } }, -{ "type": "Feature", "properties": { "id": 35, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "30", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005311.0729700895, "lon": 32506788.281840146, "id_full": "consumers-35", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506788.281840145587921, 6005311.072970089502633 ] } }, -{ "type": "Feature", "properties": { "id": 36, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "18", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 45, "lat": 6005294.7157154214, "lon": 32506718.955610078, "id_full": "consumers-36", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506718.955610077828169, 6005294.715715421363711 ] } }, -{ "type": "Feature", "properties": { "id": 37, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "10", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 41, "lat": 6005274.7220947165, "lon": 32506666.151909608, "id_full": "consumers-37", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506666.151909608393908, 6005274.722094716504216 ] } }, -{ "type": "Feature", "properties": { "id": 38, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "26-28", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 14, "lat": 6005303.687501289, "lon": 32506769.625647165, "id_full": "consumers-38", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506769.625647164881229, 6005303.687501288950443 ] } }, -{ "type": "Feature", "properties": { "id": 39, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "14", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 44, "lat": 6005287.4198318198, "lon": 32506692.624002319, "id_full": "consumers-39", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506692.624002318829298, 6005287.419831819832325 ] } }, -{ "type": "Feature", "properties": { "id": 40, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "22", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6005297.435577265, "lon": 32506744.274268441, "id_full": "consumers-40", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506744.274268440902233, 6005297.435577264986932 ] } }, -{ "type": "Feature", "properties": { "id": 41, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "6", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6005262.7867935933, "lon": 32506628.192365296, "id_full": "consumers-41", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506628.192365296185017, 6005262.78679359331727 ] } }, -{ "type": "Feature", "properties": { "id": 42, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "34", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "commercial", "name": "expert", "opening_hours": "Mo-Fr 10:00-19:00; Sa 10:00-18:00", "shop": "electronics", "toilets:wheelchair": "no", "website": "https://www.expert.de/heide", "wheelchair": "yes", "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6005279.8268856313, "lon": 32506833.239296399, "id_full": "consumers-42", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506833.239296399056911, 6005279.82688563130796 ] } }, -{ "type": "Feature", "properties": { "id": 43, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "12", "addr:postcode": "25746", "addr:street": "Hamburger Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 27, "lat": 6005278.9765616804, "lon": 32506682.052598346, "id_full": "consumers-43", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506682.052598346024752, 6005278.976561680436134 ] } }, -{ "type": "Feature", "properties": { "id": 44, "addr:city": null, "addr:country": null, "addr:housenumber": null, "addr:postcode": null, "addr:street": null, "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 16, "lat": 6004937.8572175251, "lon": 32506694.255998805, "id_full": "consumers-44", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506694.255998805165291, 6004937.857217525132 ] } }, -{ "type": "Feature", "properties": { "id": 45, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "76b", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 47, "lat": 6004774.3591262139, "lon": 32506927.587524947, "id_full": "consumers-45", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506927.587524946779013, 6004774.359126213937998 ] } }, -{ "type": "Feature", "properties": { "id": 46, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "22", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 30, "lat": 6004956.1403770419, "lon": 32506790.224478904, "id_full": "consumers-46", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506790.224478904157877, 6004956.140377041883767 ] } }, -{ "type": "Feature", "properties": { "id": 47, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "51", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6004976.8933069119, "lon": 32506800.673641693, "id_full": "consumers-47", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506800.673641692847013, 6004976.893306911922991 ] } }, -{ "type": "Feature", "properties": { "id": 48, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "32", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 29, "lat": 6004880.5506579829, "lon": 32507019.014392219, "id_full": "consumers-48", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507019.014392219483852, 6004880.550657982937992 ] } }, -{ "type": "Feature", "properties": { "id": 49, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "33", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6005020.8652904602, "lon": 32506703.973344795, "id_full": "consumers-49", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506703.973344795405865, 6005020.865290460176766 ] } }, -{ "type": "Feature", "properties": { "id": 50, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "76a", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 12, "lat": 6004753.8610179368, "lon": 32506933.140344154, "id_full": "consumers-50", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506933.140344154089689, 6004753.861017936840653 ] } }, -{ "type": "Feature", "properties": { "id": 51, "addr:city": null, "addr:country": null, "addr:housenumber": null, "addr:postcode": null, "addr:street": null, "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6004722.3495585024, "lon": 32506942.488591094, "id_full": "consumers-51", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506942.488591093569994, 6004722.349558502435684 ] } }, -{ "type": "Feature", "properties": { "id": 52, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "39", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 21, "lat": 6005023.2842090596, "lon": 32506735.023828138, "id_full": "consumers-52", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506735.023828137665987, 6005023.284209059551358 ] } }, -{ "type": "Feature", "properties": { "id": 53, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "60", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 11, "lat": 6004793.0713815745, "lon": 32507000.015993539, "id_full": "consumers-53", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507000.015993539243937, 6004793.071381574496627 ] } }, -{ "type": "Feature", "properties": { "id": 54, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "5", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005046.1254884526, "lon": 32506779.872779753, "id_full": "consumers-54", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506779.872779753059149, 6005046.125488452613354 ] } }, -{ "type": "Feature", "properties": { "id": 55, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "55", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 14, "lat": 6004963.519941763, "lon": 32506818.462146334, "id_full": "consumers-55", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506818.462146334350109, 6004963.519941763021052 ] } }, -{ "type": "Feature", "properties": { "id": 56, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "57", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6004956.3345135441, "lon": 32506828.5784017, "id_full": "consumers-56", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506828.578401699662209, 6004956.334513544104993 ] } }, -{ "type": "Feature", "properties": { "id": 57, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "96", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 27, "lat": 6004684.7745752875, "lon": 32506812.902853854, "id_full": "consumers-57", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506812.902853854000568, 6004684.774575287476182 ] } }, -{ "type": "Feature", "properties": { "id": 58, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "24", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 32, "lat": 6004949.1519113015, "lon": 32506801.047282852, "id_full": "consumers-58", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506801.047282852232456, 6004949.151911301538348 ] } }, -{ "type": "Feature", "properties": { "id": 59, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "63", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6004933.7556771878, "lon": 32506858.966233443, "id_full": "consumers-59", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506858.966233443468809, 6004933.755677187815309 ] } }, -{ "type": "Feature", "properties": { "id": 60, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "82-88", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "commercial", "name": "Raiffeisen Technik Westküste", "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": "http://geno.raiffeisen.com/hage-technik-heide/", "wheelchair": null, "craft": "agricultural_engines", "fixme": null, "P_heat_max": 20, "lat": 6004703.7686009808, "lon": 32506911.747826271, "id_full": "consumers-60", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506911.747826270759106, 6004703.768600980751216 ] } }, -{ "type": "Feature", "properties": { "id": 61, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "58", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 25, "lat": 6004809.1633872585, "lon": 32506988.24335172, "id_full": "consumers-61", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506988.243351720273495, 6004809.163387258537114 ] } }, -{ "type": "Feature", "properties": { "id": 62, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "87", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 22, "lat": 6004828.5793374656, "lon": 32507038.519862838, "id_full": "consumers-62", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507038.519862838089466, 6004828.579337465576828 ] } }, -{ "type": "Feature", "properties": { "id": 63, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "71", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 11, "lat": 6004899.3544207178, "lon": 32506907.280615181, "id_full": "consumers-63", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506907.28061518073082, 6004899.354420717805624 ] } }, -{ "type": "Feature", "properties": { "id": 64, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "37", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 41, "lat": 6005021.0393528491, "lon": 32506724.17186816, "id_full": "consumers-64", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506724.171868160367012, 6005021.039352849125862 ] } }, -{ "type": "Feature", "properties": { "id": 65, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "81", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6004852.6126259826, "lon": 32506969.203761656, "id_full": "consumers-65", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506969.203761655837297, 6004852.612625982612371 ] } }, -{ "type": "Feature", "properties": { "id": 66, "addr:city": null, "addr:country": null, "addr:housenumber": null, "addr:postcode": null, "addr:street": null, "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 41, "lat": 6004918.2173551591, "lon": 32506698.879691444, "id_full": "consumers-66", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506698.879691444337368, 6004918.217355159111321 ] } }, -{ "type": "Feature", "properties": { "id": 67, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "22", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6004944.8971530152, "lon": 32506922.212192755, "id_full": "consumers-67", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506922.212192755192518, 6004944.897153015248477 ] } }, -{ "type": "Feature", "properties": { "id": 68, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "26", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 33, "lat": 6004941.1577597568, "lon": 32506809.732562188, "id_full": "consumers-68", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506809.732562188059092, 6004941.157759756781161 ] } }, -{ "type": "Feature", "properties": { "id": 69, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "98", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 41, "lat": 6004673.4424787452, "lon": 32506802.083184846, "id_full": "consumers-69", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506802.083184845745564, 6004673.442478745244443 ] } }, -{ "type": "Feature", "properties": { "id": 70, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "12", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 30, "lat": 6004998.7397155529, "lon": 32506705.227665149, "id_full": "consumers-70", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506705.227665148675442, 6004998.739715552888811 ] } }, -{ "type": "Feature", "properties": { "id": 71, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "70", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004755.3701343266, "lon": 32507026.970478341, "id_full": "consumers-71", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507026.970478340983391, 6004755.370134326629341 ] } }, -{ "type": "Feature", "properties": { "id": 72, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "64", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 17, "lat": 6004780.3847515341, "lon": 32507021.442586396, "id_full": "consumers-72", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507021.442586395889521, 6004780.384751534089446 ] } }, -{ "type": "Feature", "properties": { "id": 73, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "85", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6004833.0207618298, "lon": 32507013.935856551, "id_full": "consumers-73", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507013.935856550931931, 6004833.020761829800904 ] } }, -{ "type": "Feature", "properties": { "id": 74, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "79", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 37, "lat": 6004860.1978684654, "lon": 32506960.185587, "id_full": "consumers-74", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506960.185587, 6004860.197868465445936 ] } }, -{ "type": "Feature", "properties": { "id": 75, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "92", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 12, "lat": 6004683.5310968822, "lon": 32506839.303071409, "id_full": "consumers-75", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506839.303071409463882, 6004683.53109688218683 ] } }, -{ "type": "Feature", "properties": { "id": 76, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "59", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 15, "lat": 6004948.3785943724, "lon": 32506840.081979629, "id_full": "consumers-76", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506840.081979628652334, 6004948.378594372421503 ] } }, -{ "type": "Feature", "properties": { "id": 77, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "45", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 27, "lat": 6005001.0415692255, "lon": 32506765.211176943, "id_full": "consumers-77", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506765.211176943033934, 6005001.041569225490093 ] } }, -{ "type": "Feature", "properties": { "id": 78, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "3", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 44, "lat": 6005031.2216832787, "lon": 32506767.961118907, "id_full": "consumers-78", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506767.961118906736374, 6005031.221683278679848 ] } }, -{ "type": "Feature", "properties": { "id": 79, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "73", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6004885.0032165097, "lon": 32506925.711909156, "id_full": "consumers-79", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506925.711909156292677, 6004885.003216509707272 ] } }, -{ "type": "Feature", "properties": { "id": 80, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "78", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 29, "lat": 6004712.9377350034, "lon": 32506942.83220705, "id_full": "consumers-80", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506942.832207050174475, 6004712.93773500341922 ] } }, -{ "type": "Feature", "properties": { "id": 81, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "49", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6004989.4165181965, "lon": 32506785.013545528, "id_full": "consumers-81", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506785.013545528054237, 6004989.416518196463585 ] } }, -{ "type": "Feature", "properties": { "id": 82, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "35", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 25, "lat": 6005021.5204845667, "lon": 32506714.735420961, "id_full": "consumers-82", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506714.73542096093297, 6005021.520484566688538 ] } }, -{ "type": "Feature", "properties": { "id": 83, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "67", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 34, "lat": 6004918.728310721, "lon": 32506879.134264857, "id_full": "consumers-83", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506879.13426485657692, 6004918.728310720995069 ] } }, -{ "type": "Feature", "properties": { "id": 84, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "20", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 39, "lat": 6004964.5058532031, "lon": 32506780.074384347, "id_full": "consumers-84", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506780.074384346604347, 6004964.505853203125298 ] } }, -{ "type": "Feature", "properties": { "id": 85, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "8", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 26, "lat": 6004960.5605987525, "lon": 32506702.267492007, "id_full": "consumers-85", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506702.26749200746417, 6004960.560598752461374 ] } }, -{ "type": "Feature", "properties": { "id": 86, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "31", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "residential", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 42, "lat": 6005029.7369962903, "lon": 32506693.432355523, "id_full": "consumers-86", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506693.432355523109436, 6005029.736996290273964 ] } }, -{ "type": "Feature", "properties": { "id": 87, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "65", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 40, "lat": 6004927.2545030387, "lon": 32506868.723374065, "id_full": "consumers-87", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506868.72337406501174, 6004927.254503038711846 ] } }, -{ "type": "Feature", "properties": { "id": 88, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "1", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 29, "lat": 6005027.5448837001, "lon": 32506755.536638945, "id_full": "consumers-88", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506755.53663894534111, 6005027.544883700087667 ] } }, -{ "type": "Feature", "properties": { "id": 89, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "47", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004993.7782234615, "lon": 32506773.220998388, "id_full": "consumers-89", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506773.220998387783766, 6004993.778223461471498 ] } }, -{ "type": "Feature", "properties": { "id": 90, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "61", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 46, "lat": 6004943.9131416231, "lon": 32506848.507188026, "id_full": "consumers-90", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506848.507188025861979, 6004943.913141623139381 ] } }, -{ "type": "Feature", "properties": { "id": 91, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "83", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 45, "lat": 6004842.7832632717, "lon": 32506995.652057737, "id_full": "consumers-91", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506995.652057737112045, 6004842.783263271674514 ] } }, -{ "type": "Feature", "properties": { "id": 92, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "75", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 32, "lat": 6004875.8126192996, "lon": 32506938.311188925, "id_full": "consumers-92", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506938.31118892505765, 6004875.812619299627841 ] } }, -{ "type": "Feature", "properties": { "id": 93, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "77", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 16, "lat": 6004870.7620361941, "lon": 32506945.479837418, "id_full": "consumers-93", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506945.479837417602539, 6004870.762036194093525 ] } }, -{ "type": "Feature", "properties": { "id": 94, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "23", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 33, "lat": 6005074.0846991772, "lon": 32506669.221525811, "id_full": "consumers-94", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506669.221525810658932, 6005074.084699177183211 ] } }, -{ "type": "Feature", "properties": { "id": 95, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "69", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 34, "lat": 6004909.8316204697, "lon": 32506895.810843542, "id_full": "consumers-95", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506895.810843542218208, 6004909.831620469689369 ] } }, -{ "type": "Feature", "properties": { "id": 96, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "74", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "commercial", "name": "TC-Hydraulik", "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": "https://www.tc-hydraulik.de/", "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 34, "lat": 6004753.4929851666, "lon": 32506973.329735886, "id_full": "consumers-96", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506973.329735886305571, 6004753.492985166609287 ] } }, -{ "type": "Feature", "properties": { "id": 97, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "36", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004909.9075214053, "lon": 32506854.906595927, "id_full": "consumers-97", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506854.906595926731825, 6004909.907521405257285 ] } }, -{ "type": "Feature", "properties": { "id": 98, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "46", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 33, "lat": 6004869.6315114992, "lon": 32506910.150826644, "id_full": "consumers-98", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506910.150826644152403, 6004869.631511499173939 ] } }, -{ "type": "Feature", "properties": { "id": 99, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "42", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 20, "lat": 6004890.3840006869, "lon": 32506879.766101882, "id_full": "consumers-99", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506879.766101881861687, 6004890.38400068692863 ] } }, -{ "type": "Feature", "properties": { "id": 100, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "44", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6004879.2373334914, "lon": 32506894.072427262, "id_full": "consumers-100", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506894.07242726162076, 6004879.237333491444588 ] } }, -{ "type": "Feature", "properties": { "id": 101, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "34", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004914.9350390593, "lon": 32506845.747697491, "id_full": "consumers-101", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506845.747697491198778, 6004914.935039059258997 ] } }, -{ "type": "Feature", "properties": { "id": 102, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "32", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6004924.4554928178, "lon": 32506835.314610954, "id_full": "consumers-102", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506835.314610954374075, 6004924.455492817796767 ] } }, -{ "type": "Feature", "properties": { "id": 103, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "30", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "semidetached_house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 16, "lat": 6004931.0617589271, "lon": 32506824.472275782, "id_full": "consumers-103", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506824.472275782376528, 6004931.061758927069604 ] } }, -{ "type": "Feature", "properties": { "id": 104, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "17", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005174.3473145496, "lon": 32506923.191534139, "id_full": "consumers-104", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506923.191534139215946, 6005174.347314549610019 ] } }, -{ "type": "Feature", "properties": { "id": 105, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "18", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6005127.5398804722, "lon": 32506881.192307916, "id_full": "consumers-105", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506881.192307915538549, 6005127.539880472235382 ] } }, -{ "type": "Feature", "properties": { "id": 106, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "22", "addr:postcode": "25746", "addr:street": "Hans-Böckler-Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 19, "lat": 6005086.207022367, "lon": 32506899.35027615, "id_full": "consumers-106", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506899.350276149809361, 6005086.207022367045283 ] } }, -{ "type": "Feature", "properties": { "id": 107, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "72", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 47, "lat": 6004727.2611511331, "lon": 32506994.143456344, "id_full": "consumers-107", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506994.143456343561411, 6004727.261151133105159 ] } }, -{ "type": "Feature", "properties": { "id": 108, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "13", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 21, "lat": 6005046.9658822007, "lon": 32506862.415233277, "id_full": "consumers-108", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506862.41523327678442, 6005046.965882200747728 ] } }, -{ "type": "Feature", "properties": { "id": 109, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "17", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 33, "lat": 6005066.3100751257, "lon": 32506975.025434896, "id_full": "consumers-109", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506975.025434896349907, 6005066.310075125657022 ] } }, -{ "type": "Feature", "properties": { "id": 110, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "9", "addr:postcode": "25746", "addr:street": "Stettiner Straße", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 37, "lat": 6005044.4395875167, "lon": 32506836.588345636, "id_full": "consumers-110", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506836.588345635682344, 6005044.439587516710162 ] } }, -{ "type": "Feature", "properties": { "id": 111, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "10", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 12, "lat": 6005088.549216033, "lon": 32506830.142781686, "id_full": "consumers-111", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506830.142781686037779, 6005088.549216032959521 ] } }, -{ "type": "Feature", "properties": { "id": 112, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "13", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 26, "lat": 6005110.2026483128, "lon": 32506806.709942408, "id_full": "consumers-112", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506806.709942407906055, 6005110.202648312784731 ] } }, -{ "type": "Feature", "properties": { "id": 113, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "14", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 13, "lat": 6005113.4016366536, "lon": 32506831.311364524, "id_full": "consumers-113", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506831.311364524066448, 6005113.401636653579772 ] } }, -{ "type": "Feature", "properties": { "id": 114, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "17", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 45, "lat": 6005131.7377835736, "lon": 32506804.718359739, "id_full": "consumers-114", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506804.718359738588333, 6005131.737783573567867 ] } }, -{ "type": "Feature", "properties": { "id": 115, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "18", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 36, "lat": 6005134.7096251054, "lon": 32506829.517301597, "id_full": "consumers-115", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506829.517301596701145, 6005134.709625105373561 ] } }, -{ "type": "Feature", "properties": { "id": 116, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "21", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6005156.1239074264, "lon": 32506804.629356716, "id_full": "consumers-116", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506804.62935671582818, 6005156.12390742637217 ] } }, -{ "type": "Feature", "properties": { "id": 117, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "22", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6005157.6771208365, "lon": 32506826.114318337, "id_full": "consumers-117", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506826.114318337291479, 6005157.67712083645165 ] } }, -{ "type": "Feature", "properties": { "id": 118, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "5", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 15, "lat": 6005064.420167109, "lon": 32506810.402725525, "id_full": "consumers-118", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506810.402725525200367, 6005064.420167108997703 ] } }, -{ "type": "Feature", "properties": { "id": 119, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "6", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 26, "lat": 6005065.9573120773, "lon": 32506832.289393526, "id_full": "consumers-119", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506832.289393525570631, 6005065.957312077283859 ] } }, -{ "type": "Feature", "properties": { "id": 120, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "9", "addr:postcode": "25746", "addr:street": "Im Redder", "building": "apartments", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 37, "lat": 6005086.7101640236, "lon": 32506809.311211679, "id_full": "consumers-120", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506809.311211679130793, 6005086.710164023563266 ] } }, -{ "type": "Feature", "properties": { "id": 121, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "10", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 16, "lat": 6004978.6460267892, "lon": 32506901.808295634, "id_full": "consumers-121", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506901.808295633643866, 6004978.646026789210737 ] } }, -{ "type": "Feature", "properties": { "id": 122, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "11", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6004974.6427852949, "lon": 32506932.119569965, "id_full": "consumers-122", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506932.119569964706898, 6004974.642785294912755 ] } }, -{ "type": "Feature", "properties": { "id": 123, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "12", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 18, "lat": 6004974.0920868777, "lon": 32506904.584658977, "id_full": "consumers-123", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506904.584658976644278, 6004974.092086877673864 ] } }, -{ "type": "Feature", "properties": { "id": 124, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "13", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6004969.6070375647, "lon": 32506933.47070761, "id_full": "consumers-124", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506933.470707610249519, 6004969.607037564739585 ] } }, -{ "type": "Feature", "properties": { "id": 125, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "16", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 39, "lat": 6004958.9032218512, "lon": 32506913.902167611, "id_full": "consumers-125", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506913.902167610824108, 6004958.903221851214767 ] } }, -{ "type": "Feature", "properties": { "id": 126, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "17", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 10, "lat": 6004964.7884946056, "lon": 32506953.863235988, "id_full": "consumers-126", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506953.863235987722874, 6004964.788494605571032 ] } }, -{ "type": "Feature", "properties": { "id": 127, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "18", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 34, "lat": 6004954.2254579682, "lon": 32506916.657145664, "id_full": "consumers-127", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506916.657145664095879, 6004954.225457968190312 ] } }, -{ "type": "Feature", "properties": { "id": 128, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "19", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 10, "lat": 6004965.780332461, "lon": 32506959.145298298, "id_full": "consumers-128", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506959.145298298448324, 6004965.780332460999489 ] } }, -{ "type": "Feature", "properties": { "id": 129, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "2", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 37, "lat": 6005002.4358568806, "lon": 32506885.263785467, "id_full": "consumers-129", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506885.263785466551781, 6005002.435856880620122 ] } }, -{ "type": "Feature", "properties": { "id": 130, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "20", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 19, "lat": 6004949.5491307126, "lon": 32506919.414187755, "id_full": "consumers-130", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506919.414187755435705, 6004949.549130712635815 ] } }, -{ "type": "Feature", "properties": { "id": 131, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "21", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 26, "lat": 6004966.773820038, "lon": 32506964.426920805, "id_full": "consumers-131", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506964.426920805126429, 6004966.773820037953556 ] } }, -{ "type": "Feature", "properties": { "id": 132, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "26", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 29, "lat": 6004939.799233024, "lon": 32506943.249371059, "id_full": "consumers-132", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506943.249371059238911, 6004939.799233024008572 ] } }, -{ "type": "Feature", "properties": { "id": 133, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "28", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 32, "lat": 6004940.7919222889, "lon": 32506948.55897538, "id_full": "consumers-133", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506948.558975379914045, 6004940.791922288946807 ] } }, -{ "type": "Feature", "properties": { "id": 134, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "3", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 43, "lat": 6004999.1079525622, "lon": 32506915.618785091, "id_full": "consumers-134", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506915.618785090744495, 6004999.10795256216079 ] } }, -{ "type": "Feature", "properties": { "id": 135, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "30", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 44, "lat": 6004941.7846176708, "lon": 32506953.868577439, "id_full": "consumers-135", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506953.868577439337969, 6004941.784617670811713 ] } }, -{ "type": "Feature", "properties": { "id": 136, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "32", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 11, "lat": 6004943.7588363402, "lon": 32506964.445381105, "id_full": "consumers-136", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506964.445381104946136, 6004943.758836340159178 ] } }, -{ "type": "Feature", "properties": { "id": 137, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "34", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6004944.7014368353, "lon": 32506969.725691035, "id_full": "consumers-137", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506969.7256910353899, 6004944.701436835341156 ] } }, -{ "type": "Feature", "properties": { "id": 138, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "36", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 21, "lat": 6004945.6384801846, "lon": 32506975.006007243, "id_full": "consumers-138", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506975.006007242947817, 6004945.638480184599757 ] } }, -{ "type": "Feature", "properties": { "id": 139, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "5", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 24, "lat": 6004994.5352942692, "lon": 32506918.35142066, "id_full": "consumers-139", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506918.351420659571886, 6004994.53529426921159 ] } }, -{ "type": "Feature", "properties": { "id": 140, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "6", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 45, "lat": 6004994.836294149, "lon": 32506891.986426871, "id_full": "consumers-140", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506891.986426871269941, 6004994.836294149048626 ] } }, -{ "type": "Feature", "properties": { "id": 141, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "7", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 32, "lat": 6004989.9571988843, "lon": 32506921.078184702, "id_full": "consumers-141", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506921.078184701502323, 6004989.95719888433814 ] } }, -{ "type": "Feature", "properties": { "id": 142, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "8", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 21, "lat": 6004983.1926160334, "lon": 32506899.017207444, "id_full": "consumers-142", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506899.017207443714142, 6004983.192616033367813 ] } }, -{ "type": "Feature", "properties": { "id": 143, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "9", "addr:postcode": "25746", "addr:street": "Neue Heimat", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004978.5361703169, "lon": 32506928.226274975, "id_full": "consumers-143", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506928.226274974644184, 6004978.53617031686008 ] } }, -{ "type": "Feature", "properties": { "id": 144, "addr:city": null, "addr:country": null, "addr:housenumber": null, "addr:postcode": null, "addr:street": null, "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 10, "lat": 6004970.7615029663, "lon": 32506675.289672256, "id_full": "consumers-144", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506675.289672255516052, 6004970.761502966284752 ] } }, -{ "type": "Feature", "properties": { "id": 145, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "8b", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 46, "lat": 6004927.4596800348, "lon": 32506685.417284355, "id_full": "consumers-145", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506685.417284354567528, 6004927.459680034779012 ] } }, -{ "type": "Feature", "properties": { "id": 146, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "8", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 49, "lat": 6004762.6165426858, "lon": 32506756.074181572, "id_full": "consumers-146", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506756.074181571602821, 6004762.616542685776949 ] } }, -{ "type": "Feature", "properties": { "id": 147, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1b", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 28, "lat": 6004665.5432580691, "lon": 32506759.306074966, "id_full": "consumers-147", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506759.306074965745211, 6004665.543258069083095 ] } }, -{ "type": "Feature", "properties": { "id": 148, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "5", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 10, "lat": 6004698.6937393323, "lon": 32506762.631048795, "id_full": "consumers-148", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506762.631048794835806, 6004698.693739332258701 ] } }, -{ "type": "Feature", "properties": { "id": 149, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "10", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 31, "lat": 6004761.1497047683, "lon": 32506738.659805857, "id_full": "consumers-149", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506738.659805856645107, 6004761.149704768322408 ] } }, -{ "type": "Feature", "properties": { "id": 150, "addr:city": "Heide", "addr:country": null, "addr:housenumber": "100", "addr:postcode": "25746", "addr:street": "Berliner Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 12, "lat": 6004676.5512994817, "lon": 32506788.54180884, "id_full": "consumers-150", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506788.541808839887381, 6004676.551299481652677 ] } }, -{ "type": "Feature", "properties": { "id": 151, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1a", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 23, "lat": 6004667.4967969265, "lon": 32506765.09116878, "id_full": "consumers-151", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506765.091168779879808, 6004667.496796926483512 ] } }, -{ "type": "Feature", "properties": { "id": 152, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1c", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 48, "lat": 6004663.6329921409, "lon": 32506753.646940958, "id_full": "consumers-152", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506753.64694095775485, 6004663.632992140948772 ] } }, -{ "type": "Feature", "properties": { "id": 153, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1d", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 46, "lat": 6004662.5675576301, "lon": 32506747.540288478, "id_full": "consumers-153", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506747.540288478136063, 6004662.567557630129158 ] } }, -{ "type": "Feature", "properties": { "id": 154, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1e", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 39, "lat": 6004660.608715592, "lon": 32506741.738194317, "id_full": "consumers-154", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506741.738194316625595, 6004660.608715591952205 ] } }, -{ "type": "Feature", "properties": { "id": 155, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "1f", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "house", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 27, "lat": 6004658.7613560716, "lon": 32506736.262873858, "id_full": "consumers-155", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506736.262873858213425, 6004658.761356071569026 ] } }, -{ "type": "Feature", "properties": { "id": 156, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "2", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "P_heat_max": 38, "lat": 6004694.7449218221, "lon": 32506753.26549615, "id_full": "consumers-156", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506753.265496149659157, 6004694.744921822100878 ] } }, -{ "type": "Feature", "properties": { "id": 157, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "7", "addr:postcode": "25746", "addr:street": "Auguste-Ebeling-Straße", "building": "detached", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": "Umriss&Position", "P_heat_max": 28, "lat": 6004713.7517163604, "lon": 32506752.307921536, "id_full": "consumers-157", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506752.307921536266804, 6004713.751716360449791 ] } } +{ "type": "Feature", "properties": { "id": 0, "P_heat_max": 23, "id_full": "consumers-0", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506955.09166768565774, 6005014.398159652017057 ] } }, +{ "type": "Feature", "properties": { "id": 1, "P_heat_max": 13, "id_full": "consumers-1", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506801.195647560060024, 6005039.200124303810298 ] } }, +{ "type": "Feature", "properties": { "id": 2, "P_heat_max": 31, "id_full": "consumers-2", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506947.681407205760479, 6005117.471685512922704 ] } }, +{ "type": "Feature", "properties": { "id": 3, "P_heat_max": 31, "id_full": "consumers-3", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506936.092872586101294, 6004965.141892026178539 ] } }, +{ "type": "Feature", "properties": { "id": 4, "P_heat_max": 10, "id_full": "consumers-4", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506912.159830294549465, 6005020.755500017665327 ] } }, +{ "type": "Feature", "properties": { "id": 5, "P_heat_max": 31, "id_full": "consumers-5", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506905.141416907310486, 6005069.070721743628383 ] } }, +{ "type": "Feature", "properties": { "id": 6, "P_heat_max": 29, "id_full": "consumers-6", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506860.149385698139668, 6005157.808408037759364 ] } }, +{ "type": "Feature", "properties": { "id": 7, "P_heat_max": 19, "id_full": "consumers-7", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506980.289583649486303, 6004946.575534526258707 ] } }, +{ "type": "Feature", "properties": { "id": 8, "P_heat_max": 37, "id_full": "consumers-8", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506907.347752008587122, 6004969.531430990435183 ] } }, +{ "type": "Feature", "properties": { "id": 9, "P_heat_max": 43, "id_full": "consumers-9", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506831.70174864679575, 6005105.872498782351613 ] } }, +{ "type": "Feature", "properties": { "id": 10, "P_heat_max": 21, "id_full": "consumers-10", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506807.097907729446888, 6005102.670010705478489 ] } }, +{ "type": "Feature", "properties": { "id": 11, "P_heat_max": 24, "id_full": "consumers-11", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506912.889645788818598, 6005003.684148876927793 ] } }, +{ "type": "Feature", "properties": { "id": 12, "P_heat_max": 43, "id_full": "consumers-12", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506805.105399034917355, 6005124.209070673212409 ] } }, +{ "type": "Feature", "properties": { "id": 13, "P_heat_max": 18, "id_full": "consumers-13", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506969.710390973836184, 6004967.766494301147759 ] } }, +{ "type": "Feature", "properties": { "id": 14, "P_heat_max": 47, "id_full": "consumers-14", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506988.938321895897388, 6004917.879654813557863 ] } }, +{ "type": "Feature", "properties": { "id": 15, "P_heat_max": 19, "id_full": "consumers-15", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506809.699875, 6005079.181641146540642 ] } }, +{ "type": "Feature", "properties": { "id": 16, "P_heat_max": 24, "id_full": "consumers-16", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506937.939764458686113, 6004938.806549877859652 ] } }, +{ "type": "Feature", "properties": { "id": 17, "P_heat_max": 35, "id_full": "consumers-17", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506830.531552042812109, 6005081.019889062270522 ] } }, +{ "type": "Feature", "properties": { "id": 18, "P_heat_max": 13, "id_full": "consumers-18", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506810.789779346436262, 6005056.891455434262753 ] } }, +{ "type": "Feature", "properties": { "id": 19, "P_heat_max": 22, "id_full": "consumers-19", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506826.503114428371191, 6005150.147360728122294 ] } }, +{ "type": "Feature", "properties": { "id": 20, "P_heat_max": 31, "id_full": "consumers-20", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506805.018891096115112, 6005148.591890611685812 ] } }, +{ "type": "Feature", "properties": { "id": 21, "P_heat_max": 43, "id_full": "consumers-21", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506832.678980179131031, 6005058.425298580899835 ] } }, +{ "type": "Feature", "properties": { "id": 22, "P_heat_max": 23, "id_full": "consumers-22", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506890.606906868517399, 6005049.689807103946805 ] } }, +{ "type": "Feature", "properties": { "id": 23, "P_heat_max": 48, "id_full": "consumers-23", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506878.119526300579309, 6005143.90860013011843 ] } }, +{ "type": "Feature", "properties": { "id": 24, "P_heat_max": 41, "id_full": "consumers-24", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506885.800216242671013, 6005111.882618607953191 ] } }, +{ "type": "Feature", "properties": { "id": 25, "P_heat_max": 11, "id_full": "consumers-25", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506887.71679937466979, 6004998.264221362769604 ] } }, +{ "type": "Feature", "properties": { "id": 26, "P_heat_max": 30, "id_full": "consumers-26", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506832.157563894987106, 6005127.307513532228768 ] } }, +{ "type": "Feature", "properties": { "id": 27, "P_heat_max": 42, "id_full": "consumers-27", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506849.502673149108887, 6005045.700300958938897 ] } }, +{ "type": "Feature", "properties": { "id": 28, "P_heat_max": 38, "id_full": "consumers-28", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506748.283596221357584, 6005117.573655765503645 ] } }, +{ "type": "Feature", "properties": { "id": 29, "P_heat_max": 12, "id_full": "consumers-29", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506643.90064138174057, 6005268.925049259327352 ] } }, +{ "type": "Feature", "properties": { "id": 30, "P_heat_max": 45, "id_full": "consumers-30", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506704.650234036147594, 6005290.28451843559742 ] } }, +{ "type": "Feature", "properties": { "id": 31, "P_heat_max": 49, "id_full": "consumers-31", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506614.063669916242361, 6005258.762970812618732 ] } }, +{ "type": "Feature", "properties": { "id": 32, "P_heat_max": 36, "id_full": "consumers-32", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506605.618858031928539, 6005256.810113833285868 ] } }, +{ "type": "Feature", "properties": { "id": 33, "P_heat_max": 49, "id_full": "consumers-33", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506730.31312383338809, 6005297.461850156076252 ] } }, +{ "type": "Feature", "properties": { "id": 34, "P_heat_max": 36, "id_full": "consumers-34", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506753.056819226592779, 6005301.126373209990561 ] } }, +{ "type": "Feature", "properties": { "id": 35, "P_heat_max": 36, "id_full": "consumers-35", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506788.281840145587921, 6005311.072970089502633 ] } }, +{ "type": "Feature", "properties": { "id": 36, "P_heat_max": 45, "id_full": "consumers-36", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506718.955610077828169, 6005294.715715421363711 ] } }, +{ "type": "Feature", "properties": { "id": 37, "P_heat_max": 41, "id_full": "consumers-37", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506666.151909608393908, 6005274.722094716504216 ] } }, +{ "type": "Feature", "properties": { "id": 38, "P_heat_max": 14, "id_full": "consumers-38", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506769.625647164881229, 6005303.687501288950443 ] } }, +{ "type": "Feature", "properties": { "id": 39, "P_heat_max": 44, "id_full": "consumers-39", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506692.624002318829298, 6005287.419831819832325 ] } }, +{ "type": "Feature", "properties": { "id": 40, "P_heat_max": 48, "id_full": "consumers-40", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506744.274268440902233, 6005297.435577264986932 ] } }, +{ "type": "Feature", "properties": { "id": 41, "P_heat_max": 38, "id_full": "consumers-41", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506628.192365296185017, 6005262.78679359331727 ] } }, +{ "type": "Feature", "properties": { "id": 42, "P_heat_max": 31, "id_full": "consumers-42", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506833.239296399056911, 6005279.82688563130796 ] } }, +{ "type": "Feature", "properties": { "id": 43, "P_heat_max": 27, "id_full": "consumers-43", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506682.052598346024752, 6005278.976561680436134 ] } }, +{ "type": "Feature", "properties": { "id": 44, "P_heat_max": 16, "id_full": "consumers-44", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506694.255998805165291, 6004937.857217525132 ] } }, +{ "type": "Feature", "properties": { "id": 45, "P_heat_max": 47, "id_full": "consumers-45", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506927.587524946779013, 6004774.359126213937998 ] } }, +{ "type": "Feature", "properties": { "id": 46, "P_heat_max": 30, "id_full": "consumers-46", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506790.224478904157877, 6004956.140377041883767 ] } }, +{ "type": "Feature", "properties": { "id": 47, "P_heat_max": 49, "id_full": "consumers-47", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506800.673641692847013, 6004976.893306911922991 ] } }, +{ "type": "Feature", "properties": { "id": 48, "P_heat_max": 29, "id_full": "consumers-48", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507019.014392219483852, 6004880.550657982937992 ] } }, +{ "type": "Feature", "properties": { "id": 49, "P_heat_max": 49, "id_full": "consumers-49", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506703.973344795405865, 6005020.865290460176766 ] } }, +{ "type": "Feature", "properties": { "id": 50, "P_heat_max": 12, "id_full": "consumers-50", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506933.140344154089689, 6004753.861017936840653 ] } }, +{ "type": "Feature", "properties": { "id": 51, "P_heat_max": 24, "id_full": "consumers-51", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506942.488591093569994, 6004722.349558502435684 ] } }, +{ "type": "Feature", "properties": { "id": 52, "P_heat_max": 21, "id_full": "consumers-52", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506735.023828137665987, 6005023.284209059551358 ] } }, +{ "type": "Feature", "properties": { "id": 53, "P_heat_max": 11, "id_full": "consumers-53", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507000.015993539243937, 6004793.071381574496627 ] } }, +{ "type": "Feature", "properties": { "id": 54, "P_heat_max": 36, "id_full": "consumers-54", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506779.872779753059149, 6005046.125488452613354 ] } }, +{ "type": "Feature", "properties": { "id": 55, "P_heat_max": 14, "id_full": "consumers-55", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506818.462146334350109, 6004963.519941763021052 ] } }, +{ "type": "Feature", "properties": { "id": 56, "P_heat_max": 48, "id_full": "consumers-56", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506828.578401699662209, 6004956.334513544104993 ] } }, +{ "type": "Feature", "properties": { "id": 57, "P_heat_max": 27, "id_full": "consumers-57", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506812.902853854000568, 6004684.774575287476182 ] } }, +{ "type": "Feature", "properties": { "id": 58, "P_heat_max": 32, "id_full": "consumers-58", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506801.047282852232456, 6004949.151911301538348 ] } }, +{ "type": "Feature", "properties": { "id": 59, "P_heat_max": 23, "id_full": "consumers-59", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506858.966233443468809, 6004933.755677187815309 ] } }, +{ "type": "Feature", "properties": { "id": 60, "P_heat_max": 20, "id_full": "consumers-60", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506911.747826270759106, 6004703.768600980751216 ] } }, +{ "type": "Feature", "properties": { "id": 61, "P_heat_max": 25, "id_full": "consumers-61", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506988.243351720273495, 6004809.163387258537114 ] } }, +{ "type": "Feature", "properties": { "id": 62, "P_heat_max": 22, "id_full": "consumers-62", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507038.519862838089466, 6004828.579337465576828 ] } }, +{ "type": "Feature", "properties": { "id": 63, "P_heat_max": 11, "id_full": "consumers-63", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506907.28061518073082, 6004899.354420717805624 ] } }, +{ "type": "Feature", "properties": { "id": 64, "P_heat_max": 41, "id_full": "consumers-64", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506724.171868160367012, 6005021.039352849125862 ] } }, +{ "type": "Feature", "properties": { "id": 65, "P_heat_max": 49, "id_full": "consumers-65", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506969.203761655837297, 6004852.612625982612371 ] } }, +{ "type": "Feature", "properties": { "id": 66, "P_heat_max": 41, "id_full": "consumers-66", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506698.879691444337368, 6004918.217355159111321 ] } }, +{ "type": "Feature", "properties": { "id": 67, "P_heat_max": 49, "id_full": "consumers-67", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506922.212192755192518, 6004944.897153015248477 ] } }, +{ "type": "Feature", "properties": { "id": 68, "P_heat_max": 33, "id_full": "consumers-68", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506809.732562188059092, 6004941.157759756781161 ] } }, +{ "type": "Feature", "properties": { "id": 69, "P_heat_max": 41, "id_full": "consumers-69", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506802.083184845745564, 6004673.442478745244443 ] } }, +{ "type": "Feature", "properties": { "id": 70, "P_heat_max": 30, "id_full": "consumers-70", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506705.227665148675442, 6004998.739715552888811 ] } }, +{ "type": "Feature", "properties": { "id": 71, "P_heat_max": 38, "id_full": "consumers-71", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507026.970478340983391, 6004755.370134326629341 ] } }, +{ "type": "Feature", "properties": { "id": 72, "P_heat_max": 17, "id_full": "consumers-72", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507021.442586395889521, 6004780.384751534089446 ] } }, +{ "type": "Feature", "properties": { "id": 73, "P_heat_max": 43, "id_full": "consumers-73", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32507013.935856550931931, 6004833.020761829800904 ] } }, +{ "type": "Feature", "properties": { "id": 74, "P_heat_max": 37, "id_full": "consumers-74", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506960.185587, 6004860.197868465445936 ] } }, +{ "type": "Feature", "properties": { "id": 75, "P_heat_max": 12, "id_full": "consumers-75", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506839.303071409463882, 6004683.53109688218683 ] } }, +{ "type": "Feature", "properties": { "id": 76, "P_heat_max": 15, "id_full": "consumers-76", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506840.081979628652334, 6004948.378594372421503 ] } }, +{ "type": "Feature", "properties": { "id": 77, "P_heat_max": 27, "id_full": "consumers-77", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506765.211176943033934, 6005001.041569225490093 ] } }, +{ "type": "Feature", "properties": { "id": 78, "P_heat_max": 44, "id_full": "consumers-78", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506767.961118906736374, 6005031.221683278679848 ] } }, +{ "type": "Feature", "properties": { "id": 79, "P_heat_max": 48, "id_full": "consumers-79", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506925.711909156292677, 6004885.003216509707272 ] } }, +{ "type": "Feature", "properties": { "id": 80, "P_heat_max": 29, "id_full": "consumers-80", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506942.832207050174475, 6004712.93773500341922 ] } }, +{ "type": "Feature", "properties": { "id": 81, "P_heat_max": 43, "id_full": "consumers-81", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506785.013545528054237, 6004989.416518196463585 ] } }, +{ "type": "Feature", "properties": { "id": 82, "P_heat_max": 25, "id_full": "consumers-82", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506714.73542096093297, 6005021.520484566688538 ] } }, +{ "type": "Feature", "properties": { "id": 83, "P_heat_max": 34, "id_full": "consumers-83", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506879.13426485657692, 6004918.728310720995069 ] } }, +{ "type": "Feature", "properties": { "id": 84, "P_heat_max": 39, "id_full": "consumers-84", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506780.074384346604347, 6004964.505853203125298 ] } }, +{ "type": "Feature", "properties": { "id": 85, "P_heat_max": 26, "id_full": "consumers-85", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506702.26749200746417, 6004960.560598752461374 ] } }, +{ "type": "Feature", "properties": { "id": 86, "P_heat_max": 42, "id_full": "consumers-86", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506693.432355523109436, 6005029.736996290273964 ] } }, +{ "type": "Feature", "properties": { "id": 87, "P_heat_max": 40, "id_full": "consumers-87", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506868.72337406501174, 6004927.254503038711846 ] } }, +{ "type": "Feature", "properties": { "id": 88, "P_heat_max": 29, "id_full": "consumers-88", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506755.53663894534111, 6005027.544883700087667 ] } }, +{ "type": "Feature", "properties": { "id": 89, "P_heat_max": 38, "id_full": "consumers-89", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506773.220998387783766, 6004993.778223461471498 ] } }, +{ "type": "Feature", "properties": { "id": 90, "P_heat_max": 46, "id_full": "consumers-90", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506848.507188025861979, 6004943.913141623139381 ] } }, +{ "type": "Feature", "properties": { "id": 91, "P_heat_max": 45, "id_full": "consumers-91", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506995.652057737112045, 6004842.783263271674514 ] } }, +{ "type": "Feature", "properties": { "id": 92, "P_heat_max": 32, "id_full": "consumers-92", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506938.31118892505765, 6004875.812619299627841 ] } }, +{ "type": "Feature", "properties": { "id": 93, "P_heat_max": 16, "id_full": "consumers-93", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506945.479837417602539, 6004870.762036194093525 ] } }, +{ "type": "Feature", "properties": { "id": 94, "P_heat_max": 33, "id_full": "consumers-94", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506669.221525810658932, 6005074.084699177183211 ] } }, +{ "type": "Feature", "properties": { "id": 95, "P_heat_max": 34, "id_full": "consumers-95", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506895.810843542218208, 6004909.831620469689369 ] } }, +{ "type": "Feature", "properties": { "id": 96, "P_heat_max": 34, "id_full": "consumers-96", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506973.329735886305571, 6004753.492985166609287 ] } }, +{ "type": "Feature", "properties": { "id": 97, "P_heat_max": 38, "id_full": "consumers-97", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506854.906595926731825, 6004909.907521405257285 ] } }, +{ "type": "Feature", "properties": { "id": 98, "P_heat_max": 33, "id_full": "consumers-98", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506910.150826644152403, 6004869.631511499173939 ] } }, +{ "type": "Feature", "properties": { "id": 99, "P_heat_max": 20, "id_full": "consumers-99", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506879.766101881861687, 6004890.38400068692863 ] } }, +{ "type": "Feature", "properties": { "id": 100, "P_heat_max": 31, "id_full": "consumers-100", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506894.07242726162076, 6004879.237333491444588 ] } }, +{ "type": "Feature", "properties": { "id": 101, "P_heat_max": 38, "id_full": "consumers-101", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506845.747697491198778, 6004914.935039059258997 ] } }, +{ "type": "Feature", "properties": { "id": 102, "P_heat_max": 49, "id_full": "consumers-102", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506835.314610954374075, 6004924.455492817796767 ] } }, +{ "type": "Feature", "properties": { "id": 103, "P_heat_max": 16, "id_full": "consumers-103", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506824.472275782376528, 6004931.061758927069604 ] } }, +{ "type": "Feature", "properties": { "id": 104, "P_heat_max": 36, "id_full": "consumers-104", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506923.191534139215946, 6005174.347314549610019 ] } }, +{ "type": "Feature", "properties": { "id": 105, "P_heat_max": 48, "id_full": "consumers-105", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506881.192307915538549, 6005127.539880472235382 ] } }, +{ "type": "Feature", "properties": { "id": 106, "P_heat_max": 19, "id_full": "consumers-106", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506899.350276149809361, 6005086.207022367045283 ] } }, +{ "type": "Feature", "properties": { "id": 107, "P_heat_max": 47, "id_full": "consumers-107", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506994.143456343561411, 6004727.261151133105159 ] } }, +{ "type": "Feature", "properties": { "id": 108, "P_heat_max": 21, "id_full": "consumers-108", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506862.41523327678442, 6005046.965882200747728 ] } }, +{ "type": "Feature", "properties": { "id": 109, "P_heat_max": 33, "id_full": "consumers-109", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506975.025434896349907, 6005066.310075125657022 ] } }, +{ "type": "Feature", "properties": { "id": 110, "P_heat_max": 37, "id_full": "consumers-110", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506836.588345635682344, 6005044.439587516710162 ] } }, +{ "type": "Feature", "properties": { "id": 111, "P_heat_max": 12, "id_full": "consumers-111", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506830.142781686037779, 6005088.549216032959521 ] } }, +{ "type": "Feature", "properties": { "id": 112, "P_heat_max": 26, "id_full": "consumers-112", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506806.709942407906055, 6005110.202648312784731 ] } }, +{ "type": "Feature", "properties": { "id": 113, "P_heat_max": 13, "id_full": "consumers-113", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506831.311364524066448, 6005113.401636653579772 ] } }, +{ "type": "Feature", "properties": { "id": 114, "P_heat_max": 45, "id_full": "consumers-114", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506804.718359738588333, 6005131.737783573567867 ] } }, +{ "type": "Feature", "properties": { "id": 115, "P_heat_max": 36, "id_full": "consumers-115", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506829.517301596701145, 6005134.709625105373561 ] } }, +{ "type": "Feature", "properties": { "id": 116, "P_heat_max": 24, "id_full": "consumers-116", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506804.62935671582818, 6005156.12390742637217 ] } }, +{ "type": "Feature", "properties": { "id": 117, "P_heat_max": 23, "id_full": "consumers-117", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506826.114318337291479, 6005157.67712083645165 ] } }, +{ "type": "Feature", "properties": { "id": 118, "P_heat_max": 15, "id_full": "consumers-118", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506810.402725525200367, 6005064.420167108997703 ] } }, +{ "type": "Feature", "properties": { "id": 119, "P_heat_max": 26, "id_full": "consumers-119", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506832.289393525570631, 6005065.957312077283859 ] } }, +{ "type": "Feature", "properties": { "id": 120, "P_heat_max": 37, "id_full": "consumers-120", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506809.311211679130793, 6005086.710164023563266 ] } }, +{ "type": "Feature", "properties": { "id": 121, "P_heat_max": 16, "id_full": "consumers-121", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506901.808295633643866, 6004978.646026789210737 ] } }, +{ "type": "Feature", "properties": { "id": 122, "P_heat_max": 31, "id_full": "consumers-122", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506932.119569964706898, 6004974.642785294912755 ] } }, +{ "type": "Feature", "properties": { "id": 123, "P_heat_max": 18, "id_full": "consumers-123", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506904.584658976644278, 6004974.092086877673864 ] } }, +{ "type": "Feature", "properties": { "id": 124, "P_heat_max": 24, "id_full": "consumers-124", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506933.470707610249519, 6004969.607037564739585 ] } }, +{ "type": "Feature", "properties": { "id": 125, "P_heat_max": 39, "id_full": "consumers-125", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506913.902167610824108, 6004958.903221851214767 ] } }, +{ "type": "Feature", "properties": { "id": 126, "P_heat_max": 10, "id_full": "consumers-126", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506953.863235987722874, 6004964.788494605571032 ] } }, +{ "type": "Feature", "properties": { "id": 127, "P_heat_max": 34, "id_full": "consumers-127", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506916.657145664095879, 6004954.225457968190312 ] } }, +{ "type": "Feature", "properties": { "id": 128, "P_heat_max": 10, "id_full": "consumers-128", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506959.145298298448324, 6004965.780332460999489 ] } }, +{ "type": "Feature", "properties": { "id": 129, "P_heat_max": 37, "id_full": "consumers-129", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506885.263785466551781, 6005002.435856880620122 ] } }, +{ "type": "Feature", "properties": { "id": 130, "P_heat_max": 19, "id_full": "consumers-130", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506919.414187755435705, 6004949.549130712635815 ] } }, +{ "type": "Feature", "properties": { "id": 131, "P_heat_max": 26, "id_full": "consumers-131", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506964.426920805126429, 6004966.773820037953556 ] } }, +{ "type": "Feature", "properties": { "id": 132, "P_heat_max": 29, "id_full": "consumers-132", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506943.249371059238911, 6004939.799233024008572 ] } }, +{ "type": "Feature", "properties": { "id": 133, "P_heat_max": 32, "id_full": "consumers-133", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506948.558975379914045, 6004940.791922288946807 ] } }, +{ "type": "Feature", "properties": { "id": 134, "P_heat_max": 43, "id_full": "consumers-134", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506915.618785090744495, 6004999.10795256216079 ] } }, +{ "type": "Feature", "properties": { "id": 135, "P_heat_max": 44, "id_full": "consumers-135", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506953.868577439337969, 6004941.784617670811713 ] } }, +{ "type": "Feature", "properties": { "id": 136, "P_heat_max": 11, "id_full": "consumers-136", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506964.445381104946136, 6004943.758836340159178 ] } }, +{ "type": "Feature", "properties": { "id": 137, "P_heat_max": 23, "id_full": "consumers-137", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506969.7256910353899, 6004944.701436835341156 ] } }, +{ "type": "Feature", "properties": { "id": 138, "P_heat_max": 21, "id_full": "consumers-138", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506975.006007242947817, 6004945.638480184599757 ] } }, +{ "type": "Feature", "properties": { "id": 139, "P_heat_max": 24, "id_full": "consumers-139", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506918.351420659571886, 6004994.53529426921159 ] } }, +{ "type": "Feature", "properties": { "id": 140, "P_heat_max": 45, "id_full": "consumers-140", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506891.986426871269941, 6004994.836294149048626 ] } }, +{ "type": "Feature", "properties": { "id": 141, "P_heat_max": 32, "id_full": "consumers-141", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506921.078184701502323, 6004989.95719888433814 ] } }, +{ "type": "Feature", "properties": { "id": 142, "P_heat_max": 21, "id_full": "consumers-142", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506899.017207443714142, 6004983.192616033367813 ] } }, +{ "type": "Feature", "properties": { "id": 143, "P_heat_max": 38, "id_full": "consumers-143", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506928.226274974644184, 6004978.53617031686008 ] } }, +{ "type": "Feature", "properties": { "id": 144, "P_heat_max": 10, "id_full": "consumers-144", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506675.289672255516052, 6004970.761502966284752 ] } }, +{ "type": "Feature", "properties": { "id": 145, "P_heat_max": 46, "id_full": "consumers-145", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506685.417284354567528, 6004927.459680034779012 ] } }, +{ "type": "Feature", "properties": { "id": 146, "P_heat_max": 49, "id_full": "consumers-146", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506756.074181571602821, 6004762.616542685776949 ] } }, +{ "type": "Feature", "properties": { "id": 147, "P_heat_max": 28, "id_full": "consumers-147", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506759.306074965745211, 6004665.543258069083095 ] } }, +{ "type": "Feature", "properties": { "id": 148, "P_heat_max": 10, "id_full": "consumers-148", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506762.631048794835806, 6004698.693739332258701 ] } }, +{ "type": "Feature", "properties": { "id": 149, "P_heat_max": 31, "id_full": "consumers-149", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506738.659805856645107, 6004761.149704768322408 ] } }, +{ "type": "Feature", "properties": { "id": 150, "P_heat_max": 12, "id_full": "consumers-150", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506788.541808839887381, 6004676.551299481652677 ] } }, +{ "type": "Feature", "properties": { "id": 151, "P_heat_max": 23, "id_full": "consumers-151", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506765.091168779879808, 6004667.496796926483512 ] } }, +{ "type": "Feature", "properties": { "id": 152, "P_heat_max": 48, "id_full": "consumers-152", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506753.64694095775485, 6004663.632992140948772 ] } }, +{ "type": "Feature", "properties": { "id": 153, "P_heat_max": 46, "id_full": "consumers-153", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506747.540288478136063, 6004662.567557630129158 ] } }, +{ "type": "Feature", "properties": { "id": 154, "P_heat_max": 39, "id_full": "consumers-154", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506741.738194316625595, 6004660.608715591952205 ] } }, +{ "type": "Feature", "properties": { "id": 155, "P_heat_max": 27, "id_full": "consumers-155", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506736.262873858213425, 6004658.761356071569026 ] } }, +{ "type": "Feature", "properties": { "id": 156, "P_heat_max": 38, "id_full": "consumers-156", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506753.265496149659157, 6004694.744921822100878 ] } }, +{ "type": "Feature", "properties": { "id": 157, "P_heat_max": 28, "id_full": "consumers-157", "type": "H" }, "geometry": { "type": "Point", "coordinates": [ 32506752.307921536266804, 6004713.751716360449791 ] } } ] } diff --git a/examples/optimisation/network_aggregation/network_data/forks.geojson b/examples/optimisation/network_aggregation/network_data/forks.geojson index 02900b77..ca5e5158 100644 --- a/examples/optimisation/network_aggregation/network_data/forks.geojson +++ b/examples/optimisation/network_aggregation/network_data/forks.geojson @@ -2,169 +2,169 @@ "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, "features": [ -{ "type": "Feature", "properties": { "id": 0, "geometry_wkt": "POINT (32506909.02895385 6005036.67567633)", "id_full": "forks-0", "lat": 6005036.67567633, "lon": 32506909.02895385 }, "geometry": { "type": "Point", "coordinates": [ 32506909.028953850269318, 6005036.675676329992712 ] } }, -{ "type": "Feature", "properties": { "id": 1, "geometry_wkt": "POINT (32506957.828444872 6005039.452800406)", "id_full": "forks-1", "lat": 6005039.4528004061, "lon": 32506957.828444872 }, "geometry": { "type": "Point", "coordinates": [ 32506957.828444872051477, 6005039.452800406143069 ] } }, -{ "type": "Feature", "properties": { "id": 2, "geometry_wkt": "POINT (32506849.569266543 6005309.829775801)", "id_full": "forks-2", "lat": 6005309.8297758009, "lon": 32506849.569266543 }, "geometry": { "type": "Point", "coordinates": [ 32506849.56926654279232, 6005309.829775800928473 ] } }, -{ "type": "Feature", "properties": { "id": 3, "geometry_wkt": "POINT (32506884.118155308 6005233.286900076)", "id_full": "forks-3", "lat": 6005233.2869000761, "lon": 32506884.118155308 }, "geometry": { "type": "Point", "coordinates": [ 32506884.118155308067799, 6005233.286900076083839 ] } }, -{ "type": "Feature", "properties": { "id": 4, "geometry_wkt": "POINT (32507059.691856742 6004782.464862994)", "id_full": "forks-4", "lat": 6004782.4648629939, "lon": 32507059.691856742 }, "geometry": { "type": "Point", "coordinates": [ 32507059.691856741905212, 6004782.464862993918359 ] } }, -{ "type": "Feature", "properties": { "id": 5, "geometry_wkt": "POINT (32507062.90499444 6004810.397108196)", "id_full": "forks-5", "lat": 6004810.3971081963, "lon": 32507062.904994439 }, "geometry": { "type": "Point", "coordinates": [ 32507062.904994439333677, 6004810.397108196280897 ] } }, -{ "type": "Feature", "properties": { "id": 6, "geometry_wkt": "POINT (32507049.679193664 6004797.514717632)", "id_full": "forks-6", "lat": 6004797.514717632, "lon": 32507049.679193664 }, "geometry": { "type": "Point", "coordinates": [ 32507049.679193664342165, 6004797.514717631973326 ] } }, -{ "type": "Feature", "properties": { "id": 7, "geometry_wkt": "POINT (32506824.270652454 6005308.401445041)", "id_full": "forks-7", "lat": 6005308.4014450414, "lon": 32506824.270652454 }, "geometry": { "type": "Point", "coordinates": [ 32506824.270652454346418, 6005308.401445041410625 ] } }, -{ "type": "Feature", "properties": { "id": 8, "geometry_wkt": "POINT (32507029.144705784 6004800.936656161)", "id_full": "forks-8", "lat": 6004800.9366561612, "lon": 32507029.144705784 }, "geometry": { "type": "Point", "coordinates": [ 32507029.144705783575773, 6004800.936656161211431 ] } }, -{ "type": "Feature", "properties": { "id": 9, "geometry_wkt": "POINT (32506689.95937176 6005014.698657348)", "id_full": "forks-9", "lat": 6005014.6986573478, "lon": 32506689.95937176 }, "geometry": { "type": "Point", "coordinates": [ 32506689.959371760487556, 6005014.698657347820699 ] } }, -{ "type": "Feature", "properties": { "id": 10, "geometry_wkt": "POINT (32506654.861689653 6005025.3310652645)", "id_full": "forks-10", "lat": 6005025.3310652645, "lon": 32506654.861689653 }, "geometry": { "type": "Point", "coordinates": [ 32506654.861689653247595, 6005025.33106526453048 ] } }, -{ "type": "Feature", "properties": { "id": 11, "geometry_wkt": "POINT (32506640.28949501 6005081.643143247)", "id_full": "forks-11", "lat": 6005081.6431432469, "lon": 32506640.28949501 }, "geometry": { "type": "Point", "coordinates": [ 32506640.289495009928942, 6005081.643143246881664 ] } }, -{ "type": "Feature", "properties": { "id": 12, "geometry_wkt": "POINT (32506635.98050358 6005097.202808099)", "id_full": "forks-12", "lat": 6005097.2028080989, "lon": 32506635.980503581 }, "geometry": { "type": "Point", "coordinates": [ 32506635.980503581464291, 6005097.202808098867536 ] } }, -{ "type": "Feature", "properties": { "id": 13, "geometry_wkt": "POINT (32506634.19730888 6005104.876539121)", "id_full": "forks-13", "lat": 6005104.8765391214, "lon": 32506634.197308879 }, "geometry": { "type": "Point", "coordinates": [ 32506634.197308879345655, 6005104.876539121381938 ] } }, -{ "type": "Feature", "properties": { "id": 14, "geometry_wkt": "POINT (32506592.558225196 6005249.951128247)", "id_full": "forks-14", "lat": 6005249.9511282472, "lon": 32506592.558225196 }, "geometry": { "type": "Point", "coordinates": [ 32506592.558225195854902, 6005249.951128247193992 ] } }, -{ "type": "Feature", "properties": { "id": 15, "geometry_wkt": "POINT (32506589.465335622 6005258.491528047)", "id_full": "forks-15", "lat": 6005258.4915280472, "lon": 32506589.465335622 }, "geometry": { "type": "Point", "coordinates": [ 32506589.465335622429848, 6005258.491528047248721 ] } }, -{ "type": "Feature", "properties": { "id": 16, "geometry_wkt": "POINT (32506610.01704668 6005273.422141656)", "id_full": "forks-16", "lat": 6005273.4221416563, "lon": 32506610.017046679 }, "geometry": { "type": "Point", "coordinates": [ 32506610.017046678811312, 6005273.422141656279564 ] } }, -{ "type": "Feature", "properties": { "id": 17, "geometry_wkt": "POINT (32506973.341402162 6004704.626499322)", "id_full": "forks-17", "lat": 6004704.6264993222, "lon": 32506973.341402162 }, "geometry": { "type": "Point", "coordinates": [ 32506973.341402161866426, 6004704.626499322243035 ] } }, -{ "type": "Feature", "properties": { "id": 18, "geometry_wkt": "POINT (32506966.35593917 6004702.746699204)", "id_full": "forks-18", "lat": 6004702.7466992037, "lon": 32506966.355939168 }, "geometry": { "type": "Point", "coordinates": [ 32506966.355939168483019, 6004702.74669920373708 ] } }, -{ "type": "Feature", "properties": { "id": 19, "geometry_wkt": "POINT (32506905.580154143 6004686.432937293)", "id_full": "forks-19", "lat": 6004686.4329372933, "lon": 32506905.580154143 }, "geometry": { "type": "Point", "coordinates": [ 32506905.58015414327383, 6004686.432937293313444 ] } }, -{ "type": "Feature", "properties": { "id": 20, "geometry_wkt": "POINT (32506834.06771552 6004667.389202644)", "id_full": "forks-20", "lat": 6004667.3892026441, "lon": 32506834.067715518 }, "geometry": { "type": "Point", "coordinates": [ 32506834.067715518176556, 6004667.389202644117177 ] } }, -{ "type": "Feature", "properties": { "id": 21, "geometry_wkt": "POINT (32506805.84401365 6004659.677821843)", "id_full": "forks-21", "lat": 6004659.677821843, "lon": 32506805.84401365 }, "geometry": { "type": "Point", "coordinates": [ 32506805.844013649970293, 6004659.677821842953563 ] } }, -{ "type": "Feature", "properties": { "id": 22, "geometry_wkt": "POINT (32506782.94580446 6004652.671333202)", "id_full": "forks-22", "lat": 6004652.6713332022, "lon": 32506782.945804462 }, "geometry": { "type": "Point", "coordinates": [ 32506782.945804461836815, 6004652.671333202160895 ] } }, -{ "type": "Feature", "properties": { "id": 23, "geometry_wkt": "POINT (32506785.85355188 6005321.162249531)", "id_full": "forks-23", "lat": 6005321.1622495307, "lon": 32506785.85355188 }, "geometry": { "type": "Point", "coordinates": [ 32506785.853551879525185, 6005321.162249530665576 ] } }, -{ "type": "Feature", "properties": { "id": 24, "geometry_wkt": "POINT (32506746.461005732 6005002.454771279)", "id_full": "forks-24", "lat": 6005002.4547712794, "lon": 32506746.461005732 }, "geometry": { "type": "Point", "coordinates": [ 32506746.461005732417107, 6005002.454771279357374 ] } }, -{ "type": "Feature", "properties": { "id": 25, "geometry_wkt": "POINT (32506758.059295017 6005017.481309016)", "id_full": "forks-25", "lat": 6005017.4813090162, "lon": 32506758.059295017 }, "geometry": { "type": "Point", "coordinates": [ 32506758.059295017272234, 6005017.481309016235173 ] } }, -{ "type": "Feature", "properties": { "id": 26, "geometry_wkt": "POINT (32506815.6312102 6005156.803712631)", "id_full": "forks-26", "lat": 6005156.8037126306, "lon": 32506815.6312102 }, "geometry": { "type": "Point", "coordinates": [ 32506815.631210200488567, 6005156.803712630644441 ] } }, -{ "type": "Feature", "properties": { "id": 27, "geometry_wkt": "POINT (32506857.420281686 6005175.401853865)", "id_full": "forks-27", "lat": 6005175.401853865, "lon": 32506857.420281686 }, "geometry": { "type": "Point", "coordinates": [ 32506857.420281685888767, 6005175.401853865012527 ] } }, -{ "type": "Feature", "properties": { "id": 28, "geometry_wkt": "POINT (32506901.09680305 6005183.699540134)", "id_full": "forks-28", "lat": 6005183.6995401336, "lon": 32506901.09680305 }, "geometry": { "type": "Point", "coordinates": [ 32506901.096803050488234, 6005183.699540133588016 ] } }, -{ "type": "Feature", "properties": { "id": 29, "geometry_wkt": "POINT (32506983.839984797 6005006.224120298)", "id_full": "forks-29", "lat": 6005006.2241202984, "lon": 32506983.839984797 }, "geometry": { "type": "Point", "coordinates": [ 32506983.83998479694128, 6005006.224120298400521 ] } }, -{ "type": "Feature", "properties": { "id": 30, "geometry_wkt": "POINT (32506990.21066587 6005043.18464113)", "id_full": "forks-30", "lat": 6005043.1846411303, "lon": 32506990.21066587 }, "geometry": { "type": "Point", "coordinates": [ 32506990.210665870457888, 6005043.184641130268574 ] } }, -{ "type": "Feature", "properties": { "id": 31, "geometry_wkt": "POINT (32506758.48775236 6005302.2604126185)", "id_full": "forks-31", "lat": 6005302.2604126185, "lon": 32506758.487752359 }, "geometry": { "type": "Point", "coordinates": [ 32506758.487752359360456, 6005302.260412618517876 ] } }, -{ "type": "Feature", "properties": { "id": 32, "geometry_wkt": "POINT (32507023.054066256 6004915.480935483)", "id_full": "forks-32", "lat": 6004915.4809354832, "lon": 32507023.054066256 }, "geometry": { "type": "Point", "coordinates": [ 32507023.054066255688667, 6004915.480935483239591 ] } }, -{ "type": "Feature", "properties": { "id": 33, "geometry_wkt": "POINT (32506931.03989272 6005095.022326571)", "id_full": "forks-33", "lat": 6005095.0223265709, "lon": 32506931.039892718 }, "geometry": { "type": "Point", "coordinates": [ 32506931.039892718195915, 6005095.022326570935547 ] } }, -{ "type": "Feature", "properties": { "id": 34, "geometry_wkt": "POINT (32506959.267871153 6005121.259273383)", "id_full": "forks-34", "lat": 6005121.2592733828, "lon": 32506959.267871153 }, "geometry": { "type": "Point", "coordinates": [ 32506959.267871152609587, 6005121.25927338283509 ] } }, -{ "type": "Feature", "properties": { "id": 35, "geometry_wkt": "POINT (32506920.064067416 6005126.549259349)", "id_full": "forks-35", "lat": 6005126.5492593488, "lon": 32506920.064067416 }, "geometry": { "type": "Point", "coordinates": [ 32506920.064067415893078, 6005126.549259348772466 ] } }, -{ "type": "Feature", "properties": { "id": 36, "geometry_wkt": "POINT (32506871.2233493 6005117.018729404)", "id_full": "forks-36", "lat": 6005117.0187294036, "lon": 32506871.223349299 }, "geometry": { "type": "Point", "coordinates": [ 32506871.223349299281836, 6005117.018729403614998 ] } }, -{ "type": "Feature", "properties": { "id": 37, "geometry_wkt": "POINT (32506863.052863058 6005113.902283473)", "id_full": "forks-37", "lat": 6005113.9022834729, "lon": 32506863.052863058 }, "geometry": { "type": "Point", "coordinates": [ 32506863.05286305770278, 6005113.902283472940326 ] } }, -{ "type": "Feature", "properties": { "id": 38, "geometry_wkt": "POINT (32506890.007688235 6005098.978906006)", "id_full": "forks-38", "lat": 6005098.9789060056, "lon": 32506890.007688235 }, "geometry": { "type": "Point", "coordinates": [ 32506890.007688235491514, 6005098.978906005620956 ] } }, -{ "type": "Feature", "properties": { "id": 39, "geometry_wkt": "POINT (32506894.688163236 6005100.505053408)", "id_full": "forks-39", "lat": 6005100.5050534084, "lon": 32506894.688163236 }, "geometry": { "type": "Point", "coordinates": [ 32506894.688163235783577, 6005100.505053408443928 ] } }, -{ "type": "Feature", "properties": { "id": 40, "geometry_wkt": "POINT (32506925.62074382 6005110.602306801)", "id_full": "forks-40", "lat": 6005110.6023068009, "lon": 32506925.620743819 }, "geometry": { "type": "Point", "coordinates": [ 32506925.620743818581104, 6005110.602306800894439 ] } }, -{ "type": "Feature", "properties": { "id": 41, "geometry_wkt": "POINT (32506906.060875576 6005168.6839949405)", "id_full": "forks-41", "lat": 6005168.6839949405, "lon": 32506906.060875576 }, "geometry": { "type": "Point", "coordinates": [ 32506906.060875575989485, 6005168.68399494048208 ] } }, -{ "type": "Feature", "properties": { "id": 42, "geometry_wkt": "POINT (32506968.895207815 6005028.968333294)", "id_full": "forks-42", "lat": 6005028.9683332937, "lon": 32506968.895207815 }, "geometry": { "type": "Point", "coordinates": [ 32506968.895207814872265, 6005028.968333293683827 ] } }, -{ "type": "Feature", "properties": { "id": 43, "geometry_wkt": "POINT (32507016.180187117 6004930.53564811)", "id_full": "forks-43", "lat": 6004930.5356481103, "lon": 32507016.180187117 }, "geometry": { "type": "Point", "coordinates": [ 32507016.180187117308378, 6004930.535648110322654 ] } }, -{ "type": "Feature", "properties": { "id": 44, "geometry_wkt": "POINT (32507055.788943462 6004835.756441549)", "id_full": "forks-44", "lat": 6004835.7564415494, "lon": 32507055.788943462 }, "geometry": { "type": "Point", "coordinates": [ 32507055.788943462073803, 6004835.756441549398005 ] } }, -{ "type": "Feature", "properties": { "id": 45, "geometry_wkt": "POINT (32506977.857269514 6005041.763435141)", "id_full": "forks-45", "lat": 6005041.7634351412, "lon": 32506977.857269514 }, "geometry": { "type": "Point", "coordinates": [ 32506977.857269514352083, 6005041.763435141183436 ] } }, -{ "type": "Feature", "properties": { "id": 46, "geometry_wkt": "POINT (32506834.086465627 6005306.068311981)", "id_full": "forks-46", "lat": 6005306.0683119809, "lon": 32506834.086465627 }, "geometry": { "type": "Point", "coordinates": [ 32506834.086465626955032, 6005306.0683119809255 ] } }, -{ "type": "Feature", "properties": { "id": 47, "geometry_wkt": "POINT (32507040.4248311 6004741.460822492)", "id_full": "forks-47", "lat": 6004741.4608224919, "lon": 32507040.4248311 }, "geometry": { "type": "Point", "coordinates": [ 32507040.424831099808216, 6004741.460822491906583 ] } }, -{ "type": "Feature", "properties": { "id": 48, "geometry_wkt": "POINT (32506999.82516114 6004717.383402614)", "id_full": "forks-48", "lat": 6004717.3834026139, "lon": 32506999.82516114 }, "geometry": { "type": "Point", "coordinates": [ 32506999.825161140412092, 6004717.383402613922954 ] } }, -{ "type": "Feature", "properties": { "id": 49, "geometry_wkt": "POINT (32506774.162415158 6004688.607881281)", "id_full": "forks-49", "lat": 6004688.6078812806, "lon": 32506774.162415158 }, "geometry": { "type": "Point", "coordinates": [ 32506774.162415158003569, 6004688.607881280593574 ] } }, -{ "type": "Feature", "properties": { "id": 50, "geometry_wkt": "POINT (32506774.079425685 6004700.679925447)", "id_full": "forks-50", "lat": 6004700.6799254473, "lon": 32506774.079425685 }, "geometry": { "type": "Point", "coordinates": [ 32506774.079425685107708, 6004700.679925447329879 ] } }, -{ "type": "Feature", "properties": { "id": 51, "geometry_wkt": "POINT (32506770.973308653 6004717.554045321)", "id_full": "forks-51", "lat": 6004717.5540453214, "lon": 32506770.973308653 }, "geometry": { "type": "Point", "coordinates": [ 32506770.973308652639389, 6004717.554045321419835 ] } }, -{ "type": "Feature", "properties": { "id": 52, "geometry_wkt": "POINT (32506756.913997628 6004748.952905902)", "id_full": "forks-52", "lat": 6004748.9529059017, "lon": 32506756.913997628 }, "geometry": { "type": "Point", "coordinates": [ 32506756.913997627794743, 6004748.952905901707709 ] } }, -{ "type": "Feature", "properties": { "id": 53, "geometry_wkt": "POINT (32506740.583661333 6004747.206024529)", "id_full": "forks-53", "lat": 6004747.2060245294, "lon": 32506740.583661333 }, "geometry": { "type": "Point", "coordinates": [ 32506740.583661332726479, 6004747.206024529412389 ] } }, -{ "type": "Feature", "properties": { "id": 54, "geometry_wkt": "POINT (32506726.41674512 6005101.2837742865)", "id_full": "forks-54", "lat": 6005101.2837742865, "lon": 32506726.416745119 }, "geometry": { "type": "Point", "coordinates": [ 32506726.416745118796825, 6005101.28377428650856 ] } }, -{ "type": "Feature", "properties": { "id": 55, "geometry_wkt": "POINT (32506696.98699388 6005095.343915768)", "id_full": "forks-55", "lat": 6005095.343915768, "lon": 32506696.986993879 }, "geometry": { "type": "Point", "coordinates": [ 32506696.986993879079819, 6005095.343915767967701 ] } }, -{ "type": "Feature", "properties": { "id": 56, "geometry_wkt": "POINT (32506665.899223614 6005087.829689491)", "id_full": "forks-56", "lat": 6005087.8296894906, "lon": 32506665.899223614 }, "geometry": { "type": "Point", "coordinates": [ 32506665.899223614484072, 6005087.829689490608871 ] } }, -{ "type": "Feature", "properties": { "id": 57, "geometry_wkt": "POINT (32506803.475475002 6005024.547870637)", "id_full": "forks-57", "lat": 6005024.5478706369, "lon": 32506803.475475002 }, "geometry": { "type": "Point", "coordinates": [ 32506803.475475002080202, 6005024.547870636917651 ] } }, -{ "type": "Feature", "properties": { "id": 58, "geometry_wkt": "POINT (32506823.60973072 6005027.680673941)", "id_full": "forks-58", "lat": 6005027.680673941, "lon": 32506823.609730721 }, "geometry": { "type": "Point", "coordinates": [ 32506823.60973072052002, 6005027.680673941038549 ] } }, -{ "type": "Feature", "properties": { "id": 59, "geometry_wkt": "POINT (32506971.99656725 6004956.330777766)", "id_full": "forks-59", "lat": 6004956.3307777662, "lon": 32506971.996567249 }, "geometry": { "type": "Point", "coordinates": [ 32506971.996567249298096, 6004956.330777766183019 ] } }, -{ "type": "Feature", "properties": { "id": 60, "geometry_wkt": "POINT (32506978.648154818 6004957.660532805)", "id_full": "forks-60", "lat": 6004957.6605328051, "lon": 32506978.648154818 }, "geometry": { "type": "Point", "coordinates": [ 32506978.648154817521572, 6004957.660532805137336 ] } }, -{ "type": "Feature", "properties": { "id": 61, "geometry_wkt": "POINT (32506932.40408786 6004951.471220351)", "id_full": "forks-61", "lat": 6004951.4712203508, "lon": 32506932.40408786 }, "geometry": { "type": "Point", "coordinates": [ 32506932.404087860137224, 6004951.471220350824296 ] } }, -{ "type": "Feature", "properties": { "id": 62, "geometry_wkt": "POINT (32506939.293046627 6004950.686475987)", "id_full": "forks-62", "lat": 6004950.6864759866, "lon": 32506939.293046627 }, "geometry": { "type": "Point", "coordinates": [ 32506939.293046627193689, 6004950.686475986614823 ] } }, -{ "type": "Feature", "properties": { "id": 63, "geometry_wkt": "POINT (32506942.140576534 6004950.362104319)", "id_full": "forks-63", "lat": 6004950.362104319, "lon": 32506942.140576534 }, "geometry": { "type": "Point", "coordinates": [ 32506942.140576533973217, 6004950.362104319036007 ] } }, -{ "type": "Feature", "properties": { "id": 64, "geometry_wkt": "POINT (32506882.491420675 6005033.754231971)", "id_full": "forks-64", "lat": 6005033.7542319708, "lon": 32506882.491420675 }, "geometry": { "type": "Point", "coordinates": [ 32506882.491420675069094, 6005033.754231970757246 ] } }, -{ "type": "Feature", "properties": { "id": 65, "geometry_wkt": "POINT (32506892.243028957 6005034.827759824)", "id_full": "forks-65", "lat": 6005034.8277598238, "lon": 32506892.243028957 }, "geometry": { "type": "Point", "coordinates": [ 32506892.243028957396746, 6005034.82775982376188 ] } }, -{ "type": "Feature", "properties": { "id": 66, "geometry_wkt": "POINT (32506851.069212396 6005030.513078302)", "id_full": "forks-66", "lat": 6005030.5130783021, "lon": 32506851.069212396 }, "geometry": { "type": "Point", "coordinates": [ 32506851.069212395697832, 6005030.513078302145004 ] } }, -{ "type": "Feature", "properties": { "id": 67, "geometry_wkt": "POINT (32506662.474677395 6005287.922711677)", "id_full": "forks-67", "lat": 6005287.9227116769, "lon": 32506662.474677395 }, "geometry": { "type": "Point", "coordinates": [ 32506662.47467739507556, 6005287.92271167691797 ] } }, -{ "type": "Feature", "properties": { "id": 68, "geometry_wkt": "POINT (32506640.347953863 6005281.79490401)", "id_full": "forks-68", "lat": 6005281.7949040104, "lon": 32506640.347953863 }, "geometry": { "type": "Point", "coordinates": [ 32506640.347953863441944, 6005281.794904010370374 ] } }, -{ "type": "Feature", "properties": { "id": 69, "geometry_wkt": "POINT (32506756.039207898 6005313.986531776)", "id_full": "forks-69", "lat": 6005313.9865317764, "lon": 32506756.039207898 }, "geometry": { "type": "Point", "coordinates": [ 32506756.039207898080349, 6005313.986531776376069 ] } }, -{ "type": "Feature", "properties": { "id": 70, "geometry_wkt": "POINT (32506727.89395408 6005306.146244135)", "id_full": "forks-70", "lat": 6005306.1462441348, "lon": 32506727.89395408 }, "geometry": { "type": "Point", "coordinates": [ 32506727.893954079598188, 6005306.146244134753942 ] } }, -{ "type": "Feature", "properties": { "id": 71, "geometry_wkt": "POINT (32506716.644411128 6005303.0125132)", "id_full": "forks-71", "lat": 6005303.0125131998, "lon": 32506716.644411128 }, "geometry": { "type": "Point", "coordinates": [ 32506716.644411128014326, 6005303.012513199821115 ] } }, -{ "type": "Feature", "properties": { "id": 72, "geometry_wkt": "POINT (32506702.223685432 6005298.995401179)", "id_full": "forks-72", "lat": 6005298.9954011794, "lon": 32506702.223685432 }, "geometry": { "type": "Point", "coordinates": [ 32506702.223685432225466, 6005298.995401179417968 ] } }, -{ "type": "Feature", "properties": { "id": 73, "geometry_wkt": "POINT (32506690.32293301 6005295.680265962)", "id_full": "forks-73", "lat": 6005295.6802659621, "lon": 32506690.322933011 }, "geometry": { "type": "Point", "coordinates": [ 32506690.322933010756969, 6005295.680265962146223 ] } }, -{ "type": "Feature", "properties": { "id": 74, "geometry_wkt": "POINT (32506740.842956085 6005309.753385184)", "id_full": "forks-74", "lat": 6005309.7533851843, "lon": 32506740.842956085 }, "geometry": { "type": "Point", "coordinates": [ 32506740.842956084758043, 6005309.753385184332728 ] } }, -{ "type": "Feature", "properties": { "id": 75, "geometry_wkt": "POINT (32506624.177454807 6005277.331082835)", "id_full": "forks-75", "lat": 6005277.3310828349, "lon": 32506624.177454807 }, "geometry": { "type": "Point", "coordinates": [ 32506624.177454806864262, 6005277.331082834862173 ] } }, -{ "type": "Feature", "properties": { "id": 76, "geometry_wkt": "POINT (32506678.330150615 6005292.339494398)", "id_full": "forks-76", "lat": 6005292.3394943979, "lon": 32506678.330150615 }, "geometry": { "type": "Point", "coordinates": [ 32506678.330150615423918, 6005292.339494397863746 ] } }, -{ "type": "Feature", "properties": { "id": 77, "geometry_wkt": "POINT (32506797.956073493 6004967.277614417)", "id_full": "forks-77", "lat": 6004967.2776144166, "lon": 32506797.956073493 }, "geometry": { "type": "Point", "coordinates": [ 32506797.956073492765427, 6004967.27761441655457 ] } }, -{ "type": "Feature", "properties": { "id": 78, "geometry_wkt": "POINT (32506795.285397273 6004969.131627681)", "id_full": "forks-78", "lat": 6004969.1316276807, "lon": 32506795.285397273 }, "geometry": { "type": "Point", "coordinates": [ 32506795.28539727255702, 6004969.1316276807338 ] } }, -{ "type": "Feature", "properties": { "id": 79, "geometry_wkt": "POINT (32507034.713617396 6004886.971107841)", "id_full": "forks-79", "lat": 6004886.9711078405, "lon": 32507034.713617396 }, "geometry": { "type": "Point", "coordinates": [ 32507034.713617395609617, 6004886.971107840538025 ] } }, -{ "type": "Feature", "properties": { "id": 80, "geometry_wkt": "POINT (32506944.88088702 6004777.161187518)", "id_full": "forks-80", "lat": 6004777.1611875184, "lon": 32506944.88088702 }, "geometry": { "type": "Point", "coordinates": [ 32506944.880887020379305, 6004777.161187518388033 ] } }, -{ "type": "Feature", "properties": { "id": 81, "geometry_wkt": "POINT (32506950.185454108 6004758.780014672)", "id_full": "forks-81", "lat": 6004758.7800146723, "lon": 32506950.185454108 }, "geometry": { "type": "Point", "coordinates": [ 32506950.185454107820988, 6004758.780014672316611 ] } }, -{ "type": "Feature", "properties": { "id": 82, "geometry_wkt": "POINT (32506959.29881295 6004727.200769591)", "id_full": "forks-82", "lat": 6004727.2007695911, "lon": 32506959.298812948 }, "geometry": { "type": "Point", "coordinates": [ 32506959.298812948167324, 6004727.200769591145217 ] } }, -{ "type": "Feature", "properties": { "id": 83, "geometry_wkt": "POINT (32506731.28551286 6005005.676744328)", "id_full": "forks-83", "lat": 6005005.6767443279, "lon": 32506731.285512861 }, "geometry": { "type": "Point", "coordinates": [ 32506731.285512860864401, 6005005.676744327880442 ] } }, -{ "type": "Feature", "properties": { "id": 84, "geometry_wkt": "POINT (32507012.29895811 6004811.175051882)", "id_full": "forks-84", "lat": 6004811.1750518819, "lon": 32507012.298958112 }, "geometry": { "type": "Point", "coordinates": [ 32507012.298958111554384, 6004811.175051881931722 ] } }, -{ "type": "Feature", "properties": { "id": 85, "geometry_wkt": "POINT (32506783.708717506 6005021.47224847)", "id_full": "forks-85", "lat": 6005021.4722484704, "lon": 32506783.708717506 }, "geometry": { "type": "Point", "coordinates": [ 32506783.708717506378889, 6005021.472248470410705 ] } }, -{ "type": "Feature", "properties": { "id": 86, "geometry_wkt": "POINT (32506817.141993094 6004953.958534721)", "id_full": "forks-86", "lat": 6004953.9585347213, "lon": 32506817.141993094 }, "geometry": { "type": "Point", "coordinates": [ 32506817.141993094235659, 6004953.958534721285105 ] } }, -{ "type": "Feature", "properties": { "id": 87, "geometry_wkt": "POINT (32506813.553776793 6004956.449514559)", "id_full": "forks-87", "lat": 6004956.4495145585, "lon": 32506813.553776793 }, "geometry": { "type": "Point", "coordinates": [ 32506813.553776793181896, 6004956.449514558538795 ] } }, -{ "type": "Feature", "properties": { "id": 88, "geometry_wkt": "POINT (32506823.312253438 6004949.3237391785)", "id_full": "forks-88", "lat": 6004949.3237391785, "lon": 32506823.312253438 }, "geometry": { "type": "Point", "coordinates": [ 32506823.312253437936306, 6004949.323739178478718 ] } }, -{ "type": "Feature", "properties": { "id": 89, "geometry_wkt": "POINT (32506808.53301298 6004959.9349848805)", "id_full": "forks-89", "lat": 6004959.9349848805, "lon": 32506808.533012979 }, "geometry": { "type": "Point", "coordinates": [ 32506808.533012978732586, 6004959.934984880499542 ] } }, -{ "type": "Feature", "properties": { "id": 90, "geometry_wkt": "POINT (32506901.36241106 6004700.69793768)", "id_full": "forks-90", "lat": 6004700.6979376804, "lon": 32506901.362411059 }, "geometry": { "type": "Point", "coordinates": [ 32506901.362411059439182, 6004700.697937680408359 ] } }, -{ "type": "Feature", "properties": { "id": 91, "geometry_wkt": "POINT (32506721.357687663 6005007.784562867)", "id_full": "forks-91", "lat": 6005007.7845628671, "lon": 32506721.357687663 }, "geometry": { "type": "Point", "coordinates": [ 32506721.357687663286924, 6005007.784562867134809 ] } }, -{ "type": "Feature", "properties": { "id": 92, "geometry_wkt": "POINT (32506963.5363283 6004844.259484168)", "id_full": "forks-92", "lat": 6004844.2594841681, "lon": 32506963.536328301 }, "geometry": { "type": "Point", "coordinates": [ 32506963.536328300833702, 6004844.25948416814208 ] } }, -{ "type": "Feature", "properties": { "id": 93, "geometry_wkt": "POINT (32506953.613189355 6004851.448096405)", "id_full": "forks-93", "lat": 6004851.4480964048, "lon": 32506953.613189355 }, "geometry": { "type": "Point", "coordinates": [ 32506953.613189354538918, 6004851.448096404783428 ] } }, -{ "type": "Feature", "properties": { "id": 94, "geometry_wkt": "POINT (32506707.760920882 6005010.671349905)", "id_full": "forks-94", "lat": 6005010.6713499054, "lon": 32506707.760920882 }, "geometry": { "type": "Point", "coordinates": [ 32506707.760920882225037, 6005010.671349905431271 ] } }, -{ "type": "Feature", "properties": { "id": 95, "geometry_wkt": "POINT (32506703.261314716 6005011.626680313)", "id_full": "forks-95", "lat": 6005011.6266803127, "lon": 32506703.261314716 }, "geometry": { "type": "Point", "coordinates": [ 32506703.2613147161901, 6005011.626680312678218 ] } }, -{ "type": "Feature", "properties": { "id": 96, "geometry_wkt": "POINT (32507003.270227984 6004817.300857887)", "id_full": "forks-96", "lat": 6004817.3008578867, "lon": 32507003.270227984 }, "geometry": { "type": "Point", "coordinates": [ 32507003.270227983593941, 6004817.30085788667202 ] } }, -{ "type": "Feature", "properties": { "id": 97, "geometry_wkt": "POINT (32506996.760915205 6004821.71729151)", "id_full": "forks-97", "lat": 6004821.7172915097, "lon": 32506996.760915205 }, "geometry": { "type": "Point", "coordinates": [ 32506996.760915204882622, 6004821.717291509732604 ] } }, -{ "type": "Feature", "properties": { "id": 98, "geometry_wkt": "POINT (32506829.5379491 6004688.366671883)", "id_full": "forks-98", "lat": 6004688.3666718826, "lon": 32506829.5379491 }, "geometry": { "type": "Point", "coordinates": [ 32506829.537949100136757, 6004688.36667188256979 ] } }, -{ "type": "Feature", "properties": { "id": 99, "geometry_wkt": "POINT (32506830.970641527 6004681.731834987)", "id_full": "forks-99", "lat": 6004681.7318349872, "lon": 32506830.970641527 }, "geometry": { "type": "Point", "coordinates": [ 32506830.970641527324915, 6004681.731834987178445 ] } }, -{ "type": "Feature", "properties": { "id": 100, "geometry_wkt": "POINT (32506760.001660306 6004993.319673928)", "id_full": "forks-100", "lat": 6004993.3196739284, "lon": 32506760.001660306 }, "geometry": { "type": "Point", "coordinates": [ 32506760.00166030600667, 6004993.319673928432167 ] } }, -{ "type": "Feature", "properties": { "id": 101, "geometry_wkt": "POINT (32506769.814468887 6005019.310363343)", "id_full": "forks-101", "lat": 6005019.310363343, "lon": 32506769.814468887 }, "geometry": { "type": "Point", "coordinates": [ 32506769.814468886703253, 6005019.310363342985511 ] } }, -{ "type": "Feature", "properties": { "id": 102, "geometry_wkt": "POINT (32506946.964905605 6004697.541654059)", "id_full": "forks-102", "lat": 6004697.5416540587, "lon": 32506946.964905605 }, "geometry": { "type": "Point", "coordinates": [ 32506946.964905604720116, 6004697.541654058732092 ] } }, -{ "type": "Feature", "properties": { "id": 103, "geometry_wkt": "POINT (32506778.851514895 6004980.5402123965)", "id_full": "forks-103", "lat": 6004980.5402123965, "lon": 32506778.851514895 }, "geometry": { "type": "Point", "coordinates": [ 32506778.851514894515276, 6004980.540212396532297 ] } }, -{ "type": "Feature", "properties": { "id": 104, "geometry_wkt": "POINT (32506768.87363295 6004987.33426655)", "id_full": "forks-104", "lat": 6004987.3342665499, "lon": 32506768.873632949 }, "geometry": { "type": "Point", "coordinates": [ 32506768.873632948845625, 6004987.334266549907625 ] } }, -{ "type": "Feature", "properties": { "id": 105, "geometry_wkt": "POINT (32506712.230517812 6005009.722390885)", "id_full": "forks-105", "lat": 6005009.7223908855, "lon": 32506712.230517812 }, "geometry": { "type": "Point", "coordinates": [ 32506712.230517812073231, 6005009.722390885464847 ] } }, -{ "type": "Feature", "properties": { "id": 106, "geometry_wkt": "POINT (32506787.18801379 6004974.752921744)", "id_full": "forks-106", "lat": 6004974.7529217442, "lon": 32506787.188013788 }, "geometry": { "type": "Point", "coordinates": [ 32506787.188013788312674, 6004974.752921744249761 ] } }, -{ "type": "Feature", "properties": { "id": 107, "geometry_wkt": "POINT (32506672.198070195 6004953.321366431)", "id_full": "forks-107", "lat": 6004953.3213664312, "lon": 32506672.198070195 }, "geometry": { "type": "Point", "coordinates": [ 32506672.19807019457221, 6004953.321366431191564 ] } }, -{ "type": "Feature", "properties": { "id": 108, "geometry_wkt": "POINT (32506676.925561026 6004933.684903668)", "id_full": "forks-108", "lat": 6004933.6849036682, "lon": 32506676.925561026 }, "geometry": { "type": "Point", "coordinates": [ 32506676.925561025738716, 6004933.684903668239713 ] } }, -{ "type": "Feature", "properties": { "id": 109, "geometry_wkt": "POINT (32506873.690982897 6004911.481719907)", "id_full": "forks-109", "lat": 6004911.4817199074, "lon": 32506873.690982897 }, "geometry": { "type": "Point", "coordinates": [ 32506873.690982896834612, 6004911.48171990737319 ] } }, -{ "type": "Feature", "properties": { "id": 110, "geometry_wkt": "POINT (32506862.941045776 6004919.556542992)", "id_full": "forks-110", "lat": 6004919.5565429917, "lon": 32506862.941045776 }, "geometry": { "type": "Point", "coordinates": [ 32506862.94104577600956, 6004919.556542991660535 ] } }, -{ "type": "Feature", "properties": { "id": 111, "geometry_wkt": "POINT (32506853.581471734 6004926.586993841)", "id_full": "forks-111", "lat": 6004926.5869938415, "lon": 32506853.581471734 }, "geometry": { "type": "Point", "coordinates": [ 32506853.581471733748913, 6004926.586993841454387 ] } }, -{ "type": "Feature", "properties": { "id": 112, "geometry_wkt": "POINT (32506842.01740372 6004935.273351938)", "id_full": "forks-112", "lat": 6004935.2733519385, "lon": 32506842.017403722 }, "geometry": { "type": "Point", "coordinates": [ 32506842.017403721809387, 6004935.273351938463748 ] } }, -{ "type": "Feature", "properties": { "id": 113, "geometry_wkt": "POINT (32506834.4868897 6004940.929903021)", "id_full": "forks-113", "lat": 6004940.9299030211, "lon": 32506834.486889701 }, "geometry": { "type": "Point", "coordinates": [ 32506834.486889701336622, 6004940.929903021082282 ] } }, -{ "type": "Feature", "properties": { "id": 114, "geometry_wkt": "POINT (32506986.214231238 6004828.87299769)", "id_full": "forks-114", "lat": 6004828.87299769, "lon": 32506986.214231238 }, "geometry": { "type": "Point", "coordinates": [ 32506986.214231237769127, 6004828.872997689992189 ] } }, -{ "type": "Feature", "properties": { "id": 115, "geometry_wkt": "POINT (32506932.130744286 6004867.584650641)", "id_full": "forks-115", "lat": 6004867.5846506413, "lon": 32506932.130744286 }, "geometry": { "type": "Point", "coordinates": [ 32506932.130744285881519, 6004867.584650641307235 ] } }, -{ "type": "Feature", "properties": { "id": 116, "geometry_wkt": "POINT (32506919.66273397 6004876.950005657)", "id_full": "forks-116", "lat": 6004876.950005657, "lon": 32506919.662733968 }, "geometry": { "type": "Point", "coordinates": [ 32506919.662733968347311, 6004876.950005657039583 ] } }, -{ "type": "Feature", "properties": { "id": 117, "geometry_wkt": "POINT (32506939.13893092 6004862.320446154)", "id_full": "forks-117", "lat": 6004862.3204461541, "lon": 32506939.138930921 }, "geometry": { "type": "Point", "coordinates": [ 32506939.138930920511484, 6004862.320446154102683 ] } }, -{ "type": "Feature", "properties": { "id": 118, "geometry_wkt": "POINT (32506900.98820418 6004890.977392287)", "id_full": "forks-118", "lat": 6004890.977392287, "lon": 32506900.988204181 }, "geometry": { "type": "Point", "coordinates": [ 32506900.988204181194305, 6004890.977392286993563 ] } }, -{ "type": "Feature", "properties": { "id": 119, "geometry_wkt": "POINT (32506888.624447055 6004900.2644374445)", "id_full": "forks-119", "lat": 6004900.2644374445, "lon": 32506888.624447055 }, "geometry": { "type": "Point", "coordinates": [ 32506888.624447055160999, 6004900.264437444508076 ] } }, -{ "type": "Feature", "properties": { "id": 120, "geometry_wkt": "POINT (32506953.3732471 6004747.733802417)", "id_full": "forks-120", "lat": 6004747.7338024173, "lon": 32506953.373247098 }, "geometry": { "type": "Point", "coordinates": [ 32506953.373247098177671, 6004747.733802417293191 ] } }, -{ "type": "Feature", "properties": { "id": 121, "geometry_wkt": "POINT (32506917.096217696 6004878.877846222)", "id_full": "forks-121", "lat": 6004878.8778462224, "lon": 32506917.096217696 }, "geometry": { "type": "Point", "coordinates": [ 32506917.096217695623636, 6004878.877846222370863 ] } }, -{ "type": "Feature", "properties": { "id": 122, "geometry_wkt": "POINT (32506832.823352624 6004942.179470108)", "id_full": "forks-122", "lat": 6004942.1794701079, "lon": 32506832.823352624 }, "geometry": { "type": "Point", "coordinates": [ 32506832.823352623730898, 6004942.179470107890666 ] } }, -{ "type": "Feature", "properties": { "id": 123, "geometry_wkt": "POINT (32506863.975002714 6005031.844291222)", "id_full": "forks-123", "lat": 6005031.8442912223, "lon": 32506863.975002714 }, "geometry": { "type": "Point", "coordinates": [ 32506863.975002713501453, 6005031.844291222281754 ] } }, -{ "type": "Feature", "properties": { "id": 124, "geometry_wkt": "POINT (32506822.627499092 6005043.576945948)", "id_full": "forks-124", "lat": 6005043.5769459484, "lon": 32506822.627499092 }, "geometry": { "type": "Point", "coordinates": [ 32506822.627499092370272, 6005043.576945948414505 ] } }, -{ "type": "Feature", "properties": { "id": 125, "geometry_wkt": "POINT (32506821.76289923 6005057.569485188)", "id_full": "forks-125", "lat": 6005057.5694851885, "lon": 32506821.762899231 }, "geometry": { "type": "Point", "coordinates": [ 32506821.762899231165648, 6005057.56948518846184 ] } }, -{ "type": "Feature", "properties": { "id": 126, "geometry_wkt": "POINT (32506820.38668043 6005079.841979513)", "id_full": "forks-126", "lat": 6005079.8419795129, "lon": 32506820.386680432 }, "geometry": { "type": "Point", "coordinates": [ 32506820.38668043166399, 6005079.841979512944818 ] } }, -{ "type": "Feature", "properties": { "id": 127, "geometry_wkt": "POINT (32506819.88781334 6005087.915560907)", "id_full": "forks-127", "lat": 6005087.9155609068, "lon": 32506819.887813341 }, "geometry": { "type": "Point", "coordinates": [ 32506819.887813340872526, 6005087.915560906752944 ] } }, -{ "type": "Feature", "properties": { "id": 128, "geometry_wkt": "POINT (32506818.827407427 6005105.076992445)", "id_full": "forks-128", "lat": 6005105.0769924447, "lon": 32506818.827407427 }, "geometry": { "type": "Point", "coordinates": [ 32506818.82740742713213, 6005105.076992444694042 ] } }, -{ "type": "Feature", "properties": { "id": 129, "geometry_wkt": "POINT (32506818.4658088 6005110.929044021)", "id_full": "forks-129", "lat": 6005110.9290440213, "lon": 32506818.465808801 }, "geometry": { "type": "Point", "coordinates": [ 32506818.465808801352978, 6005110.929044021293521 ] } }, -{ "type": "Feature", "properties": { "id": 130, "geometry_wkt": "POINT (32506817.597539995 6005124.980960833)", "id_full": "forks-130", "lat": 6005124.9809608329, "lon": 32506817.597539995 }, "geometry": { "type": "Point", "coordinates": [ 32506817.597539994865656, 6005124.98096083290875 ] } }, -{ "type": "Feature", "properties": { "id": 131, "geometry_wkt": "POINT (32506817.132637642 6005132.504862571)", "id_full": "forks-131", "lat": 6005132.5048625711, "lon": 32506817.132637642 }, "geometry": { "type": "Point", "coordinates": [ 32506817.132637642323971, 6005132.504862571135163 ] } }, -{ "type": "Feature", "properties": { "id": 132, "geometry_wkt": "POINT (32506816.08229341 6005149.503457555)", "id_full": "forks-132", "lat": 6005149.5034575546, "lon": 32506816.08229341 }, "geometry": { "type": "Point", "coordinates": [ 32506816.082293409854174, 6005149.503457554616034 ] } }, -{ "type": "Feature", "properties": { "id": 133, "geometry_wkt": "POINT (32506821.297996897 6005065.0933866)", "id_full": "forks-133", "lat": 6005065.0933865998, "lon": 32506821.297996897 }, "geometry": { "type": "Point", "coordinates": [ 32506821.297996897250414, 6005065.09338659979403 ] } }, -{ "type": "Feature", "properties": { "id": 134, "geometry_wkt": "POINT (32506911.433677286 6004984.27643663)", "id_full": "forks-134", "lat": 6004984.2764366297, "lon": 32506911.433677286 }, "geometry": { "type": "Point", "coordinates": [ 32506911.433677285909653, 6004984.276436629705131 ] } }, -{ "type": "Feature", "properties": { "id": 135, "geometry_wkt": "POINT (32506914.126209386 6004979.67345926)", "id_full": "forks-135", "lat": 6004979.6734592598, "lon": 32506914.126209386 }, "geometry": { "type": "Point", "coordinates": [ 32506914.126209385693073, 6004979.673459259793162 ] } }, -{ "type": "Feature", "properties": { "id": 136, "geometry_wkt": "POINT (32506916.818285372 6004975.071261634)", "id_full": "forks-136", "lat": 6004975.0712616341, "lon": 32506916.818285372 }, "geometry": { "type": "Point", "coordinates": [ 32506916.818285372108221, 6004975.071261634118855 ] } }, -{ "type": "Feature", "properties": { "id": 137, "geometry_wkt": "POINT (32506920.90591873 6004968.083310094)", "id_full": "forks-137", "lat": 6004968.0833100937, "lon": 32506920.905918729 }, "geometry": { "type": "Point", "coordinates": [ 32506920.905918728560209, 6004968.083310093730688 ] } }, -{ "type": "Feature", "properties": { "id": 138, "geometry_wkt": "POINT (32506923.44509021 6004963.742508043)", "id_full": "forks-138", "lat": 6004963.7425080426, "lon": 32506923.445090208 }, "geometry": { "type": "Point", "coordinates": [ 32506923.4450902082026, 6004963.742508042603731 ] } }, -{ "type": "Feature", "properties": { "id": 139, "geometry_wkt": "POINT (32506926.560590386 6004958.416452017)", "id_full": "forks-139", "lat": 6004958.4164520167, "lon": 32506926.560590386 }, "geometry": { "type": "Point", "coordinates": [ 32506926.560590386390686, 6004958.416452016681433 ] } }, -{ "type": "Feature", "properties": { "id": 140, "geometry_wkt": "POINT (32506956.185954 6004953.1699921)", "id_full": "forks-140", "lat": 6004953.1699921004, "lon": 32506956.185954001 }, "geometry": { "type": "Point", "coordinates": [ 32506956.185954, 6004953.169992100447416 ] } }, -{ "type": "Feature", "properties": { "id": 141, "geometry_wkt": "POINT (32506961.455688827 6004954.223493444)", "id_full": "forks-141", "lat": 6004954.2234934438, "lon": 32506961.455688827 }, "geometry": { "type": "Point", "coordinates": [ 32506961.455688826739788, 6004954.223493443801999 ] } }, -{ "type": "Feature", "properties": { "id": 142, "geometry_wkt": "POINT (32506896.847592518 6005009.211856375)", "id_full": "forks-142", "lat": 6005009.2118563754, "lon": 32506896.847592518 }, "geometry": { "type": "Point", "coordinates": [ 32506896.847592517733574, 6005009.211856375448406 ] } }, -{ "type": "Feature", "properties": { "id": 143, "geometry_wkt": "POINT (32506899.291071773 6005005.034643518)", "id_full": "forks-143", "lat": 6005005.0346435178, "lon": 32506899.291071773 }, "geometry": { "type": "Point", "coordinates": [ 32506899.291071772575378, 6005005.034643517807126 ] } }, -{ "type": "Feature", "properties": { "id": 144, "geometry_wkt": "POINT (32506927.966843437 6004956.745063732)", "id_full": "forks-144", "lat": 6004956.7450637324, "lon": 32506927.966843437 }, "geometry": { "type": "Point", "coordinates": [ 32506927.96684343740344, 6004956.745063732378185 ] } }, -{ "type": "Feature", "properties": { "id": 145, "geometry_wkt": "POINT (32506966.725317884 6004955.276973642)", "id_full": "forks-145", "lat": 6004955.2769736424, "lon": 32506966.725317884 }, "geometry": { "type": "Point", "coordinates": [ 32506966.725317884236574, 6004955.276973642408848 ] } }, -{ "type": "Feature", "properties": { "id": 146, "geometry_wkt": "POINT (32506946.472613283 6004951.228145341)", "id_full": "forks-146", "lat": 6004951.2281453414, "lon": 32506946.472613283 }, "geometry": { "type": "Point", "coordinates": [ 32506946.472613282501698, 6004951.228145341388881 ] } }, -{ "type": "Feature", "properties": { "id": 147, "geometry_wkt": "POINT (32506903.346458375 6004998.101818923)", "id_full": "forks-147", "lat": 6004998.1018189229, "lon": 32506903.346458375 }, "geometry": { "type": "Point", "coordinates": [ 32506903.346458375453949, 6004998.101818922907114 ] } }, -{ "type": "Feature", "properties": { "id": 148, "geometry_wkt": "POINT (32506906.03665117 6004993.502840675)", "id_full": "forks-148", "lat": 6004993.5028406754, "lon": 32506906.036651172 }, "geometry": { "type": "Point", "coordinates": [ 32506906.03665117174387, 6004993.502840675413609 ] } }, -{ "type": "Feature", "properties": { "id": 149, "geometry_wkt": "POINT (32506951.768994343 6004952.2869736785)", "id_full": "forks-149", "lat": 6004952.2869736785, "lon": 32506951.768994343 }, "geometry": { "type": "Point", "coordinates": [ 32506951.768994342535734, 6004952.286973678506911 ] } }, -{ "type": "Feature", "properties": { "id": 150, "geometry_wkt": "POINT (32506908.72619334 6004988.904974705)", "id_full": "forks-150", "lat": 6004988.9049747046, "lon": 32506908.726193339 }, "geometry": { "type": "Point", "coordinates": [ 32506908.726193338632584, 6004988.904974704608321 ] } }, -{ "type": "Feature", "properties": { "id": 151, "geometry_wkt": "POINT (32506901.873548362 6005000.619809871)", "id_full": "forks-151", "lat": 6005000.6198098706, "lon": 32506901.873548362 }, "geometry": { "type": "Point", "coordinates": [ 32506901.873548362404108, 6005000.619809870608151 ] } }, -{ "type": "Feature", "properties": { "id": 152, "geometry_wkt": "POINT (32506918.21652491 6004972.680922464)", "id_full": "forks-152", "lat": 6004972.6809224635, "lon": 32506918.21652491 }, "geometry": { "type": "Point", "coordinates": [ 32506918.216524910181761, 6004972.680922463536263 ] } }, -{ "type": "Feature", "properties": { "id": 153, "geometry_wkt": "POINT (32506668.398750115 6004969.102509102)", "id_full": "forks-153", "lat": 6004969.1025091019, "lon": 32506668.398750115 }, "geometry": { "type": "Point", "coordinates": [ 32506668.398750115185976, 6004969.102509101852775 ] } }, -{ "type": "Feature", "properties": { "id": 154, "geometry_wkt": "POINT (32506678.807402063 6004925.868346692)", "id_full": "forks-154", "lat": 6004925.8683466921, "lon": 32506678.807402063 }, "geometry": { "type": "Point", "coordinates": [ 32506678.807402063161135, 6004925.868346692062914 ] } }, -{ "type": "Feature", "properties": { "id": 155, "geometry_wkt": "POINT (32506681.648138843 6004914.068847971)", "id_full": "forks-155", "lat": 6004914.068847971, "lon": 32506681.648138843 }, "geometry": { "type": "Point", "coordinates": [ 32506681.648138843476772, 6004914.06884797103703 ] } }, -{ "type": "Feature", "properties": { "id": 156, "geometry_wkt": "POINT (32506777.7536734 6004673.914529995)", "id_full": "forks-156", "lat": 6004673.9145299951, "lon": 32506777.753673401 }, "geometry": { "type": "Point", "coordinates": [ 32506777.753673400729895, 6004673.914529995061457 ] } }, -{ "type": "Feature", "properties": { "id": 157, "geometry_wkt": "POINT (32506778.52004056 6004670.778998894)", "id_full": "forks-157", "lat": 6004670.7789988937, "lon": 32506778.520040561 }, "geometry": { "type": "Point", "coordinates": [ 32506778.520040560513735, 6004670.778998893685639 ] } }, -{ "type": "Feature", "properties": { "id": 158, "geometry_wkt": "POINT (32506754.1685734 6004682.577916228)", "id_full": "forks-158", "lat": 6004682.5779162282, "lon": 32506754.168573398 }, "geometry": { "type": "Point", "coordinates": [ 32506754.168573398143053, 6004682.577916228212416 ] } }, -{ "type": "Feature", "properties": { "id": 159, "geometry_wkt": "POINT (32506748.45317665 6004680.854203343)", "id_full": "forks-159", "lat": 6004680.8542033434, "lon": 32506748.453176651 }, "geometry": { "type": "Point", "coordinates": [ 32506748.453176651149988, 6004680.854203343391418 ] } }, -{ "type": "Feature", "properties": { "id": 160, "geometry_wkt": "POINT (32506742.561123274 6004679.077212389)", "id_full": "forks-160", "lat": 6004679.0772123886, "lon": 32506742.561123274 }, "geometry": { "type": "Point", "coordinates": [ 32506742.56112327426672, 6004679.077212388627231 ] } }, -{ "type": "Feature", "properties": { "id": 161, "geometry_wkt": "POINT (32506736.701256808 6004677.309928721)", "id_full": "forks-161", "lat": 6004677.3099287208, "lon": 32506736.701256808 }, "geometry": { "type": "Point", "coordinates": [ 32506736.701256807893515, 6004677.30992872081697 ] } }, -{ "type": "Feature", "properties": { "id": 162, "geometry_wkt": "POINT (32506731.17173863 6004675.642275162)", "id_full": "forks-162", "lat": 6004675.642275162, "lon": 32506731.171738628 }, "geometry": { "type": "Point", "coordinates": [ 32506731.171738628298044, 6004675.642275162041187 ] } }, -{ "type": "Feature", "properties": { "id": 163, "geometry_wkt": "POINT (32506756.704313155 6004683.342672812)", "id_full": "forks-163", "lat": 6004683.3426728118, "lon": 32506756.704313155 }, "geometry": { "type": "Point", "coordinates": [ 32506756.704313155263662, 6004683.342672811821103 ] } } +{ "type": "Feature", "properties": { "id": 0, "id_full": "forks-0" }, "geometry": { "type": "Point", "coordinates": [ 32506909.028953850269318, 6005036.675676329992712 ] } }, +{ "type": "Feature", "properties": { "id": 1, "id_full": "forks-1" }, "geometry": { "type": "Point", "coordinates": [ 32506957.828444872051477, 6005039.452800406143069 ] } }, +{ "type": "Feature", "properties": { "id": 2, "id_full": "forks-2" }, "geometry": { "type": "Point", "coordinates": [ 32506849.56926654279232, 6005309.829775800928473 ] } }, +{ "type": "Feature", "properties": { "id": 3, "id_full": "forks-3" }, "geometry": { "type": "Point", "coordinates": [ 32506884.118155308067799, 6005233.286900076083839 ] } }, +{ "type": "Feature", "properties": { "id": 4, "id_full": "forks-4" }, "geometry": { "type": "Point", "coordinates": [ 32507059.691856741905212, 6004782.464862993918359 ] } }, +{ "type": "Feature", "properties": { "id": 5, "id_full": "forks-5" }, "geometry": { "type": "Point", "coordinates": [ 32507062.904994439333677, 6004810.397108196280897 ] } }, +{ "type": "Feature", "properties": { "id": 6, "id_full": "forks-6" }, "geometry": { "type": "Point", "coordinates": [ 32507049.679193664342165, 6004797.514717631973326 ] } }, +{ "type": "Feature", "properties": { "id": 7, "id_full": "forks-7" }, "geometry": { "type": "Point", "coordinates": [ 32506824.270652454346418, 6005308.401445041410625 ] } }, +{ "type": "Feature", "properties": { "id": 8, "id_full": "forks-8" }, "geometry": { "type": "Point", "coordinates": [ 32507029.144705783575773, 6004800.936656161211431 ] } }, +{ "type": "Feature", "properties": { "id": 9, "id_full": "forks-9" }, "geometry": { "type": "Point", "coordinates": [ 32506689.959371760487556, 6005014.698657347820699 ] } }, +{ "type": "Feature", "properties": { "id": 10, "id_full": "forks-10" }, "geometry": { "type": "Point", "coordinates": [ 32506654.861689653247595, 6005025.33106526453048 ] } }, +{ "type": "Feature", "properties": { "id": 11, "id_full": "forks-11" }, "geometry": { "type": "Point", "coordinates": [ 32506640.289495009928942, 6005081.643143246881664 ] } }, +{ "type": "Feature", "properties": { "id": 12, "id_full": "forks-12" }, "geometry": { "type": "Point", "coordinates": [ 32506635.980503581464291, 6005097.202808098867536 ] } }, +{ "type": "Feature", "properties": { "id": 13, "id_full": "forks-13" }, "geometry": { "type": "Point", "coordinates": [ 32506634.197308879345655, 6005104.876539121381938 ] } }, +{ "type": "Feature", "properties": { "id": 14, "id_full": "forks-14" }, "geometry": { "type": "Point", "coordinates": [ 32506592.558225195854902, 6005249.951128247193992 ] } }, +{ "type": "Feature", "properties": { "id": 15, "id_full": "forks-15" }, "geometry": { "type": "Point", "coordinates": [ 32506589.465335622429848, 6005258.491528047248721 ] } }, +{ "type": "Feature", "properties": { "id": 16, "id_full": "forks-16" }, "geometry": { "type": "Point", "coordinates": [ 32506610.017046678811312, 6005273.422141656279564 ] } }, +{ "type": "Feature", "properties": { "id": 17, "id_full": "forks-17" }, "geometry": { "type": "Point", "coordinates": [ 32506973.341402161866426, 6004704.626499322243035 ] } }, +{ "type": "Feature", "properties": { "id": 18, "id_full": "forks-18" }, "geometry": { "type": "Point", "coordinates": [ 32506966.355939168483019, 6004702.74669920373708 ] } }, +{ "type": "Feature", "properties": { "id": 19, "id_full": "forks-19" }, "geometry": { "type": "Point", "coordinates": [ 32506905.58015414327383, 6004686.432937293313444 ] } }, +{ "type": "Feature", "properties": { "id": 20, "id_full": "forks-20" }, "geometry": { "type": "Point", "coordinates": [ 32506834.067715518176556, 6004667.389202644117177 ] } }, +{ "type": "Feature", "properties": { "id": 21, "id_full": "forks-21" }, "geometry": { "type": "Point", "coordinates": [ 32506805.844013649970293, 6004659.677821842953563 ] } }, +{ "type": "Feature", "properties": { "id": 22, "id_full": "forks-22" }, "geometry": { "type": "Point", "coordinates": [ 32506782.945804461836815, 6004652.671333202160895 ] } }, +{ "type": "Feature", "properties": { "id": 23, "id_full": "forks-23" }, "geometry": { "type": "Point", "coordinates": [ 32506785.853551879525185, 6005321.162249530665576 ] } }, +{ "type": "Feature", "properties": { "id": 24, "id_full": "forks-24" }, "geometry": { "type": "Point", "coordinates": [ 32506746.461005732417107, 6005002.454771279357374 ] } }, +{ "type": "Feature", "properties": { "id": 25, "id_full": "forks-25" }, "geometry": { "type": "Point", "coordinates": [ 32506758.059295017272234, 6005017.481309016235173 ] } }, +{ "type": "Feature", "properties": { "id": 26, "id_full": "forks-26" }, "geometry": { "type": "Point", "coordinates": [ 32506815.631210200488567, 6005156.803712630644441 ] } }, +{ "type": "Feature", "properties": { "id": 27, "id_full": "forks-27" }, "geometry": { "type": "Point", "coordinates": [ 32506857.420281685888767, 6005175.401853865012527 ] } }, +{ "type": "Feature", "properties": { "id": 28, "id_full": "forks-28" }, "geometry": { "type": "Point", "coordinates": [ 32506901.096803050488234, 6005183.699540133588016 ] } }, +{ "type": "Feature", "properties": { "id": 29, "id_full": "forks-29" }, "geometry": { "type": "Point", "coordinates": [ 32506983.83998479694128, 6005006.224120298400521 ] } }, +{ "type": "Feature", "properties": { "id": 30, "id_full": "forks-30" }, "geometry": { "type": "Point", "coordinates": [ 32506990.210665870457888, 6005043.184641130268574 ] } }, +{ "type": "Feature", "properties": { "id": 31, "id_full": "forks-31" }, "geometry": { "type": "Point", "coordinates": [ 32506758.487752359360456, 6005302.260412618517876 ] } }, +{ "type": "Feature", "properties": { "id": 32, "id_full": "forks-32" }, "geometry": { "type": "Point", "coordinates": [ 32507023.054066255688667, 6004915.480935483239591 ] } }, +{ "type": "Feature", "properties": { "id": 33, "id_full": "forks-33" }, "geometry": { "type": "Point", "coordinates": [ 32506931.039892718195915, 6005095.022326570935547 ] } }, +{ "type": "Feature", "properties": { "id": 34, "id_full": "forks-34" }, "geometry": { "type": "Point", "coordinates": [ 32506959.267871152609587, 6005121.25927338283509 ] } }, +{ "type": "Feature", "properties": { "id": 35, "id_full": "forks-35" }, "geometry": { "type": "Point", "coordinates": [ 32506920.064067415893078, 6005126.549259348772466 ] } }, +{ "type": "Feature", "properties": { "id": 36, "id_full": "forks-36" }, "geometry": { "type": "Point", "coordinates": [ 32506871.223349299281836, 6005117.018729403614998 ] } }, +{ "type": "Feature", "properties": { "id": 37, "id_full": "forks-37" }, "geometry": { "type": "Point", "coordinates": [ 32506863.05286305770278, 6005113.902283472940326 ] } }, +{ "type": "Feature", "properties": { "id": 38, "id_full": "forks-38" }, "geometry": { "type": "Point", "coordinates": [ 32506890.007688235491514, 6005098.978906005620956 ] } }, +{ "type": "Feature", "properties": { "id": 39, "id_full": "forks-39" }, "geometry": { "type": "Point", "coordinates": [ 32506894.688163235783577, 6005100.505053408443928 ] } }, +{ "type": "Feature", "properties": { "id": 40, "id_full": "forks-40" }, "geometry": { "type": "Point", "coordinates": [ 32506925.620743818581104, 6005110.602306800894439 ] } }, +{ "type": "Feature", "properties": { "id": 41, "id_full": "forks-41" }, "geometry": { "type": "Point", "coordinates": [ 32506906.060875575989485, 6005168.68399494048208 ] } }, +{ "type": "Feature", "properties": { "id": 42, "id_full": "forks-42" }, "geometry": { "type": "Point", "coordinates": [ 32506968.895207814872265, 6005028.968333293683827 ] } }, +{ "type": "Feature", "properties": { "id": 43, "id_full": "forks-43" }, "geometry": { "type": "Point", "coordinates": [ 32507016.180187117308378, 6004930.535648110322654 ] } }, +{ "type": "Feature", "properties": { "id": 44, "id_full": "forks-44" }, "geometry": { "type": "Point", "coordinates": [ 32507055.788943462073803, 6004835.756441549398005 ] } }, +{ "type": "Feature", "properties": { "id": 45, "id_full": "forks-45" }, "geometry": { "type": "Point", "coordinates": [ 32506977.857269514352083, 6005041.763435141183436 ] } }, +{ "type": "Feature", "properties": { "id": 46, "id_full": "forks-46" }, "geometry": { "type": "Point", "coordinates": [ 32506834.086465626955032, 6005306.0683119809255 ] } }, +{ "type": "Feature", "properties": { "id": 47, "id_full": "forks-47" }, "geometry": { "type": "Point", "coordinates": [ 32507040.424831099808216, 6004741.460822491906583 ] } }, +{ "type": "Feature", "properties": { "id": 48, "id_full": "forks-48" }, "geometry": { "type": "Point", "coordinates": [ 32506999.825161140412092, 6004717.383402613922954 ] } }, +{ "type": "Feature", "properties": { "id": 49, "id_full": "forks-49" }, "geometry": { "type": "Point", "coordinates": [ 32506774.162415158003569, 6004688.607881280593574 ] } }, +{ "type": "Feature", "properties": { "id": 50, "id_full": "forks-50" }, "geometry": { "type": "Point", "coordinates": [ 32506774.079425685107708, 6004700.679925447329879 ] } }, +{ "type": "Feature", "properties": { "id": 51, "id_full": "forks-51" }, "geometry": { "type": "Point", "coordinates": [ 32506770.973308652639389, 6004717.554045321419835 ] } }, +{ "type": "Feature", "properties": { "id": 52, "id_full": "forks-52" }, "geometry": { "type": "Point", "coordinates": [ 32506756.913997627794743, 6004748.952905901707709 ] } }, +{ "type": "Feature", "properties": { "id": 53, "id_full": "forks-53" }, "geometry": { "type": "Point", "coordinates": [ 32506740.583661332726479, 6004747.206024529412389 ] } }, +{ "type": "Feature", "properties": { "id": 54, "id_full": "forks-54" }, "geometry": { "type": "Point", "coordinates": [ 32506726.416745118796825, 6005101.28377428650856 ] } }, +{ "type": "Feature", "properties": { "id": 55, "id_full": "forks-55" }, "geometry": { "type": "Point", "coordinates": [ 32506696.986993879079819, 6005095.343915767967701 ] } }, +{ "type": "Feature", "properties": { "id": 56, "id_full": "forks-56" }, "geometry": { "type": "Point", "coordinates": [ 32506665.899223614484072, 6005087.829689490608871 ] } }, +{ "type": "Feature", "properties": { "id": 57, "id_full": "forks-57" }, "geometry": { "type": "Point", "coordinates": [ 32506803.475475002080202, 6005024.547870636917651 ] } }, +{ "type": "Feature", "properties": { "id": 58, "id_full": "forks-58" }, "geometry": { "type": "Point", "coordinates": [ 32506823.60973072052002, 6005027.680673941038549 ] } }, +{ "type": "Feature", "properties": { "id": 59, "id_full": "forks-59" }, "geometry": { "type": "Point", "coordinates": [ 32506971.996567249298096, 6004956.330777766183019 ] } }, +{ "type": "Feature", "properties": { "id": 60, "id_full": "forks-60" }, "geometry": { "type": "Point", "coordinates": [ 32506978.648154817521572, 6004957.660532805137336 ] } }, +{ "type": "Feature", "properties": { "id": 61, "id_full": "forks-61" }, "geometry": { "type": "Point", "coordinates": [ 32506932.404087860137224, 6004951.471220350824296 ] } }, +{ "type": "Feature", "properties": { "id": 62, "id_full": "forks-62" }, "geometry": { "type": "Point", "coordinates": [ 32506939.293046627193689, 6004950.686475986614823 ] } }, +{ "type": "Feature", "properties": { "id": 63, "id_full": "forks-63" }, "geometry": { "type": "Point", "coordinates": [ 32506942.140576533973217, 6004950.362104319036007 ] } }, +{ "type": "Feature", "properties": { "id": 64, "id_full": "forks-64" }, "geometry": { "type": "Point", "coordinates": [ 32506882.491420675069094, 6005033.754231970757246 ] } }, +{ "type": "Feature", "properties": { "id": 65, "id_full": "forks-65" }, "geometry": { "type": "Point", "coordinates": [ 32506892.243028957396746, 6005034.82775982376188 ] } }, +{ "type": "Feature", "properties": { "id": 66, "id_full": "forks-66" }, "geometry": { "type": "Point", "coordinates": [ 32506851.069212395697832, 6005030.513078302145004 ] } }, +{ "type": "Feature", "properties": { "id": 67, "id_full": "forks-67" }, "geometry": { "type": "Point", "coordinates": [ 32506662.47467739507556, 6005287.92271167691797 ] } }, +{ "type": "Feature", "properties": { "id": 68, "id_full": "forks-68" }, "geometry": { "type": "Point", "coordinates": [ 32506640.347953863441944, 6005281.794904010370374 ] } }, +{ "type": "Feature", "properties": { "id": 69, "id_full": "forks-69" }, "geometry": { "type": "Point", "coordinates": [ 32506756.039207898080349, 6005313.986531776376069 ] } }, +{ "type": "Feature", "properties": { "id": 70, "id_full": "forks-70" }, "geometry": { "type": "Point", "coordinates": [ 32506727.893954079598188, 6005306.146244134753942 ] } }, +{ "type": "Feature", "properties": { "id": 71, "id_full": "forks-71" }, "geometry": { "type": "Point", "coordinates": [ 32506716.644411128014326, 6005303.012513199821115 ] } }, +{ "type": "Feature", "properties": { "id": 72, "id_full": "forks-72" }, "geometry": { "type": "Point", "coordinates": [ 32506702.223685432225466, 6005298.995401179417968 ] } }, +{ "type": "Feature", "properties": { "id": 73, "id_full": "forks-73" }, "geometry": { "type": "Point", "coordinates": [ 32506690.322933010756969, 6005295.680265962146223 ] } }, +{ "type": "Feature", "properties": { "id": 74, "id_full": "forks-74" }, "geometry": { "type": "Point", "coordinates": [ 32506740.842956084758043, 6005309.753385184332728 ] } }, +{ "type": "Feature", "properties": { "id": 75, "id_full": "forks-75" }, "geometry": { "type": "Point", "coordinates": [ 32506624.177454806864262, 6005277.331082834862173 ] } }, +{ "type": "Feature", "properties": { "id": 76, "id_full": "forks-76" }, "geometry": { "type": "Point", "coordinates": [ 32506678.330150615423918, 6005292.339494397863746 ] } }, +{ "type": "Feature", "properties": { "id": 77, "id_full": "forks-77" }, "geometry": { "type": "Point", "coordinates": [ 32506797.956073492765427, 6004967.27761441655457 ] } }, +{ "type": "Feature", "properties": { "id": 78, "id_full": "forks-78" }, "geometry": { "type": "Point", "coordinates": [ 32506795.28539727255702, 6004969.1316276807338 ] } }, +{ "type": "Feature", "properties": { "id": 79, "id_full": "forks-79" }, "geometry": { "type": "Point", "coordinates": [ 32507034.713617395609617, 6004886.971107840538025 ] } }, +{ "type": "Feature", "properties": { "id": 80, "id_full": "forks-80" }, "geometry": { "type": "Point", "coordinates": [ 32506944.880887020379305, 6004777.161187518388033 ] } }, +{ "type": "Feature", "properties": { "id": 81, "id_full": "forks-81" }, "geometry": { "type": "Point", "coordinates": [ 32506950.185454107820988, 6004758.780014672316611 ] } }, +{ "type": "Feature", "properties": { "id": 82, "id_full": "forks-82" }, "geometry": { "type": "Point", "coordinates": [ 32506959.298812948167324, 6004727.200769591145217 ] } }, +{ "type": "Feature", "properties": { "id": 83, "id_full": "forks-83" }, "geometry": { "type": "Point", "coordinates": [ 32506731.285512860864401, 6005005.676744327880442 ] } }, +{ "type": "Feature", "properties": { "id": 84, "id_full": "forks-84" }, "geometry": { "type": "Point", "coordinates": [ 32507012.298958111554384, 6004811.175051881931722 ] } }, +{ "type": "Feature", "properties": { "id": 85, "id_full": "forks-85" }, "geometry": { "type": "Point", "coordinates": [ 32506783.708717506378889, 6005021.472248470410705 ] } }, +{ "type": "Feature", "properties": { "id": 86, "id_full": "forks-86" }, "geometry": { "type": "Point", "coordinates": [ 32506817.141993094235659, 6004953.958534721285105 ] } }, +{ "type": "Feature", "properties": { "id": 87, "id_full": "forks-87" }, "geometry": { "type": "Point", "coordinates": [ 32506813.553776793181896, 6004956.449514558538795 ] } }, +{ "type": "Feature", "properties": { "id": 88, "id_full": "forks-88" }, "geometry": { "type": "Point", "coordinates": [ 32506823.312253437936306, 6004949.323739178478718 ] } }, +{ "type": "Feature", "properties": { "id": 89, "id_full": "forks-89" }, "geometry": { "type": "Point", "coordinates": [ 32506808.533012978732586, 6004959.934984880499542 ] } }, +{ "type": "Feature", "properties": { "id": 90, "id_full": "forks-90" }, "geometry": { "type": "Point", "coordinates": [ 32506901.362411059439182, 6004700.697937680408359 ] } }, +{ "type": "Feature", "properties": { "id": 91, "id_full": "forks-91" }, "geometry": { "type": "Point", "coordinates": [ 32506721.357687663286924, 6005007.784562867134809 ] } }, +{ "type": "Feature", "properties": { "id": 92, "id_full": "forks-92" }, "geometry": { "type": "Point", "coordinates": [ 32506963.536328300833702, 6004844.25948416814208 ] } }, +{ "type": "Feature", "properties": { "id": 93, "id_full": "forks-93" }, "geometry": { "type": "Point", "coordinates": [ 32506953.613189354538918, 6004851.448096404783428 ] } }, +{ "type": "Feature", "properties": { "id": 94, "id_full": "forks-94" }, "geometry": { "type": "Point", "coordinates": [ 32506707.760920882225037, 6005010.671349905431271 ] } }, +{ "type": "Feature", "properties": { "id": 95, "id_full": "forks-95" }, "geometry": { "type": "Point", "coordinates": [ 32506703.2613147161901, 6005011.626680312678218 ] } }, +{ "type": "Feature", "properties": { "id": 96, "id_full": "forks-96" }, "geometry": { "type": "Point", "coordinates": [ 32507003.270227983593941, 6004817.30085788667202 ] } }, +{ "type": "Feature", "properties": { "id": 97, "id_full": "forks-97" }, "geometry": { "type": "Point", "coordinates": [ 32506996.760915204882622, 6004821.717291509732604 ] } }, +{ "type": "Feature", "properties": { "id": 98, "id_full": "forks-98" }, "geometry": { "type": "Point", "coordinates": [ 32506829.537949100136757, 6004688.36667188256979 ] } }, +{ "type": "Feature", "properties": { "id": 99, "id_full": "forks-99" }, "geometry": { "type": "Point", "coordinates": [ 32506830.970641527324915, 6004681.731834987178445 ] } }, +{ "type": "Feature", "properties": { "id": 100, "id_full": "forks-100" }, "geometry": { "type": "Point", "coordinates": [ 32506760.00166030600667, 6004993.319673928432167 ] } }, +{ "type": "Feature", "properties": { "id": 101, "id_full": "forks-101" }, "geometry": { "type": "Point", "coordinates": [ 32506769.814468886703253, 6005019.310363342985511 ] } }, +{ "type": "Feature", "properties": { "id": 102, "id_full": "forks-102" }, "geometry": { "type": "Point", "coordinates": [ 32506946.964905604720116, 6004697.541654058732092 ] } }, +{ "type": "Feature", "properties": { "id": 103, "id_full": "forks-103" }, "geometry": { "type": "Point", "coordinates": [ 32506778.851514894515276, 6004980.540212396532297 ] } }, +{ "type": "Feature", "properties": { "id": 104, "id_full": "forks-104" }, "geometry": { "type": "Point", "coordinates": [ 32506768.873632948845625, 6004987.334266549907625 ] } }, +{ "type": "Feature", "properties": { "id": 105, "id_full": "forks-105" }, "geometry": { "type": "Point", "coordinates": [ 32506712.230517812073231, 6005009.722390885464847 ] } }, +{ "type": "Feature", "properties": { "id": 106, "id_full": "forks-106" }, "geometry": { "type": "Point", "coordinates": [ 32506787.188013788312674, 6004974.752921744249761 ] } }, +{ "type": "Feature", "properties": { "id": 107, "id_full": "forks-107" }, "geometry": { "type": "Point", "coordinates": [ 32506672.19807019457221, 6004953.321366431191564 ] } }, +{ "type": "Feature", "properties": { "id": 108, "id_full": "forks-108" }, "geometry": { "type": "Point", "coordinates": [ 32506676.925561025738716, 6004933.684903668239713 ] } }, +{ "type": "Feature", "properties": { "id": 109, "id_full": "forks-109" }, "geometry": { "type": "Point", "coordinates": [ 32506873.690982896834612, 6004911.48171990737319 ] } }, +{ "type": "Feature", "properties": { "id": 110, "id_full": "forks-110" }, "geometry": { "type": "Point", "coordinates": [ 32506862.94104577600956, 6004919.556542991660535 ] } }, +{ "type": "Feature", "properties": { "id": 111, "id_full": "forks-111" }, "geometry": { "type": "Point", "coordinates": [ 32506853.581471733748913, 6004926.586993841454387 ] } }, +{ "type": "Feature", "properties": { "id": 112, "id_full": "forks-112" }, "geometry": { "type": "Point", "coordinates": [ 32506842.017403721809387, 6004935.273351938463748 ] } }, +{ "type": "Feature", "properties": { "id": 113, "id_full": "forks-113" }, "geometry": { "type": "Point", "coordinates": [ 32506834.486889701336622, 6004940.929903021082282 ] } }, +{ "type": "Feature", "properties": { "id": 114, "id_full": "forks-114" }, "geometry": { "type": "Point", "coordinates": [ 32506986.214231237769127, 6004828.872997689992189 ] } }, +{ "type": "Feature", "properties": { "id": 115, "id_full": "forks-115" }, "geometry": { "type": "Point", "coordinates": [ 32506932.130744285881519, 6004867.584650641307235 ] } }, +{ "type": "Feature", "properties": { "id": 116, "id_full": "forks-116" }, "geometry": { "type": "Point", "coordinates": [ 32506919.662733968347311, 6004876.950005657039583 ] } }, +{ "type": "Feature", "properties": { "id": 117, "id_full": "forks-117" }, "geometry": { "type": "Point", "coordinates": [ 32506939.138930920511484, 6004862.320446154102683 ] } }, +{ "type": "Feature", "properties": { "id": 118, "id_full": "forks-118" }, "geometry": { "type": "Point", "coordinates": [ 32506900.988204181194305, 6004890.977392286993563 ] } }, +{ "type": "Feature", "properties": { "id": 119, "id_full": "forks-119" }, "geometry": { "type": "Point", "coordinates": [ 32506888.624447055160999, 6004900.264437444508076 ] } }, +{ "type": "Feature", "properties": { "id": 120, "id_full": "forks-120" }, "geometry": { "type": "Point", "coordinates": [ 32506953.373247098177671, 6004747.733802417293191 ] } }, +{ "type": "Feature", "properties": { "id": 121, "id_full": "forks-121" }, "geometry": { "type": "Point", "coordinates": [ 32506917.096217695623636, 6004878.877846222370863 ] } }, +{ "type": "Feature", "properties": { "id": 122, "id_full": "forks-122" }, "geometry": { "type": "Point", "coordinates": [ 32506832.823352623730898, 6004942.179470107890666 ] } }, +{ "type": "Feature", "properties": { "id": 123, "id_full": "forks-123" }, "geometry": { "type": "Point", "coordinates": [ 32506863.975002713501453, 6005031.844291222281754 ] } }, +{ "type": "Feature", "properties": { "id": 124, "id_full": "forks-124" }, "geometry": { "type": "Point", "coordinates": [ 32506822.627499092370272, 6005043.576945948414505 ] } }, +{ "type": "Feature", "properties": { "id": 125, "id_full": "forks-125" }, "geometry": { "type": "Point", "coordinates": [ 32506821.762899231165648, 6005057.56948518846184 ] } }, +{ "type": "Feature", "properties": { "id": 126, "id_full": "forks-126" }, "geometry": { "type": "Point", "coordinates": [ 32506820.38668043166399, 6005079.841979512944818 ] } }, +{ "type": "Feature", "properties": { "id": 127, "id_full": "forks-127" }, "geometry": { "type": "Point", "coordinates": [ 32506819.887813340872526, 6005087.915560906752944 ] } }, +{ "type": "Feature", "properties": { "id": 128, "id_full": "forks-128" }, "geometry": { "type": "Point", "coordinates": [ 32506818.82740742713213, 6005105.076992444694042 ] } }, +{ "type": "Feature", "properties": { "id": 129, "id_full": "forks-129" }, "geometry": { "type": "Point", "coordinates": [ 32506818.465808801352978, 6005110.929044021293521 ] } }, +{ "type": "Feature", "properties": { "id": 130, "id_full": "forks-130" }, "geometry": { "type": "Point", "coordinates": [ 32506817.597539994865656, 6005124.98096083290875 ] } }, +{ "type": "Feature", "properties": { "id": 131, "id_full": "forks-131" }, "geometry": { "type": "Point", "coordinates": [ 32506817.132637642323971, 6005132.504862571135163 ] } }, +{ "type": "Feature", "properties": { "id": 132, "id_full": "forks-132" }, "geometry": { "type": "Point", "coordinates": [ 32506816.082293409854174, 6005149.503457554616034 ] } }, +{ "type": "Feature", "properties": { "id": 133, "id_full": "forks-133" }, "geometry": { "type": "Point", "coordinates": [ 32506821.297996897250414, 6005065.09338659979403 ] } }, +{ "type": "Feature", "properties": { "id": 134, "id_full": "forks-134" }, "geometry": { "type": "Point", "coordinates": [ 32506911.433677285909653, 6004984.276436629705131 ] } }, +{ "type": "Feature", "properties": { "id": 135, "id_full": "forks-135" }, "geometry": { "type": "Point", "coordinates": [ 32506914.126209385693073, 6004979.673459259793162 ] } }, +{ "type": "Feature", "properties": { "id": 136, "id_full": "forks-136" }, "geometry": { "type": "Point", "coordinates": [ 32506916.818285372108221, 6004975.071261634118855 ] } }, +{ "type": "Feature", "properties": { "id": 137, "id_full": "forks-137" }, "geometry": { "type": "Point", "coordinates": [ 32506920.905918728560209, 6004968.083310093730688 ] } }, +{ "type": "Feature", "properties": { "id": 138, "id_full": "forks-138" }, "geometry": { "type": "Point", "coordinates": [ 32506923.4450902082026, 6004963.742508042603731 ] } }, +{ "type": "Feature", "properties": { "id": 139, "id_full": "forks-139" }, "geometry": { "type": "Point", "coordinates": [ 32506926.560590386390686, 6004958.416452016681433 ] } }, +{ "type": "Feature", "properties": { "id": 140, "id_full": "forks-140" }, "geometry": { "type": "Point", "coordinates": [ 32506956.185954, 6004953.169992100447416 ] } }, +{ "type": "Feature", "properties": { "id": 141, "id_full": "forks-141" }, "geometry": { "type": "Point", "coordinates": [ 32506961.455688826739788, 6004954.223493443801999 ] } }, +{ "type": "Feature", "properties": { "id": 142, "id_full": "forks-142" }, "geometry": { "type": "Point", "coordinates": [ 32506896.847592517733574, 6005009.211856375448406 ] } }, +{ "type": "Feature", "properties": { "id": 143, "id_full": "forks-143" }, "geometry": { "type": "Point", "coordinates": [ 32506899.291071772575378, 6005005.034643517807126 ] } }, +{ "type": "Feature", "properties": { "id": 144, "id_full": "forks-144" }, "geometry": { "type": "Point", "coordinates": [ 32506927.96684343740344, 6004956.745063732378185 ] } }, +{ "type": "Feature", "properties": { "id": 145, "id_full": "forks-145" }, "geometry": { "type": "Point", "coordinates": [ 32506966.725317884236574, 6004955.276973642408848 ] } }, +{ "type": "Feature", "properties": { "id": 146, "id_full": "forks-146" }, "geometry": { "type": "Point", "coordinates": [ 32506946.472613282501698, 6004951.228145341388881 ] } }, +{ "type": "Feature", "properties": { "id": 147, "id_full": "forks-147" }, "geometry": { "type": "Point", "coordinates": [ 32506903.346458375453949, 6004998.101818922907114 ] } }, +{ "type": "Feature", "properties": { "id": 148, "id_full": "forks-148" }, "geometry": { "type": "Point", "coordinates": [ 32506906.03665117174387, 6004993.502840675413609 ] } }, +{ "type": "Feature", "properties": { "id": 149, "id_full": "forks-149" }, "geometry": { "type": "Point", "coordinates": [ 32506951.768994342535734, 6004952.286973678506911 ] } }, +{ "type": "Feature", "properties": { "id": 150, "id_full": "forks-150" }, "geometry": { "type": "Point", "coordinates": [ 32506908.726193338632584, 6004988.904974704608321 ] } }, +{ "type": "Feature", "properties": { "id": 151, "id_full": "forks-151" }, "geometry": { "type": "Point", "coordinates": [ 32506901.873548362404108, 6005000.619809870608151 ] } }, +{ "type": "Feature", "properties": { "id": 152, "id_full": "forks-152" }, "geometry": { "type": "Point", "coordinates": [ 32506918.216524910181761, 6004972.680922463536263 ] } }, +{ "type": "Feature", "properties": { "id": 153, "id_full": "forks-153" }, "geometry": { "type": "Point", "coordinates": [ 32506668.398750115185976, 6004969.102509101852775 ] } }, +{ "type": "Feature", "properties": { "id": 154, "id_full": "forks-154" }, "geometry": { "type": "Point", "coordinates": [ 32506678.807402063161135, 6004925.868346692062914 ] } }, +{ "type": "Feature", "properties": { "id": 155, "id_full": "forks-155" }, "geometry": { "type": "Point", "coordinates": [ 32506681.648138843476772, 6004914.06884797103703 ] } }, +{ "type": "Feature", "properties": { "id": 156, "id_full": "forks-156" }, "geometry": { "type": "Point", "coordinates": [ 32506777.753673400729895, 6004673.914529995061457 ] } }, +{ "type": "Feature", "properties": { "id": 157, "id_full": "forks-157" }, "geometry": { "type": "Point", "coordinates": [ 32506778.520040560513735, 6004670.778998893685639 ] } }, +{ "type": "Feature", "properties": { "id": 158, "id_full": "forks-158" }, "geometry": { "type": "Point", "coordinates": [ 32506754.168573398143053, 6004682.577916228212416 ] } }, +{ "type": "Feature", "properties": { "id": 159, "id_full": "forks-159" }, "geometry": { "type": "Point", "coordinates": [ 32506748.453176651149988, 6004680.854203343391418 ] } }, +{ "type": "Feature", "properties": { "id": 160, "id_full": "forks-160" }, "geometry": { "type": "Point", "coordinates": [ 32506742.56112327426672, 6004679.077212388627231 ] } }, +{ "type": "Feature", "properties": { "id": 161, "id_full": "forks-161" }, "geometry": { "type": "Point", "coordinates": [ 32506736.701256807893515, 6004677.30992872081697 ] } }, +{ "type": "Feature", "properties": { "id": 162, "id_full": "forks-162" }, "geometry": { "type": "Point", "coordinates": [ 32506731.171738628298044, 6004675.642275162041187 ] } }, +{ "type": "Feature", "properties": { "id": 163, "id_full": "forks-163" }, "geometry": { "type": "Point", "coordinates": [ 32506756.704313155263662, 6004683.342672811821103 ] } } ] } diff --git a/examples/optimisation/network_aggregation/network_data/pipes.geojson b/examples/optimisation/network_aggregation/network_data/pipes.geojson index bfd4c795..88c2012e 100644 --- a/examples/optimisation/network_aggregation/network_data/pipes.geojson +++ b/examples/optimisation/network_aggregation/network_data/pipes.geojson @@ -2,338 +2,338 @@ "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, "features": [ -{ "type": "Feature", "properties": { "id": 0, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-0", "to_node": "forks-1", "length": 48.930750408040154 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506930.132400441914797, 6005038.999399862252176 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, -{ "type": "Feature", "properties": { "id": 1, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-3", "length": 84.101415234176301 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506849.56926654279232, 6005309.829775800928473 ], [ 32506852.788861401379108, 6005303.303346553817391 ], [ 32506857.729554239660501, 6005293.263527888804674 ], [ 32506874.377478789538145, 6005259.486231505870819 ], [ 32506877.43430345505476, 6005252.781554163433611 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, -{ "type": "Feature", "properties": { "id": 2, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-5", "length": 49.65468218997448 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507066.510839566588402, 6004782.174897360615432 ], [ 32507072.530063845217228, 6004784.309275067411363 ], [ 32507075.421466507017612, 6004787.996558192186058 ], [ 32507077.794186722487211, 6004793.774814426898956 ], [ 32507077.255080308765173, 6004800.672369468957186 ], [ 32507074.454373985528946, 6004805.919742610305548 ], [ 32507067.962735038250685, 6004809.770653950050473 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, -{ "type": "Feature", "properties": { "id": 3, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-5", "to_node": "forks-6", "length": 20.118775802046997 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507062.904994439333677, 6004810.397108196280897 ], [ 32507057.250238422304392, 6004808.886380590498447 ], [ 32507053.053128503262997, 6004805.67554706055671 ], [ 32507050.371553130447865, 6004801.309886945411563 ], [ 32507049.679193664342165, 6004797.514717631973326 ] ] } }, -{ "type": "Feature", "properties": { "id": 4, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-6", "to_node": "forks-4", "length": 19.483020231991176 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507051.015878472477198, 6004789.583621971309185 ], [ 32507055.721855498850346, 6004784.328024078160524 ], [ 32507059.691856741905212, 6004782.464862993918359 ] ] } }, -{ "type": "Feature", "properties": { "id": 5, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-7", "to_node": "forks-2", "length": 32.69106870034981 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506831.632401779294014, 6005311.127199975773692 ], [ 32506836.87445405870676, 6005313.4047647183761 ], [ 32506846.360497884452343, 6005317.858291626907885 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, -{ "type": "Feature", "properties": { "id": 6, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-6", "to_node": "forks-8", "length": 21.050810792646477 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507040.76520436629653, 6004798.157553435303271 ], [ 32507036.399958070367575, 6004798.217646886594594 ], [ 32507029.144705783575773, 6004800.936656161211431 ] ] } }, -{ "type": "Feature", "properties": { "id": 7, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-9", "to_node": "forks-10", "length": 36.734210973200092 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506674.726261701434851, 6005018.216621937230229 ], [ 32506654.861689653247595, 6005025.33106526453048 ] ] } }, -{ "type": "Feature", "properties": { "id": 8, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-11", "length": 58.167007772036605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506643.196130774915218, 6005070.34288255404681 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, -{ "type": "Feature", "properties": { "id": 9, "highway": "residential", "name": "Rüsdorfer Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-11", "to_node": "forks-12", "length": 16.145295829953266 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.289495009928942, 6005081.643143246881664 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, -{ "type": "Feature", "properties": { "id": 10, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-13", "to_node": "forks-14", "length": 151.40987648790704 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506632.455033458769321, 6005112.374179692007601 ], [ 32506627.507085636258125, 6005132.205481625162065 ], [ 32506623.818144433200359, 6005147.66591256391257 ], [ 32506620.064255829900503, 6005162.937104214914143 ], [ 32506615.55568515136838, 6005181.278110017068684 ], [ 32506613.350609008222818, 6005190.265099276788533 ], [ 32506610.443355057388544, 6005202.099448162131011 ], [ 32506608.262401930987835, 6005207.926569108851254 ], [ 32506604.114207334816456, 6005225.255598852410913 ], [ 32506597.784114979207516, 6005240.000177503563464 ], [ 32506592.558225195854902, 6005249.951128247193992 ] ] } }, -{ "type": "Feature", "properties": { "id": 11, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-14", "to_node": "forks-15", "length": 9.1179305943723072 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506591.320538651198149, 6005252.307886299677193 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, -{ "type": "Feature", "properties": { "id": 12, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-15", "to_node": "forks-16", "length": 32.100377577737376 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506587.964162901043892, 6005263.474022278562188 ], [ 32506587.762997552752495, 6005267.278973447158933 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, -{ "type": "Feature", "properties": { "id": 13, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-17", "to_node": "forks-18", "length": 7.23397136554079 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506973.341402161866426, 6004704.626499322243035 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, -{ "type": "Feature", "properties": { "id": 14, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-19", "to_node": "forks-20", "length": 74.004680308054191 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506905.58015414327383, 6004686.432937293313444 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, -{ "type": "Feature", "properties": { "id": 15, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-21", "to_node": "forks-22", "length": 23.950407844761276 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506799.387847676873207, 6004657.913845077157021 ], [ 32506782.945804461836815, 6004652.671333202160895 ] ] } }, -{ "type": "Feature", "properties": { "id": 16, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-22", "to_node": "forks-17", "length": 340.26583045827465 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506755.443020176142454, 6004643.41827427316457 ], [ 32506785.601000711321831, 6004608.692504844628274 ], [ 32506825.060652066022158, 6004563.265953474678099 ], [ 32506831.744175631552935, 6004570.930828711017966 ], [ 32506840.820324942469597, 6004580.012318628840148 ], [ 32506853.381121914833784, 6004593.327044745907187 ], [ 32506869.332918431609869, 6004607.993153758347034 ], [ 32506916.344829179346561, 6004648.39671597443521 ], [ 32506938.577460221946239, 6004669.014002612791955 ], [ 32506958.951517555862665, 6004688.794110026210546 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, -{ "type": "Feature", "properties": { "id": 17, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-7", "to_node": "forks-23", "length": 41.544433354428605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506818.050234023481607, 6005310.350491045974195 ], [ 32506800.642851490527391, 6005319.804492926225066 ], [ 32506796.837095130234957, 6005321.278694453649223 ], [ 32506793.04543898999691, 6005322.040828321129084 ], [ 32506788.133238516747952, 6005321.710924620740116 ], [ 32506785.853551879525185, 6005321.162249530665576 ] ] } }, -{ "type": "Feature", "properties": { "id": 18, "highway": "residential", "name": "Stettiner Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-24", "to_node": "forks-25", "length": 18.982021775696019 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506758.059295017272234, 6005017.481309016235173 ] ] } }, -{ "type": "Feature", "properties": { "id": 19, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-26", "to_node": "forks-27", "length": 52.701423082946803 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506815.066916454583406, 6005165.936148005537689 ], [ 32506830.834934014827013, 6005171.277921593748033 ], [ 32506857.420281685888767, 6005175.401853865012527 ] ] } }, -{ "type": "Feature", "properties": { "id": 20, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-27", "to_node": "forks-28", "length": 44.573572810303936 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506875.229494299739599, 6005178.164427729323506 ], [ 32506877.851715076714754, 6005178.546638377942145 ], [ 32506880.474450293928385, 6005178.583931988105178 ], [ 32506884.531792610883713, 6005179.124058937653899 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, -{ "type": "Feature", "properties": { "id": 21, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-30", "length": 38.483474769190238 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506983.146614462137222, 6005024.615053474903107 ], [ 32506984.83666018769145, 6005033.107077995315194 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, -{ "type": "Feature", "properties": { "id": 22, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-31", "to_node": "forks-3", "length": 189.88504086378893 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506761.41373110935092, 6005288.247852889820933 ], [ 32506768.106216792017221, 6005284.719470574520528 ], [ 32506768.58904629573226, 6005275.807909052819014 ], [ 32506772.436157487332821, 6005237.327239649370313 ], [ 32506778.249345108866692, 6005228.412388440221548 ], [ 32506784.139542851597071, 6005224.816091160289943 ], [ 32506794.208307005465031, 6005219.178695933893323 ], [ 32506815.131370950490236, 6005219.420987154357135 ], [ 32506849.753633692860603, 6005225.280305446125567 ], [ 32506870.448009263724089, 6005230.106597077101469 ], [ 32506874.400354873389006, 6005231.024857359007001 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, -{ "type": "Feature", "properties": { "id": 23, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-30", "to_node": "forks-32", "length": 340.86861334048416 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506990.210665870457888, 6005043.184641130268574 ], [ 32507017.173750825226307, 6005049.356270640157163 ], [ 32507024.24387625977397, 6005050.980371178127825 ], [ 32507032.057673122733831, 6005052.683502029627562 ], [ 32507039.030090410262346, 6005054.196211940608919 ], [ 32507095.425084549933672, 6005068.902803309261799 ], [ 32507099.61846774071455, 6005070.12204088177532 ], [ 32507105.079793032258749, 6005048.756587056443095 ], [ 32507108.880019243806601, 6005029.925403732806444 ], [ 32507113.154372714459896, 6005012.519138348288834 ], [ 32507115.639401003718376, 6005000.384041387587786 ], [ 32507119.159936010837555, 6004985.268662626855075 ], [ 32507125.537302955985069, 6004958.130034665577114 ], [ 32507123.130625989288092, 6004953.308572310954332 ], [ 32507119.20999788120389, 6004948.6294163800776 ], [ 32507112.447489432990551, 6004946.304680480621755 ], [ 32507096.74439213424921, 6004940.884161343798041 ], [ 32507081.034716226160526, 6004935.474812150001526 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, -{ "type": "Feature", "properties": { "id": 24, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-34", "length": 50.586773458177269 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506964.114786304533482, 6005106.432262209244072 ], [ 32506959.267871152609587, 6005121.25927338283509 ] ] } }, -{ "type": "Feature", "properties": { "id": 25, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-34", "to_node": "forks-35", "length": 49.532371763572257 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506954.997180473059416, 6005134.323578499257565 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, -{ "type": "Feature", "properties": { "id": 26, "highway": "service", "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": "driveway", "access": null, "type": "DL", "from_node": "forks-36", "to_node": "forks-37", "length": 8.7446601227635696 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506863.05286305770278, 6005113.902283472940326 ] ] } }, -{ "type": "Feature", "properties": { "id": 27, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-37", "to_node": "forks-38", "length": 44.866942083977705 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506863.05286305770278, 6005113.902283472940326 ], [ 32506868.820386204868555, 6005092.069696916267276 ], [ 32506875.811225049197674, 6005094.349910996854305 ], [ 32506890.007688235491514, 6005098.978906005620956 ] ] } }, -{ "type": "Feature", "properties": { "id": 28, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-39", "to_node": "forks-40", "length": 32.538886962521097 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506905.326579809188843, 6005103.973887623287737 ], [ 32506909.884949542582035, 6005105.460533680394292 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, -{ "type": "Feature", "properties": { "id": 29, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-3", "to_node": "forks-28", "length": 52.413555485224038 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506884.118155308067799, 6005233.286900076083839 ], [ 32506897.695788338780403, 6005193.641477124765515 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, -{ "type": "Feature", "properties": { "id": 30, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-41", "to_node": "forks-35", "length": 44.401197384328732 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506909.269722919911146, 6005158.977732182480395 ], [ 32506918.045713808387518, 6005132.432110263034701 ], [ 32506918.576595596969128, 6005130.830701379105449 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, -{ "type": "Feature", "properties": { "id": 31, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-35", "to_node": "forks-40", "length": 16.887330997184353 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.064067415893078, 6005126.549259348772466 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, -{ "type": "Feature", "properties": { "id": 32, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-40", "to_node": "forks-33", "length": 16.495543603110093 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506925.620743818581104, 6005110.602306800894439 ], [ 32506931.039892718195915, 6005095.022326570935547 ] ] } }, -{ "type": "Feature", "properties": { "id": 33, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-1", "length": 62.273477677616725 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506936.85857841745019, 6005078.441575756296515 ], [ 32506943.116743721067905, 6005060.337174004875124 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, -{ "type": "Feature", "properties": { "id": 34, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-42", "to_node": "forks-29", "length": 27.378709179057996 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506972.555892087519169, 6005025.500261910259724 ], [ 32506983.83998479694128, 6005006.224120298400521 ] ] } }, -{ "type": "Feature", "properties": { "id": 35, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-43", "length": 82.309282614808183 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506997.676446001976728, 6004973.299755467101932 ], [ 32507001.493707738816738, 6004964.482295924797654 ], [ 32507016.180187117308378, 6004930.535648110322654 ] ] } }, -{ "type": "Feature", "properties": { "id": 36, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": "DE:253,10", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": "track", "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-43", "to_node": "forks-32", "length": 16.549760925557624 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, -{ "type": "Feature", "properties": { "id": 37, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-44", "to_node": "forks-5", "length": 26.569819452160623 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507056.958943579345942, 6004832.941263437271118 ], [ 32507062.226572059094906, 6004818.80764533020556 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, -{ "type": "Feature", "properties": { "id": 38, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-45", "to_node": "forks-30", "length": 12.434883382597702 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506988.514574155211449, 6005042.992920082062483 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, -{ "type": "Feature", "properties": { "id": 39, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-7", "to_node": "forks-46", "length": 10.105680894875992 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506828.487186539918184, 6005307.105897605419159 ], [ 32506834.086465626955032, 6005306.0683119809255 ] ] } }, -{ "type": "Feature", "properties": { "id": 40, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-46", "to_node": "forks-2", "length": 16.093642909239808 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506839.983860768377781, 6005306.377473699860275 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, -{ "type": "Feature", "properties": { "id": 41, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-15", "to_node": "forks-12", "length": 186.83480570927742 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506580.43083043769002, 6005248.253432797268033 ], [ 32506586.498014286160469, 6005225.686575460247695 ], [ 32506599.077679563313723, 6005179.529892827384174 ], [ 32506610.953214820474386, 6005133.194214399904013 ], [ 32506617.463154081255198, 6005106.92293609213084 ], [ 32506620.289027590304613, 6005097.291508676484227 ], [ 32506622.654141690582037, 6005095.025115229189396 ], [ 32506626.497879713773727, 6005094.452065224759281 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, -{ "type": "Feature", "properties": { "id": 42, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-47", "length": 46.601378996993553 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507058.269206289201975, 6004774.08448775857687 ], [ 32507055.049979239702225, 6004762.886378192342818 ], [ 32507049.614296812564135, 6004750.349710370413959 ], [ 32507040.424831099808216, 6004741.460822491906583 ] ] } }, -{ "type": "Feature", "properties": { "id": 43, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-48", "to_node": "forks-17", "length": 29.417395299614718 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.376538667827845, 6004714.249341813847423 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, -{ "type": "Feature", "properties": { "id": 44, "highway": "residential", "name": "Auguste-Ebeling-Straße", "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": "no", "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-50", "length": 12.072329419637438 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506774.079425685107708, 6004700.679925447329879 ] ] } }, -{ "type": "Feature", "properties": { "id": 45, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-50", "to_node": "forks-51", "length": 17.159504622818627 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506772.276173859834671, 6004711.158364219591022 ], [ 32506770.973308652639389, 6004717.554045321419835 ] ] } }, -{ "type": "Feature", "properties": { "id": 46, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-51", "to_node": "forks-52", "length": 38.487725169228518 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506770.028414003551006, 6004722.192472075112164 ], [ 32506767.165194243192673, 6004734.672112413682044 ], [ 32506762.504478130489588, 6004749.296516856178641 ], [ 32506756.913997627794743, 6004748.952905901707709 ] ] } }, -{ "type": "Feature", "properties": { "id": 47, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-52", "to_node": "forks-53", "length": 16.431622515339562 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506751.563101142644882, 6004748.624020638875663 ], [ 32506740.583661332726479, 6004747.206024529412389 ] ] } }, -{ "type": "Feature", "properties": { "id": 48, "highway": "service", "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": "private", "type": "DL", "from_node": "forks-54", "to_node": "forks-55", "length": 30.023193988180321 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506696.986993879079819, 6005095.343915767967701 ] ] } }, -{ "type": "Feature", "properties": { "id": 49, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-56", "to_node": "forks-11", "length": 26.346376967566655 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506648.500972010195255, 6005083.624357352033257 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, -{ "type": "Feature", "properties": { "id": 50, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-42", "length": 15.244582403753499 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506968.895207814872265, 6005028.968333293683827 ] ] } }, -{ "type": "Feature", "properties": { "id": 51, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-57", "to_node": "forks-58", "length": 20.37652349832614 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506823.60973072052002, 6005027.680673941038549 ] ] } }, -{ "type": "Feature", "properties": { "id": 52, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-59", "to_node": "forks-60", "length": 6.7832046734098697 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506978.648154817521572, 6004957.660532805137336 ] ] } }, -{ "type": "Feature", "properties": { "id": 53, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-61", "to_node": "forks-62", "length": 6.9335111315525166 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506939.293046627193689, 6004950.686475986614823 ] ] } }, -{ "type": "Feature", "properties": { "id": 54, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-62", "to_node": "forks-63", "length": 2.8659454894906302 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506942.140576533973217, 6004950.362104319036007 ] ] } }, -{ "type": "Feature", "properties": { "id": 55, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-64", "to_node": "forks-65", "length": 9.8105211963044052 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506892.243028957396746, 6005034.82775982376188 ] ] } }, -{ "type": "Feature", "properties": { "id": 56, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-65", "to_node": "forks-0", "length": 16.887334600911991 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506909.028953850269318, 6005036.675676329992712 ] ] } }, -{ "type": "Feature", "properties": { "id": 57, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-58", "to_node": "forks-66", "length": 27.605174303638094 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506851.069212395697832, 6005030.513078302145004 ] ] } }, -{ "type": "Feature", "properties": { "id": 58, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-67", "to_node": "forks-68", "length": 22.959585823349634 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506654.616219203919172, 6005285.733618872240186 ], [ 32506640.347953863441944, 6005281.794904010370374 ] ] } }, -{ "type": "Feature", "properties": { "id": 59, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-69", "to_node": "forks-31", "length": 11.979033370149464 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506758.487752359360456, 6005302.260412618517876 ] ] } }, -{ "type": "Feature", "properties": { "id": 60, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-23", "to_node": "forks-69", "length": 30.66571428049804 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506756.039207898080349, 6005313.986531776376069 ] ] } }, -{ "type": "Feature", "properties": { "id": 61, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-70", "to_node": "forks-71", "length": 11.677863083290758 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506716.644411128014326, 6005303.012513199821115 ] ] } }, -{ "type": "Feature", "properties": { "id": 62, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-71", "to_node": "forks-72", "length": 14.969786858123685 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506702.223685432225466, 6005298.995401179417968 ] ] } }, -{ "type": "Feature", "properties": { "id": 63, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-72", "to_node": "forks-73", "length": 12.353866994017851 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506690.322933010756969, 6005295.680265962146223 ] ] } }, -{ "type": "Feature", "properties": { "id": 64, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-69", "to_node": "forks-74", "length": 15.774840704223596 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506740.842956084758043, 6005309.753385184332728 ] ] } }, -{ "type": "Feature", "properties": { "id": 65, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-74", "to_node": "forks-70", "length": 13.442028101487896 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506727.893954079598188, 6005306.146244134753942 ] ] } }, -{ "type": "Feature", "properties": { "id": 66, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-68", "to_node": "forks-75", "length": 16.775301464525015 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506624.177454806864262, 6005277.331082834862173 ] ] } }, -{ "type": "Feature", "properties": { "id": 67, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-75", "to_node": "forks-16", "length": 14.690029934981304 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, -{ "type": "Feature", "properties": { "id": 68, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-73", "to_node": "forks-76", "length": 12.449400958541288 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506678.330150615423918, 6005292.339494397863746 ] ] } }, -{ "type": "Feature", "properties": { "id": 69, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-76", "to_node": "forks-67", "length": 16.459161602136028 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506662.47467739507556, 6005287.92271167691797 ] ] } }, -{ "type": "Feature", "properties": { "id": 70, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-77", "to_node": "forks-78", "length": 3.2511346722243273 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506795.28539727255702, 6004969.1316276807338 ] ] } }, -{ "type": "Feature", "properties": { "id": 71, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-32", "to_node": "forks-79", "length": 30.801873400833628 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507023.054066255688667, 6004915.480935483239591 ], [ 32507034.713617395609617, 6004886.971107840538025 ] ] } }, -{ "type": "Feature", "properties": { "id": 72, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-79", "to_node": "forks-44", "length": 55.381718657617995 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507047.633258003741503, 6004855.380120977759361 ], [ 32507055.788943462073803, 6004835.756441549398005 ] ] } }, -{ "type": "Feature", "properties": { "id": 73, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-80", "to_node": "forks-81", "length": 19.13128190117753 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506950.185454107820988, 6004758.780014672316611 ] ] } }, -{ "type": "Feature", "properties": { "id": 74, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-82", "to_node": "forks-18", "length": 25.452005598808491 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, -{ "type": "Feature", "properties": { "id": 75, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-24", "to_node": "forks-83", "length": 15.513758223588377 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506731.285512860864401, 6005005.676744327880442 ] ] } }, -{ "type": "Feature", "properties": { "id": 76, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-8", "to_node": "forks-84", "length": 19.806018603355987 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507025.222955066710711, 6004802.406388177536428 ], [ 32507012.298958111554384, 6004811.175051881931722 ] ] } }, -{ "type": "Feature", "properties": { "id": 77, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-85", "to_node": "forks-57", "length": 20.004603310362665 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506803.475475002080202, 6005024.547870636917651 ] ] } }, -{ "type": "Feature", "properties": { "id": 78, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-86", "to_node": "forks-87", "length": 4.3680976148378781 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506813.553776793181896, 6004956.449514558538795 ] ] } }, -{ "type": "Feature", "properties": { "id": 79, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-88", "to_node": "forks-86", "length": 7.7170876911347053 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506817.141993094235659, 6004953.958534721285105 ] ] } }, -{ "type": "Feature", "properties": { "id": 80, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-87", "to_node": "forks-89", "length": 6.1120023434020982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506808.533012978732586, 6004959.934984880499542 ] ] } }, -{ "type": "Feature", "properties": { "id": 81, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-89", "to_node": "forks-77", "length": 12.875785700047937 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506797.956073492765427, 6004967.27761441655457 ] ] } }, -{ "type": "Feature", "properties": { "id": 82, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-90", "to_node": "forks-19", "length": 14.875469497298331 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, -{ "type": "Feature", "properties": { "id": 83, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-83", "to_node": "forks-91", "length": 10.149118786775464 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506721.357687663286924, 6005007.784562867134809 ] ] } }, -{ "type": "Feature", "properties": { "id": 84, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-92", "to_node": "forks-93", "length": 12.256625746103836 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506959.887568239122629, 6004846.735092141665518 ], [ 32506953.613189354538918, 6004851.448096404783428 ] ] } }, -{ "type": "Feature", "properties": { "id": 85, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-20", "to_node": "forks-21", "length": 29.258208096292304 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.067715518176556, 6004667.389202644117177 ], [ 32506805.844013649970293, 6004659.677821842953563 ] ] } }, -{ "type": "Feature", "properties": { "id": 86, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-94", "to_node": "forks-95", "length": 4.5999034594684964 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506703.2613147161901, 6005011.626680312678218 ] ] } }, -{ "type": "Feature", "properties": { "id": 87, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-47", "to_node": "forks-48", "length": 47.275981869211954 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507038.577310808002949, 6004739.673732661642134 ], [ 32506999.825161140412092, 6004717.383402613922954 ] ] } }, -{ "type": "Feature", "properties": { "id": 88, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-84", "to_node": "forks-96", "length": 10.910704236265087 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507003.270227983593941, 6004817.30085788667202 ] ] } }, -{ "type": "Feature", "properties": { "id": 89, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-96", "to_node": "forks-97", "length": 7.8661323913340357 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32506996.760915204882622, 6004821.717291509732604 ] ] } }, -{ "type": "Feature", "properties": { "id": 90, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-98", "to_node": "forks-99", "length": 6.7877587036788922 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506830.970641527324915, 6004681.731834987178445 ] ] } }, -{ "type": "Feature", "properties": { "id": 91, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-99", "to_node": "forks-20", "length": 14.673205847156813 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, -{ "type": "Feature", "properties": { "id": 92, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-100", "to_node": "forks-24", "length": 16.333993078612245 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506746.461005732417107, 6005002.454771279357374 ] ] } }, -{ "type": "Feature", "properties": { "id": 93, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-25", "to_node": "forks-101", "length": 11.896619369836037 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506769.814468886703253, 6005019.310363342985511 ] ] } }, -{ "type": "Feature", "properties": { "id": 94, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-101", "to_node": "forks-85", "length": 14.061432786510078 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506783.708717506378889, 6005021.472248470410705 ] ] } }, -{ "type": "Feature", "properties": { "id": 95, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-18", "to_node": "forks-102", "length": 20.077466912748715 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.355939168483019, 6004702.74669920373708 ], [ 32506946.964905604720116, 6004697.541654058732092 ] ] } }, -{ "type": "Feature", "properties": { "id": 96, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-102", "to_node": "forks-19", "length": 42.849751944439234 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, -{ "type": "Feature", "properties": { "id": 97, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-103", "to_node": "forks-104", "length": 12.071576245623099 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506775.654936447739601, 6004982.75931285880506 ], [ 32506768.873632948845625, 6004987.334266549907625 ] ] } }, -{ "type": "Feature", "properties": { "id": 98, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-91", "to_node": "forks-105", "length": 9.3306166420836902 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506712.230517812073231, 6005009.722390885464847 ] ] } }, -{ "type": "Feature", "properties": { "id": 99, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-105", "to_node": "forks-94", "length": 4.5692253103654279 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506707.760920882225037, 6005010.671349905431271 ] ] } }, -{ "type": "Feature", "properties": { "id": 100, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-78", "to_node": "forks-106", "length": 9.8573102943669628 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506787.188013788312674, 6004974.752921744249761 ] ] } }, -{ "type": "Feature", "properties": { "id": 101, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-106", "to_node": "forks-103", "length": 10.148396272332 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506778.851514894515276, 6004980.540212396532297 ] ] } }, -{ "type": "Feature", "properties": { "id": 102, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-107", "to_node": "forks-108", "length": 20.197520625055891 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506676.925561025738716, 6004933.684903668239713 ] ] } }, -{ "type": "Feature", "properties": { "id": 103, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-95", "to_node": "forks-9", "length": 13.652059525991209 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506689.959371760487556, 6005014.698657347820699 ] ] } }, -{ "type": "Feature", "properties": { "id": 104, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-109", "to_node": "forks-110", "length": 13.444847189322466 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506862.94104577600956, 6004919.556542991660535 ] ] } }, -{ "type": "Feature", "properties": { "id": 105, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-110", "to_node": "forks-111", "length": 11.705932914720055 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506853.581471733748913, 6004926.586993841454387 ] ] } }, -{ "type": "Feature", "properties": { "id": 106, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-104", "to_node": "forks-100", "length": 10.702196039233204 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506760.00166030600667, 6004993.319673928432167 ] ] } }, -{ "type": "Feature", "properties": { "id": 107, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-111", "to_node": "forks-112", "length": 14.463073185676793 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506842.017403721809387, 6004935.273351938463748 ] ] } }, -{ "type": "Feature", "properties": { "id": 108, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-112", "to_node": "forks-113", "length": 9.4183444172959518 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506834.486889701336622, 6004940.929903021082282 ] ] } }, -{ "type": "Feature", "properties": { "id": 109, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-97", "to_node": "forks-114", "length": 12.74506467776347 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506986.214231237769127, 6004828.872997689992189 ] ] } }, -{ "type": "Feature", "properties": { "id": 110, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-114", "to_node": "forks-92", "length": 27.40494932962573 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506963.536328300833702, 6004844.25948416814208 ] ] } }, -{ "type": "Feature", "properties": { "id": 111, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-115", "to_node": "forks-116", "length": 15.593625487642139 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506919.662733968347311, 6004876.950005657039583 ] ] } }, -{ "type": "Feature", "properties": { "id": 112, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-93", "to_node": "forks-117", "length": 18.10282150070913 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506939.138930920511484, 6004862.320446154102683 ] ] } }, -{ "type": "Feature", "properties": { "id": 113, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-117", "to_node": "forks-115", "length": 8.765074374408389 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506932.130744285881519, 6004867.584650641307235 ] ] } }, -{ "type": "Feature", "properties": { "id": 114, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-55", "to_node": "forks-56", "length": 31.983011999679352 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506696.986993879079819, 6005095.343915767967701 ], [ 32506665.899223614484072, 6005087.829689490608871 ] ] } }, -{ "type": "Feature", "properties": { "id": 115, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-118", "to_node": "forks-119", "length": 15.463236984191026 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506888.624447055160999, 6004900.264437444508076 ] ] } }, -{ "type": "Feature", "properties": { "id": 116, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-119", "to_node": "forks-109", "length": 18.67714586385511 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506873.690982896834612, 6004911.48171990737319 ] ] } }, -{ "type": "Feature", "properties": { "id": 117, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-81", "to_node": "forks-120", "length": 11.496992186324073 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506953.373247098177671, 6004747.733802417293191 ] ] } }, -{ "type": "Feature", "properties": { "id": 118, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-120", "to_node": "forks-82", "length": 21.370956171454608 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506959.298812948167324, 6004727.200769591145217 ] ] } }, -{ "type": "Feature", "properties": { "id": 119, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-116", "to_node": "forks-121", "length": 3.2099182269167317 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506917.096217695623636, 6004878.877846222370863 ] ] } }, -{ "type": "Feature", "properties": { "id": 120, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-121", "to_node": "forks-118", "length": 20.14614390772995 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506900.988204181194305, 6004890.977392286993563 ] ] } }, -{ "type": "Feature", "properties": { "id": 121, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-113", "to_node": "forks-122", "length": 2.0805704777785787 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506832.823352623730898, 6004942.179470107890666 ] ] } }, -{ "type": "Feature", "properties": { "id": 122, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-122", "to_node": "forks-88", "length": 11.895444013360057 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506823.312253437936306, 6004949.323739178478718 ] ] } }, -{ "type": "Feature", "properties": { "id": 123, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-28", "to_node": "forks-41", "length": 15.814822587833325 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.096803050488234, 6005183.699540133588016 ], [ 32506906.060875575989485, 6005168.68399494048208 ] ] } }, -{ "type": "Feature", "properties": { "id": 124, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-38", "to_node": "forks-39", "length": 4.9230043797971872 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506894.688163235783577, 6005100.505053408443928 ] ] } }, -{ "type": "Feature", "properties": { "id": 125, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-66", "to_node": "forks-123", "length": 12.974264972084265 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506863.975002713501453, 6005031.844291222281754 ] ] } }, -{ "type": "Feature", "properties": { "id": 126, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-123", "to_node": "forks-64", "length": 18.614661097912897 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506882.491420675069094, 6005033.754231970757246 ] ] } }, -{ "type": "Feature", "properties": { "id": 127, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-45", "length": 20.161667823640062 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506977.857269514352083, 6005041.763435141183436 ] ] } }, -{ "type": "Feature", "properties": { "id": 128, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-58", "to_node": "forks-124", "length": 15.92658917357455 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506822.627499092370272, 6005043.576945948414505 ] ] } }, -{ "type": "Feature", "properties": { "id": 129, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-124", "to_node": "forks-125", "length": 14.019225631405591 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506821.762899231165648, 6005057.56948518846184 ] ] } }, -{ "type": "Feature", "properties": { "id": 130, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-126", "to_node": "forks-127", "length": 8.0889792246438308 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506819.887813340872526, 6005087.915560906752944 ] ] } }, -{ "type": "Feature", "properties": { "id": 131, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-127", "to_node": "forks-128", "length": 17.194161600186703 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506818.82740742713213, 6005105.076992444694042 ] ] } }, -{ "type": "Feature", "properties": { "id": 132, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-128", "to_node": "forks-129", "length": 5.8632125342124359 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506818.465808801352978, 6005110.929044021293521 ] ] } }, -{ "type": "Feature", "properties": { "id": 133, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-129", "to_node": "forks-130", "length": 14.078716447207594 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506817.597539994865656, 6005124.98096083290875 ] ] } }, -{ "type": "Feature", "properties": { "id": 134, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-130", "to_node": "forks-131", "length": 7.5382512271670308 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506817.132637642323971, 6005132.504862571135163 ] ] } }, -{ "type": "Feature", "properties": { "id": 135, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-131", "to_node": "forks-132", "length": 17.031014485904933 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506816.082293409854174, 6005149.503457554616034 ] ] } }, -{ "type": "Feature", "properties": { "id": 136, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-132", "to_node": "forks-26", "length": 7.3141780287910745 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506815.631210200488567, 6005156.803712630644441 ] ] } }, -{ "type": "Feature", "properties": { "id": 137, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-125", "to_node": "forks-133", "length": 7.5382508997463304 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506821.297996897250414, 6005065.09338659979403 ] ] } }, -{ "type": "Feature", "properties": { "id": 138, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-133", "to_node": "forks-126", "length": 14.776721240460976 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506820.38668043166399, 6005079.841979512944818 ] ] } }, -{ "type": "Feature", "properties": { "id": 139, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-134", "to_node": "forks-135", "length": 5.3326475391015506 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506914.126209385693073, 6004979.673459259793162 ] ] } }, -{ "type": "Feature", "properties": { "id": 140, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-135", "to_node": "forks-136", "length": 5.3317441895120332 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506916.818285372108221, 6004975.071261634118855 ] ] } }, -{ "type": "Feature", "properties": { "id": 141, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-137", "to_node": "forks-138", "length": 5.0289118355860376 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506923.4450902082026, 6004963.742508042603731 ] ] } }, -{ "type": "Feature", "properties": { "id": 142, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-138", "to_node": "forks-139", "length": 6.1703495971908442 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506926.560590386390686, 6004958.416452016681433 ] ] } }, -{ "type": "Feature", "properties": { "id": 143, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-140", "to_node": "forks-141", "length": 5.3740087659180107 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506956.185954, 6004953.169992100447416 ], [ 32506961.455688826739788, 6004954.223493443801999 ] ] } }, -{ "type": "Feature", "properties": { "id": 144, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-64", "to_node": "forks-142", "length": 28.432866015182562 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506896.847592517733574, 6005009.211856375448406 ] ] } }, -{ "type": "Feature", "properties": { "id": 145, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-142", "to_node": "forks-143", "length": 4.839390263957422 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506899.291071772575378, 6005005.034643517807126 ] ] } }, -{ "type": "Feature", "properties": { "id": 146, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-139", "to_node": "forks-144", "length": 2.1842816760639723 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506927.96684343740344, 6004956.745063732378185 ] ] } }, -{ "type": "Feature", "properties": { "id": 147, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-144", "to_node": "forks-61", "length": 6.8922102463753827 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506932.404087860137224, 6004951.471220350824296 ] ] } }, -{ "type": "Feature", "properties": { "id": 148, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-141", "to_node": "forks-145", "length": 5.3739009046009762 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506966.725317884236574, 6004955.276973642408848 ] ] } }, -{ "type": "Feature", "properties": { "id": 149, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-145", "to_node": "forks-59", "length": 5.3755532738449299 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506971.996567249298096, 6004956.330777766183019 ] ] } }, -{ "type": "Feature", "properties": { "id": 150, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-63", "to_node": "forks-146", "length": 4.4177561547689814 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506946.472613282501698, 6004951.228145341388881 ] ] } }, -{ "type": "Feature", "properties": { "id": 151, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-147", "to_node": "forks-148", "length": 5.3280144709008272 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506906.03665117174387, 6004993.502840675413609 ] ] } }, -{ "type": "Feature", "properties": { "id": 152, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-146", "to_node": "forks-149", "length": 5.4011822576702038 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506951.768994342535734, 6004952.286973678506911 ] ] } }, -{ "type": "Feature", "properties": { "id": 153, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-149", "to_node": "forks-140", "length": 4.5043594612583675 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506956.185954, 6004953.169992100447416 ] ] } }, -{ "type": "Feature", "properties": { "id": 154, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-148", "to_node": "forks-150", "length": 5.3267258755225697 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506908.726193338632584, 6004988.904974704608321 ] ] } }, -{ "type": "Feature", "properties": { "id": 155, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-150", "to_node": "forks-134", "length": 5.3622601611253016 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506911.433677285909653, 6004984.276436629705131 ] ] } }, -{ "type": "Feature", "properties": { "id": 156, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-143", "to_node": "forks-151", "length": 5.1146790192008753 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506901.873548362404108, 6005000.619809870608151 ] ] } }, -{ "type": "Feature", "properties": { "id": 157, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-151", "to_node": "forks-147", "length": 2.9171462629163538 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506903.346458375453949, 6004998.101818922907114 ] ] } }, -{ "type": "Feature", "properties": { "id": 158, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-136", "to_node": "forks-152", "length": 2.7692589543510699 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506918.216524910181761, 6004972.680922463536263 ] ] } }, -{ "type": "Feature", "properties": { "id": 159, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-152", "to_node": "forks-137", "length": 5.3264320715955291 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506920.905918728560209, 6004968.083310093730688 ] ] } }, -{ "type": "Feature", "properties": { "id": 160, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-153", "length": 57.835132351275696 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506668.398750115185976, 6004969.102509101852775 ] ] } }, -{ "type": "Feature", "properties": { "id": 161, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-153", "to_node": "forks-107", "length": 16.232045375041046 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506672.19807019457221, 6004953.321366431191564 ] ] } }, -{ "type": "Feature", "properties": { "id": 162, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-108", "to_node": "forks-154", "length": 8.0398935721777605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506678.807402063161135, 6004925.868346692062914 ] ] } }, -{ "type": "Feature", "properties": { "id": 163, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-154", "to_node": "forks-155", "length": 12.136636911538943 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506681.648138843476772, 6004914.06884797103703 ] ] } }, -{ "type": "Feature", "properties": { "id": 164, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-156", "to_node": "forks-49", "length": 15.125862215622554 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506774.162415158003569, 6004688.607881280593574 ] ] } }, -{ "type": "Feature", "properties": { "id": 165, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-22", "to_node": "forks-157", "length": 18.640679786592461 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506778.520040560513735, 6004670.778998893685639 ] ] } }, -{ "type": "Feature", "properties": { "id": 166, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-157", "to_node": "forks-156", "length": 3.2278280485940081 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506777.753673400729895, 6004673.914529995061457 ] ] } }, -{ "type": "Feature", "properties": { "id": 167, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-158", "to_node": "forks-159", "length": 5.9696688421416511 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506748.453176651149988, 6004680.854203343391418 ] ] } }, -{ "type": "Feature", "properties": { "id": 168, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-159", "to_node": "forks-160", "length": 6.1541847428684866 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506742.56112327426672, 6004679.077212388627231 ] ] } }, -{ "type": "Feature", "properties": { "id": 169, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-160", "to_node": "forks-161", "length": 6.1205658697733236 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506736.701256807893515, 6004677.30992872081697 ] ] } }, -{ "type": "Feature", "properties": { "id": 170, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-161", "to_node": "forks-162", "length": 5.7755207289537402 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506731.171738628298044, 6004675.642275162041187 ] ] } }, -{ "type": "Feature", "properties": { "id": 171, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-163", "length": 18.234794919540622 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506756.704313155263662, 6004683.342672811821103 ] ] } }, -{ "type": "Feature", "properties": { "id": 172, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-163", "to_node": "forks-158", "length": 2.6485521984689893 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506754.168573398143053, 6004682.577916228212416 ] ] } }, -{ "type": "Feature", "properties": { "id": 173, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-12", "to_node": "forks-13", "length": 7.8781933938920234 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506635.980503581464291, 6005097.202808098867536 ], [ 32506634.197308879345655, 6005104.876539121381938 ] ] } }, -{ "type": "Feature", "properties": { "id": 174, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-42", "to_node": "consumers-0", "length": 20.070567506853333 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506955.09166768565774, 6005014.398159652017057 ] ] } }, -{ "type": "Feature", "properties": { "id": 175, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-57", "to_node": "consumers-1", "length": 14.828558617895311 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506801.195647560060024, 6005039.200124303810298 ] ] } }, -{ "type": "Feature", "properties": { "id": 176, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-34", "to_node": "consumers-2", "length": 12.18983054287227 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506947.681407205760479, 6005117.471685512922704 ] ] } }, -{ "type": "Feature", "properties": { "id": 177, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-139", "to_node": "consumers-3", "length": 11.666016769071787 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506936.092872586101294, 6004965.141892026178539 ] ] } }, -{ "type": "Feature", "properties": { "id": 178, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-0", "to_node": "consumers-4", "length": 16.225116367069244 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506912.159830294549465, 6005020.755500017665327 ] ] } }, -{ "type": "Feature", "properties": { "id": 179, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-0", "to_node": "consumers-5", "length": 32.627471719923186 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506905.141416907310486, 6005069.070721743628383 ] ] } }, -{ "type": "Feature", "properties": { "id": 180, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-27", "to_node": "consumers-6", "length": 17.803857581607861 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506860.149385698139668, 6005157.808408037759364 ] ] } }, -{ "type": "Feature", "properties": { "id": 181, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-60", "to_node": "consumers-7", "length": 11.205867902717186 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506978.648154817521572, 6004957.660532805137336 ], [ 32506980.289583649486303, 6004946.575534526258707 ] ] } }, -{ "type": "Feature", "properties": { "id": 182, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-136", "to_node": "consumers-8", "length": 10.971815061796425 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506907.347752008587122, 6004969.531430990435183 ] ] } }, -{ "type": "Feature", "properties": { "id": 183, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-128", "to_node": "consumers-9", "length": 12.89889499816101 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506831.70174864679575, 6005105.872498782351613 ] ] } }, -{ "type": "Feature", "properties": { "id": 184, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-128", "to_node": "consumers-10", "length": 11.973918500261945 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506807.097907729446888, 6005102.670010705478489 ] ] } }, -{ "type": "Feature", "properties": { "id": 185, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-147", "to_node": "consumers-11", "length": 11.055986329683931 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506912.889645788818598, 6005003.684148876927793 ] ] } }, -{ "type": "Feature", "properties": { "id": 186, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-130", "to_node": "consumers-12", "length": 12.515965810989343 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506805.105399034917355, 6005124.209070673212409 ] ] } }, -{ "type": "Feature", "properties": { "id": 187, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-59", "to_node": "consumers-13", "length": 11.661998740805577 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506969.710390973836184, 6004967.766494301147759 ] ] } }, -{ "type": "Feature", "properties": { "id": 188, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-43", "to_node": "consumers-14", "length": 30.038198798684267 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32506988.938321895897388, 6004917.879654813557863 ] ] } }, -{ "type": "Feature", "properties": { "id": 189, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-126", "to_node": "consumers-15", "length": 10.707187169089545 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506809.699875, 6005079.181641146540642 ] ] } }, -{ "type": "Feature", "properties": { "id": 190, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-62", "to_node": "consumers-16", "length": 11.956756122673212 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506937.939764458686113, 6004938.806549877859652 ] ] } }, -{ "type": "Feature", "properties": { "id": 191, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-126", "to_node": "consumers-17", "length": 10.213025551376619 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506830.531552042812109, 6005081.019889062270522 ] ] } }, -{ "type": "Feature", "properties": { "id": 192, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-125", "to_node": "consumers-18", "length": 10.994047678276765 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506810.789779346436262, 6005056.891455434262753 ] ] } }, -{ "type": "Feature", "properties": { "id": 193, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-132", "to_node": "consumers-19", "length": 10.440695474766875 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506826.503114428371191, 6005150.147360728122294 ] ] } }, -{ "type": "Feature", "properties": { "id": 194, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-132", "to_node": "consumers-20", "length": 11.10089298421933 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506805.018891096115112, 6005148.591890611685812 ] ] } }, -{ "type": "Feature", "properties": { "id": 195, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-125", "to_node": "consumers-21", "length": 10.949577152804078 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506832.678980179131031, 6005058.425298580899835 ] ] } }, -{ "type": "Feature", "properties": { "id": 196, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-65", "to_node": "consumers-22", "length": 14.951834163345012 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506890.606906868517399, 6005049.689807103946805 ] ] } }, -{ "type": "Feature", "properties": { "id": 197, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-36", "to_node": "consumers-23", "length": 27.760086543836465 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506878.119526300579309, 6005143.90860013011843 ] ] } }, -{ "type": "Feature", "properties": { "id": 198, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-38", "to_node": "consumers-24", "length": 13.572347604373999 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506885.800216242671013, 6005111.882618607953191 ] ] } }, -{ "type": "Feature", "properties": { "id": 199, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-143", "to_node": "consumers-25", "length": 13.409041639816849 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506887.71679937466979, 6004998.264221362769604 ] ] } }, -{ "type": "Feature", "properties": { "id": 200, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-130", "to_node": "consumers-26", "length": 14.74473273527944 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506832.157563894987106, 6005127.307513532228768 ] ] } }, -{ "type": "Feature", "properties": { "id": 201, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-66", "to_node": "consumers-27", "length": 15.267801977957966 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506849.502673149108887, 6005045.700300958938897 ] ] } }, -{ "type": "Feature", "properties": { "id": 202, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-54", "to_node": "consumers-28", "length": 27.26755243400606 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506748.283596221357584, 6005117.573655765503645 ] ] } }, -{ "type": "Feature", "properties": { "id": 203, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-68", "to_node": "consumers-29", "length": 13.351207807371567 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506643.90064138174057, 6005268.925049259327352 ] ] } }, -{ "type": "Feature", "properties": { "id": 204, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-72", "to_node": "consumers-30", "length": 9.0425447913619443 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506704.650234036147594, 6005290.28451843559742 ] ] } }, -{ "type": "Feature", "properties": { "id": 205, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-16", "to_node": "consumers-31", "length": 15.207447170690838 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506610.017046678811312, 6005273.422141656279564 ], [ 32506614.063669916242361, 6005258.762970812618732 ] ] } }, -{ "type": "Feature", "properties": { "id": 206, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-14", "to_node": "consumers-32", "length": 14.752146059097333 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506605.618858031928539, 6005256.810113833285868 ] ] } }, -{ "type": "Feature", "properties": { "id": 207, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-70", "to_node": "consumers-33", "length": 9.0150474804376497 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506730.31312383338809, 6005297.461850156076252 ] ] } }, -{ "type": "Feature", "properties": { "id": 208, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-31", "to_node": "consumers-34", "length": 5.5480699412216063 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506753.056819226592779, 6005301.126373209990561 ] ] } }, -{ "type": "Feature", "properties": { "id": 209, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-23", "to_node": "consumers-35", "length": 10.377386161503832 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506788.281840145587921, 6005311.072970089502633 ] ] } }, -{ "type": "Feature", "properties": { "id": 210, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-71", "to_node": "consumers-36", "length": 8.6126937692127612 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506718.955610077828169, 6005294.715715421363711 ] ] } }, -{ "type": "Feature", "properties": { "id": 211, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-67", "to_node": "consumers-37", "length": 13.703223156842679 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506666.151909608393908, 6005274.722094716504216 ] ] } }, -{ "type": "Feature", "properties": { "id": 212, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-31", "to_node": "consumers-38", "length": 11.22894842681734 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506769.625647164881229, 6005303.687501288950443 ] ] } }, -{ "type": "Feature", "properties": { "id": 213, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-73", "to_node": "consumers-39", "length": 8.5749456079941169 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506692.624002318829298, 6005287.419831819832325 ] ] } }, -{ "type": "Feature", "properties": { "id": 214, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-74", "to_node": "consumers-40", "length": 12.78680164948709 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506744.274268440902233, 6005297.435577264986932 ] ] } }, -{ "type": "Feature", "properties": { "id": 215, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-75", "to_node": "consumers-41", "length": 15.088268813186509 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506628.192365296185017, 6005262.78679359331727 ] ] } }, -{ "type": "Feature", "properties": { "id": 216, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-46", "to_node": "consumers-42", "length": 26.255097649087105 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506833.239296399056911, 6005279.82688563130796 ] ] } }, -{ "type": "Feature", "properties": { "id": 217, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-76", "to_node": "consumers-43", "length": 13.871718996488957 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506682.052598346024752, 6005278.976561680436134 ] ] } }, -{ "type": "Feature", "properties": { "id": 218, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-108", "to_node": "consumers-44", "length": 17.825607326175209 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506694.255998805165291, 6004937.857217525132 ] ] } }, -{ "type": "Feature", "properties": { "id": 219, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-80", "to_node": "consumers-45", "length": 17.518901773870795 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506927.587524946779013, 6004774.359126213937998 ] ] } }, -{ "type": "Feature", "properties": { "id": 220, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-77", "to_node": "consumers-46", "length": 13.557861602124051 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506790.224478904157877, 6004956.140377041883767 ] ] } }, -{ "type": "Feature", "properties": { "id": 221, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-78", "to_node": "consumers-47", "length": 9.4486423585962793 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506800.673641692847013, 6004976.893306911922991 ] ] } }, -{ "type": "Feature", "properties": { "id": 222, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-79", "to_node": "consumers-48", "length": 16.96136337399377 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507019.014392219483852, 6004880.550657982937992 ] ] } }, -{ "type": "Feature", "properties": { "id": 223, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-95", "to_node": "consumers-49", "length": 9.2660080018944058 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506703.973344795405865, 6005020.865290460176766 ] ] } }, -{ "type": "Feature", "properties": { "id": 224, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-81", "to_node": "consumers-50", "length": 17.740696215718618 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506933.140344154089689, 6004753.861017936840653 ] ] } }, -{ "type": "Feature", "properties": { "id": 225, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-82", "to_node": "consumers-51", "length": 17.496222673137193 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506942.488591093569994, 6004722.349558502435684 ] ] } }, -{ "type": "Feature", "properties": { "id": 226, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-83", "to_node": "consumers-52", "length": 17.999939316170021 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506735.023828137665987, 6005023.284209059551358 ] ] } }, -{ "type": "Feature", "properties": { "id": 227, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-84", "to_node": "consumers-53", "length": 21.877250679300193 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507000.015993539243937, 6004793.071381574496627 ] ] } }, -{ "type": "Feature", "properties": { "id": 228, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-85", "to_node": "consumers-54", "length": 24.949882967008463 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506779.872779753059149, 6005046.125488452613354 ] ] } }, -{ "type": "Feature", "properties": { "id": 229, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-87", "to_node": "consumers-55", "length": 8.6071500745920915 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506818.462146334350109, 6004963.519941763021052 ] ] } }, -{ "type": "Feature", "properties": { "id": 230, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-88", "to_node": "consumers-56", "length": 8.7683108247940922 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506828.578401699662209, 6004956.334513544104993 ] ] } }, -{ "type": "Feature", "properties": { "id": 231, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-98", "to_node": "consumers-57", "length": 17.018506156431766 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506812.902853854000568, 6004684.774575287476182 ] ] } }, -{ "type": "Feature", "properties": { "id": 232, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-89", "to_node": "consumers-58", "length": 13.12672203316893 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506801.047282852232456, 6004949.151911301538348 ] ] } }, -{ "type": "Feature", "properties": { "id": 233, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-111", "to_node": "consumers-59", "length": 8.9658061316792903 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506858.966233443468809, 6004933.755677187815309 ] ] } }, -{ "type": "Feature", "properties": { "id": 234, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-90", "to_node": "consumers-60", "length": 10.829857903757913 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506911.747826270759106, 6004703.768600980751216 ] ] } }, -{ "type": "Feature", "properties": { "id": 235, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-97", "to_node": "consumers-61", "length": 15.170675649506549 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506988.243351720273495, 6004809.163387258537114 ] ] } }, -{ "type": "Feature", "properties": { "id": 236, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-44", "to_node": "consumers-62", "length": 18.701122122152828 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507038.519862838089466, 6004828.579337465576828 ] ] } }, -{ "type": "Feature", "properties": { "id": 237, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-118", "to_node": "consumers-63", "length": 10.477072182519393 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506907.28061518073082, 6004899.354420717805624 ] ] } }, -{ "type": "Feature", "properties": { "id": 238, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-91", "to_node": "consumers-64", "length": 13.550242408785028 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506724.171868160367012, 6005021.039352849125862 ] ] } }, -{ "type": "Feature", "properties": { "id": 239, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-92", "to_node": "consumers-65", "length": 10.094294378809217 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506969.203761655837297, 6004852.612625982612371 ] ] } }, -{ "type": "Feature", "properties": { "id": 240, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-155", "to_node": "consumers-66", "length": 17.723896775983818 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506681.648138843476772, 6004914.06884797103703 ], [ 32506698.879691444337368, 6004918.217355159111321 ] ] } }, -{ "type": "Feature", "properties": { "id": 241, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-61", "to_node": "consumers-67", "length": 12.128193895336635 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506922.212192755192518, 6004944.897153015248477 ] ] } }, -{ "type": "Feature", "properties": { "id": 242, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-86", "to_node": "consumers-68", "length": 14.79052081724222 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506809.732562188059092, 6004941.157759756781161 ] ] } }, -{ "type": "Feature", "properties": { "id": 243, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-21", "to_node": "consumers-69", "length": 14.269184031768264 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506802.083184845745564, 6004673.442478745244443 ] ] } }, -{ "type": "Feature", "properties": { "id": 244, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-94", "to_node": "consumers-70", "length": 12.197593325502092 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506705.227665148675442, 6004998.739715552888811 ] ] } }, -{ "type": "Feature", "properties": { "id": 245, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-47", "to_node": "consumers-71", "length": 19.351707001565927 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507026.970478340983391, 6004755.370134326629341 ] ] } }, -{ "type": "Feature", "properties": { "id": 246, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-8", "to_node": "consumers-72", "length": 21.947743092730299 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507021.442586395889521, 6004780.384751534089446 ] ] } }, -{ "type": "Feature", "properties": { "id": 247, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-96", "to_node": "consumers-73", "length": 18.996605294568166 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32507013.935856550931931, 6004833.020761829800904 ] ] } }, -{ "type": "Feature", "properties": { "id": 248, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-93", "to_node": "consumers-74", "length": 10.943259200300011 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506960.185587, 6004860.197868465445936 ] ] } }, -{ "type": "Feature", "properties": { "id": 249, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-99", "to_node": "consumers-75", "length": 8.5244783481214608 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506839.303071409463882, 6004683.53109688218683 ] ] } }, -{ "type": "Feature", "properties": { "id": 250, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-113", "to_node": "consumers-76", "length": 9.316009561087057 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506840.081979628652334, 6004948.378594372421503 ] ] } }, -{ "type": "Feature", "properties": { "id": 251, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-100", "to_node": "consumers-77", "length": 9.3148661058648159 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506765.211176943033934, 6005001.041569225490093 ] ] } }, -{ "type": "Feature", "properties": { "id": 252, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-101", "to_node": "consumers-78", "length": 12.054644281716179 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506767.961118906736374, 6005031.221683278679848 ] ] } }, -{ "type": "Feature", "properties": { "id": 253, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-116", "to_node": "consumers-79", "length": 10.072076523338099 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506925.711909156292677, 6004885.003216509707272 ] ] } }, -{ "type": "Feature", "properties": { "id": 254, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-102", "to_node": "consumers-80", "length": 15.941094874509144 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506942.832207050174475, 6004712.93773500341922 ] ] } }, -{ "type": "Feature", "properties": { "id": 255, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-103", "to_node": "consumers-81", "length": 10.805527575392439 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506785.013545528054237, 6004989.416518196463585 ] ] } }, -{ "type": "Feature", "properties": { "id": 256, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-105", "to_node": "consumers-82", "length": 12.061076000759543 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506714.73542096093297, 6005021.520484566688538 ] ] } }, -{ "type": "Feature", "properties": { "id": 257, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-109", "to_node": "consumers-83", "length": 9.0632442818962495 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506879.13426485657692, 6004918.728310720995069 ] ] } }, -{ "type": "Feature", "properties": { "id": 258, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-106", "to_node": "consumers-84", "length": 12.474218914242371 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506780.074384346604347, 6004964.505853203125298 ] ] } }, -{ "type": "Feature", "properties": { "id": 259, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-107", "to_node": "consumers-85", "length": 30.928572756642691 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506702.26749200746417, 6004960.560598752461374 ] ] } }, -{ "type": "Feature", "properties": { "id": 260, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-9", "to_node": "consumers-86", "length": 15.43415868661268 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506693.432355523109436, 6005029.736996290273964 ] ] } }, -{ "type": "Feature", "properties": { "id": 261, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-110", "to_node": "consumers-87", "length": 9.6277676191209096 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506868.72337406501174, 6004927.254503038711846 ] ] } }, -{ "type": "Feature", "properties": { "id": 262, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-25", "to_node": "consumers-88", "length": 10.374937545582036 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506755.53663894534111, 6005027.544883700087667 ] ] } }, -{ "type": "Feature", "properties": { "id": 263, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-104", "to_node": "consumers-89", "length": 7.7732983306808459 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506773.220998387783766, 6004993.778223461471498 ] ] } }, -{ "type": "Feature", "properties": { "id": 264, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-112", "to_node": "consumers-90", "length": 10.805705257342293 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506848.507188025861979, 6004943.913141623139381 ] ] } }, -{ "type": "Feature", "properties": { "id": 265, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-114", "to_node": "consumers-91", "length": 16.809760783087764 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506995.652057737112045, 6004842.783263271674514 ] ] } }, -{ "type": "Feature", "properties": { "id": 266, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-115", "to_node": "consumers-92", "length": 10.29064449780611 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506938.31118892505765, 6004875.812619299627841 ] ] } }, -{ "type": "Feature", "properties": { "id": 267, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-117", "to_node": "consumers-93", "length": 10.557818790267437 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506945.479837417602539, 6004870.762036194093525 ] ] } }, -{ "type": "Feature", "properties": { "id": 268, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-56", "to_node": "consumers-94", "length": 14.140807989604891 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506669.221525810658932, 6005074.084699177183211 ] ] } }, -{ "type": "Feature", "properties": { "id": 269, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-119", "to_node": "consumers-95", "length": 11.965587553752023 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506895.810843542218208, 6004909.831620469689369 ] ] } }, -{ "type": "Feature", "properties": { "id": 270, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-120", "to_node": "consumers-96", "length": 20.770884205798623 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506973.329735886305571, 6004753.492985166609287 ] ] } }, -{ "type": "Feature", "properties": { "id": 271, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-110", "to_node": "consumers-97", "length": 12.556114126410087 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506854.906595926731825, 6004909.907521405257285 ] ] } }, -{ "type": "Feature", "properties": { "id": 272, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-121", "to_node": "consumers-98", "length": 11.564305542109038 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506910.150826644152403, 6004869.631511499173939 ] ] } }, -{ "type": "Feature", "properties": { "id": 273, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-119", "to_node": "consumers-99", "length": 13.270015438191557 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506879.766101881861687, 6004890.38400068692863 ] ] } }, -{ "type": "Feature", "properties": { "id": 274, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-118", "to_node": "consumers-100", "length": 13.625599103314798 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506894.07242726162076, 6004879.237333491444588 ] ] } }, -{ "type": "Feature", "properties": { "id": 275, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-111", "to_node": "consumers-101", "length": 14.040515272936672 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506845.747697491198778, 6004914.935039059258997 ] ] } }, -{ "type": "Feature", "properties": { "id": 276, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-112", "to_node": "consumers-102", "length": 12.726095506390832 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506835.314610954374075, 6004924.455492817796767 ] ] } }, -{ "type": "Feature", "properties": { "id": 277, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-122", "to_node": "consumers-103", "length": 13.904818816164378 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506824.472275782376528, 6004931.061758927069604 ] ] } }, -{ "type": "Feature", "properties": { "id": 278, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-41", "to_node": "consumers-104", "length": 18.042523432296743 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506923.191534139215946, 6005174.347314549610019 ] ] } }, -{ "type": "Feature", "properties": { "id": 279, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-36", "to_node": "consumers-105", "length": 14.49395583342832 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506881.192307915538549, 6005127.539880472235382 ] ] } }, -{ "type": "Feature", "properties": { "id": 280, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-39", "to_node": "consumers-106", "length": 15.038915801477353 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506899.350276149809361, 6005086.207022367045283 ] ] } }, -{ "type": "Feature", "properties": { "id": 281, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-48", "to_node": "consumers-107", "length": 11.395248360907377 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.143456343561411, 6004727.261151133105159 ] ] } }, -{ "type": "Feature", "properties": { "id": 282, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-123", "to_node": "consumers-108", "length": 15.201822075519109 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506862.41523327678442, 6005046.965882200747728 ] ] } }, -{ "type": "Feature", "properties": { "id": 283, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-45", "to_node": "consumers-109", "length": 24.709448027648712 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506975.025434896349907, 6005066.310075125657022 ] ] } }, -{ "type": "Feature", "properties": { "id": 284, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-124", "to_node": "consumers-110", "length": 13.987472490813351 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506836.588345635682344, 6005044.439587516710162 ] ] } }, -{ "type": "Feature", "properties": { "id": 285, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-127", "to_node": "consumers-111", "length": 10.274526489299117 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506830.142781686037779, 6005088.549216032959521 ] ] } }, -{ "type": "Feature", "properties": { "id": 286, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-129", "to_node": "consumers-112", "length": 11.778287031054843 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506806.709942407906055, 6005110.202648312784731 ] ] } }, -{ "type": "Feature", "properties": { "id": 287, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-129", "to_node": "consumers-113", "length": 13.081361402796462 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506831.311364524066448, 6005113.401636653579772 ] ] } }, -{ "type": "Feature", "properties": { "id": 288, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-131", "to_node": "consumers-114", "length": 12.437954255410645 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506804.718359738588333, 6005131.737783573567867 ] ] } }, -{ "type": "Feature", "properties": { "id": 289, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-131", "to_node": "consumers-115", "length": 12.579383096767129 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506829.517301596701145, 6005134.709625105373561 ] ] } }, -{ "type": "Feature", "properties": { "id": 290, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-26", "to_node": "consumers-116", "length": 11.022836078509449 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506804.62935671582818, 6005156.12390742637217 ] ] } }, -{ "type": "Feature", "properties": { "id": 291, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-26", "to_node": "consumers-117", "length": 10.519429552113307 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506826.114318337291479, 6005157.67712083645165 ] ] } }, -{ "type": "Feature", "properties": { "id": 292, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-133", "to_node": "consumers-118", "length": 10.916050693973594 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506810.402725525200367, 6005064.420167108997703 ] ] } }, -{ "type": "Feature", "properties": { "id": 293, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-133", "to_node": "consumers-119", "length": 11.02529668860231 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506832.289393525570631, 6005065.957312077283859 ] ] } }, -{ "type": "Feature", "properties": { "id": 294, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-127", "to_node": "consumers-120", "length": 10.64506854638153 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506809.311211679130793, 6005086.710164023563266 ] ] } }, -{ "type": "Feature", "properties": { "id": 295, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-134", "to_node": "consumers-121", "length": 11.151210110284486 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506901.808295633643866, 6004978.646026789210737 ] ] } }, -{ "type": "Feature", "properties": { "id": 296, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-137", "to_node": "consumers-122", "length": 12.991254325924679 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506932.119569964706898, 6004974.642785294912755 ] ] } }, -{ "type": "Feature", "properties": { "id": 297, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-135", "to_node": "consumers-123", "length": 11.054089825775041 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506904.584658976644278, 6004974.092086877673864 ] ] } }, -{ "type": "Feature", "properties": { "id": 298, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-138", "to_node": "consumers-124", "length": 11.614891769113864 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506933.470707610249519, 6004969.607037564739585 ] ] } }, -{ "type": "Feature", "properties": { "id": 299, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-138", "to_node": "consumers-125", "length": 10.699816005040693 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506913.902167610824108, 6004958.903221851214767 ] ] } }, -{ "type": "Feature", "properties": { "id": 300, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-140", "to_node": "consumers-126", "length": 11.848401555899455 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506956.185954, 6004953.169992100447416 ], [ 32506953.863235987722874, 6004964.788494605571032 ] ] } }, -{ "type": "Feature", "properties": { "id": 301, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-139", "to_node": "consumers-127", "length": 10.753727190236734 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506916.657145664095879, 6004954.225457968190312 ] ] } }, -{ "type": "Feature", "properties": { "id": 302, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-141", "to_node": "consumers-128", "length": 11.785517912363341 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506959.145298298448324, 6004965.780332460999489 ] ] } }, -{ "type": "Feature", "properties": { "id": 303, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-142", "to_node": "consumers-129", "length": 13.420087740135017 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506885.263785466551781, 6005002.435856880620122 ] ] } }, -{ "type": "Feature", "properties": { "id": 304, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-144", "to_node": "consumers-130", "length": 11.177180826975714 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506919.414187755435705, 6004949.549130712635815 ] ] } }, -{ "type": "Feature", "properties": { "id": 305, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-145", "to_node": "consumers-131", "length": 11.724338197783762 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506964.426920805126429, 6004966.773820037953556 ] ] } }, -{ "type": "Feature", "properties": { "id": 306, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-63", "to_node": "consumers-132", "length": 10.620907460974026 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506943.249371059238911, 6004939.799233024008572 ] ] } }, -{ "type": "Feature", "properties": { "id": 307, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-146", "to_node": "consumers-133", "length": 10.642727958650555 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506948.558975379914045, 6004940.791922288946807 ] ] } }, -{ "type": "Feature", "properties": { "id": 308, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-148", "to_node": "consumers-134", "length": 11.101106688281886 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506915.618785090744495, 6004999.10795256216079 ] ] } }, -{ "type": "Feature", "properties": { "id": 309, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-149", "to_node": "consumers-135", "length": 10.710169508124 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506953.868577439337969, 6004941.784617670811713 ] ] } }, -{ "type": "Feature", "properties": { "id": 310, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-141", "to_node": "consumers-136", "length": 10.883350045605848 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506964.445381104946136, 6004943.758836340159178 ] ] } }, -{ "type": "Feature", "properties": { "id": 311, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-145", "to_node": "consumers-137", "length": 10.99291671049159 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506969.7256910353899, 6004944.701436835341156 ] ] } }, -{ "type": "Feature", "properties": { "id": 312, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-59", "to_node": "consumers-138", "length": 11.107743094279309 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506975.006007242947817, 6004945.638480184599757 ] ] } }, -{ "type": "Feature", "properties": { "id": 313, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-150", "to_node": "consumers-139", "length": 11.151031314605422 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506918.351420659571886, 6004994.53529426921159 ] ] } }, -{ "type": "Feature", "properties": { "id": 314, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-151", "to_node": "consumers-140", "length": 11.45444129942501 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506891.986426871269941, 6004994.836294149048626 ] ] } }, -{ "type": "Feature", "properties": { "id": 315, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-134", "to_node": "consumers-141", "length": 11.193193605181907 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506921.078184701502323, 6004989.95719888433814 ] ] } }, -{ "type": "Feature", "properties": { "id": 316, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-150", "to_node": "consumers-142", "length": 11.264788000518335 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506899.017207443714142, 6004983.192616033367813 ] ] } }, -{ "type": "Feature", "properties": { "id": 317, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-152", "to_node": "consumers-143", "length": 11.596509120285235 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506928.226274974644184, 6004978.53617031686008 ] ] } }, -{ "type": "Feature", "properties": { "id": 318, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-153", "to_node": "consumers-144", "length": 7.0878112690952895 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506675.289672255516052, 6004970.761502966284752 ] ] } }, -{ "type": "Feature", "properties": { "id": 319, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-154", "to_node": "consumers-145", "length": 6.7987414801482062 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506685.417284354567528, 6004927.459680034779012 ] ] } }, -{ "type": "Feature", "properties": { "id": 320, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-52", "to_node": "consumers-146", "length": 13.689421506229099 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506756.074181571602821, 6004762.616542685776949 ] ] } }, -{ "type": "Feature", "properties": { "id": 321, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-158", "to_node": "consumers-147", "length": 17.792512496988888 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506759.306074965745211, 6004665.543258069083095 ] ] } }, -{ "type": "Feature", "properties": { "id": 322, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-50", "to_node": "consumers-148", "length": 11.619391924942256 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506762.631048794835806, 6004698.693739332258701 ] ] } }, -{ "type": "Feature", "properties": { "id": 323, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-53", "to_node": "consumers-149", "length": 14.075774880901514 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506740.583661332726479, 6004747.206024529412389 ], [ 32506738.659805856645107, 6004761.149704768322408 ] ] } }, -{ "type": "Feature", "properties": { "id": 324, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-156", "to_node": "consumers-150", "length": 11.105693115651279 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506788.541808839887381, 6004676.551299481652677 ] ] } }, -{ "type": "Feature", "properties": { "id": 325, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-157", "to_node": "consumers-151", "length": 13.824161712531133 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506765.091168779879808, 6004667.496796926483512 ] ] } }, -{ "type": "Feature", "properties": { "id": 326, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-159", "to_node": "consumers-152", "length": 17.987365091966605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506753.64694095775485, 6004663.632992140948772 ] ] } }, -{ "type": "Feature", "properties": { "id": 327, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-160", "to_node": "consumers-153", "length": 17.244152236982288 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506747.540288478136063, 6004662.567557630129158 ] ] } }, -{ "type": "Feature", "properties": { "id": 328, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-161", "to_node": "consumers-154", "length": 17.444232841906146 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506741.738194316625595, 6004660.608715591952205 ] ] } }, -{ "type": "Feature", "properties": { "id": 329, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-162", "to_node": "consumers-155", "length": 17.63193373593359 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506731.171738628298044, 6004675.642275162041187 ], [ 32506736.262873858213425, 6004658.761356071569026 ] ] } }, -{ "type": "Feature", "properties": { "id": 330, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-163", "to_node": "consumers-156", "length": 11.909523285608909 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506753.265496149659157, 6004694.744921822100878 ] ] } }, -{ "type": "Feature", "properties": { "id": 331, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "HL", "from_node": "forks-51", "to_node": "consumers-157", "length": 19.04873701145247 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506752.307921536266804, 6004713.751716360449791 ] ] } }, -{ "type": "Feature", "properties": { "id": 332, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "GL", "from_node": "forks-13", "to_node": "producers-0", "length": 15.980908346991134 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506649.763465486466885, 6005108.493748000822961 ] ] } } +{ "type": "Feature", "properties": { "id": 0, "type": "DL", "from_node": "forks-0", "to_node": "forks-1", "length": 48.930750408040154 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506930.132400441914797, 6005038.999399862252176 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "type": "DL", "from_node": "forks-2", "to_node": "forks-3", "length": 84.101415234176301 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506849.56926654279232, 6005309.829775800928473 ], [ 32506852.788861401379108, 6005303.303346553817391 ], [ 32506857.729554239660501, 6005293.263527888804674 ], [ 32506874.377478789538145, 6005259.486231505870819 ], [ 32506877.43430345505476, 6005252.781554163433611 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "type": "DL", "from_node": "forks-4", "to_node": "forks-5", "length": 49.65468218997448 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507066.510839566588402, 6004782.174897360615432 ], [ 32507072.530063845217228, 6004784.309275067411363 ], [ 32507075.421466507017612, 6004787.996558192186058 ], [ 32507077.794186722487211, 6004793.774814426898956 ], [ 32507077.255080308765173, 6004800.672369468957186 ], [ 32507074.454373985528946, 6004805.919742610305548 ], [ 32507067.962735038250685, 6004809.770653950050473 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "type": "DL", "from_node": "forks-5", "to_node": "forks-6", "length": 20.118775802046997 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507062.904994439333677, 6004810.397108196280897 ], [ 32507057.250238422304392, 6004808.886380590498447 ], [ 32507053.053128503262997, 6004805.67554706055671 ], [ 32507050.371553130447865, 6004801.309886945411563 ], [ 32507049.679193664342165, 6004797.514717631973326 ] ] } }, +{ "type": "Feature", "properties": { "id": 4, "type": "DL", "from_node": "forks-6", "to_node": "forks-4", "length": 19.483020231991176 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507051.015878472477198, 6004789.583621971309185 ], [ 32507055.721855498850346, 6004784.328024078160524 ], [ 32507059.691856741905212, 6004782.464862993918359 ] ] } }, +{ "type": "Feature", "properties": { "id": 5, "type": "DL", "from_node": "forks-7", "to_node": "forks-2", "length": 32.69106870034981 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506831.632401779294014, 6005311.127199975773692 ], [ 32506836.87445405870676, 6005313.4047647183761 ], [ 32506846.360497884452343, 6005317.858291626907885 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 6, "type": "DL", "from_node": "forks-6", "to_node": "forks-8", "length": 21.050810792646477 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507040.76520436629653, 6004798.157553435303271 ], [ 32507036.399958070367575, 6004798.217646886594594 ], [ 32507029.144705783575773, 6004800.936656161211431 ] ] } }, +{ "type": "Feature", "properties": { "id": 7, "type": "DL", "from_node": "forks-9", "to_node": "forks-10", "length": 36.734210973200092 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506674.726261701434851, 6005018.216621937230229 ], [ 32506654.861689653247595, 6005025.33106526453048 ] ] } }, +{ "type": "Feature", "properties": { "id": 8, "type": "DL", "from_node": "forks-10", "to_node": "forks-11", "length": 58.167007772036605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506643.196130774915218, 6005070.34288255404681 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 9, "type": "DL", "from_node": "forks-11", "to_node": "forks-12", "length": 16.145295829953266 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.289495009928942, 6005081.643143246881664 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 10, "type": "DL", "from_node": "forks-13", "to_node": "forks-14", "length": 151.40987648790704 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506632.455033458769321, 6005112.374179692007601 ], [ 32506627.507085636258125, 6005132.205481625162065 ], [ 32506623.818144433200359, 6005147.66591256391257 ], [ 32506620.064255829900503, 6005162.937104214914143 ], [ 32506615.55568515136838, 6005181.278110017068684 ], [ 32506613.350609008222818, 6005190.265099276788533 ], [ 32506610.443355057388544, 6005202.099448162131011 ], [ 32506608.262401930987835, 6005207.926569108851254 ], [ 32506604.114207334816456, 6005225.255598852410913 ], [ 32506597.784114979207516, 6005240.000177503563464 ], [ 32506592.558225195854902, 6005249.951128247193992 ] ] } }, +{ "type": "Feature", "properties": { "id": 11, "type": "DL", "from_node": "forks-14", "to_node": "forks-15", "length": 9.1179305943723072 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506591.320538651198149, 6005252.307886299677193 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, +{ "type": "Feature", "properties": { "id": 12, "type": "DL", "from_node": "forks-15", "to_node": "forks-16", "length": 32.100377577737376 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506587.964162901043892, 6005263.474022278562188 ], [ 32506587.762997552752495, 6005267.278973447158933 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, +{ "type": "Feature", "properties": { "id": 13, "type": "DL", "from_node": "forks-17", "to_node": "forks-18", "length": 7.23397136554079 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506973.341402161866426, 6004704.626499322243035 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 14, "type": "DL", "from_node": "forks-19", "to_node": "forks-20", "length": 74.004680308054191 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506905.58015414327383, 6004686.432937293313444 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 15, "type": "DL", "from_node": "forks-21", "to_node": "forks-22", "length": 23.950407844761276 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506799.387847676873207, 6004657.913845077157021 ], [ 32506782.945804461836815, 6004652.671333202160895 ] ] } }, +{ "type": "Feature", "properties": { "id": 16, "type": "DL", "from_node": "forks-22", "to_node": "forks-17", "length": 340.26583045827465 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506755.443020176142454, 6004643.41827427316457 ], [ 32506785.601000711321831, 6004608.692504844628274 ], [ 32506825.060652066022158, 6004563.265953474678099 ], [ 32506831.744175631552935, 6004570.930828711017966 ], [ 32506840.820324942469597, 6004580.012318628840148 ], [ 32506853.381121914833784, 6004593.327044745907187 ], [ 32506869.332918431609869, 6004607.993153758347034 ], [ 32506916.344829179346561, 6004648.39671597443521 ], [ 32506938.577460221946239, 6004669.014002612791955 ], [ 32506958.951517555862665, 6004688.794110026210546 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 17, "type": "DL", "from_node": "forks-7", "to_node": "forks-23", "length": 41.544433354428605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506818.050234023481607, 6005310.350491045974195 ], [ 32506800.642851490527391, 6005319.804492926225066 ], [ 32506796.837095130234957, 6005321.278694453649223 ], [ 32506793.04543898999691, 6005322.040828321129084 ], [ 32506788.133238516747952, 6005321.710924620740116 ], [ 32506785.853551879525185, 6005321.162249530665576 ] ] } }, +{ "type": "Feature", "properties": { "id": 18, "type": "DL", "from_node": "forks-24", "to_node": "forks-25", "length": 18.982021775696019 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506758.059295017272234, 6005017.481309016235173 ] ] } }, +{ "type": "Feature", "properties": { "id": 19, "type": "DL", "from_node": "forks-26", "to_node": "forks-27", "length": 52.701423082946803 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506815.066916454583406, 6005165.936148005537689 ], [ 32506830.834934014827013, 6005171.277921593748033 ], [ 32506857.420281685888767, 6005175.401853865012527 ] ] } }, +{ "type": "Feature", "properties": { "id": 20, "type": "DL", "from_node": "forks-27", "to_node": "forks-28", "length": 44.573572810303936 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506875.229494299739599, 6005178.164427729323506 ], [ 32506877.851715076714754, 6005178.546638377942145 ], [ 32506880.474450293928385, 6005178.583931988105178 ], [ 32506884.531792610883713, 6005179.124058937653899 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 21, "type": "DL", "from_node": "forks-29", "to_node": "forks-30", "length": 38.483474769190238 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506983.146614462137222, 6005024.615053474903107 ], [ 32506984.83666018769145, 6005033.107077995315194 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 22, "type": "DL", "from_node": "forks-31", "to_node": "forks-3", "length": 189.88504086378893 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506761.41373110935092, 6005288.247852889820933 ], [ 32506768.106216792017221, 6005284.719470574520528 ], [ 32506768.58904629573226, 6005275.807909052819014 ], [ 32506772.436157487332821, 6005237.327239649370313 ], [ 32506778.249345108866692, 6005228.412388440221548 ], [ 32506784.139542851597071, 6005224.816091160289943 ], [ 32506794.208307005465031, 6005219.178695933893323 ], [ 32506815.131370950490236, 6005219.420987154357135 ], [ 32506849.753633692860603, 6005225.280305446125567 ], [ 32506870.448009263724089, 6005230.106597077101469 ], [ 32506874.400354873389006, 6005231.024857359007001 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 23, "type": "DL", "from_node": "forks-30", "to_node": "forks-32", "length": 340.86861334048416 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506990.210665870457888, 6005043.184641130268574 ], [ 32507017.173750825226307, 6005049.356270640157163 ], [ 32507024.24387625977397, 6005050.980371178127825 ], [ 32507032.057673122733831, 6005052.683502029627562 ], [ 32507039.030090410262346, 6005054.196211940608919 ], [ 32507095.425084549933672, 6005068.902803309261799 ], [ 32507099.61846774071455, 6005070.12204088177532 ], [ 32507105.079793032258749, 6005048.756587056443095 ], [ 32507108.880019243806601, 6005029.925403732806444 ], [ 32507113.154372714459896, 6005012.519138348288834 ], [ 32507115.639401003718376, 6005000.384041387587786 ], [ 32507119.159936010837555, 6004985.268662626855075 ], [ 32507125.537302955985069, 6004958.130034665577114 ], [ 32507123.130625989288092, 6004953.308572310954332 ], [ 32507119.20999788120389, 6004948.6294163800776 ], [ 32507112.447489432990551, 6004946.304680480621755 ], [ 32507096.74439213424921, 6004940.884161343798041 ], [ 32507081.034716226160526, 6004935.474812150001526 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 24, "type": "DL", "from_node": "forks-33", "to_node": "forks-34", "length": 50.586773458177269 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506964.114786304533482, 6005106.432262209244072 ], [ 32506959.267871152609587, 6005121.25927338283509 ] ] } }, +{ "type": "Feature", "properties": { "id": 25, "type": "DL", "from_node": "forks-34", "to_node": "forks-35", "length": 49.532371763572257 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506954.997180473059416, 6005134.323578499257565 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 26, "type": "DL", "from_node": "forks-36", "to_node": "forks-37", "length": 8.7446601227635696 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506863.05286305770278, 6005113.902283472940326 ] ] } }, +{ "type": "Feature", "properties": { "id": 27, "type": "DL", "from_node": "forks-37", "to_node": "forks-38", "length": 44.866942083977705 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506863.05286305770278, 6005113.902283472940326 ], [ 32506868.820386204868555, 6005092.069696916267276 ], [ 32506875.811225049197674, 6005094.349910996854305 ], [ 32506890.007688235491514, 6005098.978906005620956 ] ] } }, +{ "type": "Feature", "properties": { "id": 28, "type": "DL", "from_node": "forks-39", "to_node": "forks-40", "length": 32.538886962521097 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506905.326579809188843, 6005103.973887623287737 ], [ 32506909.884949542582035, 6005105.460533680394292 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 29, "type": "DL", "from_node": "forks-3", "to_node": "forks-28", "length": 52.413555485224038 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506884.118155308067799, 6005233.286900076083839 ], [ 32506897.695788338780403, 6005193.641477124765515 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 30, "type": "DL", "from_node": "forks-41", "to_node": "forks-35", "length": 44.401197384328732 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506909.269722919911146, 6005158.977732182480395 ], [ 32506918.045713808387518, 6005132.432110263034701 ], [ 32506918.576595596969128, 6005130.830701379105449 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 31, "type": "DL", "from_node": "forks-35", "to_node": "forks-40", "length": 16.887330997184353 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.064067415893078, 6005126.549259348772466 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 32, "type": "DL", "from_node": "forks-40", "to_node": "forks-33", "length": 16.495543603110093 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506925.620743818581104, 6005110.602306800894439 ], [ 32506931.039892718195915, 6005095.022326570935547 ] ] } }, +{ "type": "Feature", "properties": { "id": 33, "type": "DL", "from_node": "forks-33", "to_node": "forks-1", "length": 62.273477677616725 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506936.85857841745019, 6005078.441575756296515 ], [ 32506943.116743721067905, 6005060.337174004875124 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 34, "type": "DL", "from_node": "forks-42", "to_node": "forks-29", "length": 27.378709179057996 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506972.555892087519169, 6005025.500261910259724 ], [ 32506983.83998479694128, 6005006.224120298400521 ] ] } }, +{ "type": "Feature", "properties": { "id": 35, "type": "DL", "from_node": "forks-29", "to_node": "forks-43", "length": 82.309282614808183 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506997.676446001976728, 6004973.299755467101932 ], [ 32507001.493707738816738, 6004964.482295924797654 ], [ 32507016.180187117308378, 6004930.535648110322654 ] ] } }, +{ "type": "Feature", "properties": { "id": 36, "type": "DL", "from_node": "forks-43", "to_node": "forks-32", "length": 16.549760925557624 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 37, "type": "DL", "from_node": "forks-44", "to_node": "forks-5", "length": 26.569819452160623 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507056.958943579345942, 6004832.941263437271118 ], [ 32507062.226572059094906, 6004818.80764533020556 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 38, "type": "DL", "from_node": "forks-45", "to_node": "forks-30", "length": 12.434883382597702 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506988.514574155211449, 6005042.992920082062483 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 39, "type": "DL", "from_node": "forks-7", "to_node": "forks-46", "length": 10.105680894875992 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506828.487186539918184, 6005307.105897605419159 ], [ 32506834.086465626955032, 6005306.0683119809255 ] ] } }, +{ "type": "Feature", "properties": { "id": 40, "type": "DL", "from_node": "forks-46", "to_node": "forks-2", "length": 16.093642909239808 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506839.983860768377781, 6005306.377473699860275 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 41, "type": "DL", "from_node": "forks-15", "to_node": "forks-12", "length": 186.83480570927742 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506580.43083043769002, 6005248.253432797268033 ], [ 32506586.498014286160469, 6005225.686575460247695 ], [ 32506599.077679563313723, 6005179.529892827384174 ], [ 32506610.953214820474386, 6005133.194214399904013 ], [ 32506617.463154081255198, 6005106.92293609213084 ], [ 32506620.289027590304613, 6005097.291508676484227 ], [ 32506622.654141690582037, 6005095.025115229189396 ], [ 32506626.497879713773727, 6005094.452065224759281 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 42, "type": "DL", "from_node": "forks-4", "to_node": "forks-47", "length": 46.601378996993553 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507058.269206289201975, 6004774.08448775857687 ], [ 32507055.049979239702225, 6004762.886378192342818 ], [ 32507049.614296812564135, 6004750.349710370413959 ], [ 32507040.424831099808216, 6004741.460822491906583 ] ] } }, +{ "type": "Feature", "properties": { "id": 43, "type": "DL", "from_node": "forks-48", "to_node": "forks-17", "length": 29.417395299614718 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.376538667827845, 6004714.249341813847423 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 44, "type": "DL", "from_node": "forks-49", "to_node": "forks-50", "length": 12.072329419637438 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506774.079425685107708, 6004700.679925447329879 ] ] } }, +{ "type": "Feature", "properties": { "id": 45, "type": "DL", "from_node": "forks-50", "to_node": "forks-51", "length": 17.159504622818627 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506772.276173859834671, 6004711.158364219591022 ], [ 32506770.973308652639389, 6004717.554045321419835 ] ] } }, +{ "type": "Feature", "properties": { "id": 46, "type": "DL", "from_node": "forks-51", "to_node": "forks-52", "length": 38.487725169228518 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506770.028414003551006, 6004722.192472075112164 ], [ 32506767.165194243192673, 6004734.672112413682044 ], [ 32506762.504478130489588, 6004749.296516856178641 ], [ 32506756.913997627794743, 6004748.952905901707709 ] ] } }, +{ "type": "Feature", "properties": { "id": 47, "type": "DL", "from_node": "forks-52", "to_node": "forks-53", "length": 16.431622515339562 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506751.563101142644882, 6004748.624020638875663 ], [ 32506740.583661332726479, 6004747.206024529412389 ] ] } }, +{ "type": "Feature", "properties": { "id": 48, "type": "DL", "from_node": "forks-54", "to_node": "forks-55", "length": 30.023193988180321 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506696.986993879079819, 6005095.343915767967701 ] ] } }, +{ "type": "Feature", "properties": { "id": 49, "type": "DL", "from_node": "forks-56", "to_node": "forks-11", "length": 26.346376967566655 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506648.500972010195255, 6005083.624357352033257 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 50, "type": "DL", "from_node": "forks-1", "to_node": "forks-42", "length": 15.244582403753499 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506968.895207814872265, 6005028.968333293683827 ] ] } }, +{ "type": "Feature", "properties": { "id": 51, "type": "DL", "from_node": "forks-57", "to_node": "forks-58", "length": 20.37652349832614 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506823.60973072052002, 6005027.680673941038549 ] ] } }, +{ "type": "Feature", "properties": { "id": 52, "type": "DL", "from_node": "forks-59", "to_node": "forks-60", "length": 6.7832046734098697 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506978.648154817521572, 6004957.660532805137336 ] ] } }, +{ "type": "Feature", "properties": { "id": 53, "type": "DL", "from_node": "forks-61", "to_node": "forks-62", "length": 6.9335111315525166 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506939.293046627193689, 6004950.686475986614823 ] ] } }, +{ "type": "Feature", "properties": { "id": 54, "type": "DL", "from_node": "forks-62", "to_node": "forks-63", "length": 2.8659454894906302 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506942.140576533973217, 6004950.362104319036007 ] ] } }, +{ "type": "Feature", "properties": { "id": 55, "type": "DL", "from_node": "forks-64", "to_node": "forks-65", "length": 9.8105211963044052 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506892.243028957396746, 6005034.82775982376188 ] ] } }, +{ "type": "Feature", "properties": { "id": 56, "type": "DL", "from_node": "forks-65", "to_node": "forks-0", "length": 16.887334600911991 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506909.028953850269318, 6005036.675676329992712 ] ] } }, +{ "type": "Feature", "properties": { "id": 57, "type": "DL", "from_node": "forks-58", "to_node": "forks-66", "length": 27.605174303638094 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506851.069212395697832, 6005030.513078302145004 ] ] } }, +{ "type": "Feature", "properties": { "id": 58, "type": "DL", "from_node": "forks-67", "to_node": "forks-68", "length": 22.959585823349634 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506654.616219203919172, 6005285.733618872240186 ], [ 32506640.347953863441944, 6005281.794904010370374 ] ] } }, +{ "type": "Feature", "properties": { "id": 59, "type": "DL", "from_node": "forks-69", "to_node": "forks-31", "length": 11.979033370149464 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506758.487752359360456, 6005302.260412618517876 ] ] } }, +{ "type": "Feature", "properties": { "id": 60, "type": "DL", "from_node": "forks-23", "to_node": "forks-69", "length": 30.66571428049804 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506756.039207898080349, 6005313.986531776376069 ] ] } }, +{ "type": "Feature", "properties": { "id": 61, "type": "DL", "from_node": "forks-70", "to_node": "forks-71", "length": 11.677863083290758 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506716.644411128014326, 6005303.012513199821115 ] ] } }, +{ "type": "Feature", "properties": { "id": 62, "type": "DL", "from_node": "forks-71", "to_node": "forks-72", "length": 14.969786858123685 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506702.223685432225466, 6005298.995401179417968 ] ] } }, +{ "type": "Feature", "properties": { "id": 63, "type": "DL", "from_node": "forks-72", "to_node": "forks-73", "length": 12.353866994017851 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506690.322933010756969, 6005295.680265962146223 ] ] } }, +{ "type": "Feature", "properties": { "id": 64, "type": "DL", "from_node": "forks-69", "to_node": "forks-74", "length": 15.774840704223596 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506740.842956084758043, 6005309.753385184332728 ] ] } }, +{ "type": "Feature", "properties": { "id": 65, "type": "DL", "from_node": "forks-74", "to_node": "forks-70", "length": 13.442028101487896 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506727.893954079598188, 6005306.146244134753942 ] ] } }, +{ "type": "Feature", "properties": { "id": 66, "type": "DL", "from_node": "forks-68", "to_node": "forks-75", "length": 16.775301464525015 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506624.177454806864262, 6005277.331082834862173 ] ] } }, +{ "type": "Feature", "properties": { "id": 67, "type": "DL", "from_node": "forks-75", "to_node": "forks-16", "length": 14.690029934981304 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, +{ "type": "Feature", "properties": { "id": 68, "type": "DL", "from_node": "forks-73", "to_node": "forks-76", "length": 12.449400958541288 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506678.330150615423918, 6005292.339494397863746 ] ] } }, +{ "type": "Feature", "properties": { "id": 69, "type": "DL", "from_node": "forks-76", "to_node": "forks-67", "length": 16.459161602136028 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506662.47467739507556, 6005287.92271167691797 ] ] } }, +{ "type": "Feature", "properties": { "id": 70, "type": "DL", "from_node": "forks-77", "to_node": "forks-78", "length": 3.2511346722243273 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506795.28539727255702, 6004969.1316276807338 ] ] } }, +{ "type": "Feature", "properties": { "id": 71, "type": "DL", "from_node": "forks-32", "to_node": "forks-79", "length": 30.801873400833628 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507023.054066255688667, 6004915.480935483239591 ], [ 32507034.713617395609617, 6004886.971107840538025 ] ] } }, +{ "type": "Feature", "properties": { "id": 72, "type": "DL", "from_node": "forks-79", "to_node": "forks-44", "length": 55.381718657617995 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507047.633258003741503, 6004855.380120977759361 ], [ 32507055.788943462073803, 6004835.756441549398005 ] ] } }, +{ "type": "Feature", "properties": { "id": 73, "type": "DL", "from_node": "forks-80", "to_node": "forks-81", "length": 19.13128190117753 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506950.185454107820988, 6004758.780014672316611 ] ] } }, +{ "type": "Feature", "properties": { "id": 74, "type": "DL", "from_node": "forks-82", "to_node": "forks-18", "length": 25.452005598808491 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 75, "type": "DL", "from_node": "forks-24", "to_node": "forks-83", "length": 15.513758223588377 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506731.285512860864401, 6005005.676744327880442 ] ] } }, +{ "type": "Feature", "properties": { "id": 76, "type": "DL", "from_node": "forks-8", "to_node": "forks-84", "length": 19.806018603355987 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507025.222955066710711, 6004802.406388177536428 ], [ 32507012.298958111554384, 6004811.175051881931722 ] ] } }, +{ "type": "Feature", "properties": { "id": 77, "type": "DL", "from_node": "forks-85", "to_node": "forks-57", "length": 20.004603310362665 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506803.475475002080202, 6005024.547870636917651 ] ] } }, +{ "type": "Feature", "properties": { "id": 78, "type": "DL", "from_node": "forks-86", "to_node": "forks-87", "length": 4.3680976148378781 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506813.553776793181896, 6004956.449514558538795 ] ] } }, +{ "type": "Feature", "properties": { "id": 79, "type": "DL", "from_node": "forks-88", "to_node": "forks-86", "length": 7.7170876911347053 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506817.141993094235659, 6004953.958534721285105 ] ] } }, +{ "type": "Feature", "properties": { "id": 80, "type": "DL", "from_node": "forks-87", "to_node": "forks-89", "length": 6.1120023434020982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506808.533012978732586, 6004959.934984880499542 ] ] } }, +{ "type": "Feature", "properties": { "id": 81, "type": "DL", "from_node": "forks-89", "to_node": "forks-77", "length": 12.875785700047937 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506797.956073492765427, 6004967.27761441655457 ] ] } }, +{ "type": "Feature", "properties": { "id": 82, "type": "DL", "from_node": "forks-90", "to_node": "forks-19", "length": 14.875469497298331 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 83, "type": "DL", "from_node": "forks-83", "to_node": "forks-91", "length": 10.149118786775464 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506721.357687663286924, 6005007.784562867134809 ] ] } }, +{ "type": "Feature", "properties": { "id": 84, "type": "DL", "from_node": "forks-92", "to_node": "forks-93", "length": 12.256625746103836 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506959.887568239122629, 6004846.735092141665518 ], [ 32506953.613189354538918, 6004851.448096404783428 ] ] } }, +{ "type": "Feature", "properties": { "id": 85, "type": "DL", "from_node": "forks-20", "to_node": "forks-21", "length": 29.258208096292304 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.067715518176556, 6004667.389202644117177 ], [ 32506805.844013649970293, 6004659.677821842953563 ] ] } }, +{ "type": "Feature", "properties": { "id": 86, "type": "DL", "from_node": "forks-94", "to_node": "forks-95", "length": 4.5999034594684964 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506703.2613147161901, 6005011.626680312678218 ] ] } }, +{ "type": "Feature", "properties": { "id": 87, "type": "DL", "from_node": "forks-47", "to_node": "forks-48", "length": 47.275981869211954 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507038.577310808002949, 6004739.673732661642134 ], [ 32506999.825161140412092, 6004717.383402613922954 ] ] } }, +{ "type": "Feature", "properties": { "id": 88, "type": "DL", "from_node": "forks-84", "to_node": "forks-96", "length": 10.910704236265087 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507003.270227983593941, 6004817.30085788667202 ] ] } }, +{ "type": "Feature", "properties": { "id": 89, "type": "DL", "from_node": "forks-96", "to_node": "forks-97", "length": 7.8661323913340357 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32506996.760915204882622, 6004821.717291509732604 ] ] } }, +{ "type": "Feature", "properties": { "id": 90, "type": "DL", "from_node": "forks-98", "to_node": "forks-99", "length": 6.7877587036788922 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506830.970641527324915, 6004681.731834987178445 ] ] } }, +{ "type": "Feature", "properties": { "id": 91, "type": "DL", "from_node": "forks-99", "to_node": "forks-20", "length": 14.673205847156813 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 92, "type": "DL", "from_node": "forks-100", "to_node": "forks-24", "length": 16.333993078612245 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506746.461005732417107, 6005002.454771279357374 ] ] } }, +{ "type": "Feature", "properties": { "id": 93, "type": "DL", "from_node": "forks-25", "to_node": "forks-101", "length": 11.896619369836037 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506769.814468886703253, 6005019.310363342985511 ] ] } }, +{ "type": "Feature", "properties": { "id": 94, "type": "DL", "from_node": "forks-101", "to_node": "forks-85", "length": 14.061432786510078 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506783.708717506378889, 6005021.472248470410705 ] ] } }, +{ "type": "Feature", "properties": { "id": 95, "type": "DL", "from_node": "forks-18", "to_node": "forks-102", "length": 20.077466912748715 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.355939168483019, 6004702.74669920373708 ], [ 32506946.964905604720116, 6004697.541654058732092 ] ] } }, +{ "type": "Feature", "properties": { "id": 96, "type": "DL", "from_node": "forks-102", "to_node": "forks-19", "length": 42.849751944439234 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 97, "type": "DL", "from_node": "forks-103", "to_node": "forks-104", "length": 12.071576245623099 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506775.654936447739601, 6004982.75931285880506 ], [ 32506768.873632948845625, 6004987.334266549907625 ] ] } }, +{ "type": "Feature", "properties": { "id": 98, "type": "DL", "from_node": "forks-91", "to_node": "forks-105", "length": 9.3306166420836902 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506712.230517812073231, 6005009.722390885464847 ] ] } }, +{ "type": "Feature", "properties": { "id": 99, "type": "DL", "from_node": "forks-105", "to_node": "forks-94", "length": 4.5692253103654279 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506707.760920882225037, 6005010.671349905431271 ] ] } }, +{ "type": "Feature", "properties": { "id": 100, "type": "DL", "from_node": "forks-78", "to_node": "forks-106", "length": 9.8573102943669628 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506787.188013788312674, 6004974.752921744249761 ] ] } }, +{ "type": "Feature", "properties": { "id": 101, "type": "DL", "from_node": "forks-106", "to_node": "forks-103", "length": 10.148396272332 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506778.851514894515276, 6004980.540212396532297 ] ] } }, +{ "type": "Feature", "properties": { "id": 102, "type": "DL", "from_node": "forks-107", "to_node": "forks-108", "length": 20.197520625055891 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506676.925561025738716, 6004933.684903668239713 ] ] } }, +{ "type": "Feature", "properties": { "id": 103, "type": "DL", "from_node": "forks-95", "to_node": "forks-9", "length": 13.652059525991209 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506689.959371760487556, 6005014.698657347820699 ] ] } }, +{ "type": "Feature", "properties": { "id": 104, "type": "DL", "from_node": "forks-109", "to_node": "forks-110", "length": 13.444847189322466 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506862.94104577600956, 6004919.556542991660535 ] ] } }, +{ "type": "Feature", "properties": { "id": 105, "type": "DL", "from_node": "forks-110", "to_node": "forks-111", "length": 11.705932914720055 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506853.581471733748913, 6004926.586993841454387 ] ] } }, +{ "type": "Feature", "properties": { "id": 106, "type": "DL", "from_node": "forks-104", "to_node": "forks-100", "length": 10.702196039233204 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506760.00166030600667, 6004993.319673928432167 ] ] } }, +{ "type": "Feature", "properties": { "id": 107, "type": "DL", "from_node": "forks-111", "to_node": "forks-112", "length": 14.463073185676793 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506842.017403721809387, 6004935.273351938463748 ] ] } }, +{ "type": "Feature", "properties": { "id": 108, "type": "DL", "from_node": "forks-112", "to_node": "forks-113", "length": 9.4183444172959518 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506834.486889701336622, 6004940.929903021082282 ] ] } }, +{ "type": "Feature", "properties": { "id": 109, "type": "DL", "from_node": "forks-97", "to_node": "forks-114", "length": 12.74506467776347 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506986.214231237769127, 6004828.872997689992189 ] ] } }, +{ "type": "Feature", "properties": { "id": 110, "type": "DL", "from_node": "forks-114", "to_node": "forks-92", "length": 27.40494932962573 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506963.536328300833702, 6004844.25948416814208 ] ] } }, +{ "type": "Feature", "properties": { "id": 111, "type": "DL", "from_node": "forks-115", "to_node": "forks-116", "length": 15.593625487642139 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506919.662733968347311, 6004876.950005657039583 ] ] } }, +{ "type": "Feature", "properties": { "id": 112, "type": "DL", "from_node": "forks-93", "to_node": "forks-117", "length": 18.10282150070913 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506939.138930920511484, 6004862.320446154102683 ] ] } }, +{ "type": "Feature", "properties": { "id": 113, "type": "DL", "from_node": "forks-117", "to_node": "forks-115", "length": 8.765074374408389 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506932.130744285881519, 6004867.584650641307235 ] ] } }, +{ "type": "Feature", "properties": { "id": 114, "type": "DL", "from_node": "forks-55", "to_node": "forks-56", "length": 31.983011999679352 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506696.986993879079819, 6005095.343915767967701 ], [ 32506665.899223614484072, 6005087.829689490608871 ] ] } }, +{ "type": "Feature", "properties": { "id": 115, "type": "DL", "from_node": "forks-118", "to_node": "forks-119", "length": 15.463236984191026 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506888.624447055160999, 6004900.264437444508076 ] ] } }, +{ "type": "Feature", "properties": { "id": 116, "type": "DL", "from_node": "forks-119", "to_node": "forks-109", "length": 18.67714586385511 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506873.690982896834612, 6004911.48171990737319 ] ] } }, +{ "type": "Feature", "properties": { "id": 117, "type": "DL", "from_node": "forks-81", "to_node": "forks-120", "length": 11.496992186324073 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506953.373247098177671, 6004747.733802417293191 ] ] } }, +{ "type": "Feature", "properties": { "id": 118, "type": "DL", "from_node": "forks-120", "to_node": "forks-82", "length": 21.370956171454608 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506959.298812948167324, 6004727.200769591145217 ] ] } }, +{ "type": "Feature", "properties": { "id": 119, "type": "DL", "from_node": "forks-116", "to_node": "forks-121", "length": 3.2099182269167317 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506917.096217695623636, 6004878.877846222370863 ] ] } }, +{ "type": "Feature", "properties": { "id": 120, "type": "DL", "from_node": "forks-121", "to_node": "forks-118", "length": 20.14614390772995 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506900.988204181194305, 6004890.977392286993563 ] ] } }, +{ "type": "Feature", "properties": { "id": 121, "type": "DL", "from_node": "forks-113", "to_node": "forks-122", "length": 2.0805704777785787 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506832.823352623730898, 6004942.179470107890666 ] ] } }, +{ "type": "Feature", "properties": { "id": 122, "type": "DL", "from_node": "forks-122", "to_node": "forks-88", "length": 11.895444013360057 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506823.312253437936306, 6004949.323739178478718 ] ] } }, +{ "type": "Feature", "properties": { "id": 123, "type": "DL", "from_node": "forks-28", "to_node": "forks-41", "length": 15.814822587833325 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.096803050488234, 6005183.699540133588016 ], [ 32506906.060875575989485, 6005168.68399494048208 ] ] } }, +{ "type": "Feature", "properties": { "id": 124, "type": "DL", "from_node": "forks-38", "to_node": "forks-39", "length": 4.9230043797971872 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506894.688163235783577, 6005100.505053408443928 ] ] } }, +{ "type": "Feature", "properties": { "id": 125, "type": "DL", "from_node": "forks-66", "to_node": "forks-123", "length": 12.974264972084265 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506863.975002713501453, 6005031.844291222281754 ] ] } }, +{ "type": "Feature", "properties": { "id": 126, "type": "DL", "from_node": "forks-123", "to_node": "forks-64", "length": 18.614661097912897 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506882.491420675069094, 6005033.754231970757246 ] ] } }, +{ "type": "Feature", "properties": { "id": 127, "type": "DL", "from_node": "forks-1", "to_node": "forks-45", "length": 20.161667823640062 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506977.857269514352083, 6005041.763435141183436 ] ] } }, +{ "type": "Feature", "properties": { "id": 128, "type": "DL", "from_node": "forks-58", "to_node": "forks-124", "length": 15.92658917357455 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506822.627499092370272, 6005043.576945948414505 ] ] } }, +{ "type": "Feature", "properties": { "id": 129, "type": "DL", "from_node": "forks-124", "to_node": "forks-125", "length": 14.019225631405591 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506821.762899231165648, 6005057.56948518846184 ] ] } }, +{ "type": "Feature", "properties": { "id": 130, "type": "DL", "from_node": "forks-126", "to_node": "forks-127", "length": 8.0889792246438308 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506819.887813340872526, 6005087.915560906752944 ] ] } }, +{ "type": "Feature", "properties": { "id": 131, "type": "DL", "from_node": "forks-127", "to_node": "forks-128", "length": 17.194161600186703 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506818.82740742713213, 6005105.076992444694042 ] ] } }, +{ "type": "Feature", "properties": { "id": 132, "type": "DL", "from_node": "forks-128", "to_node": "forks-129", "length": 5.8632125342124359 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506818.465808801352978, 6005110.929044021293521 ] ] } }, +{ "type": "Feature", "properties": { "id": 133, "type": "DL", "from_node": "forks-129", "to_node": "forks-130", "length": 14.078716447207594 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506817.597539994865656, 6005124.98096083290875 ] ] } }, +{ "type": "Feature", "properties": { "id": 134, "type": "DL", "from_node": "forks-130", "to_node": "forks-131", "length": 7.5382512271670308 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506817.132637642323971, 6005132.504862571135163 ] ] } }, +{ "type": "Feature", "properties": { "id": 135, "type": "DL", "from_node": "forks-131", "to_node": "forks-132", "length": 17.031014485904933 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506816.082293409854174, 6005149.503457554616034 ] ] } }, +{ "type": "Feature", "properties": { "id": 136, "type": "DL", "from_node": "forks-132", "to_node": "forks-26", "length": 7.3141780287910745 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506815.631210200488567, 6005156.803712630644441 ] ] } }, +{ "type": "Feature", "properties": { "id": 137, "type": "DL", "from_node": "forks-125", "to_node": "forks-133", "length": 7.5382508997463304 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506821.297996897250414, 6005065.09338659979403 ] ] } }, +{ "type": "Feature", "properties": { "id": 138, "type": "DL", "from_node": "forks-133", "to_node": "forks-126", "length": 14.776721240460976 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506820.38668043166399, 6005079.841979512944818 ] ] } }, +{ "type": "Feature", "properties": { "id": 139, "type": "DL", "from_node": "forks-134", "to_node": "forks-135", "length": 5.3326475391015506 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506914.126209385693073, 6004979.673459259793162 ] ] } }, +{ "type": "Feature", "properties": { "id": 140, "type": "DL", "from_node": "forks-135", "to_node": "forks-136", "length": 5.3317441895120332 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506916.818285372108221, 6004975.071261634118855 ] ] } }, +{ "type": "Feature", "properties": { "id": 141, "type": "DL", "from_node": "forks-137", "to_node": "forks-138", "length": 5.0289118355860376 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506923.4450902082026, 6004963.742508042603731 ] ] } }, +{ "type": "Feature", "properties": { "id": 142, "type": "DL", "from_node": "forks-138", "to_node": "forks-139", "length": 6.1703495971908442 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506926.560590386390686, 6004958.416452016681433 ] ] } }, +{ "type": "Feature", "properties": { "id": 143, "type": "DL", "from_node": "forks-140", "to_node": "forks-141", "length": 5.3740087659180107 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506956.185954, 6004953.169992100447416 ], [ 32506961.455688826739788, 6004954.223493443801999 ] ] } }, +{ "type": "Feature", "properties": { "id": 144, "type": "DL", "from_node": "forks-64", "to_node": "forks-142", "length": 28.432866015182562 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506896.847592517733574, 6005009.211856375448406 ] ] } }, +{ "type": "Feature", "properties": { "id": 145, "type": "DL", "from_node": "forks-142", "to_node": "forks-143", "length": 4.839390263957422 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506899.291071772575378, 6005005.034643517807126 ] ] } }, +{ "type": "Feature", "properties": { "id": 146, "type": "DL", "from_node": "forks-139", "to_node": "forks-144", "length": 2.1842816760639723 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506927.96684343740344, 6004956.745063732378185 ] ] } }, +{ "type": "Feature", "properties": { "id": 147, "type": "DL", "from_node": "forks-144", "to_node": "forks-61", "length": 6.8922102463753827 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506932.404087860137224, 6004951.471220350824296 ] ] } }, +{ "type": "Feature", "properties": { "id": 148, "type": "DL", "from_node": "forks-141", "to_node": "forks-145", "length": 5.3739009046009762 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506966.725317884236574, 6004955.276973642408848 ] ] } }, +{ "type": "Feature", "properties": { "id": 149, "type": "DL", "from_node": "forks-145", "to_node": "forks-59", "length": 5.3755532738449299 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506971.996567249298096, 6004956.330777766183019 ] ] } }, +{ "type": "Feature", "properties": { "id": 150, "type": "DL", "from_node": "forks-63", "to_node": "forks-146", "length": 4.4177561547689814 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506946.472613282501698, 6004951.228145341388881 ] ] } }, +{ "type": "Feature", "properties": { "id": 151, "type": "DL", "from_node": "forks-147", "to_node": "forks-148", "length": 5.3280144709008272 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506906.03665117174387, 6004993.502840675413609 ] ] } }, +{ "type": "Feature", "properties": { "id": 152, "type": "DL", "from_node": "forks-146", "to_node": "forks-149", "length": 5.4011822576702038 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506951.768994342535734, 6004952.286973678506911 ] ] } }, +{ "type": "Feature", "properties": { "id": 153, "type": "DL", "from_node": "forks-149", "to_node": "forks-140", "length": 4.5043594612583675 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506956.185954, 6004953.169992100447416 ] ] } }, +{ "type": "Feature", "properties": { "id": 154, "type": "DL", "from_node": "forks-148", "to_node": "forks-150", "length": 5.3267258755225697 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506908.726193338632584, 6004988.904974704608321 ] ] } }, +{ "type": "Feature", "properties": { "id": 155, "type": "DL", "from_node": "forks-150", "to_node": "forks-134", "length": 5.3622601611253016 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506911.433677285909653, 6004984.276436629705131 ] ] } }, +{ "type": "Feature", "properties": { "id": 156, "type": "DL", "from_node": "forks-143", "to_node": "forks-151", "length": 5.1146790192008753 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506901.873548362404108, 6005000.619809870608151 ] ] } }, +{ "type": "Feature", "properties": { "id": 157, "type": "DL", "from_node": "forks-151", "to_node": "forks-147", "length": 2.9171462629163538 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506903.346458375453949, 6004998.101818922907114 ] ] } }, +{ "type": "Feature", "properties": { "id": 158, "type": "DL", "from_node": "forks-136", "to_node": "forks-152", "length": 2.7692589543510699 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506918.216524910181761, 6004972.680922463536263 ] ] } }, +{ "type": "Feature", "properties": { "id": 159, "type": "DL", "from_node": "forks-152", "to_node": "forks-137", "length": 5.3264320715955291 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506920.905918728560209, 6004968.083310093730688 ] ] } }, +{ "type": "Feature", "properties": { "id": 160, "type": "DL", "from_node": "forks-10", "to_node": "forks-153", "length": 57.835132351275696 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506668.398750115185976, 6004969.102509101852775 ] ] } }, +{ "type": "Feature", "properties": { "id": 161, "type": "DL", "from_node": "forks-153", "to_node": "forks-107", "length": 16.232045375041046 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506672.19807019457221, 6004953.321366431191564 ] ] } }, +{ "type": "Feature", "properties": { "id": 162, "type": "DL", "from_node": "forks-108", "to_node": "forks-154", "length": 8.0398935721777605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506678.807402063161135, 6004925.868346692062914 ] ] } }, +{ "type": "Feature", "properties": { "id": 163, "type": "DL", "from_node": "forks-154", "to_node": "forks-155", "length": 12.136636911538943 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506681.648138843476772, 6004914.06884797103703 ] ] } }, +{ "type": "Feature", "properties": { "id": 164, "type": "DL", "from_node": "forks-156", "to_node": "forks-49", "length": 15.125862215622554 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506774.162415158003569, 6004688.607881280593574 ] ] } }, +{ "type": "Feature", "properties": { "id": 165, "type": "DL", "from_node": "forks-22", "to_node": "forks-157", "length": 18.640679786592461 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506778.520040560513735, 6004670.778998893685639 ] ] } }, +{ "type": "Feature", "properties": { "id": 166, "type": "DL", "from_node": "forks-157", "to_node": "forks-156", "length": 3.2278280485940081 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506777.753673400729895, 6004673.914529995061457 ] ] } }, +{ "type": "Feature", "properties": { "id": 167, "type": "DL", "from_node": "forks-158", "to_node": "forks-159", "length": 5.9696688421416511 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506748.453176651149988, 6004680.854203343391418 ] ] } }, +{ "type": "Feature", "properties": { "id": 168, "type": "DL", "from_node": "forks-159", "to_node": "forks-160", "length": 6.1541847428684866 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506742.56112327426672, 6004679.077212388627231 ] ] } }, +{ "type": "Feature", "properties": { "id": 169, "type": "DL", "from_node": "forks-160", "to_node": "forks-161", "length": 6.1205658697733236 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506736.701256807893515, 6004677.30992872081697 ] ] } }, +{ "type": "Feature", "properties": { "id": 170, "type": "DL", "from_node": "forks-161", "to_node": "forks-162", "length": 5.7755207289537402 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506731.171738628298044, 6004675.642275162041187 ] ] } }, +{ "type": "Feature", "properties": { "id": 171, "type": "DL", "from_node": "forks-49", "to_node": "forks-163", "length": 18.234794919540622 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506756.704313155263662, 6004683.342672811821103 ] ] } }, +{ "type": "Feature", "properties": { "id": 172, "type": "DL", "from_node": "forks-163", "to_node": "forks-158", "length": 2.6485521984689893 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506754.168573398143053, 6004682.577916228212416 ] ] } }, +{ "type": "Feature", "properties": { "id": 173, "type": "DL", "from_node": "forks-12", "to_node": "forks-13", "length": 7.8781933938920234 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506635.980503581464291, 6005097.202808098867536 ], [ 32506634.197308879345655, 6005104.876539121381938 ] ] } }, +{ "type": "Feature", "properties": { "id": 174, "type": "HL", "from_node": "forks-42", "to_node": "consumers-0", "length": 20.070567506853333 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506955.09166768565774, 6005014.398159652017057 ] ] } }, +{ "type": "Feature", "properties": { "id": 175, "type": "HL", "from_node": "forks-57", "to_node": "consumers-1", "length": 14.828558617895311 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506801.195647560060024, 6005039.200124303810298 ] ] } }, +{ "type": "Feature", "properties": { "id": 176, "type": "HL", "from_node": "forks-34", "to_node": "consumers-2", "length": 12.18983054287227 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506947.681407205760479, 6005117.471685512922704 ] ] } }, +{ "type": "Feature", "properties": { "id": 177, "type": "HL", "from_node": "forks-139", "to_node": "consumers-3", "length": 11.666016769071787 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506936.092872586101294, 6004965.141892026178539 ] ] } }, +{ "type": "Feature", "properties": { "id": 178, "type": "HL", "from_node": "forks-0", "to_node": "consumers-4", "length": 16.225116367069244 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506912.159830294549465, 6005020.755500017665327 ] ] } }, +{ "type": "Feature", "properties": { "id": 179, "type": "HL", "from_node": "forks-0", "to_node": "consumers-5", "length": 32.627471719923186 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506905.141416907310486, 6005069.070721743628383 ] ] } }, +{ "type": "Feature", "properties": { "id": 180, "type": "HL", "from_node": "forks-27", "to_node": "consumers-6", "length": 17.803857581607861 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506860.149385698139668, 6005157.808408037759364 ] ] } }, +{ "type": "Feature", "properties": { "id": 181, "type": "HL", "from_node": "forks-60", "to_node": "consumers-7", "length": 11.205867902717186 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506978.648154817521572, 6004957.660532805137336 ], [ 32506980.289583649486303, 6004946.575534526258707 ] ] } }, +{ "type": "Feature", "properties": { "id": 182, "type": "HL", "from_node": "forks-136", "to_node": "consumers-8", "length": 10.971815061796425 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506907.347752008587122, 6004969.531430990435183 ] ] } }, +{ "type": "Feature", "properties": { "id": 183, "type": "HL", "from_node": "forks-128", "to_node": "consumers-9", "length": 12.89889499816101 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506831.70174864679575, 6005105.872498782351613 ] ] } }, +{ "type": "Feature", "properties": { "id": 184, "type": "HL", "from_node": "forks-128", "to_node": "consumers-10", "length": 11.973918500261945 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506807.097907729446888, 6005102.670010705478489 ] ] } }, +{ "type": "Feature", "properties": { "id": 185, "type": "HL", "from_node": "forks-147", "to_node": "consumers-11", "length": 11.055986329683931 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506912.889645788818598, 6005003.684148876927793 ] ] } }, +{ "type": "Feature", "properties": { "id": 186, "type": "HL", "from_node": "forks-130", "to_node": "consumers-12", "length": 12.515965810989343 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506805.105399034917355, 6005124.209070673212409 ] ] } }, +{ "type": "Feature", "properties": { "id": 187, "type": "HL", "from_node": "forks-59", "to_node": "consumers-13", "length": 11.661998740805577 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506969.710390973836184, 6004967.766494301147759 ] ] } }, +{ "type": "Feature", "properties": { "id": 188, "type": "HL", "from_node": "forks-43", "to_node": "consumers-14", "length": 30.038198798684267 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32506988.938321895897388, 6004917.879654813557863 ] ] } }, +{ "type": "Feature", "properties": { "id": 189, "type": "HL", "from_node": "forks-126", "to_node": "consumers-15", "length": 10.707187169089545 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506809.699875, 6005079.181641146540642 ] ] } }, +{ "type": "Feature", "properties": { "id": 190, "type": "HL", "from_node": "forks-62", "to_node": "consumers-16", "length": 11.956756122673212 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506937.939764458686113, 6004938.806549877859652 ] ] } }, +{ "type": "Feature", "properties": { "id": 191, "type": "HL", "from_node": "forks-126", "to_node": "consumers-17", "length": 10.213025551376619 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506830.531552042812109, 6005081.019889062270522 ] ] } }, +{ "type": "Feature", "properties": { "id": 192, "type": "HL", "from_node": "forks-125", "to_node": "consumers-18", "length": 10.994047678276765 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506810.789779346436262, 6005056.891455434262753 ] ] } }, +{ "type": "Feature", "properties": { "id": 193, "type": "HL", "from_node": "forks-132", "to_node": "consumers-19", "length": 10.440695474766875 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506826.503114428371191, 6005150.147360728122294 ] ] } }, +{ "type": "Feature", "properties": { "id": 194, "type": "HL", "from_node": "forks-132", "to_node": "consumers-20", "length": 11.10089298421933 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506805.018891096115112, 6005148.591890611685812 ] ] } }, +{ "type": "Feature", "properties": { "id": 195, "type": "HL", "from_node": "forks-125", "to_node": "consumers-21", "length": 10.949577152804078 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506832.678980179131031, 6005058.425298580899835 ] ] } }, +{ "type": "Feature", "properties": { "id": 196, "type": "HL", "from_node": "forks-65", "to_node": "consumers-22", "length": 14.951834163345012 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506890.606906868517399, 6005049.689807103946805 ] ] } }, +{ "type": "Feature", "properties": { "id": 197, "type": "HL", "from_node": "forks-36", "to_node": "consumers-23", "length": 27.760086543836465 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506878.119526300579309, 6005143.90860013011843 ] ] } }, +{ "type": "Feature", "properties": { "id": 198, "type": "HL", "from_node": "forks-38", "to_node": "consumers-24", "length": 13.572347604373999 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506885.800216242671013, 6005111.882618607953191 ] ] } }, +{ "type": "Feature", "properties": { "id": 199, "type": "HL", "from_node": "forks-143", "to_node": "consumers-25", "length": 13.409041639816849 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506887.71679937466979, 6004998.264221362769604 ] ] } }, +{ "type": "Feature", "properties": { "id": 200, "type": "HL", "from_node": "forks-130", "to_node": "consumers-26", "length": 14.74473273527944 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506832.157563894987106, 6005127.307513532228768 ] ] } }, +{ "type": "Feature", "properties": { "id": 201, "type": "HL", "from_node": "forks-66", "to_node": "consumers-27", "length": 15.267801977957966 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506849.502673149108887, 6005045.700300958938897 ] ] } }, +{ "type": "Feature", "properties": { "id": 202, "type": "HL", "from_node": "forks-54", "to_node": "consumers-28", "length": 27.26755243400606 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506748.283596221357584, 6005117.573655765503645 ] ] } }, +{ "type": "Feature", "properties": { "id": 203, "type": "HL", "from_node": "forks-68", "to_node": "consumers-29", "length": 13.351207807371567 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506643.90064138174057, 6005268.925049259327352 ] ] } }, +{ "type": "Feature", "properties": { "id": 204, "type": "HL", "from_node": "forks-72", "to_node": "consumers-30", "length": 9.0425447913619443 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506704.650234036147594, 6005290.28451843559742 ] ] } }, +{ "type": "Feature", "properties": { "id": 205, "type": "HL", "from_node": "forks-16", "to_node": "consumers-31", "length": 15.207447170690838 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506610.017046678811312, 6005273.422141656279564 ], [ 32506614.063669916242361, 6005258.762970812618732 ] ] } }, +{ "type": "Feature", "properties": { "id": 206, "type": "HL", "from_node": "forks-14", "to_node": "consumers-32", "length": 14.752146059097333 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506605.618858031928539, 6005256.810113833285868 ] ] } }, +{ "type": "Feature", "properties": { "id": 207, "type": "HL", "from_node": "forks-70", "to_node": "consumers-33", "length": 9.0150474804376497 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506730.31312383338809, 6005297.461850156076252 ] ] } }, +{ "type": "Feature", "properties": { "id": 208, "type": "HL", "from_node": "forks-31", "to_node": "consumers-34", "length": 5.5480699412216063 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506753.056819226592779, 6005301.126373209990561 ] ] } }, +{ "type": "Feature", "properties": { "id": 209, "type": "HL", "from_node": "forks-23", "to_node": "consumers-35", "length": 10.377386161503832 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506788.281840145587921, 6005311.072970089502633 ] ] } }, +{ "type": "Feature", "properties": { "id": 210, "type": "HL", "from_node": "forks-71", "to_node": "consumers-36", "length": 8.6126937692127612 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506718.955610077828169, 6005294.715715421363711 ] ] } }, +{ "type": "Feature", "properties": { "id": 211, "type": "HL", "from_node": "forks-67", "to_node": "consumers-37", "length": 13.703223156842679 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506666.151909608393908, 6005274.722094716504216 ] ] } }, +{ "type": "Feature", "properties": { "id": 212, "type": "HL", "from_node": "forks-31", "to_node": "consumers-38", "length": 11.22894842681734 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506769.625647164881229, 6005303.687501288950443 ] ] } }, +{ "type": "Feature", "properties": { "id": 213, "type": "HL", "from_node": "forks-73", "to_node": "consumers-39", "length": 8.5749456079941169 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506692.624002318829298, 6005287.419831819832325 ] ] } }, +{ "type": "Feature", "properties": { "id": 214, "type": "HL", "from_node": "forks-74", "to_node": "consumers-40", "length": 12.78680164948709 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506744.274268440902233, 6005297.435577264986932 ] ] } }, +{ "type": "Feature", "properties": { "id": 215, "type": "HL", "from_node": "forks-75", "to_node": "consumers-41", "length": 15.088268813186509 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506628.192365296185017, 6005262.78679359331727 ] ] } }, +{ "type": "Feature", "properties": { "id": 216, "type": "HL", "from_node": "forks-46", "to_node": "consumers-42", "length": 26.255097649087105 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506833.239296399056911, 6005279.82688563130796 ] ] } }, +{ "type": "Feature", "properties": { "id": 217, "type": "HL", "from_node": "forks-76", "to_node": "consumers-43", "length": 13.871718996488957 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506682.052598346024752, 6005278.976561680436134 ] ] } }, +{ "type": "Feature", "properties": { "id": 218, "type": "HL", "from_node": "forks-108", "to_node": "consumers-44", "length": 17.825607326175209 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506694.255998805165291, 6004937.857217525132 ] ] } }, +{ "type": "Feature", "properties": { "id": 219, "type": "HL", "from_node": "forks-80", "to_node": "consumers-45", "length": 17.518901773870795 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506927.587524946779013, 6004774.359126213937998 ] ] } }, +{ "type": "Feature", "properties": { "id": 220, "type": "HL", "from_node": "forks-77", "to_node": "consumers-46", "length": 13.557861602124051 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506790.224478904157877, 6004956.140377041883767 ] ] } }, +{ "type": "Feature", "properties": { "id": 221, "type": "HL", "from_node": "forks-78", "to_node": "consumers-47", "length": 9.4486423585962793 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506800.673641692847013, 6004976.893306911922991 ] ] } }, +{ "type": "Feature", "properties": { "id": 222, "type": "HL", "from_node": "forks-79", "to_node": "consumers-48", "length": 16.96136337399377 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507019.014392219483852, 6004880.550657982937992 ] ] } }, +{ "type": "Feature", "properties": { "id": 223, "type": "HL", "from_node": "forks-95", "to_node": "consumers-49", "length": 9.2660080018944058 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506703.973344795405865, 6005020.865290460176766 ] ] } }, +{ "type": "Feature", "properties": { "id": 224, "type": "HL", "from_node": "forks-81", "to_node": "consumers-50", "length": 17.740696215718618 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506933.140344154089689, 6004753.861017936840653 ] ] } }, +{ "type": "Feature", "properties": { "id": 225, "type": "HL", "from_node": "forks-82", "to_node": "consumers-51", "length": 17.496222673137193 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506942.488591093569994, 6004722.349558502435684 ] ] } }, +{ "type": "Feature", "properties": { "id": 226, "type": "HL", "from_node": "forks-83", "to_node": "consumers-52", "length": 17.999939316170021 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506735.023828137665987, 6005023.284209059551358 ] ] } }, +{ "type": "Feature", "properties": { "id": 227, "type": "HL", "from_node": "forks-84", "to_node": "consumers-53", "length": 21.877250679300193 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507000.015993539243937, 6004793.071381574496627 ] ] } }, +{ "type": "Feature", "properties": { "id": 228, "type": "HL", "from_node": "forks-85", "to_node": "consumers-54", "length": 24.949882967008463 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506779.872779753059149, 6005046.125488452613354 ] ] } }, +{ "type": "Feature", "properties": { "id": 229, "type": "HL", "from_node": "forks-87", "to_node": "consumers-55", "length": 8.6071500745920915 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506818.462146334350109, 6004963.519941763021052 ] ] } }, +{ "type": "Feature", "properties": { "id": 230, "type": "HL", "from_node": "forks-88", "to_node": "consumers-56", "length": 8.7683108247940922 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506828.578401699662209, 6004956.334513544104993 ] ] } }, +{ "type": "Feature", "properties": { "id": 231, "type": "HL", "from_node": "forks-98", "to_node": "consumers-57", "length": 17.018506156431766 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506812.902853854000568, 6004684.774575287476182 ] ] } }, +{ "type": "Feature", "properties": { "id": 232, "type": "HL", "from_node": "forks-89", "to_node": "consumers-58", "length": 13.12672203316893 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506801.047282852232456, 6004949.151911301538348 ] ] } }, +{ "type": "Feature", "properties": { "id": 233, "type": "HL", "from_node": "forks-111", "to_node": "consumers-59", "length": 8.9658061316792903 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506858.966233443468809, 6004933.755677187815309 ] ] } }, +{ "type": "Feature", "properties": { "id": 234, "type": "HL", "from_node": "forks-90", "to_node": "consumers-60", "length": 10.829857903757913 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506911.747826270759106, 6004703.768600980751216 ] ] } }, +{ "type": "Feature", "properties": { "id": 235, "type": "HL", "from_node": "forks-97", "to_node": "consumers-61", "length": 15.170675649506549 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506988.243351720273495, 6004809.163387258537114 ] ] } }, +{ "type": "Feature", "properties": { "id": 236, "type": "HL", "from_node": "forks-44", "to_node": "consumers-62", "length": 18.701122122152828 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507038.519862838089466, 6004828.579337465576828 ] ] } }, +{ "type": "Feature", "properties": { "id": 237, "type": "HL", "from_node": "forks-118", "to_node": "consumers-63", "length": 10.477072182519393 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506907.28061518073082, 6004899.354420717805624 ] ] } }, +{ "type": "Feature", "properties": { "id": 238, "type": "HL", "from_node": "forks-91", "to_node": "consumers-64", "length": 13.550242408785028 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506724.171868160367012, 6005021.039352849125862 ] ] } }, +{ "type": "Feature", "properties": { "id": 239, "type": "HL", "from_node": "forks-92", "to_node": "consumers-65", "length": 10.094294378809217 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506969.203761655837297, 6004852.612625982612371 ] ] } }, +{ "type": "Feature", "properties": { "id": 240, "type": "HL", "from_node": "forks-155", "to_node": "consumers-66", "length": 17.723896775983818 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506681.648138843476772, 6004914.06884797103703 ], [ 32506698.879691444337368, 6004918.217355159111321 ] ] } }, +{ "type": "Feature", "properties": { "id": 241, "type": "HL", "from_node": "forks-61", "to_node": "consumers-67", "length": 12.128193895336635 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506922.212192755192518, 6004944.897153015248477 ] ] } }, +{ "type": "Feature", "properties": { "id": 242, "type": "HL", "from_node": "forks-86", "to_node": "consumers-68", "length": 14.79052081724222 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506809.732562188059092, 6004941.157759756781161 ] ] } }, +{ "type": "Feature", "properties": { "id": 243, "type": "HL", "from_node": "forks-21", "to_node": "consumers-69", "length": 14.269184031768264 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506802.083184845745564, 6004673.442478745244443 ] ] } }, +{ "type": "Feature", "properties": { "id": 244, "type": "HL", "from_node": "forks-94", "to_node": "consumers-70", "length": 12.197593325502092 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506705.227665148675442, 6004998.739715552888811 ] ] } }, +{ "type": "Feature", "properties": { "id": 245, "type": "HL", "from_node": "forks-47", "to_node": "consumers-71", "length": 19.351707001565927 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507026.970478340983391, 6004755.370134326629341 ] ] } }, +{ "type": "Feature", "properties": { "id": 246, "type": "HL", "from_node": "forks-8", "to_node": "consumers-72", "length": 21.947743092730299 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507021.442586395889521, 6004780.384751534089446 ] ] } }, +{ "type": "Feature", "properties": { "id": 247, "type": "HL", "from_node": "forks-96", "to_node": "consumers-73", "length": 18.996605294568166 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32507013.935856550931931, 6004833.020761829800904 ] ] } }, +{ "type": "Feature", "properties": { "id": 248, "type": "HL", "from_node": "forks-93", "to_node": "consumers-74", "length": 10.943259200300011 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506960.185587, 6004860.197868465445936 ] ] } }, +{ "type": "Feature", "properties": { "id": 249, "type": "HL", "from_node": "forks-99", "to_node": "consumers-75", "length": 8.5244783481214608 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506839.303071409463882, 6004683.53109688218683 ] ] } }, +{ "type": "Feature", "properties": { "id": 250, "type": "HL", "from_node": "forks-113", "to_node": "consumers-76", "length": 9.316009561087057 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506840.081979628652334, 6004948.378594372421503 ] ] } }, +{ "type": "Feature", "properties": { "id": 251, "type": "HL", "from_node": "forks-100", "to_node": "consumers-77", "length": 9.3148661058648159 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506765.211176943033934, 6005001.041569225490093 ] ] } }, +{ "type": "Feature", "properties": { "id": 252, "type": "HL", "from_node": "forks-101", "to_node": "consumers-78", "length": 12.054644281716179 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506767.961118906736374, 6005031.221683278679848 ] ] } }, +{ "type": "Feature", "properties": { "id": 253, "type": "HL", "from_node": "forks-116", "to_node": "consumers-79", "length": 10.072076523338099 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506925.711909156292677, 6004885.003216509707272 ] ] } }, +{ "type": "Feature", "properties": { "id": 254, "type": "HL", "from_node": "forks-102", "to_node": "consumers-80", "length": 15.941094874509144 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506942.832207050174475, 6004712.93773500341922 ] ] } }, +{ "type": "Feature", "properties": { "id": 255, "type": "HL", "from_node": "forks-103", "to_node": "consumers-81", "length": 10.805527575392439 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506785.013545528054237, 6004989.416518196463585 ] ] } }, +{ "type": "Feature", "properties": { "id": 256, "type": "HL", "from_node": "forks-105", "to_node": "consumers-82", "length": 12.061076000759543 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506714.73542096093297, 6005021.520484566688538 ] ] } }, +{ "type": "Feature", "properties": { "id": 257, "type": "HL", "from_node": "forks-109", "to_node": "consumers-83", "length": 9.0632442818962495 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506879.13426485657692, 6004918.728310720995069 ] ] } }, +{ "type": "Feature", "properties": { "id": 258, "type": "HL", "from_node": "forks-106", "to_node": "consumers-84", "length": 12.474218914242371 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506780.074384346604347, 6004964.505853203125298 ] ] } }, +{ "type": "Feature", "properties": { "id": 259, "type": "HL", "from_node": "forks-107", "to_node": "consumers-85", "length": 30.928572756642691 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506702.26749200746417, 6004960.560598752461374 ] ] } }, +{ "type": "Feature", "properties": { "id": 260, "type": "HL", "from_node": "forks-9", "to_node": "consumers-86", "length": 15.43415868661268 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506693.432355523109436, 6005029.736996290273964 ] ] } }, +{ "type": "Feature", "properties": { "id": 261, "type": "HL", "from_node": "forks-110", "to_node": "consumers-87", "length": 9.6277676191209096 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506868.72337406501174, 6004927.254503038711846 ] ] } }, +{ "type": "Feature", "properties": { "id": 262, "type": "HL", "from_node": "forks-25", "to_node": "consumers-88", "length": 10.374937545582036 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506755.53663894534111, 6005027.544883700087667 ] ] } }, +{ "type": "Feature", "properties": { "id": 263, "type": "HL", "from_node": "forks-104", "to_node": "consumers-89", "length": 7.7732983306808459 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506773.220998387783766, 6004993.778223461471498 ] ] } }, +{ "type": "Feature", "properties": { "id": 264, "type": "HL", "from_node": "forks-112", "to_node": "consumers-90", "length": 10.805705257342293 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506848.507188025861979, 6004943.913141623139381 ] ] } }, +{ "type": "Feature", "properties": { "id": 265, "type": "HL", "from_node": "forks-114", "to_node": "consumers-91", "length": 16.809760783087764 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506995.652057737112045, 6004842.783263271674514 ] ] } }, +{ "type": "Feature", "properties": { "id": 266, "type": "HL", "from_node": "forks-115", "to_node": "consumers-92", "length": 10.29064449780611 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506938.31118892505765, 6004875.812619299627841 ] ] } }, +{ "type": "Feature", "properties": { "id": 267, "type": "HL", "from_node": "forks-117", "to_node": "consumers-93", "length": 10.557818790267437 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506945.479837417602539, 6004870.762036194093525 ] ] } }, +{ "type": "Feature", "properties": { "id": 268, "type": "HL", "from_node": "forks-56", "to_node": "consumers-94", "length": 14.140807989604891 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506669.221525810658932, 6005074.084699177183211 ] ] } }, +{ "type": "Feature", "properties": { "id": 269, "type": "HL", "from_node": "forks-119", "to_node": "consumers-95", "length": 11.965587553752023 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506895.810843542218208, 6004909.831620469689369 ] ] } }, +{ "type": "Feature", "properties": { "id": 270, "type": "HL", "from_node": "forks-120", "to_node": "consumers-96", "length": 20.770884205798623 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506973.329735886305571, 6004753.492985166609287 ] ] } }, +{ "type": "Feature", "properties": { "id": 271, "type": "HL", "from_node": "forks-110", "to_node": "consumers-97", "length": 12.556114126410087 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506854.906595926731825, 6004909.907521405257285 ] ] } }, +{ "type": "Feature", "properties": { "id": 272, "type": "HL", "from_node": "forks-121", "to_node": "consumers-98", "length": 11.564305542109038 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506910.150826644152403, 6004869.631511499173939 ] ] } }, +{ "type": "Feature", "properties": { "id": 273, "type": "HL", "from_node": "forks-119", "to_node": "consumers-99", "length": 13.270015438191557 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506879.766101881861687, 6004890.38400068692863 ] ] } }, +{ "type": "Feature", "properties": { "id": 274, "type": "HL", "from_node": "forks-118", "to_node": "consumers-100", "length": 13.625599103314798 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506894.07242726162076, 6004879.237333491444588 ] ] } }, +{ "type": "Feature", "properties": { "id": 275, "type": "HL", "from_node": "forks-111", "to_node": "consumers-101", "length": 14.040515272936672 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506845.747697491198778, 6004914.935039059258997 ] ] } }, +{ "type": "Feature", "properties": { "id": 276, "type": "HL", "from_node": "forks-112", "to_node": "consumers-102", "length": 12.726095506390832 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506835.314610954374075, 6004924.455492817796767 ] ] } }, +{ "type": "Feature", "properties": { "id": 277, "type": "HL", "from_node": "forks-122", "to_node": "consumers-103", "length": 13.904818816164378 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506824.472275782376528, 6004931.061758927069604 ] ] } }, +{ "type": "Feature", "properties": { "id": 278, "type": "HL", "from_node": "forks-41", "to_node": "consumers-104", "length": 18.042523432296743 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506923.191534139215946, 6005174.347314549610019 ] ] } }, +{ "type": "Feature", "properties": { "id": 279, "type": "HL", "from_node": "forks-36", "to_node": "consumers-105", "length": 14.49395583342832 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506881.192307915538549, 6005127.539880472235382 ] ] } }, +{ "type": "Feature", "properties": { "id": 280, "type": "HL", "from_node": "forks-39", "to_node": "consumers-106", "length": 15.038915801477353 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506899.350276149809361, 6005086.207022367045283 ] ] } }, +{ "type": "Feature", "properties": { "id": 281, "type": "HL", "from_node": "forks-48", "to_node": "consumers-107", "length": 11.395248360907377 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.143456343561411, 6004727.261151133105159 ] ] } }, +{ "type": "Feature", "properties": { "id": 282, "type": "HL", "from_node": "forks-123", "to_node": "consumers-108", "length": 15.201822075519109 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506862.41523327678442, 6005046.965882200747728 ] ] } }, +{ "type": "Feature", "properties": { "id": 283, "type": "HL", "from_node": "forks-45", "to_node": "consumers-109", "length": 24.709448027648712 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506975.025434896349907, 6005066.310075125657022 ] ] } }, +{ "type": "Feature", "properties": { "id": 284, "type": "HL", "from_node": "forks-124", "to_node": "consumers-110", "length": 13.987472490813351 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506836.588345635682344, 6005044.439587516710162 ] ] } }, +{ "type": "Feature", "properties": { "id": 285, "type": "HL", "from_node": "forks-127", "to_node": "consumers-111", "length": 10.274526489299117 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506830.142781686037779, 6005088.549216032959521 ] ] } }, +{ "type": "Feature", "properties": { "id": 286, "type": "HL", "from_node": "forks-129", "to_node": "consumers-112", "length": 11.778287031054843 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506806.709942407906055, 6005110.202648312784731 ] ] } }, +{ "type": "Feature", "properties": { "id": 287, "type": "HL", "from_node": "forks-129", "to_node": "consumers-113", "length": 13.081361402796462 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506831.311364524066448, 6005113.401636653579772 ] ] } }, +{ "type": "Feature", "properties": { "id": 288, "type": "HL", "from_node": "forks-131", "to_node": "consumers-114", "length": 12.437954255410645 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506804.718359738588333, 6005131.737783573567867 ] ] } }, +{ "type": "Feature", "properties": { "id": 289, "type": "HL", "from_node": "forks-131", "to_node": "consumers-115", "length": 12.579383096767129 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506829.517301596701145, 6005134.709625105373561 ] ] } }, +{ "type": "Feature", "properties": { "id": 290, "type": "HL", "from_node": "forks-26", "to_node": "consumers-116", "length": 11.022836078509449 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506804.62935671582818, 6005156.12390742637217 ] ] } }, +{ "type": "Feature", "properties": { "id": 291, "type": "HL", "from_node": "forks-26", "to_node": "consumers-117", "length": 10.519429552113307 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506826.114318337291479, 6005157.67712083645165 ] ] } }, +{ "type": "Feature", "properties": { "id": 292, "type": "HL", "from_node": "forks-133", "to_node": "consumers-118", "length": 10.916050693973594 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506810.402725525200367, 6005064.420167108997703 ] ] } }, +{ "type": "Feature", "properties": { "id": 293, "type": "HL", "from_node": "forks-133", "to_node": "consumers-119", "length": 11.02529668860231 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506832.289393525570631, 6005065.957312077283859 ] ] } }, +{ "type": "Feature", "properties": { "id": 294, "type": "HL", "from_node": "forks-127", "to_node": "consumers-120", "length": 10.64506854638153 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506809.311211679130793, 6005086.710164023563266 ] ] } }, +{ "type": "Feature", "properties": { "id": 295, "type": "HL", "from_node": "forks-134", "to_node": "consumers-121", "length": 11.151210110284486 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506901.808295633643866, 6004978.646026789210737 ] ] } }, +{ "type": "Feature", "properties": { "id": 296, "type": "HL", "from_node": "forks-137", "to_node": "consumers-122", "length": 12.991254325924679 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506932.119569964706898, 6004974.642785294912755 ] ] } }, +{ "type": "Feature", "properties": { "id": 297, "type": "HL", "from_node": "forks-135", "to_node": "consumers-123", "length": 11.054089825775041 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506904.584658976644278, 6004974.092086877673864 ] ] } }, +{ "type": "Feature", "properties": { "id": 298, "type": "HL", "from_node": "forks-138", "to_node": "consumers-124", "length": 11.614891769113864 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506933.470707610249519, 6004969.607037564739585 ] ] } }, +{ "type": "Feature", "properties": { "id": 299, "type": "HL", "from_node": "forks-138", "to_node": "consumers-125", "length": 10.699816005040693 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506913.902167610824108, 6004958.903221851214767 ] ] } }, +{ "type": "Feature", "properties": { "id": 300, "type": "HL", "from_node": "forks-140", "to_node": "consumers-126", "length": 11.848401555899455 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506956.185954, 6004953.169992100447416 ], [ 32506953.863235987722874, 6004964.788494605571032 ] ] } }, +{ "type": "Feature", "properties": { "id": 301, "type": "HL", "from_node": "forks-139", "to_node": "consumers-127", "length": 10.753727190236734 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506916.657145664095879, 6004954.225457968190312 ] ] } }, +{ "type": "Feature", "properties": { "id": 302, "type": "HL", "from_node": "forks-141", "to_node": "consumers-128", "length": 11.785517912363341 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506959.145298298448324, 6004965.780332460999489 ] ] } }, +{ "type": "Feature", "properties": { "id": 303, "type": "HL", "from_node": "forks-142", "to_node": "consumers-129", "length": 13.420087740135017 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506885.263785466551781, 6005002.435856880620122 ] ] } }, +{ "type": "Feature", "properties": { "id": 304, "type": "HL", "from_node": "forks-144", "to_node": "consumers-130", "length": 11.177180826975714 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506919.414187755435705, 6004949.549130712635815 ] ] } }, +{ "type": "Feature", "properties": { "id": 305, "type": "HL", "from_node": "forks-145", "to_node": "consumers-131", "length": 11.724338197783762 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506964.426920805126429, 6004966.773820037953556 ] ] } }, +{ "type": "Feature", "properties": { "id": 306, "type": "HL", "from_node": "forks-63", "to_node": "consumers-132", "length": 10.620907460974026 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506943.249371059238911, 6004939.799233024008572 ] ] } }, +{ "type": "Feature", "properties": { "id": 307, "type": "HL", "from_node": "forks-146", "to_node": "consumers-133", "length": 10.642727958650555 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506948.558975379914045, 6004940.791922288946807 ] ] } }, +{ "type": "Feature", "properties": { "id": 308, "type": "HL", "from_node": "forks-148", "to_node": "consumers-134", "length": 11.101106688281886 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506915.618785090744495, 6004999.10795256216079 ] ] } }, +{ "type": "Feature", "properties": { "id": 309, "type": "HL", "from_node": "forks-149", "to_node": "consumers-135", "length": 10.710169508124 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506953.868577439337969, 6004941.784617670811713 ] ] } }, +{ "type": "Feature", "properties": { "id": 310, "type": "HL", "from_node": "forks-141", "to_node": "consumers-136", "length": 10.883350045605848 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506964.445381104946136, 6004943.758836340159178 ] ] } }, +{ "type": "Feature", "properties": { "id": 311, "type": "HL", "from_node": "forks-145", "to_node": "consumers-137", "length": 10.99291671049159 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506969.7256910353899, 6004944.701436835341156 ] ] } }, +{ "type": "Feature", "properties": { "id": 312, "type": "HL", "from_node": "forks-59", "to_node": "consumers-138", "length": 11.107743094279309 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506975.006007242947817, 6004945.638480184599757 ] ] } }, +{ "type": "Feature", "properties": { "id": 313, "type": "HL", "from_node": "forks-150", "to_node": "consumers-139", "length": 11.151031314605422 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506918.351420659571886, 6004994.53529426921159 ] ] } }, +{ "type": "Feature", "properties": { "id": 314, "type": "HL", "from_node": "forks-151", "to_node": "consumers-140", "length": 11.45444129942501 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506891.986426871269941, 6004994.836294149048626 ] ] } }, +{ "type": "Feature", "properties": { "id": 315, "type": "HL", "from_node": "forks-134", "to_node": "consumers-141", "length": 11.193193605181907 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506921.078184701502323, 6004989.95719888433814 ] ] } }, +{ "type": "Feature", "properties": { "id": 316, "type": "HL", "from_node": "forks-150", "to_node": "consumers-142", "length": 11.264788000518335 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506899.017207443714142, 6004983.192616033367813 ] ] } }, +{ "type": "Feature", "properties": { "id": 317, "type": "HL", "from_node": "forks-152", "to_node": "consumers-143", "length": 11.596509120285235 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506928.226274974644184, 6004978.53617031686008 ] ] } }, +{ "type": "Feature", "properties": { "id": 318, "type": "HL", "from_node": "forks-153", "to_node": "consumers-144", "length": 7.0878112690952895 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506675.289672255516052, 6004970.761502966284752 ] ] } }, +{ "type": "Feature", "properties": { "id": 319, "type": "HL", "from_node": "forks-154", "to_node": "consumers-145", "length": 6.7987414801482062 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506685.417284354567528, 6004927.459680034779012 ] ] } }, +{ "type": "Feature", "properties": { "id": 320, "type": "HL", "from_node": "forks-52", "to_node": "consumers-146", "length": 13.689421506229099 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506756.074181571602821, 6004762.616542685776949 ] ] } }, +{ "type": "Feature", "properties": { "id": 321, "type": "HL", "from_node": "forks-158", "to_node": "consumers-147", "length": 17.792512496988888 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506759.306074965745211, 6004665.543258069083095 ] ] } }, +{ "type": "Feature", "properties": { "id": 322, "type": "HL", "from_node": "forks-50", "to_node": "consumers-148", "length": 11.619391924942256 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506762.631048794835806, 6004698.693739332258701 ] ] } }, +{ "type": "Feature", "properties": { "id": 323, "type": "HL", "from_node": "forks-53", "to_node": "consumers-149", "length": 14.075774880901514 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506740.583661332726479, 6004747.206024529412389 ], [ 32506738.659805856645107, 6004761.149704768322408 ] ] } }, +{ "type": "Feature", "properties": { "id": 324, "type": "HL", "from_node": "forks-156", "to_node": "consumers-150", "length": 11.105693115651279 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506788.541808839887381, 6004676.551299481652677 ] ] } }, +{ "type": "Feature", "properties": { "id": 325, "type": "HL", "from_node": "forks-157", "to_node": "consumers-151", "length": 13.824161712531133 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506765.091168779879808, 6004667.496796926483512 ] ] } }, +{ "type": "Feature", "properties": { "id": 326, "type": "HL", "from_node": "forks-159", "to_node": "consumers-152", "length": 17.987365091966605 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506753.64694095775485, 6004663.632992140948772 ] ] } }, +{ "type": "Feature", "properties": { "id": 327, "type": "HL", "from_node": "forks-160", "to_node": "consumers-153", "length": 17.244152236982288 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506747.540288478136063, 6004662.567557630129158 ] ] } }, +{ "type": "Feature", "properties": { "id": 328, "type": "HL", "from_node": "forks-161", "to_node": "consumers-154", "length": 17.444232841906146 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506741.738194316625595, 6004660.608715591952205 ] ] } }, +{ "type": "Feature", "properties": { "id": 329, "type": "HL", "from_node": "forks-162", "to_node": "consumers-155", "length": 17.63193373593359 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506731.171738628298044, 6004675.642275162041187 ], [ 32506736.262873858213425, 6004658.761356071569026 ] ] } }, +{ "type": "Feature", "properties": { "id": 330, "type": "HL", "from_node": "forks-163", "to_node": "consumers-156", "length": 11.909523285608909 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506753.265496149659157, 6004694.744921822100878 ] ] } }, +{ "type": "Feature", "properties": { "id": 331, "type": "HL", "from_node": "forks-51", "to_node": "consumers-157", "length": 19.04873701145247 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506752.307921536266804, 6004713.751716360449791 ] ] } }, +{ "type": "Feature", "properties": { "id": 332, "type": "GL", "from_node": "forks-13", "to_node": "producers-0", "length": 15.980908346991134 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506649.763465486466885, 6005108.493748000822961 ] ] } } ] } diff --git a/examples/optimisation/network_aggregation/network_data/producers.geojson b/examples/optimisation/network_aggregation/network_data/producers.geojson index 7448560a..2468a772 100644 --- a/examples/optimisation/network_aggregation/network_data/producers.geojson +++ b/examples/optimisation/network_aggregation/network_data/producers.geojson @@ -2,6 +2,6 @@ "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, "features": [ -{ "type": "Feature", "properties": { "id": 0, "addr:city": "Heide", "addr:country": "DE", "addr:housenumber": "19", "addr:postcode": "25746", "addr:street": "Rüsdorfer Straße", "building": "commercial", "name": null, "opening_hours": null, "shop": null, "toilets:wheelchair": null, "website": null, "wheelchair": null, "craft": null, "fixme": null, "lat": 6005108.4937480008, "lon": 32506649.763465486, "id_full": "producers-0", "type": "G" }, "geometry": { "type": "Point", "coordinates": [ 32506649.763465486466885, 6005108.493748000822961 ] } } +{ "type": "Feature", "properties": { "id": 0, "id_full": "producers-0", "type": "G" }, "geometry": { "type": "Point", "coordinates": [ 32506649.763465486466885, 6005108.493748000822961 ] } } ] } From 956b05972687d1ea712a0e4cf2e61292cf93c642 Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Tue, 16 Aug 2022 21:39:08 +0200 Subject: [PATCH 10/14] added reset_index super_pipes to aggregation --- dhnx/gistools/geometry_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dhnx/gistools/geometry_operations.py b/dhnx/gistools/geometry_operations.py index 5aab8f6f..98e1c951 100644 --- a/dhnx/gistools/geometry_operations.py +++ b/dhnx/gistools/geometry_operations.py @@ -774,7 +774,7 @@ def aggregation(forks, pipes, consumers, producers): # Calculate length of super_pipes super_pipes['length'] = super_pipes.length - + super_pipes = super_pipes.reset_index(drop=True) # return return { 'super_forks': super_forks, From 2e67450b7b12f9328271ca1ed5904284eb5a211f Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Sat, 20 Aug 2022 19:37:09 +0200 Subject: [PATCH 11/14] Added column aggregated pipes --- dhnx/gistools/geometry_operations.py | 12 ++- .../super_network/super_forks.geojson | 78 +++++++------- .../super_network/super_pipes.geojson | 100 +++++++++--------- 3 files changed, 97 insertions(+), 93 deletions(-) diff --git a/dhnx/gistools/geometry_operations.py b/dhnx/gistools/geometry_operations.py index 98e1c951..1554f974 100644 --- a/dhnx/gistools/geometry_operations.py +++ b/dhnx/gistools/geometry_operations.py @@ -703,6 +703,11 @@ def aggregation(forks, pipes, consumers, producers): str_aggregated_forks_segment_i_a = ', '.join(aggregated_forks_segment_i_a) merged_segment_i_a.at[0, 'aggregated_forks'] = str_aggregated_forks_segment_i_a + # add new pipe to super pipes + super_pipes = super_pipes.append(merged_segment_i_a) + # add pipe_ids to aggregated pipes + aggregated_pipes = aggregated_pipes + segment_i_a['id'].tolist() + # # add column 'aggregated_consumers' aggregated_consumer_segment_i_a = [] aggregated_consumer_segment_i_a = HLpipes.loc[HLpipes['from_node'].isin(aggregated_forks_segment_i_a)][ @@ -722,10 +727,9 @@ def aggregation(forks, pipes, consumers, producers): simultaneity_factor_segment_i_a = pow(1.05, -number_aggregated_consumer_segment_i_a) # Note: this is just a placeholder formula merged_segment_i_a.at[0, 'simultaneity factor'] = simultaneity_factor_segment_i_a - # add new pipe to super pipes - super_pipes = super_pipes.append(merged_segment_i_a) - # add pipe_ids to aggregated pipes - aggregated_pipes = aggregated_pipes + segment_i_a['id'].tolist() + # # add column 'aggregated_pipes' + str_aggregated_pipes_segment_i_a = ', '.join(str(x) for x in segment_i_a['id'].tolist()) + merged_segment_i_a.at[0, 'aggregated_pipes'] = str_aggregated_pipes_segment_i_a aggregation_segment == True diff --git a/examples/optimisation/network_aggregation/super_network/super_forks.geojson b/examples/optimisation/network_aggregation/super_network/super_forks.geojson index 1df88b39..d7e5c933 100644 --- a/examples/optimisation/network_aggregation/super_network/super_forks.geojson +++ b/examples/optimisation/network_aggregation/super_network/super_forks.geojson @@ -2,44 +2,44 @@ "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, "features": [ -{ "type": "Feature", "properties": { "id": 1, "geometry_wkt": "POINT (32506957.828444872 6005039.452800406)", "id_full": "forks-1", "lat": 6005039.4528004061, "lon": 32506957.828444872, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506957.828444872051477, 6005039.452800406143069 ] } }, -{ "type": "Feature", "properties": { "id": 2, "geometry_wkt": "POINT (32506849.569266543 6005309.829775801)", "id_full": "forks-2", "lat": 6005309.8297758009, "lon": 32506849.569266543, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506849.56926654279232, 6005309.829775800928473 ] } }, -{ "type": "Feature", "properties": { "id": 3, "geometry_wkt": "POINT (32506884.118155308 6005233.286900076)", "id_full": "forks-3", "lat": 6005233.2869000761, "lon": 32506884.118155308, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506884.118155308067799, 6005233.286900076083839 ] } }, -{ "type": "Feature", "properties": { "id": 4, "geometry_wkt": "POINT (32507059.691856742 6004782.464862994)", "id_full": "forks-4", "lat": 6004782.4648629939, "lon": 32507059.691856742, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507059.691856741905212, 6004782.464862993918359 ] } }, -{ "type": "Feature", "properties": { "id": 5, "geometry_wkt": "POINT (32507062.90499444 6004810.397108196)", "id_full": "forks-5", "lat": 6004810.3971081963, "lon": 32507062.904994439, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507062.904994439333677, 6004810.397108196280897 ] } }, -{ "type": "Feature", "properties": { "id": 6, "geometry_wkt": "POINT (32507049.679193664 6004797.514717632)", "id_full": "forks-6", "lat": 6004797.514717632, "lon": 32507049.679193664, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507049.679193664342165, 6004797.514717631973326 ] } }, -{ "type": "Feature", "properties": { "id": 7, "geometry_wkt": "POINT (32506824.270652454 6005308.401445041)", "id_full": "forks-7", "lat": 6005308.4014450414, "lon": 32506824.270652454, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506824.270652454346418, 6005308.401445041410625 ] } }, -{ "type": "Feature", "properties": { "id": 10, "geometry_wkt": "POINT (32506654.861689653 6005025.3310652645)", "id_full": "forks-10", "lat": 6005025.3310652645, "lon": 32506654.861689653, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506654.861689653247595, 6005025.33106526453048 ] } }, -{ "type": "Feature", "properties": { "id": 11, "geometry_wkt": "POINT (32506640.28949501 6005081.643143247)", "id_full": "forks-11", "lat": 6005081.6431432469, "lon": 32506640.28949501, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506640.289495009928942, 6005081.643143246881664 ] } }, -{ "type": "Feature", "properties": { "id": 12, "geometry_wkt": "POINT (32506635.98050358 6005097.202808099)", "id_full": "forks-12", "lat": 6005097.2028080989, "lon": 32506635.980503581, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506635.980503581464291, 6005097.202808098867536 ] } }, -{ "type": "Feature", "properties": { "id": 13, "geometry_wkt": "POINT (32506634.19730888 6005104.876539121)", "id_full": "forks-13", "lat": 6005104.8765391214, "lon": 32506634.197308879, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506634.197308879345655, 6005104.876539121381938 ] } }, -{ "type": "Feature", "properties": { "id": 15, "geometry_wkt": "POINT (32506589.465335622 6005258.491528047)", "id_full": "forks-15", "lat": 6005258.4915280472, "lon": 32506589.465335622, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506589.465335622429848, 6005258.491528047248721 ] } }, -{ "type": "Feature", "properties": { "id": 16, "geometry_wkt": "POINT (32506610.01704668 6005273.422141656)", "id_full": "forks-16", "lat": 6005273.4221416563, "lon": 32506610.017046679, "aggregated_consumers": "consumers-31", "P_heat_max": 49.0 }, "geometry": { "type": "Point", "coordinates": [ 32506610.017046678811312, 6005273.422141656279564 ] } }, -{ "type": "Feature", "properties": { "id": 17, "geometry_wkt": "POINT (32506973.341402162 6004704.626499322)", "id_full": "forks-17", "lat": 6004704.6264993222, "lon": 32506973.341402162, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506973.341402161866426, 6004704.626499322243035 ] } }, -{ "type": "Feature", "properties": { "id": 18, "geometry_wkt": "POINT (32506966.35593917 6004702.746699204)", "id_full": "forks-18", "lat": 6004702.7466992037, "lon": 32506966.355939168, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506966.355939168483019, 6004702.74669920373708 ] } }, -{ "type": "Feature", "properties": { "id": 19, "geometry_wkt": "POINT (32506905.580154143 6004686.432937293)", "id_full": "forks-19", "lat": 6004686.4329372933, "lon": 32506905.580154143, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506905.58015414327383, 6004686.432937293313444 ] } }, -{ "type": "Feature", "properties": { "id": 20, "geometry_wkt": "POINT (32506834.06771552 6004667.389202644)", "id_full": "forks-20", "lat": 6004667.3892026441, "lon": 32506834.067715518, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506834.067715518176556, 6004667.389202644117177 ] } }, -{ "type": "Feature", "properties": { "id": 22, "geometry_wkt": "POINT (32506782.94580446 6004652.671333202)", "id_full": "forks-22", "lat": 6004652.6713332022, "lon": 32506782.945804462, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506782.945804461836815, 6004652.671333202160895 ] } }, -{ "type": "Feature", "properties": { "id": 24, "geometry_wkt": "POINT (32506746.461005732 6005002.454771279)", "id_full": "forks-24", "lat": 6005002.4547712794, "lon": 32506746.461005732, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506746.461005732417107, 6005002.454771279357374 ] } }, -{ "type": "Feature", "properties": { "id": 28, "geometry_wkt": "POINT (32506901.09680305 6005183.699540134)", "id_full": "forks-28", "lat": 6005183.6995401336, "lon": 32506901.09680305, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506901.096803050488234, 6005183.699540133588016 ] } }, -{ "type": "Feature", "properties": { "id": 29, "geometry_wkt": "POINT (32506983.839984797 6005006.224120298)", "id_full": "forks-29", "lat": 6005006.2241202984, "lon": 32506983.839984797, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506983.83998479694128, 6005006.224120298400521 ] } }, -{ "type": "Feature", "properties": { "id": 30, "geometry_wkt": "POINT (32506990.21066587 6005043.18464113)", "id_full": "forks-30", "lat": 6005043.1846411303, "lon": 32506990.21066587, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506990.210665870457888, 6005043.184641130268574 ] } }, -{ "type": "Feature", "properties": { "id": 32, "geometry_wkt": "POINT (32507023.054066256 6004915.480935483)", "id_full": "forks-32", "lat": 6004915.4809354832, "lon": 32507023.054066256, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507023.054066255688667, 6004915.480935483239591 ] } }, -{ "type": "Feature", "properties": { "id": 33, "geometry_wkt": "POINT (32506931.03989272 6005095.022326571)", "id_full": "forks-33", "lat": 6005095.0223265709, "lon": 32506931.039892718, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506931.039892718195915, 6005095.022326570935547 ] } }, -{ "type": "Feature", "properties": { "id": 35, "geometry_wkt": "POINT (32506920.064067416 6005126.549259349)", "id_full": "forks-35", "lat": 6005126.5492593488, "lon": 32506920.064067416, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506920.064067415893078, 6005126.549259348772466 ] } }, -{ "type": "Feature", "properties": { "id": 36, "geometry_wkt": "POINT (32506871.2233493 6005117.018729404)", "id_full": "forks-36", "lat": 6005117.0187294036, "lon": 32506871.223349299, "aggregated_consumers": "consumers-23, consumers-105", "P_heat_max": 96.0 }, "geometry": { "type": "Point", "coordinates": [ 32506871.223349299281836, 6005117.018729403614998 ] } }, -{ "type": "Feature", "properties": { "id": 40, "geometry_wkt": "POINT (32506925.62074382 6005110.602306801)", "id_full": "forks-40", "lat": 6005110.6023068009, "lon": 32506925.620743819, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506925.620743818581104, 6005110.602306800894439 ] } }, -{ "type": "Feature", "properties": { "id": 49, "geometry_wkt": "POINT (32506774.162415158 6004688.607881281)", "id_full": "forks-49", "lat": 6004688.6078812806, "lon": 32506774.162415158, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506774.162415158003569, 6004688.607881280593574 ] } }, -{ "type": "Feature", "properties": { "id": 53, "geometry_wkt": "POINT (32506740.583661333 6004747.206024529)", "id_full": "forks-53", "lat": 6004747.2060245294, "lon": 32506740.583661333, "aggregated_consumers": "consumers-149", "P_heat_max": 31.0 }, "geometry": { "type": "Point", "coordinates": [ 32506740.583661332726479, 6004747.206024529412389 ] } }, -{ "type": "Feature", "properties": { "id": 54, "geometry_wkt": "POINT (32506726.41674512 6005101.2837742865)", "id_full": "forks-54", "lat": 6005101.2837742865, "lon": 32506726.416745119, "aggregated_consumers": "consumers-28", "P_heat_max": 38.0 }, "geometry": { "type": "Point", "coordinates": [ 32506726.416745118796825, 6005101.28377428650856 ] } }, -{ "type": "Feature", "properties": { "id": 58, "geometry_wkt": "POINT (32506823.60973072 6005027.680673941)", "id_full": "forks-58", "lat": 6005027.680673941, "lon": 32506823.609730721, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506823.60973072052002, 6005027.680673941038549 ] } }, -{ "type": "Feature", "properties": { "id": 60, "geometry_wkt": "POINT (32506978.648154818 6004957.660532805)", "id_full": "forks-60", "lat": 6004957.6605328051, "lon": 32506978.648154818, "aggregated_consumers": "consumers-7", "P_heat_max": 19.0 }, "geometry": { "type": "Point", "coordinates": [ 32506978.648154817521572, 6004957.660532805137336 ] } }, -{ "type": "Feature", "properties": { "id": 64, "geometry_wkt": "POINT (32506882.491420675 6005033.754231971)", "id_full": "forks-64", "lat": 6005033.7542319708, "lon": 32506882.491420675, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506882.491420675069094, 6005033.754231970757246 ] } }, -{ "type": "Feature", "properties": { "id": 69, "geometry_wkt": "POINT (32506756.039207898 6005313.986531776)", "id_full": "forks-69", "lat": 6005313.9865317764, "lon": 32506756.039207898, "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506756.039207898080349, 6005313.986531776376069 ] } }, -{ "type": "Feature", "properties": { "id": 80, "geometry_wkt": "POINT (32506944.88088702 6004777.161187518)", "id_full": "forks-80", "lat": 6004777.1611875184, "lon": 32506944.88088702, "aggregated_consumers": "consumers-45", "P_heat_max": 47.0 }, "geometry": { "type": "Point", "coordinates": [ 32506944.880887020379305, 6004777.161187518388033 ] } }, -{ "type": "Feature", "properties": { "id": 90, "geometry_wkt": "POINT (32506901.36241106 6004700.69793768)", "id_full": "forks-90", "lat": 6004700.6979376804, "lon": 32506901.362411059, "aggregated_consumers": "consumers-60", "P_heat_max": 20.0 }, "geometry": { "type": "Point", "coordinates": [ 32506901.362411059439182, 6004700.697937680408359 ] } }, -{ "type": "Feature", "properties": { "id": 98, "geometry_wkt": "POINT (32506829.5379491 6004688.366671883)", "id_full": "forks-98", "lat": 6004688.3666718826, "lon": 32506829.5379491, "aggregated_consumers": "consumers-57", "P_heat_max": 27.0 }, "geometry": { "type": "Point", "coordinates": [ 32506829.537949100136757, 6004688.36667188256979 ] } }, -{ "type": "Feature", "properties": { "id": 155, "geometry_wkt": "POINT (32506681.648138843 6004914.068847971)", "id_full": "forks-155", "lat": 6004914.068847971, "lon": 32506681.648138843, "aggregated_consumers": "consumers-66", "P_heat_max": 41.0 }, "geometry": { "type": "Point", "coordinates": [ 32506681.648138843476772, 6004914.06884797103703 ] } }, -{ "type": "Feature", "properties": { "id": 162, "geometry_wkt": "POINT (32506731.17173863 6004675.642275162)", "id_full": "forks-162", "lat": 6004675.642275162, "lon": 32506731.171738628, "aggregated_consumers": "consumers-155", "P_heat_max": 27.0 }, "geometry": { "type": "Point", "coordinates": [ 32506731.171738628298044, 6004675.642275162041187 ] } } +{ "type": "Feature", "properties": { "id": 1, "id_full": "forks-1", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506957.828444872051477, 6005039.452800406143069 ] } }, +{ "type": "Feature", "properties": { "id": 2, "id_full": "forks-2", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506849.56926654279232, 6005309.829775800928473 ] } }, +{ "type": "Feature", "properties": { "id": 3, "id_full": "forks-3", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506884.118155308067799, 6005233.286900076083839 ] } }, +{ "type": "Feature", "properties": { "id": 4, "id_full": "forks-4", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507059.691856741905212, 6004782.464862993918359 ] } }, +{ "type": "Feature", "properties": { "id": 5, "id_full": "forks-5", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507062.904994439333677, 6004810.397108196280897 ] } }, +{ "type": "Feature", "properties": { "id": 6, "id_full": "forks-6", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507049.679193664342165, 6004797.514717631973326 ] } }, +{ "type": "Feature", "properties": { "id": 7, "id_full": "forks-7", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506824.270652454346418, 6005308.401445041410625 ] } }, +{ "type": "Feature", "properties": { "id": 10, "id_full": "forks-10", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506654.861689653247595, 6005025.33106526453048 ] } }, +{ "type": "Feature", "properties": { "id": 11, "id_full": "forks-11", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506640.289495009928942, 6005081.643143246881664 ] } }, +{ "type": "Feature", "properties": { "id": 12, "id_full": "forks-12", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506635.980503581464291, 6005097.202808098867536 ] } }, +{ "type": "Feature", "properties": { "id": 13, "id_full": "forks-13", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506634.197308879345655, 6005104.876539121381938 ] } }, +{ "type": "Feature", "properties": { "id": 15, "id_full": "forks-15", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506589.465335622429848, 6005258.491528047248721 ] } }, +{ "type": "Feature", "properties": { "id": 16, "id_full": "forks-16", "aggregated_consumers": "consumers-31", "P_heat_max": 49.0 }, "geometry": { "type": "Point", "coordinates": [ 32506610.017046678811312, 6005273.422141656279564 ] } }, +{ "type": "Feature", "properties": { "id": 17, "id_full": "forks-17", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506973.341402161866426, 6004704.626499322243035 ] } }, +{ "type": "Feature", "properties": { "id": 18, "id_full": "forks-18", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506966.355939168483019, 6004702.74669920373708 ] } }, +{ "type": "Feature", "properties": { "id": 19, "id_full": "forks-19", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506905.58015414327383, 6004686.432937293313444 ] } }, +{ "type": "Feature", "properties": { "id": 20, "id_full": "forks-20", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506834.067715518176556, 6004667.389202644117177 ] } }, +{ "type": "Feature", "properties": { "id": 22, "id_full": "forks-22", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506782.945804461836815, 6004652.671333202160895 ] } }, +{ "type": "Feature", "properties": { "id": 24, "id_full": "forks-24", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506746.461005732417107, 6005002.454771279357374 ] } }, +{ "type": "Feature", "properties": { "id": 28, "id_full": "forks-28", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506901.096803050488234, 6005183.699540133588016 ] } }, +{ "type": "Feature", "properties": { "id": 29, "id_full": "forks-29", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506983.83998479694128, 6005006.224120298400521 ] } }, +{ "type": "Feature", "properties": { "id": 30, "id_full": "forks-30", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506990.210665870457888, 6005043.184641130268574 ] } }, +{ "type": "Feature", "properties": { "id": 32, "id_full": "forks-32", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32507023.054066255688667, 6004915.480935483239591 ] } }, +{ "type": "Feature", "properties": { "id": 33, "id_full": "forks-33", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506931.039892718195915, 6005095.022326570935547 ] } }, +{ "type": "Feature", "properties": { "id": 35, "id_full": "forks-35", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506920.064067415893078, 6005126.549259348772466 ] } }, +{ "type": "Feature", "properties": { "id": 36, "id_full": "forks-36", "aggregated_consumers": "consumers-23, consumers-105", "P_heat_max": 96.0 }, "geometry": { "type": "Point", "coordinates": [ 32506871.223349299281836, 6005117.018729403614998 ] } }, +{ "type": "Feature", "properties": { "id": 40, "id_full": "forks-40", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506925.620743818581104, 6005110.602306800894439 ] } }, +{ "type": "Feature", "properties": { "id": 49, "id_full": "forks-49", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506774.162415158003569, 6004688.607881280593574 ] } }, +{ "type": "Feature", "properties": { "id": 53, "id_full": "forks-53", "aggregated_consumers": "consumers-149", "P_heat_max": 31.0 }, "geometry": { "type": "Point", "coordinates": [ 32506740.583661332726479, 6004747.206024529412389 ] } }, +{ "type": "Feature", "properties": { "id": 54, "id_full": "forks-54", "aggregated_consumers": "consumers-28", "P_heat_max": 38.0 }, "geometry": { "type": "Point", "coordinates": [ 32506726.416745118796825, 6005101.28377428650856 ] } }, +{ "type": "Feature", "properties": { "id": 58, "id_full": "forks-58", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506823.60973072052002, 6005027.680673941038549 ] } }, +{ "type": "Feature", "properties": { "id": 60, "id_full": "forks-60", "aggregated_consumers": "consumers-7", "P_heat_max": 19.0 }, "geometry": { "type": "Point", "coordinates": [ 32506978.648154817521572, 6004957.660532805137336 ] } }, +{ "type": "Feature", "properties": { "id": 64, "id_full": "forks-64", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506882.491420675069094, 6005033.754231970757246 ] } }, +{ "type": "Feature", "properties": { "id": 69, "id_full": "forks-69", "aggregated_consumers": "", "P_heat_max": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 32506756.039207898080349, 6005313.986531776376069 ] } }, +{ "type": "Feature", "properties": { "id": 80, "id_full": "forks-80", "aggregated_consumers": "consumers-45", "P_heat_max": 47.0 }, "geometry": { "type": "Point", "coordinates": [ 32506944.880887020379305, 6004777.161187518388033 ] } }, +{ "type": "Feature", "properties": { "id": 90, "id_full": "forks-90", "aggregated_consumers": "consumers-60", "P_heat_max": 20.0 }, "geometry": { "type": "Point", "coordinates": [ 32506901.362411059439182, 6004700.697937680408359 ] } }, +{ "type": "Feature", "properties": { "id": 98, "id_full": "forks-98", "aggregated_consumers": "consumers-57", "P_heat_max": 27.0 }, "geometry": { "type": "Point", "coordinates": [ 32506829.537949100136757, 6004688.36667188256979 ] } }, +{ "type": "Feature", "properties": { "id": 155, "id_full": "forks-155", "aggregated_consumers": "consumers-66", "P_heat_max": 41.0 }, "geometry": { "type": "Point", "coordinates": [ 32506681.648138843476772, 6004914.06884797103703 ] } }, +{ "type": "Feature", "properties": { "id": 162, "id_full": "forks-162", "aggregated_consumers": "consumers-155", "P_heat_max": 27.0 }, "geometry": { "type": "Point", "coordinates": [ 32506731.171738628298044, 6004675.642275162041187 ] } } ] } diff --git a/examples/optimisation/network_aggregation/super_network/super_pipes.geojson b/examples/optimisation/network_aggregation/super_network/super_pipes.geojson index cc3dcf7d..1d372add 100644 --- a/examples/optimisation/network_aggregation/super_network/super_pipes.geojson +++ b/examples/optimisation/network_aggregation/super_network/super_pipes.geojson @@ -2,55 +2,55 @@ "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, "features": [ -{ "type": "Feature", "properties": { "id": 50, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-29", "length": 42.62329158281149, "aggregated_forks": "forks-42", "aggregated_consumer": "consumers-0", "P_heat_max": 23.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506972.555892087519169, 6005025.500261910259724 ], [ 32506983.83998479694128, 6005006.224120298400521 ] ] } }, -{ "type": "Feature", "properties": { "id": 127, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-30", "length": 32.596551206237763, "aggregated_forks": "forks-45", "aggregated_consumer": "consumers-109", "P_heat_max": 33.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506988.514574155211449, 6005042.992920082062483 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, -{ "type": "Feature", "properties": { "id": 0, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-64", "length": 75.628606205256546, "aggregated_forks": "forks-0, forks-65", "aggregated_consumer": "consumers-4, consumers-5, consumers-22", "P_heat_max": 64.0, "simultaneity factor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506930.132400441914797, 6005038.999399862252176 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, -{ "type": "Feature", "properties": { "id": 33, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-1", "to_node": "forks-33", "length": 62.273477677616725, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506936.85857841745019, 6005078.441575756296515 ], [ 32506943.116743721067905, 6005060.337174004875124 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, -{ "type": "Feature", "properties": { "id": 1, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-3", "length": 84.101415234176301, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506849.56926654279232, 6005309.829775800928473 ], [ 32506852.788861401379108, 6005303.303346553817391 ], [ 32506857.729554239660501, 6005293.263527888804674 ], [ 32506874.377478789538145, 6005259.486231505870819 ], [ 32506877.43430345505476, 6005252.781554163433611 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, -{ "type": "Feature", "properties": { "id": 5, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 32.69106870034981, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506831.632401779294014, 6005311.127199975773692 ], [ 32506836.87445405870676, 6005313.4047647183761 ], [ 32506846.360497884452343, 6005317.858291626907885 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, -{ "type": "Feature", "properties": { "id": 40, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 26.199323804115799, "aggregated_forks": "forks-46", "aggregated_consumer": "consumers-42", "P_heat_max": 31.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506828.487186539918184, 6005307.105897605419159 ], [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506839.983860768377781, 6005306.377473699860275 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, -{ "type": "Feature", "properties": { "id": 29, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-3", "to_node": "forks-28", "length": 52.413555485224038, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506884.118155308067799, 6005233.286900076083839 ], [ 32506897.695788338780403, 6005193.641477124765515 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, -{ "type": "Feature", "properties": { "id": 22, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-3", "to_node": "forks-69", "length": 201.8640742339384, "aggregated_forks": "forks-31", "aggregated_consumer": "consumers-34, consumers-38", "P_heat_max": 50.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506761.41373110935092, 6005288.247852889820933 ], [ 32506768.106216792017221, 6005284.719470574520528 ], [ 32506768.58904629573226, 6005275.807909052819014 ], [ 32506772.436157487332821, 6005237.327239649370313 ], [ 32506778.249345108866692, 6005228.412388440221548 ], [ 32506784.139542851597071, 6005224.816091160289943 ], [ 32506794.208307005465031, 6005219.178695933893323 ], [ 32506815.131370950490236, 6005219.420987154357135 ], [ 32506849.753633692860603, 6005225.280305446125567 ], [ 32506870.448009263724089, 6005230.106597077101469 ], [ 32506874.400354873389006, 6005231.024857359007001 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, -{ "type": "Feature", "properties": { "id": 2, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-5", "length": 49.65468218997448, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507066.510839566588402, 6004782.174897360615432 ], [ 32507072.530063845217228, 6004784.309275067411363 ], [ 32507075.421466507017612, 6004787.996558192186058 ], [ 32507077.794186722487211, 6004793.774814426898956 ], [ 32507077.255080308765173, 6004800.672369468957186 ], [ 32507074.454373985528946, 6004805.919742610305548 ], [ 32507067.962735038250685, 6004809.770653950050473 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, -{ "type": "Feature", "properties": { "id": 42, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-17", "length": 123.29475616582023, "aggregated_forks": "forks-47, forks-48", "aggregated_consumer": "consumers-71, consumers-107", "P_heat_max": 85.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507058.269206289201975, 6004774.08448775857687 ], [ 32507055.049979239702225, 6004762.886378192342818 ], [ 32507049.614296812564135, 6004750.349710370413959 ], [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507038.577310808002949, 6004739.673732661642134 ], [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.376538667827845, 6004714.249341813847423 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, -{ "type": "Feature", "properties": { "id": 4, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-4", "to_node": "forks-6", "length": 19.483020231991176, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507051.015878472477198, 6004789.583621971309185 ], [ 32507055.721855498850346, 6004784.328024078160524 ], [ 32507059.691856741905212, 6004782.464862993918359 ] ] } }, -{ "type": "Feature", "properties": { "id": 3, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-5", "to_node": "forks-6", "length": 20.118775802046997, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507062.904994439333677, 6004810.397108196280897 ], [ 32507057.250238422304392, 6004808.886380590498447 ], [ 32507053.053128503262997, 6004805.67554706055671 ], [ 32507050.371553130447865, 6004801.309886945411563 ], [ 32507049.679193664342165, 6004797.514717631973326 ] ] } }, -{ "type": "Feature", "properties": { "id": 37, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-5", "to_node": "forks-32", "length": 112.75341151061222, "aggregated_forks": "forks-44, forks-79", "aggregated_consumer": "consumers-48, consumers-62", "P_heat_max": 51.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507023.054066255688667, 6004915.480935483239591 ], [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507047.633258003741503, 6004855.380120977759361 ], [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507056.958943579345942, 6004832.941263437271118 ], [ 32507062.226572059094906, 6004818.80764533020556 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, -{ "type": "Feature", "properties": { "id": 6, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-6", "to_node": "forks-24", "length": 368.44406427251545, "aggregated_forks": "forks-8, forks-84, forks-96, forks-97, forks-114, forks-92, forks-93, forks-117, forks-115, forks-116, forks-121, forks-118, forks-119, forks-109, forks-110, forks-111, forks-112, forks-113, forks-122, forks-88, forks-86, forks-87, forks-89, forks-77, forks-78, forks-106, forks-103, forks-104, forks-100", "aggregated_consumer": "consumers-46, consumers-47, consumers-53, consumers-55, consumers-56, consumers-58, consumers-59, consumers-61, consumers-63, consumers-65, consumers-68, consumers-72, consumers-73, consumers-74, consumers-76, consumers-77, consumers-79, consumers-81, consumers-83, consumers-84, consumers-87, consumers-89, consumers-90, consumers-91, consumers-92, consumers-93, consumers-95, consumers-97, consumers-98, consumers-99, consumers-100, consumers-101, consumers-102, consumers-103", "P_heat_max": 1104.0, "simultaneity factor": 0.19035479962020585 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507040.76520436629653, 6004798.157553435303271 ], [ 32507036.399958070367575, 6004798.217646886594594 ], [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507025.222955066710711, 6004802.406388177536428 ], [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506959.887568239122629, 6004846.735092141665518 ], [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506775.654936447739601, 6004982.75931285880506 ], [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506746.461005732417107, 6005002.454771279357374 ] ] } }, -{ "type": "Feature", "properties": { "id": 17, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-7", "to_node": "forks-69", "length": 72.210147634926642, "aggregated_forks": "forks-23", "aggregated_consumer": "consumers-35", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506818.050234023481607, 6005310.350491045974195 ], [ 32506800.642851490527391, 6005319.804492926225066 ], [ 32506796.837095130234957, 6005321.278694453649223 ], [ 32506793.04543898999691, 6005322.040828321129084 ], [ 32506788.133238516747952, 6005321.710924620740116 ], [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506756.039207898080349, 6005313.986531776376069 ] ] } }, -{ "type": "Feature", "properties": { "id": 8, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-11", "length": 58.167007772036605, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506643.196130774915218, 6005070.34288255404681 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, -{ "type": "Feature", "properties": { "id": 160, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-155", "length": 114.44122883508933, "aggregated_forks": "forks-153, forks-107, forks-108, forks-154", "aggregated_consumer": "consumers-44, consumers-85, consumers-144, consumers-145", "P_heat_max": 98.0, "simultaneity factor": 0.82270247479188185 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506681.648138843476772, 6004914.06884797103703 ] ] } }, -{ "type": "Feature", "properties": { "id": 7, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-10", "to_node": "forks-24", "length": 94.548892921472756, "aggregated_forks": "forks-9, forks-95, forks-94, forks-105, forks-91, forks-83", "aggregated_consumer": "consumers-49, consumers-52, consumers-64, consumers-70, consumers-82, consumers-86", "P_heat_max": 208.0, "simultaneity factor": 0.7462153966366275 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506674.726261701434851, 6005018.216621937230229 ], [ 32506654.861689653247595, 6005025.33106526453048 ] ] } }, -{ "type": "Feature", "properties": { "id": 9, "highway": "residential", "name": "Rüsdorfer Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-11", "to_node": "forks-12", "length": 16.145295829953266, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.289495009928942, 6005081.643143246881664 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, -{ "type": "Feature", "properties": { "id": 49, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-11", "to_node": "forks-54", "length": 88.352582955426328, "aggregated_forks": "forks-56, forks-55", "aggregated_consumer": "consumers-94", "P_heat_max": 33.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506696.986993879079819, 6005095.343915767967701 ], [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506648.500972010195255, 6005083.624357352033257 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, -{ "type": "Feature", "properties": { "id": 173, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-12", "to_node": "forks-13", "length": 7.8781933938920234, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506635.980503581464291, 6005097.202808098867536 ], [ 32506634.197308879345655, 6005104.876539121381938 ] ] } }, -{ "type": "Feature", "properties": { "id": 41, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-12", "to_node": "forks-15", "length": 186.83480570927742, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506580.43083043769002, 6005248.253432797268033 ], [ 32506586.498014286160469, 6005225.686575460247695 ], [ 32506599.077679563313723, 6005179.529892827384174 ], [ 32506610.953214820474386, 6005133.194214399904013 ], [ 32506617.463154081255198, 6005106.92293609213084 ], [ 32506620.289027590304613, 6005097.291508676484227 ], [ 32506622.654141690582037, 6005095.025115229189396 ], [ 32506626.497879713773727, 6005094.452065224759281 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, -{ "type": "Feature", "properties": { "id": 10, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-13", "to_node": "forks-15", "length": 160.52780708227937, "aggregated_forks": "forks-14", "aggregated_consumer": "consumers-32", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506632.455033458769321, 6005112.374179692007601 ], [ 32506627.507085636258125, 6005132.205481625162065 ], [ 32506623.818144433200359, 6005147.66591256391257 ], [ 32506620.064255829900503, 6005162.937104214914143 ], [ 32506615.55568515136838, 6005181.278110017068684 ], [ 32506613.350609008222818, 6005190.265099276788533 ], [ 32506610.443355057388544, 6005202.099448162131011 ], [ 32506608.262401930987835, 6005207.926569108851254 ], [ 32506604.114207334816456, 6005225.255598852410913 ], [ 32506597.784114979207516, 6005240.000177503563464 ], [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506591.320538651198149, 6005252.307886299677193 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, -{ "type": "Feature", "properties": { "id": 332, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "GL", "from_node": "forks-13", "to_node": "producers-0", "length": 15.980908346991134, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506649.763465486466885, 6005108.493748000822961 ] ] } }, -{ "type": "Feature", "properties": { "id": 12, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-15", "to_node": "forks-16", "length": 32.100377577737376, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506587.964162901043892, 6005263.474022278562188 ], [ 32506587.762997552752495, 6005267.278973447158933 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, -{ "type": "Feature", "properties": { "id": 67, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-16", "to_node": "forks-69", "length": 151.55186552467708, "aggregated_forks": "forks-75, forks-68, forks-67, forks-76, forks-73, forks-72, forks-71, forks-70, forks-74", "aggregated_consumer": "consumers-29, consumers-30, consumers-33, consumers-36, consumers-37, consumers-39, consumers-40, consumers-41, consumers-43", "P_heat_max": 349.0, "simultaneity factor": 0.64460891621779715 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506654.616219203919172, 6005285.733618872240186 ], [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, -{ "type": "Feature", "properties": { "id": 13, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-17", "to_node": "forks-18", "length": 7.23397136554079, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506973.341402161866426, 6004704.626499322243035 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, -{ "type": "Feature", "properties": { "id": 16, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-17", "to_node": "forks-22", "length": 340.26583045827465, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506755.443020176142454, 6004643.41827427316457 ], [ 32506785.601000711321831, 6004608.692504844628274 ], [ 32506825.060652066022158, 6004563.265953474678099 ], [ 32506831.744175631552935, 6004570.930828711017966 ], [ 32506840.820324942469597, 6004580.012318628840148 ], [ 32506853.381121914833784, 6004593.327044745907187 ], [ 32506869.332918431609869, 6004607.993153758347034 ], [ 32506916.344829179346561, 6004648.39671597443521 ], [ 32506938.577460221946239, 6004669.014002612791955 ], [ 32506958.951517555862665, 6004688.794110026210546 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, -{ "type": "Feature", "properties": { "id": 95, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-18", "to_node": "forks-19", "length": 62.927218857187952, "aggregated_forks": "forks-102", "aggregated_consumer": "consumers-80", "P_heat_max": 29.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.355939168483019, 6004702.74669920373708 ], [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, -{ "type": "Feature", "properties": { "id": 74, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-18", "to_node": "forks-80", "length": 77.451235857764701, "aggregated_forks": "forks-82, forks-120, forks-81", "aggregated_consumer": "consumers-50, consumers-51, consumers-96", "P_heat_max": 70.0, "simultaneity factor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, -{ "type": "Feature", "properties": { "id": 14, "highway": "unclassified", "name": "Berliner Straße", "maxspeed": "50", "traffic_sign": "DE:253,DE:1026-35", "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": "delivery", "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-19", "to_node": "forks-20", "length": 74.004680308054191, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506905.58015414327383, 6004686.432937293313444 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, -{ "type": "Feature", "properties": { "id": 82, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-19", "to_node": "forks-90", "length": 14.875469497298331, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, -{ "type": "Feature", "properties": { "id": 85, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-20", "to_node": "forks-22", "length": 53.20861594105358, "aggregated_forks": "forks-21", "aggregated_consumer": "consumers-69", "P_heat_max": 41.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.067715518176556, 6004667.389202644117177 ], [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506799.387847676873207, 6004657.913845077157021 ], [ 32506782.945804461836815, 6004652.671333202160895 ] ] } }, -{ "type": "Feature", "properties": { "id": 91, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-20", "to_node": "forks-98", "length": 21.460964550835705, "aggregated_forks": "forks-99", "aggregated_consumer": "consumers-75", "P_heat_max": 12.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, -{ "type": "Feature", "properties": { "id": 165, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-22", "to_node": "forks-49", "length": 36.994370050809025, "aggregated_forks": "forks-157, forks-156", "aggregated_consumer": "consumers-150, consumers-151", "P_heat_max": 35.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506774.162415158003569, 6004688.607881280593574 ] ] } }, -{ "type": "Feature", "properties": { "id": 18, "highway": "residential", "name": "Stettiner Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": "DE:urban", "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-24", "to_node": "forks-58", "length": 85.321200740730944, "aggregated_forks": "forks-25, forks-101, forks-85, forks-57", "aggregated_consumer": "consumers-1, consumers-54, consumers-78, consumers-88", "P_heat_max": 122.0, "simultaneity factor": 0.82270247479188185 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506823.60973072052002, 6005027.680673941038549 ] ] } }, -{ "type": "Feature", "properties": { "id": 123, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-28", "to_node": "forks-35", "length": 60.216019972162059, "aggregated_forks": "forks-41", "aggregated_consumer": "consumers-104", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.096803050488234, 6005183.699540133588016 ], [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506909.269722919911146, 6005158.977732182480395 ], [ 32506918.045713808387518, 6005132.432110263034701 ], [ 32506918.576595596969128, 6005130.830701379105449 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, -{ "type": "Feature", "properties": { "id": 20, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-28", "to_node": "forks-58", "length": 226.64429638655182, "aggregated_forks": "forks-27, forks-26, forks-132, forks-131, forks-130, forks-129, forks-128, forks-127, forks-126, forks-133, forks-125, forks-124", "aggregated_consumer": "consumers-6, consumers-9, consumers-10, consumers-12, consumers-15, consumers-17, consumers-18, consumers-19, consumers-20, consumers-21, consumers-26, consumers-110, consumers-111, consumers-112, consumers-113, consumers-114, consumers-115, consumers-116, consumers-117, consumers-118, consumers-119, consumers-120", "P_heat_max": 623.0, "simultaneity factor": 0.34184987108662163 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506815.066916454583406, 6005165.936148005537689 ], [ 32506830.834934014827013, 6005171.277921593748033 ], [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506875.229494299739599, 6005178.164427729323506 ], [ 32506877.851715076714754, 6005178.546638377942145 ], [ 32506880.474450293928385, 6005178.583931988105178 ], [ 32506884.531792610883713, 6005179.124058937653899 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, -{ "type": "Feature", "properties": { "id": 21, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-30", "length": 38.483474769190238, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506983.146614462137222, 6005024.615053474903107 ], [ 32506984.83666018769145, 6005033.107077995315194 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, -{ "type": "Feature", "properties": { "id": 35, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-29", "to_node": "forks-32", "length": 98.859043540365803, "aggregated_forks": "forks-43", "aggregated_consumer": "consumers-14", "P_heat_max": 47.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506997.676446001976728, 6004973.299755467101932 ], [ 32507001.493707738816738, 6004964.482295924797654 ], [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, -{ "type": "Feature", "properties": { "id": 23, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-30", "to_node": "forks-32", "length": 340.86861334048416, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506990.210665870457888, 6005043.184641130268574 ], [ 32507017.173750825226307, 6005049.356270640157163 ], [ 32507024.24387625977397, 6005050.980371178127825 ], [ 32507032.057673122733831, 6005052.683502029627562 ], [ 32507039.030090410262346, 6005054.196211940608919 ], [ 32507095.425084549933672, 6005068.902803309261799 ], [ 32507099.61846774071455, 6005070.12204088177532 ], [ 32507105.079793032258749, 6005048.756587056443095 ], [ 32507108.880019243806601, 6005029.925403732806444 ], [ 32507113.154372714459896, 6005012.519138348288834 ], [ 32507115.639401003718376, 6005000.384041387587786 ], [ 32507119.159936010837555, 6004985.268662626855075 ], [ 32507125.537302955985069, 6004958.130034665577114 ], [ 32507123.130625989288092, 6004953.308572310954332 ], [ 32507119.20999788120389, 6004948.6294163800776 ], [ 32507112.447489432990551, 6004946.304680480621755 ], [ 32507096.74439213424921, 6004940.884161343798041 ], [ 32507081.034716226160526, 6004935.474812150001526 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, -{ "type": "Feature", "properties": { "id": 24, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-35", "length": 100.11914522174953, "aggregated_forks": "forks-34", "aggregated_consumer": "consumers-2", "P_heat_max": 31.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506964.114786304533482, 6005106.432262209244072 ], [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506954.997180473059416, 6005134.323578499257565 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, -{ "type": "Feature", "properties": { "id": 32, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-33", "to_node": "forks-40", "length": 16.495543603110093, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506925.620743818581104, 6005110.602306800894439 ], [ 32506931.039892718195915, 6005095.022326570935547 ] ] } }, -{ "type": "Feature", "properties": { "id": 31, "highway": "unclassified", "name": "Hans-Böckler-Straße", "maxspeed": "50", "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": "yes", "rcn_ref": "rvnsh", "source:maxspeed": "DE:urban", "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": "2", "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-35", "to_node": "forks-40", "length": 16.887330997184353, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.064067415893078, 6005126.549259348772466 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, -{ "type": "Feature", "properties": { "id": 26, "highway": "service", "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": "driveway", "access": null, "type": "DL", "from_node": "forks-36", "to_node": "forks-40", "length": 91.073493549059549, "aggregated_forks": "forks-37, forks-38, forks-39", "aggregated_consumer": "consumers-24, consumers-106", "P_heat_max": 60.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506863.05286305770278, 6005113.902283472940326 ], [ 32506868.820386204868555, 6005092.069696916267276 ], [ 32506875.811225049197674, 6005094.349910996854305 ], [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506905.326579809188843, 6005103.973887623287737 ], [ 32506909.884949542582035, 6005105.460533680394292 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, -{ "type": "Feature", "properties": { "id": 44, "highway": "residential", "name": "Auguste-Ebeling-Straße", "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": "asphalt", "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": "no", "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-53", "length": 84.151181727024152, "aggregated_forks": "forks-50, forks-51, forks-52", "aggregated_consumer": "consumers-146, consumers-148, consumers-157", "P_heat_max": 87.0, "simultaneity factor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506772.276173859834671, 6004711.158364219591022 ], [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506770.028414003551006, 6004722.192472075112164 ], [ 32506767.165194243192673, 6004734.672112413682044 ], [ 32506762.504478130489588, 6004749.296516856178641 ], [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506751.563101142644882, 6004748.624020638875663 ], [ 32506740.583661332726479, 6004747.206024529412389 ] ] } }, -{ "type": "Feature", "properties": { "id": 171, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-49", "to_node": "forks-162", "length": 44.903287301746815, "aggregated_forks": "forks-163, forks-158, forks-159, forks-160, forks-161", "aggregated_consumer": "consumers-147, consumers-152, consumers-153, consumers-154, consumers-156", "P_heat_max": 199.0, "simultaneity factor": 0.78352616646845885 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506731.171738628298044, 6004675.642275162041187 ] ] } }, -{ "type": "Feature", "properties": { "id": 57, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-58", "to_node": "forks-64", "length": 59.194100373635251, "aggregated_forks": "forks-66, forks-123", "aggregated_consumer": "consumers-27, consumers-108", "P_heat_max": 63.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506882.491420675069094, 6005033.754231970757246 ] ] } }, -{ "type": "Feature", "properties": { "id": 52, "highway": null, "name": null, "maxspeed": null, "traffic_sign": null, "zone:maxspeed": null, "junction": null, "maxspeed:type": null, "rcn": null, "rcn_ref": null, "source:maxspeed": null, "surface": null, "cycleway:left": null, "destination:forward": null, "destination:ref:to:forward": null, "lanes:backward": null, "lanes:forward": null, "sidewalk": null, "cycleway:right": null, "lanes": null, "turn:lanes:backward": null, "maxheight": null, "hgv": null, "cycleway": null, "layer": null, "tunnel": null, "sidewalk:left": null, "destination:backward": null, "oneway": null, "service": null, "access": null, "type": "DL", "from_node": "forks-60", "to_node": "forks-64", "length": 143.38634029109684, "aggregated_forks": "forks-59, forks-145, forks-141, forks-140, forks-149, forks-146, forks-63, forks-62, forks-61, forks-144, forks-139, forks-138, forks-137, forks-152, forks-136, forks-135, forks-134, forks-150, forks-148, forks-147, forks-151, forks-143, forks-142", "aggregated_consumer": "consumers-3, consumers-8, consumers-11, consumers-13, consumers-16, consumers-25, consumers-67, consumers-121, consumers-122, consumers-123, consumers-124, consumers-125, consumers-126, consumers-127, consumers-128, consumers-129, consumers-130, consumers-131, consumers-132, consumers-133, consumers-134, consumers-135, consumers-136, consumers-137, consumers-138, consumers-139, consumers-140, consumers-141, consumers-142, consumers-143", "P_heat_max": 821.0, "simultaneity factor": 0.23137744865585788 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506956.185954, 6004953.169992100447416 ], [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506978.648154817521572, 6004957.660532805137336 ] ] } } +{ "type": "Feature", "properties": { "id": 50, "type": "DL", "from_node": "forks-1", "to_node": "forks-29", "length": 42.62329158281149, "aggregated_forks": "forks-42", "aggregated_consumer": "consumers-0", "P_heat_max": 23.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "50, 34" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506972.555892087519169, 6005025.500261910259724 ], [ 32506983.83998479694128, 6005006.224120298400521 ] ] } }, +{ "type": "Feature", "properties": { "id": 127, "type": "DL", "from_node": "forks-1", "to_node": "forks-30", "length": 32.596551206237763, "aggregated_forks": "forks-45", "aggregated_consumer": "consumers-109", "P_heat_max": 33.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "127, 38" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506988.514574155211449, 6005042.992920082062483 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "type": "DL", "from_node": "forks-1", "to_node": "forks-64", "length": 75.628606205256546, "aggregated_forks": "forks-0, forks-65", "aggregated_consumer": "consumers-4, consumers-5, consumers-22", "P_heat_max": 64.0, "simultaneity factor": 0.86383759853147601, "aggregated_pipes": "0, 56, 55" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506930.132400441914797, 6005038.999399862252176 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 33, "type": "DL", "from_node": "forks-1", "to_node": "forks-33", "length": 62.273477677616725, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "33" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506936.85857841745019, 6005078.441575756296515 ], [ 32506943.116743721067905, 6005060.337174004875124 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "type": "DL", "from_node": "forks-2", "to_node": "forks-3", "length": 84.101415234176301, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "1" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506849.56926654279232, 6005309.829775800928473 ], [ 32506852.788861401379108, 6005303.303346553817391 ], [ 32506857.729554239660501, 6005293.263527888804674 ], [ 32506874.377478789538145, 6005259.486231505870819 ], [ 32506877.43430345505476, 6005252.781554163433611 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 5, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 32.69106870034981, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "5" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506831.632401779294014, 6005311.127199975773692 ], [ 32506836.87445405870676, 6005313.4047647183761 ], [ 32506846.360497884452343, 6005317.858291626907885 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 40, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 26.199323804115799, "aggregated_forks": "forks-46", "aggregated_consumer": "consumers-42", "P_heat_max": 31.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "40, 39" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506828.487186539918184, 6005307.105897605419159 ], [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506839.983860768377781, 6005306.377473699860275 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 29, "type": "DL", "from_node": "forks-3", "to_node": "forks-28", "length": 52.413555485224038, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "29" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506884.118155308067799, 6005233.286900076083839 ], [ 32506897.695788338780403, 6005193.641477124765515 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 22, "type": "DL", "from_node": "forks-3", "to_node": "forks-69", "length": 201.8640742339384, "aggregated_forks": "forks-31", "aggregated_consumer": "consumers-34, consumers-38", "P_heat_max": 50.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "22, 59" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506761.41373110935092, 6005288.247852889820933 ], [ 32506768.106216792017221, 6005284.719470574520528 ], [ 32506768.58904629573226, 6005275.807909052819014 ], [ 32506772.436157487332821, 6005237.327239649370313 ], [ 32506778.249345108866692, 6005228.412388440221548 ], [ 32506784.139542851597071, 6005224.816091160289943 ], [ 32506794.208307005465031, 6005219.178695933893323 ], [ 32506815.131370950490236, 6005219.420987154357135 ], [ 32506849.753633692860603, 6005225.280305446125567 ], [ 32506870.448009263724089, 6005230.106597077101469 ], [ 32506874.400354873389006, 6005231.024857359007001 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "type": "DL", "from_node": "forks-4", "to_node": "forks-5", "length": 49.65468218997448, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "2" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507066.510839566588402, 6004782.174897360615432 ], [ 32507072.530063845217228, 6004784.309275067411363 ], [ 32507075.421466507017612, 6004787.996558192186058 ], [ 32507077.794186722487211, 6004793.774814426898956 ], [ 32507077.255080308765173, 6004800.672369468957186 ], [ 32507074.454373985528946, 6004805.919742610305548 ], [ 32507067.962735038250685, 6004809.770653950050473 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 42, "type": "DL", "from_node": "forks-4", "to_node": "forks-17", "length": 123.29475616582023, "aggregated_forks": "forks-47, forks-48", "aggregated_consumer": "consumers-71, consumers-107", "P_heat_max": 85.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "42, 87, 43" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507058.269206289201975, 6004774.08448775857687 ], [ 32507055.049979239702225, 6004762.886378192342818 ], [ 32507049.614296812564135, 6004750.349710370413959 ], [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507038.577310808002949, 6004739.673732661642134 ], [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.376538667827845, 6004714.249341813847423 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 4, "type": "DL", "from_node": "forks-4", "to_node": "forks-6", "length": 19.483020231991176, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "4" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507051.015878472477198, 6004789.583621971309185 ], [ 32507055.721855498850346, 6004784.328024078160524 ], [ 32507059.691856741905212, 6004782.464862993918359 ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "type": "DL", "from_node": "forks-5", "to_node": "forks-6", "length": 20.118775802046997, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "3" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507062.904994439333677, 6004810.397108196280897 ], [ 32507057.250238422304392, 6004808.886380590498447 ], [ 32507053.053128503262997, 6004805.67554706055671 ], [ 32507050.371553130447865, 6004801.309886945411563 ], [ 32507049.679193664342165, 6004797.514717631973326 ] ] } }, +{ "type": "Feature", "properties": { "id": 37, "type": "DL", "from_node": "forks-5", "to_node": "forks-32", "length": 112.75341151061222, "aggregated_forks": "forks-44, forks-79", "aggregated_consumer": "consumers-48, consumers-62", "P_heat_max": 51.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "37, 72, 71" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507023.054066255688667, 6004915.480935483239591 ], [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507047.633258003741503, 6004855.380120977759361 ], [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507056.958943579345942, 6004832.941263437271118 ], [ 32507062.226572059094906, 6004818.80764533020556 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 6, "type": "DL", "from_node": "forks-6", "to_node": "forks-24", "length": 368.44406427251545, "aggregated_forks": "forks-8, forks-84, forks-96, forks-97, forks-114, forks-92, forks-93, forks-117, forks-115, forks-116, forks-121, forks-118, forks-119, forks-109, forks-110, forks-111, forks-112, forks-113, forks-122, forks-88, forks-86, forks-87, forks-89, forks-77, forks-78, forks-106, forks-103, forks-104, forks-100", "aggregated_consumer": "consumers-46, consumers-47, consumers-53, consumers-55, consumers-56, consumers-58, consumers-59, consumers-61, consumers-63, consumers-65, consumers-68, consumers-72, consumers-73, consumers-74, consumers-76, consumers-77, consumers-79, consumers-81, consumers-83, consumers-84, consumers-87, consumers-89, consumers-90, consumers-91, consumers-92, consumers-93, consumers-95, consumers-97, consumers-98, consumers-99, consumers-100, consumers-101, consumers-102, consumers-103", "P_heat_max": 1104.0, "simultaneity factor": 0.19035479962020585, "aggregated_pipes": "6, 76, 88, 89, 109, 110, 84, 112, 113, 111, 119, 120, 115, 116, 104, 105, 107, 108, 121, 122, 79, 78, 80, 81, 70, 100, 101, 97, 106, 92" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507040.76520436629653, 6004798.157553435303271 ], [ 32507036.399958070367575, 6004798.217646886594594 ], [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507025.222955066710711, 6004802.406388177536428 ], [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506959.887568239122629, 6004846.735092141665518 ], [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506775.654936447739601, 6004982.75931285880506 ], [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506746.461005732417107, 6005002.454771279357374 ] ] } }, +{ "type": "Feature", "properties": { "id": 17, "type": "DL", "from_node": "forks-7", "to_node": "forks-69", "length": 72.210147634926642, "aggregated_forks": "forks-23", "aggregated_consumer": "consumers-35", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "17, 60" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506818.050234023481607, 6005310.350491045974195 ], [ 32506800.642851490527391, 6005319.804492926225066 ], [ 32506796.837095130234957, 6005321.278694453649223 ], [ 32506793.04543898999691, 6005322.040828321129084 ], [ 32506788.133238516747952, 6005321.710924620740116 ], [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506756.039207898080349, 6005313.986531776376069 ] ] } }, +{ "type": "Feature", "properties": { "id": 8, "type": "DL", "from_node": "forks-10", "to_node": "forks-11", "length": 58.167007772036605, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "8" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506643.196130774915218, 6005070.34288255404681 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 160, "type": "DL", "from_node": "forks-10", "to_node": "forks-155", "length": 114.44122883508933, "aggregated_forks": "forks-153, forks-107, forks-108, forks-154", "aggregated_consumer": "consumers-44, consumers-85, consumers-144, consumers-145", "P_heat_max": 98.0, "simultaneity factor": 0.82270247479188185, "aggregated_pipes": "160, 161, 102, 162, 163" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506681.648138843476772, 6004914.06884797103703 ] ] } }, +{ "type": "Feature", "properties": { "id": 7, "type": "DL", "from_node": "forks-10", "to_node": "forks-24", "length": 94.548892921472756, "aggregated_forks": "forks-9, forks-95, forks-94, forks-105, forks-91, forks-83", "aggregated_consumer": "consumers-49, consumers-52, consumers-64, consumers-70, consumers-82, consumers-86", "P_heat_max": 208.0, "simultaneity factor": 0.7462153966366275, "aggregated_pipes": "7, 103, 86, 99, 98, 83, 75" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506674.726261701434851, 6005018.216621937230229 ], [ 32506654.861689653247595, 6005025.33106526453048 ] ] } }, +{ "type": "Feature", "properties": { "id": 9, "type": "DL", "from_node": "forks-11", "to_node": "forks-12", "length": 16.145295829953266, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "9" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.289495009928942, 6005081.643143246881664 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 49, "type": "DL", "from_node": "forks-11", "to_node": "forks-54", "length": 88.352582955426328, "aggregated_forks": "forks-56, forks-55", "aggregated_consumer": "consumers-94", "P_heat_max": 33.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "49, 114, 48" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506696.986993879079819, 6005095.343915767967701 ], [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506648.500972010195255, 6005083.624357352033257 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 173, "type": "DL", "from_node": "forks-12", "to_node": "forks-13", "length": 7.8781933938920234, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "173" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506635.980503581464291, 6005097.202808098867536 ], [ 32506634.197308879345655, 6005104.876539121381938 ] ] } }, +{ "type": "Feature", "properties": { "id": 41, "type": "DL", "from_node": "forks-12", "to_node": "forks-15", "length": 186.83480570927742, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506580.43083043769002, 6005248.253432797268033 ], [ 32506586.498014286160469, 6005225.686575460247695 ], [ 32506599.077679563313723, 6005179.529892827384174 ], [ 32506610.953214820474386, 6005133.194214399904013 ], [ 32506617.463154081255198, 6005106.92293609213084 ], [ 32506620.289027590304613, 6005097.291508676484227 ], [ 32506622.654141690582037, 6005095.025115229189396 ], [ 32506626.497879713773727, 6005094.452065224759281 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 10, "type": "DL", "from_node": "forks-13", "to_node": "forks-15", "length": 160.52780708227937, "aggregated_forks": "forks-14", "aggregated_consumer": "consumers-32", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "10, 11" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506632.455033458769321, 6005112.374179692007601 ], [ 32506627.507085636258125, 6005132.205481625162065 ], [ 32506623.818144433200359, 6005147.66591256391257 ], [ 32506620.064255829900503, 6005162.937104214914143 ], [ 32506615.55568515136838, 6005181.278110017068684 ], [ 32506613.350609008222818, 6005190.265099276788533 ], [ 32506610.443355057388544, 6005202.099448162131011 ], [ 32506608.262401930987835, 6005207.926569108851254 ], [ 32506604.114207334816456, 6005225.255598852410913 ], [ 32506597.784114979207516, 6005240.000177503563464 ], [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506591.320538651198149, 6005252.307886299677193 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, +{ "type": "Feature", "properties": { "id": 332, "type": "GL", "from_node": "forks-13", "to_node": "producers-0", "length": 15.980908346991134, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "332" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506649.763465486466885, 6005108.493748000822961 ] ] } }, +{ "type": "Feature", "properties": { "id": 12, "type": "DL", "from_node": "forks-15", "to_node": "forks-16", "length": 32.100377577737376, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "12" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506587.964162901043892, 6005263.474022278562188 ], [ 32506587.762997552752495, 6005267.278973447158933 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, +{ "type": "Feature", "properties": { "id": 67, "type": "DL", "from_node": "forks-16", "to_node": "forks-69", "length": 151.55186552467708, "aggregated_forks": "forks-75, forks-68, forks-67, forks-76, forks-73, forks-72, forks-71, forks-70, forks-74", "aggregated_consumer": "consumers-29, consumers-30, consumers-33, consumers-36, consumers-37, consumers-39, consumers-40, consumers-41, consumers-43", "P_heat_max": 349.0, "simultaneity factor": 0.64460891621779715, "aggregated_pipes": "67, 66, 58, 69, 68, 63, 62, 61, 65, 64" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506654.616219203919172, 6005285.733618872240186 ], [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, +{ "type": "Feature", "properties": { "id": 13, "type": "DL", "from_node": "forks-17", "to_node": "forks-18", "length": 7.23397136554079, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "13" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506973.341402161866426, 6004704.626499322243035 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 16, "type": "DL", "from_node": "forks-17", "to_node": "forks-22", "length": 340.26583045827465, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "16" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506755.443020176142454, 6004643.41827427316457 ], [ 32506785.601000711321831, 6004608.692504844628274 ], [ 32506825.060652066022158, 6004563.265953474678099 ], [ 32506831.744175631552935, 6004570.930828711017966 ], [ 32506840.820324942469597, 6004580.012318628840148 ], [ 32506853.381121914833784, 6004593.327044745907187 ], [ 32506869.332918431609869, 6004607.993153758347034 ], [ 32506916.344829179346561, 6004648.39671597443521 ], [ 32506938.577460221946239, 6004669.014002612791955 ], [ 32506958.951517555862665, 6004688.794110026210546 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 95, "type": "DL", "from_node": "forks-18", "to_node": "forks-19", "length": 62.927218857187952, "aggregated_forks": "forks-102", "aggregated_consumer": "consumers-80", "P_heat_max": 29.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "95, 96" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.355939168483019, 6004702.74669920373708 ], [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 74, "type": "DL", "from_node": "forks-18", "to_node": "forks-80", "length": 77.451235857764701, "aggregated_forks": "forks-82, forks-120, forks-81", "aggregated_consumer": "consumers-50, consumers-51, consumers-96", "P_heat_max": 70.0, "simultaneity factor": 0.86383759853147601, "aggregated_pipes": "74, 118, 117, 73" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 14, "type": "DL", "from_node": "forks-19", "to_node": "forks-20", "length": 74.004680308054191, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506905.58015414327383, 6004686.432937293313444 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 82, "type": "DL", "from_node": "forks-19", "to_node": "forks-90", "length": 14.875469497298331, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "82" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 85, "type": "DL", "from_node": "forks-20", "to_node": "forks-22", "length": 53.20861594105358, "aggregated_forks": "forks-21", "aggregated_consumer": "consumers-69", "P_heat_max": 41.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "85, 15" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.067715518176556, 6004667.389202644117177 ], [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506799.387847676873207, 6004657.913845077157021 ], [ 32506782.945804461836815, 6004652.671333202160895 ] ] } }, +{ "type": "Feature", "properties": { "id": 91, "type": "DL", "from_node": "forks-20", "to_node": "forks-98", "length": 21.460964550835705, "aggregated_forks": "forks-99", "aggregated_consumer": "consumers-75", "P_heat_max": 12.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "91, 90" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 165, "type": "DL", "from_node": "forks-22", "to_node": "forks-49", "length": 36.994370050809025, "aggregated_forks": "forks-157, forks-156", "aggregated_consumer": "consumers-150, consumers-151", "P_heat_max": 35.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "165, 166, 164" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506774.162415158003569, 6004688.607881280593574 ] ] } }, +{ "type": "Feature", "properties": { "id": 18, "type": "DL", "from_node": "forks-24", "to_node": "forks-58", "length": 85.321200740730944, "aggregated_forks": "forks-25, forks-101, forks-85, forks-57", "aggregated_consumer": "consumers-1, consumers-54, consumers-78, consumers-88", "P_heat_max": 122.0, "simultaneity factor": 0.82270247479188185, "aggregated_pipes": "18, 93, 94, 77, 51" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506823.60973072052002, 6005027.680673941038549 ] ] } }, +{ "type": "Feature", "properties": { "id": 123, "type": "DL", "from_node": "forks-28", "to_node": "forks-35", "length": 60.216019972162059, "aggregated_forks": "forks-41", "aggregated_consumer": "consumers-104", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "123, 30" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.096803050488234, 6005183.699540133588016 ], [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506909.269722919911146, 6005158.977732182480395 ], [ 32506918.045713808387518, 6005132.432110263034701 ], [ 32506918.576595596969128, 6005130.830701379105449 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 20, "type": "DL", "from_node": "forks-28", "to_node": "forks-58", "length": 226.64429638655182, "aggregated_forks": "forks-27, forks-26, forks-132, forks-131, forks-130, forks-129, forks-128, forks-127, forks-126, forks-133, forks-125, forks-124", "aggregated_consumer": "consumers-6, consumers-9, consumers-10, consumers-12, consumers-15, consumers-17, consumers-18, consumers-19, consumers-20, consumers-21, consumers-26, consumers-110, consumers-111, consumers-112, consumers-113, consumers-114, consumers-115, consumers-116, consumers-117, consumers-118, consumers-119, consumers-120", "P_heat_max": 623.0, "simultaneity factor": 0.34184987108662163, "aggregated_pipes": "20, 19, 136, 135, 134, 133, 132, 131, 130, 138, 137, 129, 128" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506815.066916454583406, 6005165.936148005537689 ], [ 32506830.834934014827013, 6005171.277921593748033 ], [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506875.229494299739599, 6005178.164427729323506 ], [ 32506877.851715076714754, 6005178.546638377942145 ], [ 32506880.474450293928385, 6005178.583931988105178 ], [ 32506884.531792610883713, 6005179.124058937653899 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 21, "type": "DL", "from_node": "forks-29", "to_node": "forks-30", "length": 38.483474769190238, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "21" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506983.146614462137222, 6005024.615053474903107 ], [ 32506984.83666018769145, 6005033.107077995315194 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 35, "type": "DL", "from_node": "forks-29", "to_node": "forks-32", "length": 98.859043540365803, "aggregated_forks": "forks-43", "aggregated_consumer": "consumers-14", "P_heat_max": 47.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "35, 36" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506997.676446001976728, 6004973.299755467101932 ], [ 32507001.493707738816738, 6004964.482295924797654 ], [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 23, "type": "DL", "from_node": "forks-30", "to_node": "forks-32", "length": 340.86861334048416, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506990.210665870457888, 6005043.184641130268574 ], [ 32507017.173750825226307, 6005049.356270640157163 ], [ 32507024.24387625977397, 6005050.980371178127825 ], [ 32507032.057673122733831, 6005052.683502029627562 ], [ 32507039.030090410262346, 6005054.196211940608919 ], [ 32507095.425084549933672, 6005068.902803309261799 ], [ 32507099.61846774071455, 6005070.12204088177532 ], [ 32507105.079793032258749, 6005048.756587056443095 ], [ 32507108.880019243806601, 6005029.925403732806444 ], [ 32507113.154372714459896, 6005012.519138348288834 ], [ 32507115.639401003718376, 6005000.384041387587786 ], [ 32507119.159936010837555, 6004985.268662626855075 ], [ 32507125.537302955985069, 6004958.130034665577114 ], [ 32507123.130625989288092, 6004953.308572310954332 ], [ 32507119.20999788120389, 6004948.6294163800776 ], [ 32507112.447489432990551, 6004946.304680480621755 ], [ 32507096.74439213424921, 6004940.884161343798041 ], [ 32507081.034716226160526, 6004935.474812150001526 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 24, "type": "DL", "from_node": "forks-33", "to_node": "forks-35", "length": 100.11914522174953, "aggregated_forks": "forks-34", "aggregated_consumer": "consumers-2", "P_heat_max": 31.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "24, 25" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506964.114786304533482, 6005106.432262209244072 ], [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506954.997180473059416, 6005134.323578499257565 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 32, "type": "DL", "from_node": "forks-33", "to_node": "forks-40", "length": 16.495543603110093, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "32" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506925.620743818581104, 6005110.602306800894439 ], [ 32506931.039892718195915, 6005095.022326570935547 ] ] } }, +{ "type": "Feature", "properties": { "id": 31, "type": "DL", "from_node": "forks-35", "to_node": "forks-40", "length": 16.887330997184353, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "31" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.064067415893078, 6005126.549259348772466 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 26, "type": "DL", "from_node": "forks-36", "to_node": "forks-40", "length": 91.073493549059549, "aggregated_forks": "forks-37, forks-38, forks-39", "aggregated_consumer": "consumers-24, consumers-106", "P_heat_max": 60.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "26, 27, 124, 28" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506863.05286305770278, 6005113.902283472940326 ], [ 32506868.820386204868555, 6005092.069696916267276 ], [ 32506875.811225049197674, 6005094.349910996854305 ], [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506905.326579809188843, 6005103.973887623287737 ], [ 32506909.884949542582035, 6005105.460533680394292 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 44, "type": "DL", "from_node": "forks-49", "to_node": "forks-53", "length": 84.151181727024152, "aggregated_forks": "forks-50, forks-51, forks-52", "aggregated_consumer": "consumers-146, consumers-148, consumers-157", "P_heat_max": 87.0, "simultaneity factor": 0.86383759853147601, "aggregated_pipes": "44, 45, 46, 47" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506772.276173859834671, 6004711.158364219591022 ], [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506770.028414003551006, 6004722.192472075112164 ], [ 32506767.165194243192673, 6004734.672112413682044 ], [ 32506762.504478130489588, 6004749.296516856178641 ], [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506751.563101142644882, 6004748.624020638875663 ], [ 32506740.583661332726479, 6004747.206024529412389 ] ] } }, +{ "type": "Feature", "properties": { "id": 171, "type": "DL", "from_node": "forks-49", "to_node": "forks-162", "length": 44.903287301746815, "aggregated_forks": "forks-163, forks-158, forks-159, forks-160, forks-161", "aggregated_consumer": "consumers-147, consumers-152, consumers-153, consumers-154, consumers-156", "P_heat_max": 199.0, "simultaneity factor": 0.78352616646845885, "aggregated_pipes": "171, 172, 167, 168, 169, 170" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506731.171738628298044, 6004675.642275162041187 ] ] } }, +{ "type": "Feature", "properties": { "id": 57, "type": "DL", "from_node": "forks-58", "to_node": "forks-64", "length": 59.194100373635251, "aggregated_forks": "forks-66, forks-123", "aggregated_consumer": "consumers-27, consumers-108", "P_heat_max": 63.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "57, 125, 126" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506882.491420675069094, 6005033.754231970757246 ] ] } }, +{ "type": "Feature", "properties": { "id": 52, "type": "DL", "from_node": "forks-60", "to_node": "forks-64", "length": 143.38634029109684, "aggregated_forks": "forks-59, forks-145, forks-141, forks-140, forks-149, forks-146, forks-63, forks-62, forks-61, forks-144, forks-139, forks-138, forks-137, forks-152, forks-136, forks-135, forks-134, forks-150, forks-148, forks-147, forks-151, forks-143, forks-142", "aggregated_consumer": "consumers-3, consumers-8, consumers-11, consumers-13, consumers-16, consumers-25, consumers-67, consumers-121, consumers-122, consumers-123, consumers-124, consumers-125, consumers-126, consumers-127, consumers-128, consumers-129, consumers-130, consumers-131, consumers-132, consumers-133, consumers-134, consumers-135, consumers-136, consumers-137, consumers-138, consumers-139, consumers-140, consumers-141, consumers-142, consumers-143", "P_heat_max": 821.0, "simultaneity factor": 0.23137744865585788, "aggregated_pipes": "52, 149, 148, 143, 153, 152, 150, 54, 53, 147, 146, 142, 141, 159, 158, 140, 139, 155, 154, 151, 157, 156, 145, 144" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506956.185954, 6004953.169992100447416 ], [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506978.648154817521572, 6004957.660532805137336 ] ] } } ] } From d37b49c6b3c5938b10ed279d367f7220da07f41b Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Fri, 9 Sep 2022 17:51:37 +0200 Subject: [PATCH 12/14] fixed column problem of super pipes --- dhnx/gistools/geometry_operations.py | 15 ++- .../super_network/super_pipes.geojson | 100 +++++++++--------- 2 files changed, 57 insertions(+), 58 deletions(-) diff --git a/dhnx/gistools/geometry_operations.py b/dhnx/gistools/geometry_operations.py index 1554f974..f220cdba 100644 --- a/dhnx/gistools/geometry_operations.py +++ b/dhnx/gistools/geometry_operations.py @@ -703,10 +703,9 @@ def aggregation(forks, pipes, consumers, producers): str_aggregated_forks_segment_i_a = ', '.join(aggregated_forks_segment_i_a) merged_segment_i_a.at[0, 'aggregated_forks'] = str_aggregated_forks_segment_i_a - # add new pipe to super pipes - super_pipes = super_pipes.append(merged_segment_i_a) - # add pipe_ids to aggregated pipes - aggregated_pipes = aggregated_pipes + segment_i_a['id'].tolist() + # # add column 'aggregated_pipes' + str_aggregated_pipes_segment_i_a = ', '.join(str(x) for x in segment_i_a['id'].tolist()) + merged_segment_i_a.at[0, 'aggregated_pipes'] = str_aggregated_pipes_segment_i_a # # add column 'aggregated_consumers' aggregated_consumer_segment_i_a = [] @@ -727,9 +726,10 @@ def aggregation(forks, pipes, consumers, producers): simultaneity_factor_segment_i_a = pow(1.05, -number_aggregated_consumer_segment_i_a) # Note: this is just a placeholder formula merged_segment_i_a.at[0, 'simultaneity factor'] = simultaneity_factor_segment_i_a - # # add column 'aggregated_pipes' - str_aggregated_pipes_segment_i_a = ', '.join(str(x) for x in segment_i_a['id'].tolist()) - merged_segment_i_a.at[0, 'aggregated_pipes'] = str_aggregated_pipes_segment_i_a + # add new pipe to super pipes + super_pipes = super_pipes.append(merged_segment_i_a) + # add pipe_ids to aggregated pipes + aggregated_pipes = aggregated_pipes + segment_i_a['id'].tolist() aggregation_segment == True @@ -786,4 +786,3 @@ def aggregation(forks, pipes, consumers, producers): 'super_producers': producers, # not yet defined 'super_pipes': super_pipes, } - diff --git a/examples/optimisation/network_aggregation/super_network/super_pipes.geojson b/examples/optimisation/network_aggregation/super_network/super_pipes.geojson index 1d372add..adcd2b8a 100644 --- a/examples/optimisation/network_aggregation/super_network/super_pipes.geojson +++ b/examples/optimisation/network_aggregation/super_network/super_pipes.geojson @@ -2,55 +2,55 @@ "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4647" } }, "features": [ -{ "type": "Feature", "properties": { "id": 50, "type": "DL", "from_node": "forks-1", "to_node": "forks-29", "length": 42.62329158281149, "aggregated_forks": "forks-42", "aggregated_consumer": "consumers-0", "P_heat_max": 23.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "50, 34" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506972.555892087519169, 6005025.500261910259724 ], [ 32506983.83998479694128, 6005006.224120298400521 ] ] } }, -{ "type": "Feature", "properties": { "id": 127, "type": "DL", "from_node": "forks-1", "to_node": "forks-30", "length": 32.596551206237763, "aggregated_forks": "forks-45", "aggregated_consumer": "consumers-109", "P_heat_max": 33.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "127, 38" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506988.514574155211449, 6005042.992920082062483 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, -{ "type": "Feature", "properties": { "id": 0, "type": "DL", "from_node": "forks-1", "to_node": "forks-64", "length": 75.628606205256546, "aggregated_forks": "forks-0, forks-65", "aggregated_consumer": "consumers-4, consumers-5, consumers-22", "P_heat_max": 64.0, "simultaneity factor": 0.86383759853147601, "aggregated_pipes": "0, 56, 55" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506930.132400441914797, 6005038.999399862252176 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, -{ "type": "Feature", "properties": { "id": 33, "type": "DL", "from_node": "forks-1", "to_node": "forks-33", "length": 62.273477677616725, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "33" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506936.85857841745019, 6005078.441575756296515 ], [ 32506943.116743721067905, 6005060.337174004875124 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, -{ "type": "Feature", "properties": { "id": 1, "type": "DL", "from_node": "forks-2", "to_node": "forks-3", "length": 84.101415234176301, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "1" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506849.56926654279232, 6005309.829775800928473 ], [ 32506852.788861401379108, 6005303.303346553817391 ], [ 32506857.729554239660501, 6005293.263527888804674 ], [ 32506874.377478789538145, 6005259.486231505870819 ], [ 32506877.43430345505476, 6005252.781554163433611 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, -{ "type": "Feature", "properties": { "id": 5, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 32.69106870034981, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "5" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506831.632401779294014, 6005311.127199975773692 ], [ 32506836.87445405870676, 6005313.4047647183761 ], [ 32506846.360497884452343, 6005317.858291626907885 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, -{ "type": "Feature", "properties": { "id": 40, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 26.199323804115799, "aggregated_forks": "forks-46", "aggregated_consumer": "consumers-42", "P_heat_max": 31.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "40, 39" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506828.487186539918184, 6005307.105897605419159 ], [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506839.983860768377781, 6005306.377473699860275 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, -{ "type": "Feature", "properties": { "id": 29, "type": "DL", "from_node": "forks-3", "to_node": "forks-28", "length": 52.413555485224038, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "29" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506884.118155308067799, 6005233.286900076083839 ], [ 32506897.695788338780403, 6005193.641477124765515 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, -{ "type": "Feature", "properties": { "id": 22, "type": "DL", "from_node": "forks-3", "to_node": "forks-69", "length": 201.8640742339384, "aggregated_forks": "forks-31", "aggregated_consumer": "consumers-34, consumers-38", "P_heat_max": 50.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "22, 59" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506761.41373110935092, 6005288.247852889820933 ], [ 32506768.106216792017221, 6005284.719470574520528 ], [ 32506768.58904629573226, 6005275.807909052819014 ], [ 32506772.436157487332821, 6005237.327239649370313 ], [ 32506778.249345108866692, 6005228.412388440221548 ], [ 32506784.139542851597071, 6005224.816091160289943 ], [ 32506794.208307005465031, 6005219.178695933893323 ], [ 32506815.131370950490236, 6005219.420987154357135 ], [ 32506849.753633692860603, 6005225.280305446125567 ], [ 32506870.448009263724089, 6005230.106597077101469 ], [ 32506874.400354873389006, 6005231.024857359007001 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, -{ "type": "Feature", "properties": { "id": 2, "type": "DL", "from_node": "forks-4", "to_node": "forks-5", "length": 49.65468218997448, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "2" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507066.510839566588402, 6004782.174897360615432 ], [ 32507072.530063845217228, 6004784.309275067411363 ], [ 32507075.421466507017612, 6004787.996558192186058 ], [ 32507077.794186722487211, 6004793.774814426898956 ], [ 32507077.255080308765173, 6004800.672369468957186 ], [ 32507074.454373985528946, 6004805.919742610305548 ], [ 32507067.962735038250685, 6004809.770653950050473 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, -{ "type": "Feature", "properties": { "id": 42, "type": "DL", "from_node": "forks-4", "to_node": "forks-17", "length": 123.29475616582023, "aggregated_forks": "forks-47, forks-48", "aggregated_consumer": "consumers-71, consumers-107", "P_heat_max": 85.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "42, 87, 43" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507058.269206289201975, 6004774.08448775857687 ], [ 32507055.049979239702225, 6004762.886378192342818 ], [ 32507049.614296812564135, 6004750.349710370413959 ], [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507038.577310808002949, 6004739.673732661642134 ], [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.376538667827845, 6004714.249341813847423 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, -{ "type": "Feature", "properties": { "id": 4, "type": "DL", "from_node": "forks-4", "to_node": "forks-6", "length": 19.483020231991176, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "4" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507051.015878472477198, 6004789.583621971309185 ], [ 32507055.721855498850346, 6004784.328024078160524 ], [ 32507059.691856741905212, 6004782.464862993918359 ] ] } }, -{ "type": "Feature", "properties": { "id": 3, "type": "DL", "from_node": "forks-5", "to_node": "forks-6", "length": 20.118775802046997, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "3" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507062.904994439333677, 6004810.397108196280897 ], [ 32507057.250238422304392, 6004808.886380590498447 ], [ 32507053.053128503262997, 6004805.67554706055671 ], [ 32507050.371553130447865, 6004801.309886945411563 ], [ 32507049.679193664342165, 6004797.514717631973326 ] ] } }, -{ "type": "Feature", "properties": { "id": 37, "type": "DL", "from_node": "forks-5", "to_node": "forks-32", "length": 112.75341151061222, "aggregated_forks": "forks-44, forks-79", "aggregated_consumer": "consumers-48, consumers-62", "P_heat_max": 51.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "37, 72, 71" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507023.054066255688667, 6004915.480935483239591 ], [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507047.633258003741503, 6004855.380120977759361 ], [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507056.958943579345942, 6004832.941263437271118 ], [ 32507062.226572059094906, 6004818.80764533020556 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, -{ "type": "Feature", "properties": { "id": 6, "type": "DL", "from_node": "forks-6", "to_node": "forks-24", "length": 368.44406427251545, "aggregated_forks": "forks-8, forks-84, forks-96, forks-97, forks-114, forks-92, forks-93, forks-117, forks-115, forks-116, forks-121, forks-118, forks-119, forks-109, forks-110, forks-111, forks-112, forks-113, forks-122, forks-88, forks-86, forks-87, forks-89, forks-77, forks-78, forks-106, forks-103, forks-104, forks-100", "aggregated_consumer": "consumers-46, consumers-47, consumers-53, consumers-55, consumers-56, consumers-58, consumers-59, consumers-61, consumers-63, consumers-65, consumers-68, consumers-72, consumers-73, consumers-74, consumers-76, consumers-77, consumers-79, consumers-81, consumers-83, consumers-84, consumers-87, consumers-89, consumers-90, consumers-91, consumers-92, consumers-93, consumers-95, consumers-97, consumers-98, consumers-99, consumers-100, consumers-101, consumers-102, consumers-103", "P_heat_max": 1104.0, "simultaneity factor": 0.19035479962020585, "aggregated_pipes": "6, 76, 88, 89, 109, 110, 84, 112, 113, 111, 119, 120, 115, 116, 104, 105, 107, 108, 121, 122, 79, 78, 80, 81, 70, 100, 101, 97, 106, 92" }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507040.76520436629653, 6004798.157553435303271 ], [ 32507036.399958070367575, 6004798.217646886594594 ], [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507025.222955066710711, 6004802.406388177536428 ], [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506959.887568239122629, 6004846.735092141665518 ], [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506775.654936447739601, 6004982.75931285880506 ], [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506746.461005732417107, 6005002.454771279357374 ] ] } }, -{ "type": "Feature", "properties": { "id": 17, "type": "DL", "from_node": "forks-7", "to_node": "forks-69", "length": 72.210147634926642, "aggregated_forks": "forks-23", "aggregated_consumer": "consumers-35", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "17, 60" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506818.050234023481607, 6005310.350491045974195 ], [ 32506800.642851490527391, 6005319.804492926225066 ], [ 32506796.837095130234957, 6005321.278694453649223 ], [ 32506793.04543898999691, 6005322.040828321129084 ], [ 32506788.133238516747952, 6005321.710924620740116 ], [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506756.039207898080349, 6005313.986531776376069 ] ] } }, -{ "type": "Feature", "properties": { "id": 8, "type": "DL", "from_node": "forks-10", "to_node": "forks-11", "length": 58.167007772036605, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "8" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506643.196130774915218, 6005070.34288255404681 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, -{ "type": "Feature", "properties": { "id": 160, "type": "DL", "from_node": "forks-10", "to_node": "forks-155", "length": 114.44122883508933, "aggregated_forks": "forks-153, forks-107, forks-108, forks-154", "aggregated_consumer": "consumers-44, consumers-85, consumers-144, consumers-145", "P_heat_max": 98.0, "simultaneity factor": 0.82270247479188185, "aggregated_pipes": "160, 161, 102, 162, 163" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506681.648138843476772, 6004914.06884797103703 ] ] } }, -{ "type": "Feature", "properties": { "id": 7, "type": "DL", "from_node": "forks-10", "to_node": "forks-24", "length": 94.548892921472756, "aggregated_forks": "forks-9, forks-95, forks-94, forks-105, forks-91, forks-83", "aggregated_consumer": "consumers-49, consumers-52, consumers-64, consumers-70, consumers-82, consumers-86", "P_heat_max": 208.0, "simultaneity factor": 0.7462153966366275, "aggregated_pipes": "7, 103, 86, 99, 98, 83, 75" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506674.726261701434851, 6005018.216621937230229 ], [ 32506654.861689653247595, 6005025.33106526453048 ] ] } }, -{ "type": "Feature", "properties": { "id": 9, "type": "DL", "from_node": "forks-11", "to_node": "forks-12", "length": 16.145295829953266, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "9" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.289495009928942, 6005081.643143246881664 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, -{ "type": "Feature", "properties": { "id": 49, "type": "DL", "from_node": "forks-11", "to_node": "forks-54", "length": 88.352582955426328, "aggregated_forks": "forks-56, forks-55", "aggregated_consumer": "consumers-94", "P_heat_max": 33.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "49, 114, 48" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506696.986993879079819, 6005095.343915767967701 ], [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506648.500972010195255, 6005083.624357352033257 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, -{ "type": "Feature", "properties": { "id": 173, "type": "DL", "from_node": "forks-12", "to_node": "forks-13", "length": 7.8781933938920234, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "173" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506635.980503581464291, 6005097.202808098867536 ], [ 32506634.197308879345655, 6005104.876539121381938 ] ] } }, -{ "type": "Feature", "properties": { "id": 41, "type": "DL", "from_node": "forks-12", "to_node": "forks-15", "length": 186.83480570927742, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506580.43083043769002, 6005248.253432797268033 ], [ 32506586.498014286160469, 6005225.686575460247695 ], [ 32506599.077679563313723, 6005179.529892827384174 ], [ 32506610.953214820474386, 6005133.194214399904013 ], [ 32506617.463154081255198, 6005106.92293609213084 ], [ 32506620.289027590304613, 6005097.291508676484227 ], [ 32506622.654141690582037, 6005095.025115229189396 ], [ 32506626.497879713773727, 6005094.452065224759281 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, -{ "type": "Feature", "properties": { "id": 10, "type": "DL", "from_node": "forks-13", "to_node": "forks-15", "length": 160.52780708227937, "aggregated_forks": "forks-14", "aggregated_consumer": "consumers-32", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "10, 11" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506632.455033458769321, 6005112.374179692007601 ], [ 32506627.507085636258125, 6005132.205481625162065 ], [ 32506623.818144433200359, 6005147.66591256391257 ], [ 32506620.064255829900503, 6005162.937104214914143 ], [ 32506615.55568515136838, 6005181.278110017068684 ], [ 32506613.350609008222818, 6005190.265099276788533 ], [ 32506610.443355057388544, 6005202.099448162131011 ], [ 32506608.262401930987835, 6005207.926569108851254 ], [ 32506604.114207334816456, 6005225.255598852410913 ], [ 32506597.784114979207516, 6005240.000177503563464 ], [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506591.320538651198149, 6005252.307886299677193 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, -{ "type": "Feature", "properties": { "id": 332, "type": "GL", "from_node": "forks-13", "to_node": "producers-0", "length": 15.980908346991134, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "332" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506649.763465486466885, 6005108.493748000822961 ] ] } }, -{ "type": "Feature", "properties": { "id": 12, "type": "DL", "from_node": "forks-15", "to_node": "forks-16", "length": 32.100377577737376, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "12" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506587.964162901043892, 6005263.474022278562188 ], [ 32506587.762997552752495, 6005267.278973447158933 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, -{ "type": "Feature", "properties": { "id": 67, "type": "DL", "from_node": "forks-16", "to_node": "forks-69", "length": 151.55186552467708, "aggregated_forks": "forks-75, forks-68, forks-67, forks-76, forks-73, forks-72, forks-71, forks-70, forks-74", "aggregated_consumer": "consumers-29, consumers-30, consumers-33, consumers-36, consumers-37, consumers-39, consumers-40, consumers-41, consumers-43", "P_heat_max": 349.0, "simultaneity factor": 0.64460891621779715, "aggregated_pipes": "67, 66, 58, 69, 68, 63, 62, 61, 65, 64" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506654.616219203919172, 6005285.733618872240186 ], [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, -{ "type": "Feature", "properties": { "id": 13, "type": "DL", "from_node": "forks-17", "to_node": "forks-18", "length": 7.23397136554079, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "13" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506973.341402161866426, 6004704.626499322243035 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, -{ "type": "Feature", "properties": { "id": 16, "type": "DL", "from_node": "forks-17", "to_node": "forks-22", "length": 340.26583045827465, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "16" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506755.443020176142454, 6004643.41827427316457 ], [ 32506785.601000711321831, 6004608.692504844628274 ], [ 32506825.060652066022158, 6004563.265953474678099 ], [ 32506831.744175631552935, 6004570.930828711017966 ], [ 32506840.820324942469597, 6004580.012318628840148 ], [ 32506853.381121914833784, 6004593.327044745907187 ], [ 32506869.332918431609869, 6004607.993153758347034 ], [ 32506916.344829179346561, 6004648.39671597443521 ], [ 32506938.577460221946239, 6004669.014002612791955 ], [ 32506958.951517555862665, 6004688.794110026210546 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, -{ "type": "Feature", "properties": { "id": 95, "type": "DL", "from_node": "forks-18", "to_node": "forks-19", "length": 62.927218857187952, "aggregated_forks": "forks-102", "aggregated_consumer": "consumers-80", "P_heat_max": 29.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "95, 96" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.355939168483019, 6004702.74669920373708 ], [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, -{ "type": "Feature", "properties": { "id": 74, "type": "DL", "from_node": "forks-18", "to_node": "forks-80", "length": 77.451235857764701, "aggregated_forks": "forks-82, forks-120, forks-81", "aggregated_consumer": "consumers-50, consumers-51, consumers-96", "P_heat_max": 70.0, "simultaneity factor": 0.86383759853147601, "aggregated_pipes": "74, 118, 117, 73" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, -{ "type": "Feature", "properties": { "id": 14, "type": "DL", "from_node": "forks-19", "to_node": "forks-20", "length": 74.004680308054191, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506905.58015414327383, 6004686.432937293313444 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, -{ "type": "Feature", "properties": { "id": 82, "type": "DL", "from_node": "forks-19", "to_node": "forks-90", "length": 14.875469497298331, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "82" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, -{ "type": "Feature", "properties": { "id": 85, "type": "DL", "from_node": "forks-20", "to_node": "forks-22", "length": 53.20861594105358, "aggregated_forks": "forks-21", "aggregated_consumer": "consumers-69", "P_heat_max": 41.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "85, 15" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.067715518176556, 6004667.389202644117177 ], [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506799.387847676873207, 6004657.913845077157021 ], [ 32506782.945804461836815, 6004652.671333202160895 ] ] } }, -{ "type": "Feature", "properties": { "id": 91, "type": "DL", "from_node": "forks-20", "to_node": "forks-98", "length": 21.460964550835705, "aggregated_forks": "forks-99", "aggregated_consumer": "consumers-75", "P_heat_max": 12.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "91, 90" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, -{ "type": "Feature", "properties": { "id": 165, "type": "DL", "from_node": "forks-22", "to_node": "forks-49", "length": 36.994370050809025, "aggregated_forks": "forks-157, forks-156", "aggregated_consumer": "consumers-150, consumers-151", "P_heat_max": 35.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "165, 166, 164" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506774.162415158003569, 6004688.607881280593574 ] ] } }, -{ "type": "Feature", "properties": { "id": 18, "type": "DL", "from_node": "forks-24", "to_node": "forks-58", "length": 85.321200740730944, "aggregated_forks": "forks-25, forks-101, forks-85, forks-57", "aggregated_consumer": "consumers-1, consumers-54, consumers-78, consumers-88", "P_heat_max": 122.0, "simultaneity factor": 0.82270247479188185, "aggregated_pipes": "18, 93, 94, 77, 51" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506823.60973072052002, 6005027.680673941038549 ] ] } }, -{ "type": "Feature", "properties": { "id": 123, "type": "DL", "from_node": "forks-28", "to_node": "forks-35", "length": 60.216019972162059, "aggregated_forks": "forks-41", "aggregated_consumer": "consumers-104", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "123, 30" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.096803050488234, 6005183.699540133588016 ], [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506909.269722919911146, 6005158.977732182480395 ], [ 32506918.045713808387518, 6005132.432110263034701 ], [ 32506918.576595596969128, 6005130.830701379105449 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, -{ "type": "Feature", "properties": { "id": 20, "type": "DL", "from_node": "forks-28", "to_node": "forks-58", "length": 226.64429638655182, "aggregated_forks": "forks-27, forks-26, forks-132, forks-131, forks-130, forks-129, forks-128, forks-127, forks-126, forks-133, forks-125, forks-124", "aggregated_consumer": "consumers-6, consumers-9, consumers-10, consumers-12, consumers-15, consumers-17, consumers-18, consumers-19, consumers-20, consumers-21, consumers-26, consumers-110, consumers-111, consumers-112, consumers-113, consumers-114, consumers-115, consumers-116, consumers-117, consumers-118, consumers-119, consumers-120", "P_heat_max": 623.0, "simultaneity factor": 0.34184987108662163, "aggregated_pipes": "20, 19, 136, 135, 134, 133, 132, 131, 130, 138, 137, 129, 128" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506815.066916454583406, 6005165.936148005537689 ], [ 32506830.834934014827013, 6005171.277921593748033 ], [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506875.229494299739599, 6005178.164427729323506 ], [ 32506877.851715076714754, 6005178.546638377942145 ], [ 32506880.474450293928385, 6005178.583931988105178 ], [ 32506884.531792610883713, 6005179.124058937653899 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, -{ "type": "Feature", "properties": { "id": 21, "type": "DL", "from_node": "forks-29", "to_node": "forks-30", "length": 38.483474769190238, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "21" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506983.146614462137222, 6005024.615053474903107 ], [ 32506984.83666018769145, 6005033.107077995315194 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, -{ "type": "Feature", "properties": { "id": 35, "type": "DL", "from_node": "forks-29", "to_node": "forks-32", "length": 98.859043540365803, "aggregated_forks": "forks-43", "aggregated_consumer": "consumers-14", "P_heat_max": 47.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "35, 36" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506997.676446001976728, 6004973.299755467101932 ], [ 32507001.493707738816738, 6004964.482295924797654 ], [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, -{ "type": "Feature", "properties": { "id": 23, "type": "DL", "from_node": "forks-30", "to_node": "forks-32", "length": 340.86861334048416, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506990.210665870457888, 6005043.184641130268574 ], [ 32507017.173750825226307, 6005049.356270640157163 ], [ 32507024.24387625977397, 6005050.980371178127825 ], [ 32507032.057673122733831, 6005052.683502029627562 ], [ 32507039.030090410262346, 6005054.196211940608919 ], [ 32507095.425084549933672, 6005068.902803309261799 ], [ 32507099.61846774071455, 6005070.12204088177532 ], [ 32507105.079793032258749, 6005048.756587056443095 ], [ 32507108.880019243806601, 6005029.925403732806444 ], [ 32507113.154372714459896, 6005012.519138348288834 ], [ 32507115.639401003718376, 6005000.384041387587786 ], [ 32507119.159936010837555, 6004985.268662626855075 ], [ 32507125.537302955985069, 6004958.130034665577114 ], [ 32507123.130625989288092, 6004953.308572310954332 ], [ 32507119.20999788120389, 6004948.6294163800776 ], [ 32507112.447489432990551, 6004946.304680480621755 ], [ 32507096.74439213424921, 6004940.884161343798041 ], [ 32507081.034716226160526, 6004935.474812150001526 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, -{ "type": "Feature", "properties": { "id": 24, "type": "DL", "from_node": "forks-33", "to_node": "forks-35", "length": 100.11914522174953, "aggregated_forks": "forks-34", "aggregated_consumer": "consumers-2", "P_heat_max": 31.0, "simultaneity factor": 0.95238095238095233, "aggregated_pipes": "24, 25" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506964.114786304533482, 6005106.432262209244072 ], [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506954.997180473059416, 6005134.323578499257565 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, -{ "type": "Feature", "properties": { "id": 32, "type": "DL", "from_node": "forks-33", "to_node": "forks-40", "length": 16.495543603110093, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "32" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506925.620743818581104, 6005110.602306800894439 ], [ 32506931.039892718195915, 6005095.022326570935547 ] ] } }, -{ "type": "Feature", "properties": { "id": 31, "type": "DL", "from_node": "forks-35", "to_node": "forks-40", "length": 16.887330997184353, "aggregated_forks": "", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0, "aggregated_pipes": "31" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.064067415893078, 6005126.549259348772466 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, -{ "type": "Feature", "properties": { "id": 26, "type": "DL", "from_node": "forks-36", "to_node": "forks-40", "length": 91.073493549059549, "aggregated_forks": "forks-37, forks-38, forks-39", "aggregated_consumer": "consumers-24, consumers-106", "P_heat_max": 60.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "26, 27, 124, 28" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506863.05286305770278, 6005113.902283472940326 ], [ 32506868.820386204868555, 6005092.069696916267276 ], [ 32506875.811225049197674, 6005094.349910996854305 ], [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506905.326579809188843, 6005103.973887623287737 ], [ 32506909.884949542582035, 6005105.460533680394292 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, -{ "type": "Feature", "properties": { "id": 44, "type": "DL", "from_node": "forks-49", "to_node": "forks-53", "length": 84.151181727024152, "aggregated_forks": "forks-50, forks-51, forks-52", "aggregated_consumer": "consumers-146, consumers-148, consumers-157", "P_heat_max": 87.0, "simultaneity factor": 0.86383759853147601, "aggregated_pipes": "44, 45, 46, 47" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506772.276173859834671, 6004711.158364219591022 ], [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506770.028414003551006, 6004722.192472075112164 ], [ 32506767.165194243192673, 6004734.672112413682044 ], [ 32506762.504478130489588, 6004749.296516856178641 ], [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506751.563101142644882, 6004748.624020638875663 ], [ 32506740.583661332726479, 6004747.206024529412389 ] ] } }, -{ "type": "Feature", "properties": { "id": 171, "type": "DL", "from_node": "forks-49", "to_node": "forks-162", "length": 44.903287301746815, "aggregated_forks": "forks-163, forks-158, forks-159, forks-160, forks-161", "aggregated_consumer": "consumers-147, consumers-152, consumers-153, consumers-154, consumers-156", "P_heat_max": 199.0, "simultaneity factor": 0.78352616646845885, "aggregated_pipes": "171, 172, 167, 168, 169, 170" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506731.171738628298044, 6004675.642275162041187 ] ] } }, -{ "type": "Feature", "properties": { "id": 57, "type": "DL", "from_node": "forks-58", "to_node": "forks-64", "length": 59.194100373635251, "aggregated_forks": "forks-66, forks-123", "aggregated_consumer": "consumers-27, consumers-108", "P_heat_max": 63.0, "simultaneity factor": 0.90702947845804982, "aggregated_pipes": "57, 125, 126" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506882.491420675069094, 6005033.754231970757246 ] ] } }, -{ "type": "Feature", "properties": { "id": 52, "type": "DL", "from_node": "forks-60", "to_node": "forks-64", "length": 143.38634029109684, "aggregated_forks": "forks-59, forks-145, forks-141, forks-140, forks-149, forks-146, forks-63, forks-62, forks-61, forks-144, forks-139, forks-138, forks-137, forks-152, forks-136, forks-135, forks-134, forks-150, forks-148, forks-147, forks-151, forks-143, forks-142", "aggregated_consumer": "consumers-3, consumers-8, consumers-11, consumers-13, consumers-16, consumers-25, consumers-67, consumers-121, consumers-122, consumers-123, consumers-124, consumers-125, consumers-126, consumers-127, consumers-128, consumers-129, consumers-130, consumers-131, consumers-132, consumers-133, consumers-134, consumers-135, consumers-136, consumers-137, consumers-138, consumers-139, consumers-140, consumers-141, consumers-142, consumers-143", "P_heat_max": 821.0, "simultaneity factor": 0.23137744865585788, "aggregated_pipes": "52, 149, 148, 143, 153, 152, 150, 54, 53, 147, 146, 142, 141, 159, 158, 140, 139, 155, 154, 151, 157, 156, 145, 144" }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506956.185954, 6004953.169992100447416 ], [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506978.648154817521572, 6004957.660532805137336 ] ] } } +{ "type": "Feature", "properties": { "id": 50, "type": "DL", "from_node": "forks-1", "to_node": "forks-29", "length": 42.62329158281149, "aggregated_forks": "forks-42", "aggregated_pipes": "50, 34", "aggregated_consumer": "consumers-0", "P_heat_max": 23.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506968.895207814872265, 6005028.968333293683827 ], [ 32506972.555892087519169, 6005025.500261910259724 ], [ 32506983.83998479694128, 6005006.224120298400521 ] ] } }, +{ "type": "Feature", "properties": { "id": 127, "type": "DL", "from_node": "forks-1", "to_node": "forks-30", "length": 32.596551206237763, "aggregated_forks": "forks-45", "aggregated_pipes": "127, 38", "aggregated_consumer": "consumers-109", "P_heat_max": 33.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506957.828444872051477, 6005039.452800406143069 ], [ 32506977.857269514352083, 6005041.763435141183436 ], [ 32506988.514574155211449, 6005042.992920082062483 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 0, "type": "DL", "from_node": "forks-1", "to_node": "forks-64", "length": 75.628606205256546, "aggregated_forks": "forks-0, forks-65", "aggregated_pipes": "0, 56, 55", "aggregated_consumer": "consumers-4, consumers-5, consumers-22", "P_heat_max": 64.0, "simultaneity factor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506892.243028957396746, 6005034.82775982376188 ], [ 32506909.028953850269318, 6005036.675676329992712 ], [ 32506930.132400441914797, 6005038.999399862252176 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 33, "type": "DL", "from_node": "forks-1", "to_node": "forks-33", "length": 62.273477677616725, "aggregated_forks": "", "aggregated_pipes": "33", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506936.85857841745019, 6005078.441575756296515 ], [ 32506943.116743721067905, 6005060.337174004875124 ], [ 32506957.828444872051477, 6005039.452800406143069 ] ] } }, +{ "type": "Feature", "properties": { "id": 1, "type": "DL", "from_node": "forks-2", "to_node": "forks-3", "length": 84.101415234176301, "aggregated_forks": "", "aggregated_pipes": "1", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506849.56926654279232, 6005309.829775800928473 ], [ 32506852.788861401379108, 6005303.303346553817391 ], [ 32506857.729554239660501, 6005293.263527888804674 ], [ 32506874.377478789538145, 6005259.486231505870819 ], [ 32506877.43430345505476, 6005252.781554163433611 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 5, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 32.69106870034981, "aggregated_forks": "", "aggregated_pipes": "5", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506831.632401779294014, 6005311.127199975773692 ], [ 32506836.87445405870676, 6005313.4047647183761 ], [ 32506846.360497884452343, 6005317.858291626907885 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 40, "type": "DL", "from_node": "forks-2", "to_node": "forks-7", "length": 26.199323804115799, "aggregated_forks": "forks-46", "aggregated_pipes": "40, 39", "aggregated_consumer": "consumers-42", "P_heat_max": 31.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506828.487186539918184, 6005307.105897605419159 ], [ 32506834.086465626955032, 6005306.0683119809255 ], [ 32506839.983860768377781, 6005306.377473699860275 ], [ 32506849.56926654279232, 6005309.829775800928473 ] ] } }, +{ "type": "Feature", "properties": { "id": 29, "type": "DL", "from_node": "forks-3", "to_node": "forks-28", "length": 52.413555485224038, "aggregated_forks": "", "aggregated_pipes": "29", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506884.118155308067799, 6005233.286900076083839 ], [ 32506897.695788338780403, 6005193.641477124765515 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 22, "type": "DL", "from_node": "forks-3", "to_node": "forks-69", "length": 201.8640742339384, "aggregated_forks": "forks-31", "aggregated_pipes": "22, 59", "aggregated_consumer": "consumers-34, consumers-38", "P_heat_max": 50.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506758.487752359360456, 6005302.260412618517876 ], [ 32506761.41373110935092, 6005288.247852889820933 ], [ 32506768.106216792017221, 6005284.719470574520528 ], [ 32506768.58904629573226, 6005275.807909052819014 ], [ 32506772.436157487332821, 6005237.327239649370313 ], [ 32506778.249345108866692, 6005228.412388440221548 ], [ 32506784.139542851597071, 6005224.816091160289943 ], [ 32506794.208307005465031, 6005219.178695933893323 ], [ 32506815.131370950490236, 6005219.420987154357135 ], [ 32506849.753633692860603, 6005225.280305446125567 ], [ 32506870.448009263724089, 6005230.106597077101469 ], [ 32506874.400354873389006, 6005231.024857359007001 ], [ 32506884.118155308067799, 6005233.286900076083839 ] ] } }, +{ "type": "Feature", "properties": { "id": 2, "type": "DL", "from_node": "forks-4", "to_node": "forks-5", "length": 49.65468218997448, "aggregated_forks": "", "aggregated_pipes": "2", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507066.510839566588402, 6004782.174897360615432 ], [ 32507072.530063845217228, 6004784.309275067411363 ], [ 32507075.421466507017612, 6004787.996558192186058 ], [ 32507077.794186722487211, 6004793.774814426898956 ], [ 32507077.255080308765173, 6004800.672369468957186 ], [ 32507074.454373985528946, 6004805.919742610305548 ], [ 32507067.962735038250685, 6004809.770653950050473 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 42, "type": "DL", "from_node": "forks-4", "to_node": "forks-17", "length": 123.29475616582023, "aggregated_forks": "forks-47, forks-48", "aggregated_pipes": "42, 87, 43", "aggregated_consumer": "consumers-71, consumers-107", "P_heat_max": 85.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507059.691856741905212, 6004782.464862993918359 ], [ 32507058.269206289201975, 6004774.08448775857687 ], [ 32507055.049979239702225, 6004762.886378192342818 ], [ 32507049.614296812564135, 6004750.349710370413959 ], [ 32507040.424831099808216, 6004741.460822491906583 ], [ 32507038.577310808002949, 6004739.673732661642134 ], [ 32506999.825161140412092, 6004717.383402613922954 ], [ 32506994.376538667827845, 6004714.249341813847423 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 4, "type": "DL", "from_node": "forks-4", "to_node": "forks-6", "length": 19.483020231991176, "aggregated_forks": "", "aggregated_pipes": "4", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507051.015878472477198, 6004789.583621971309185 ], [ 32507055.721855498850346, 6004784.328024078160524 ], [ 32507059.691856741905212, 6004782.464862993918359 ] ] } }, +{ "type": "Feature", "properties": { "id": 3, "type": "DL", "from_node": "forks-5", "to_node": "forks-6", "length": 20.118775802046997, "aggregated_forks": "", "aggregated_pipes": "3", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507062.904994439333677, 6004810.397108196280897 ], [ 32507057.250238422304392, 6004808.886380590498447 ], [ 32507053.053128503262997, 6004805.67554706055671 ], [ 32507050.371553130447865, 6004801.309886945411563 ], [ 32507049.679193664342165, 6004797.514717631973326 ] ] } }, +{ "type": "Feature", "properties": { "id": 37, "type": "DL", "from_node": "forks-5", "to_node": "forks-32", "length": 112.75341151061222, "aggregated_forks": "forks-44, forks-79", "aggregated_pipes": "37, 72, 71", "aggregated_consumer": "consumers-48, consumers-62", "P_heat_max": 51.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507023.054066255688667, 6004915.480935483239591 ], [ 32507034.713617395609617, 6004886.971107840538025 ], [ 32507047.633258003741503, 6004855.380120977759361 ], [ 32507055.788943462073803, 6004835.756441549398005 ], [ 32507056.958943579345942, 6004832.941263437271118 ], [ 32507062.226572059094906, 6004818.80764533020556 ], [ 32507062.904994439333677, 6004810.397108196280897 ] ] } }, +{ "type": "Feature", "properties": { "id": 6, "type": "DL", "from_node": "forks-6", "to_node": "forks-24", "length": 368.44406427251545, "aggregated_forks": "forks-8, forks-84, forks-96, forks-97, forks-114, forks-92, forks-93, forks-117, forks-115, forks-116, forks-121, forks-118, forks-119, forks-109, forks-110, forks-111, forks-112, forks-113, forks-122, forks-88, forks-86, forks-87, forks-89, forks-77, forks-78, forks-106, forks-103, forks-104, forks-100", "aggregated_pipes": "6, 76, 88, 89, 109, 110, 84, 112, 113, 111, 119, 120, 115, 116, 104, 105, 107, 108, 121, 122, 79, 78, 80, 81, 70, 100, 101, 97, 106, 92", "aggregated_consumer": "consumers-46, consumers-47, consumers-53, consumers-55, consumers-56, consumers-58, consumers-59, consumers-61, consumers-63, consumers-65, consumers-68, consumers-72, consumers-73, consumers-74, consumers-76, consumers-77, consumers-79, consumers-81, consumers-83, consumers-84, consumers-87, consumers-89, consumers-90, consumers-91, consumers-92, consumers-93, consumers-95, consumers-97, consumers-98, consumers-99, consumers-100, consumers-101, consumers-102, consumers-103", "P_heat_max": 1104.0, "simultaneity factor": 0.19035479962020585 }, "geometry": { "type": "LineString", "coordinates": [ [ 32507049.679193664342165, 6004797.514717631973326 ], [ 32507040.76520436629653, 6004798.157553435303271 ], [ 32507036.399958070367575, 6004798.217646886594594 ], [ 32507029.144705783575773, 6004800.936656161211431 ], [ 32507025.222955066710711, 6004802.406388177536428 ], [ 32507012.298958111554384, 6004811.175051881931722 ], [ 32507003.270227983593941, 6004817.30085788667202 ], [ 32506996.760915204882622, 6004821.717291509732604 ], [ 32506986.214231237769127, 6004828.872997689992189 ], [ 32506963.536328300833702, 6004844.25948416814208 ], [ 32506959.887568239122629, 6004846.735092141665518 ], [ 32506953.613189354538918, 6004851.448096404783428 ], [ 32506939.138930920511484, 6004862.320446154102683 ], [ 32506932.130744285881519, 6004867.584650641307235 ], [ 32506919.662733968347311, 6004876.950005657039583 ], [ 32506917.096217695623636, 6004878.877846222370863 ], [ 32506900.988204181194305, 6004890.977392286993563 ], [ 32506888.624447055160999, 6004900.264437444508076 ], [ 32506873.690982896834612, 6004911.48171990737319 ], [ 32506862.94104577600956, 6004919.556542991660535 ], [ 32506853.581471733748913, 6004926.586993841454387 ], [ 32506842.017403721809387, 6004935.273351938463748 ], [ 32506834.486889701336622, 6004940.929903021082282 ], [ 32506832.823352623730898, 6004942.179470107890666 ], [ 32506823.312253437936306, 6004949.323739178478718 ], [ 32506817.141993094235659, 6004953.958534721285105 ], [ 32506813.553776793181896, 6004956.449514558538795 ], [ 32506808.533012978732586, 6004959.934984880499542 ], [ 32506797.956073492765427, 6004967.27761441655457 ], [ 32506795.28539727255702, 6004969.1316276807338 ], [ 32506787.188013788312674, 6004974.752921744249761 ], [ 32506778.851514894515276, 6004980.540212396532297 ], [ 32506775.654936447739601, 6004982.75931285880506 ], [ 32506768.873632948845625, 6004987.334266549907625 ], [ 32506760.00166030600667, 6004993.319673928432167 ], [ 32506746.461005732417107, 6005002.454771279357374 ] ] } }, +{ "type": "Feature", "properties": { "id": 17, "type": "DL", "from_node": "forks-7", "to_node": "forks-69", "length": 72.210147634926642, "aggregated_forks": "forks-23", "aggregated_pipes": "17, 60", "aggregated_consumer": "consumers-35", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506824.270652454346418, 6005308.401445041410625 ], [ 32506818.050234023481607, 6005310.350491045974195 ], [ 32506800.642851490527391, 6005319.804492926225066 ], [ 32506796.837095130234957, 6005321.278694453649223 ], [ 32506793.04543898999691, 6005322.040828321129084 ], [ 32506788.133238516747952, 6005321.710924620740116 ], [ 32506785.853551879525185, 6005321.162249530665576 ], [ 32506756.039207898080349, 6005313.986531776376069 ] ] } }, +{ "type": "Feature", "properties": { "id": 8, "type": "DL", "from_node": "forks-10", "to_node": "forks-11", "length": 58.167007772036605, "aggregated_forks": "", "aggregated_pipes": "8", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506643.196130774915218, 6005070.34288255404681 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 160, "type": "DL", "from_node": "forks-10", "to_node": "forks-155", "length": 114.44122883508933, "aggregated_forks": "forks-153, forks-107, forks-108, forks-154", "aggregated_pipes": "160, 161, 102, 162, 163", "aggregated_consumer": "consumers-44, consumers-85, consumers-144, consumers-145", "P_heat_max": 98.0, "simultaneity factor": 0.82270247479188185 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506654.861689653247595, 6005025.33106526453048 ], [ 32506668.398750115185976, 6004969.102509101852775 ], [ 32506672.19807019457221, 6004953.321366431191564 ], [ 32506676.925561025738716, 6004933.684903668239713 ], [ 32506678.807402063161135, 6004925.868346692062914 ], [ 32506681.648138843476772, 6004914.06884797103703 ] ] } }, +{ "type": "Feature", "properties": { "id": 7, "type": "DL", "from_node": "forks-10", "to_node": "forks-24", "length": 94.548892921472756, "aggregated_forks": "forks-9, forks-95, forks-94, forks-105, forks-91, forks-83", "aggregated_pipes": "7, 103, 86, 99, 98, 83, 75", "aggregated_consumer": "consumers-49, consumers-52, consumers-64, consumers-70, consumers-82, consumers-86", "P_heat_max": 208.0, "simultaneity factor": 0.7462153966366275 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506731.285512860864401, 6005005.676744327880442 ], [ 32506721.357687663286924, 6005007.784562867134809 ], [ 32506712.230517812073231, 6005009.722390885464847 ], [ 32506707.760920882225037, 6005010.671349905431271 ], [ 32506703.2613147161901, 6005011.626680312678218 ], [ 32506689.959371760487556, 6005014.698657347820699 ], [ 32506674.726261701434851, 6005018.216621937230229 ], [ 32506654.861689653247595, 6005025.33106526453048 ] ] } }, +{ "type": "Feature", "properties": { "id": 9, "type": "DL", "from_node": "forks-11", "to_node": "forks-12", "length": 16.145295829953266, "aggregated_forks": "", "aggregated_pipes": "9", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506640.289495009928942, 6005081.643143246881664 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 49, "type": "DL", "from_node": "forks-11", "to_node": "forks-54", "length": 88.352582955426328, "aggregated_forks": "forks-56, forks-55", "aggregated_pipes": "49, 114, 48", "aggregated_consumer": "consumers-94", "P_heat_max": 33.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506726.416745118796825, 6005101.28377428650856 ], [ 32506696.986993879079819, 6005095.343915767967701 ], [ 32506665.899223614484072, 6005087.829689490608871 ], [ 32506648.500972010195255, 6005083.624357352033257 ], [ 32506640.289495009928942, 6005081.643143246881664 ] ] } }, +{ "type": "Feature", "properties": { "id": 173, "type": "DL", "from_node": "forks-12", "to_node": "forks-13", "length": 7.8781933938920234, "aggregated_forks": "", "aggregated_pipes": "173", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506635.980503581464291, 6005097.202808098867536 ], [ 32506634.197308879345655, 6005104.876539121381938 ] ] } }, +{ "type": "Feature", "properties": { "id": 41, "type": "DL", "from_node": "forks-12", "to_node": "forks-15", "length": 186.83480570927742, "aggregated_forks": "", "aggregated_pipes": "41", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506580.43083043769002, 6005248.253432797268033 ], [ 32506586.498014286160469, 6005225.686575460247695 ], [ 32506599.077679563313723, 6005179.529892827384174 ], [ 32506610.953214820474386, 6005133.194214399904013 ], [ 32506617.463154081255198, 6005106.92293609213084 ], [ 32506620.289027590304613, 6005097.291508676484227 ], [ 32506622.654141690582037, 6005095.025115229189396 ], [ 32506626.497879713773727, 6005094.452065224759281 ], [ 32506635.980503581464291, 6005097.202808098867536 ] ] } }, +{ "type": "Feature", "properties": { "id": 10, "type": "DL", "from_node": "forks-13", "to_node": "forks-15", "length": 160.52780708227937, "aggregated_forks": "forks-14", "aggregated_pipes": "10, 11", "aggregated_consumer": "consumers-32", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506632.455033458769321, 6005112.374179692007601 ], [ 32506627.507085636258125, 6005132.205481625162065 ], [ 32506623.818144433200359, 6005147.66591256391257 ], [ 32506620.064255829900503, 6005162.937104214914143 ], [ 32506615.55568515136838, 6005181.278110017068684 ], [ 32506613.350609008222818, 6005190.265099276788533 ], [ 32506610.443355057388544, 6005202.099448162131011 ], [ 32506608.262401930987835, 6005207.926569108851254 ], [ 32506604.114207334816456, 6005225.255598852410913 ], [ 32506597.784114979207516, 6005240.000177503563464 ], [ 32506592.558225195854902, 6005249.951128247193992 ], [ 32506591.320538651198149, 6005252.307886299677193 ], [ 32506589.465335622429848, 6005258.491528047248721 ] ] } }, +{ "type": "Feature", "properties": { "id": 332, "type": "GL", "from_node": "forks-13", "to_node": "producers-0", "length": 15.980908346991134, "aggregated_forks": "", "aggregated_pipes": "332", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506634.197308879345655, 6005104.876539121381938 ], [ 32506649.763465486466885, 6005108.493748000822961 ] ] } }, +{ "type": "Feature", "properties": { "id": 12, "type": "DL", "from_node": "forks-15", "to_node": "forks-16", "length": 32.100377577737376, "aggregated_forks": "", "aggregated_pipes": "12", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506589.465335622429848, 6005258.491528047248721 ], [ 32506587.964162901043892, 6005263.474022278562188 ], [ 32506587.762997552752495, 6005267.278973447158933 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, +{ "type": "Feature", "properties": { "id": 67, "type": "DL", "from_node": "forks-16", "to_node": "forks-69", "length": 151.55186552467708, "aggregated_forks": "forks-75, forks-68, forks-67, forks-76, forks-73, forks-72, forks-71, forks-70, forks-74", "aggregated_pipes": "67, 66, 58, 69, 68, 63, 62, 61, 65, 64", "aggregated_consumer": "consumers-29, consumers-30, consumers-33, consumers-36, consumers-37, consumers-39, consumers-40, consumers-41, consumers-43", "P_heat_max": 349.0, "simultaneity factor": 0.64460891621779715 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506756.039207898080349, 6005313.986531776376069 ], [ 32506740.842956084758043, 6005309.753385184332728 ], [ 32506727.893954079598188, 6005306.146244134753942 ], [ 32506716.644411128014326, 6005303.012513199821115 ], [ 32506702.223685432225466, 6005298.995401179417968 ], [ 32506690.322933010756969, 6005295.680265962146223 ], [ 32506678.330150615423918, 6005292.339494397863746 ], [ 32506662.47467739507556, 6005287.92271167691797 ], [ 32506654.616219203919172, 6005285.733618872240186 ], [ 32506640.347953863441944, 6005281.794904010370374 ], [ 32506624.177454806864262, 6005277.331082834862173 ], [ 32506610.017046678811312, 6005273.422141656279564 ] ] } }, +{ "type": "Feature", "properties": { "id": 13, "type": "DL", "from_node": "forks-17", "to_node": "forks-18", "length": 7.23397136554079, "aggregated_forks": "", "aggregated_pipes": "13", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506973.341402161866426, 6004704.626499322243035 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 16, "type": "DL", "from_node": "forks-17", "to_node": "forks-22", "length": 340.26583045827465, "aggregated_forks": "", "aggregated_pipes": "16", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506755.443020176142454, 6004643.41827427316457 ], [ 32506785.601000711321831, 6004608.692504844628274 ], [ 32506825.060652066022158, 6004563.265953474678099 ], [ 32506831.744175631552935, 6004570.930828711017966 ], [ 32506840.820324942469597, 6004580.012318628840148 ], [ 32506853.381121914833784, 6004593.327044745907187 ], [ 32506869.332918431609869, 6004607.993153758347034 ], [ 32506916.344829179346561, 6004648.39671597443521 ], [ 32506938.577460221946239, 6004669.014002612791955 ], [ 32506958.951517555862665, 6004688.794110026210546 ], [ 32506973.341402161866426, 6004704.626499322243035 ] ] } }, +{ "type": "Feature", "properties": { "id": 95, "type": "DL", "from_node": "forks-18", "to_node": "forks-19", "length": 62.927218857187952, "aggregated_forks": "forks-102", "aggregated_pipes": "95, 96", "aggregated_consumer": "consumers-80", "P_heat_max": 29.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506966.355939168483019, 6004702.74669920373708 ], [ 32506946.964905604720116, 6004697.541654058732092 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 74, "type": "DL", "from_node": "forks-18", "to_node": "forks-80", "length": 77.451235857764701, "aggregated_forks": "forks-82, forks-120, forks-81", "aggregated_pipes": "74, 118, 117, 73", "aggregated_consumer": "consumers-50, consumers-51, consumers-96", "P_heat_max": 70.0, "simultaneity factor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506944.880887020379305, 6004777.161187518388033 ], [ 32506950.185454107820988, 6004758.780014672316611 ], [ 32506953.373247098177671, 6004747.733802417293191 ], [ 32506959.298812948167324, 6004727.200769591145217 ], [ 32506966.355939168483019, 6004702.74669920373708 ] ] } }, +{ "type": "Feature", "properties": { "id": 14, "type": "DL", "from_node": "forks-19", "to_node": "forks-20", "length": 74.004680308054191, "aggregated_forks": "", "aggregated_pipes": "14", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506905.58015414327383, 6004686.432937293313444 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 82, "type": "DL", "from_node": "forks-19", "to_node": "forks-90", "length": 14.875469497298331, "aggregated_forks": "", "aggregated_pipes": "82", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.362411059439182, 6004700.697937680408359 ], [ 32506905.58015414327383, 6004686.432937293313444 ] ] } }, +{ "type": "Feature", "properties": { "id": 85, "type": "DL", "from_node": "forks-20", "to_node": "forks-22", "length": 53.20861594105358, "aggregated_forks": "forks-21", "aggregated_pipes": "85, 15", "aggregated_consumer": "consumers-69", "P_heat_max": 41.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506834.067715518176556, 6004667.389202644117177 ], [ 32506805.844013649970293, 6004659.677821842953563 ], [ 32506799.387847676873207, 6004657.913845077157021 ], [ 32506782.945804461836815, 6004652.671333202160895 ] ] } }, +{ "type": "Feature", "properties": { "id": 91, "type": "DL", "from_node": "forks-20", "to_node": "forks-98", "length": 21.460964550835705, "aggregated_forks": "forks-99", "aggregated_pipes": "91, 90", "aggregated_consumer": "consumers-75", "P_heat_max": 12.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506829.537949100136757, 6004688.36667188256979 ], [ 32506830.970641527324915, 6004681.731834987178445 ], [ 32506834.067715518176556, 6004667.389202644117177 ] ] } }, +{ "type": "Feature", "properties": { "id": 165, "type": "DL", "from_node": "forks-22", "to_node": "forks-49", "length": 36.994370050809025, "aggregated_forks": "forks-157, forks-156", "aggregated_pipes": "165, 166, 164", "aggregated_consumer": "consumers-150, consumers-151", "P_heat_max": 35.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506782.945804461836815, 6004652.671333202160895 ], [ 32506778.520040560513735, 6004670.778998893685639 ], [ 32506777.753673400729895, 6004673.914529995061457 ], [ 32506774.162415158003569, 6004688.607881280593574 ] ] } }, +{ "type": "Feature", "properties": { "id": 18, "type": "DL", "from_node": "forks-24", "to_node": "forks-58", "length": 85.321200740730944, "aggregated_forks": "forks-25, forks-101, forks-85, forks-57", "aggregated_pipes": "18, 93, 94, 77, 51", "aggregated_consumer": "consumers-1, consumers-54, consumers-78, consumers-88", "P_heat_max": 122.0, "simultaneity factor": 0.82270247479188185 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506746.461005732417107, 6005002.454771279357374 ], [ 32506758.059295017272234, 6005017.481309016235173 ], [ 32506769.814468886703253, 6005019.310363342985511 ], [ 32506783.708717506378889, 6005021.472248470410705 ], [ 32506803.475475002080202, 6005024.547870636917651 ], [ 32506823.60973072052002, 6005027.680673941038549 ] ] } }, +{ "type": "Feature", "properties": { "id": 123, "type": "DL", "from_node": "forks-28", "to_node": "forks-35", "length": 60.216019972162059, "aggregated_forks": "forks-41", "aggregated_pipes": "123, 30", "aggregated_consumer": "consumers-104", "P_heat_max": 36.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506901.096803050488234, 6005183.699540133588016 ], [ 32506906.060875575989485, 6005168.68399494048208 ], [ 32506909.269722919911146, 6005158.977732182480395 ], [ 32506918.045713808387518, 6005132.432110263034701 ], [ 32506918.576595596969128, 6005130.830701379105449 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 20, "type": "DL", "from_node": "forks-28", "to_node": "forks-58", "length": 226.64429638655182, "aggregated_forks": "forks-27, forks-26, forks-132, forks-131, forks-130, forks-129, forks-128, forks-127, forks-126, forks-133, forks-125, forks-124", "aggregated_pipes": "20, 19, 136, 135, 134, 133, 132, 131, 130, 138, 137, 129, 128", "aggregated_consumer": "consumers-6, consumers-9, consumers-10, consumers-12, consumers-15, consumers-17, consumers-18, consumers-19, consumers-20, consumers-21, consumers-26, consumers-110, consumers-111, consumers-112, consumers-113, consumers-114, consumers-115, consumers-116, consumers-117, consumers-118, consumers-119, consumers-120", "P_heat_max": 623.0, "simultaneity factor": 0.34184987108662163 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506822.627499092370272, 6005043.576945948414505 ], [ 32506821.762899231165648, 6005057.56948518846184 ], [ 32506821.297996897250414, 6005065.09338659979403 ], [ 32506820.38668043166399, 6005079.841979512944818 ], [ 32506819.887813340872526, 6005087.915560906752944 ], [ 32506818.82740742713213, 6005105.076992444694042 ], [ 32506818.465808801352978, 6005110.929044021293521 ], [ 32506817.597539994865656, 6005124.98096083290875 ], [ 32506817.132637642323971, 6005132.504862571135163 ], [ 32506816.082293409854174, 6005149.503457554616034 ], [ 32506815.631210200488567, 6005156.803712630644441 ], [ 32506815.066916454583406, 6005165.936148005537689 ], [ 32506830.834934014827013, 6005171.277921593748033 ], [ 32506857.420281685888767, 6005175.401853865012527 ], [ 32506875.229494299739599, 6005178.164427729323506 ], [ 32506877.851715076714754, 6005178.546638377942145 ], [ 32506880.474450293928385, 6005178.583931988105178 ], [ 32506884.531792610883713, 6005179.124058937653899 ], [ 32506901.096803050488234, 6005183.699540133588016 ] ] } }, +{ "type": "Feature", "properties": { "id": 21, "type": "DL", "from_node": "forks-29", "to_node": "forks-30", "length": 38.483474769190238, "aggregated_forks": "", "aggregated_pipes": "21", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506983.146614462137222, 6005024.615053474903107 ], [ 32506984.83666018769145, 6005033.107077995315194 ], [ 32506990.210665870457888, 6005043.184641130268574 ] ] } }, +{ "type": "Feature", "properties": { "id": 35, "type": "DL", "from_node": "forks-29", "to_node": "forks-32", "length": 98.859043540365803, "aggregated_forks": "forks-43", "aggregated_pipes": "35, 36", "aggregated_consumer": "consumers-14", "P_heat_max": 47.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506983.83998479694128, 6005006.224120298400521 ], [ 32506997.676446001976728, 6004973.299755467101932 ], [ 32507001.493707738816738, 6004964.482295924797654 ], [ 32507016.180187117308378, 6004930.535648110322654 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 23, "type": "DL", "from_node": "forks-30", "to_node": "forks-32", "length": 340.86861334048416, "aggregated_forks": "", "aggregated_pipes": "23", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506990.210665870457888, 6005043.184641130268574 ], [ 32507017.173750825226307, 6005049.356270640157163 ], [ 32507024.24387625977397, 6005050.980371178127825 ], [ 32507032.057673122733831, 6005052.683502029627562 ], [ 32507039.030090410262346, 6005054.196211940608919 ], [ 32507095.425084549933672, 6005068.902803309261799 ], [ 32507099.61846774071455, 6005070.12204088177532 ], [ 32507105.079793032258749, 6005048.756587056443095 ], [ 32507108.880019243806601, 6005029.925403732806444 ], [ 32507113.154372714459896, 6005012.519138348288834 ], [ 32507115.639401003718376, 6005000.384041387587786 ], [ 32507119.159936010837555, 6004985.268662626855075 ], [ 32507125.537302955985069, 6004958.130034665577114 ], [ 32507123.130625989288092, 6004953.308572310954332 ], [ 32507119.20999788120389, 6004948.6294163800776 ], [ 32507112.447489432990551, 6004946.304680480621755 ], [ 32507096.74439213424921, 6004940.884161343798041 ], [ 32507081.034716226160526, 6004935.474812150001526 ], [ 32507023.054066255688667, 6004915.480935483239591 ] ] } }, +{ "type": "Feature", "properties": { "id": 24, "type": "DL", "from_node": "forks-33", "to_node": "forks-35", "length": 100.11914522174953, "aggregated_forks": "forks-34", "aggregated_pipes": "24, 25", "aggregated_consumer": "consumers-2", "P_heat_max": 31.0, "simultaneity factor": 0.95238095238095233 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506931.039892718195915, 6005095.022326570935547 ], [ 32506964.114786304533482, 6005106.432262209244072 ], [ 32506959.267871152609587, 6005121.25927338283509 ], [ 32506954.997180473059416, 6005134.323578499257565 ], [ 32506920.064067415893078, 6005126.549259348772466 ] ] } }, +{ "type": "Feature", "properties": { "id": 32, "type": "DL", "from_node": "forks-33", "to_node": "forks-40", "length": 16.495543603110093, "aggregated_forks": "", "aggregated_pipes": "32", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506925.620743818581104, 6005110.602306800894439 ], [ 32506931.039892718195915, 6005095.022326570935547 ] ] } }, +{ "type": "Feature", "properties": { "id": 31, "type": "DL", "from_node": "forks-35", "to_node": "forks-40", "length": 16.887330997184353, "aggregated_forks": "", "aggregated_pipes": "31", "aggregated_consumer": "", "P_heat_max": 0.0, "simultaneity factor": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506920.064067415893078, 6005126.549259348772466 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 26, "type": "DL", "from_node": "forks-36", "to_node": "forks-40", "length": 91.073493549059549, "aggregated_forks": "forks-37, forks-38, forks-39", "aggregated_pipes": "26, 27, 124, 28", "aggregated_consumer": "consumers-24, consumers-106", "P_heat_max": 60.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506871.223349299281836, 6005117.018729403614998 ], [ 32506863.05286305770278, 6005113.902283472940326 ], [ 32506868.820386204868555, 6005092.069696916267276 ], [ 32506875.811225049197674, 6005094.349910996854305 ], [ 32506890.007688235491514, 6005098.978906005620956 ], [ 32506894.688163235783577, 6005100.505053408443928 ], [ 32506905.326579809188843, 6005103.973887623287737 ], [ 32506909.884949542582035, 6005105.460533680394292 ], [ 32506925.620743818581104, 6005110.602306800894439 ] ] } }, +{ "type": "Feature", "properties": { "id": 44, "type": "DL", "from_node": "forks-49", "to_node": "forks-53", "length": 84.151181727024152, "aggregated_forks": "forks-50, forks-51, forks-52", "aggregated_pipes": "44, 45, 46, 47", "aggregated_consumer": "consumers-146, consumers-148, consumers-157", "P_heat_max": 87.0, "simultaneity factor": 0.86383759853147601 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506774.079425685107708, 6004700.679925447329879 ], [ 32506772.276173859834671, 6004711.158364219591022 ], [ 32506770.973308652639389, 6004717.554045321419835 ], [ 32506770.028414003551006, 6004722.192472075112164 ], [ 32506767.165194243192673, 6004734.672112413682044 ], [ 32506762.504478130489588, 6004749.296516856178641 ], [ 32506756.913997627794743, 6004748.952905901707709 ], [ 32506751.563101142644882, 6004748.624020638875663 ], [ 32506740.583661332726479, 6004747.206024529412389 ] ] } }, +{ "type": "Feature", "properties": { "id": 171, "type": "DL", "from_node": "forks-49", "to_node": "forks-162", "length": 44.903287301746815, "aggregated_forks": "forks-163, forks-158, forks-159, forks-160, forks-161", "aggregated_pipes": "171, 172, 167, 168, 169, 170", "aggregated_consumer": "consumers-147, consumers-152, consumers-153, consumers-154, consumers-156", "P_heat_max": 199.0, "simultaneity factor": 0.78352616646845885 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506774.162415158003569, 6004688.607881280593574 ], [ 32506756.704313155263662, 6004683.342672811821103 ], [ 32506754.168573398143053, 6004682.577916228212416 ], [ 32506748.453176651149988, 6004680.854203343391418 ], [ 32506742.56112327426672, 6004679.077212388627231 ], [ 32506736.701256807893515, 6004677.30992872081697 ], [ 32506731.171738628298044, 6004675.642275162041187 ] ] } }, +{ "type": "Feature", "properties": { "id": 57, "type": "DL", "from_node": "forks-58", "to_node": "forks-64", "length": 59.194100373635251, "aggregated_forks": "forks-66, forks-123", "aggregated_pipes": "57, 125, 126", "aggregated_consumer": "consumers-27, consumers-108", "P_heat_max": 63.0, "simultaneity factor": 0.90702947845804982 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506823.60973072052002, 6005027.680673941038549 ], [ 32506851.069212395697832, 6005030.513078302145004 ], [ 32506863.975002713501453, 6005031.844291222281754 ], [ 32506882.491420675069094, 6005033.754231970757246 ] ] } }, +{ "type": "Feature", "properties": { "id": 52, "type": "DL", "from_node": "forks-60", "to_node": "forks-64", "length": 143.38634029109684, "aggregated_forks": "forks-59, forks-145, forks-141, forks-140, forks-149, forks-146, forks-63, forks-62, forks-61, forks-144, forks-139, forks-138, forks-137, forks-152, forks-136, forks-135, forks-134, forks-150, forks-148, forks-147, forks-151, forks-143, forks-142", "aggregated_pipes": "52, 149, 148, 143, 153, 152, 150, 54, 53, 147, 146, 142, 141, 159, 158, 140, 139, 155, 154, 151, 157, 156, 145, 144", "aggregated_consumer": "consumers-3, consumers-8, consumers-11, consumers-13, consumers-16, consumers-25, consumers-67, consumers-121, consumers-122, consumers-123, consumers-124, consumers-125, consumers-126, consumers-127, consumers-128, consumers-129, consumers-130, consumers-131, consumers-132, consumers-133, consumers-134, consumers-135, consumers-136, consumers-137, consumers-138, consumers-139, consumers-140, consumers-141, consumers-142, consumers-143", "P_heat_max": 821.0, "simultaneity factor": 0.23137744865585788 }, "geometry": { "type": "LineString", "coordinates": [ [ 32506882.491420675069094, 6005033.754231970757246 ], [ 32506896.847592517733574, 6005009.211856375448406 ], [ 32506899.291071772575378, 6005005.034643517807126 ], [ 32506901.873548362404108, 6005000.619809870608151 ], [ 32506903.346458375453949, 6004998.101818922907114 ], [ 32506906.03665117174387, 6004993.502840675413609 ], [ 32506908.726193338632584, 6004988.904974704608321 ], [ 32506911.433677285909653, 6004984.276436629705131 ], [ 32506914.126209385693073, 6004979.673459259793162 ], [ 32506916.818285372108221, 6004975.071261634118855 ], [ 32506918.216524910181761, 6004972.680922463536263 ], [ 32506920.905918728560209, 6004968.083310093730688 ], [ 32506923.4450902082026, 6004963.742508042603731 ], [ 32506926.560590386390686, 6004958.416452016681433 ], [ 32506927.96684343740344, 6004956.745063732378185 ], [ 32506932.404087860137224, 6004951.471220350824296 ], [ 32506939.293046627193689, 6004950.686475986614823 ], [ 32506942.140576533973217, 6004950.362104319036007 ], [ 32506946.472613282501698, 6004951.228145341388881 ], [ 32506951.768994342535734, 6004952.286973678506911 ], [ 32506956.185954, 6004953.169992100447416 ], [ 32506961.455688826739788, 6004954.223493443801999 ], [ 32506966.725317884236574, 6004955.276973642408848 ], [ 32506971.996567249298096, 6004956.330777766183019 ], [ 32506978.648154817521572, 6004957.660532805137336 ] ] } } ] } From 4855f3b83bc664769e8e1a0dd6d8d1073e22b2dd Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Wed, 19 Oct 2022 22:58:25 +0200 Subject: [PATCH 13/14] added the last fork to super pipes --- dhnx/gistools/geometry_operations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dhnx/gistools/geometry_operations.py b/dhnx/gistools/geometry_operations.py index f220cdba..6d753f39 100644 --- a/dhnx/gistools/geometry_operations.py +++ b/dhnx/gistools/geometry_operations.py @@ -699,8 +699,8 @@ def aggregation(forks, pipes, consumers, producers): merged_segment_i_a.at[0, 'to_node'] = last_fork_segment_i_a - # # add column 'aggregated_forks' - str_aggregated_forks_segment_i_a = ', '.join(aggregated_forks_segment_i_a) + # # add column 'aggregated_forks' # added also the last fork of a superpipe + str_aggregated_forks_segment_i_a = ', '.join(aggregated_forks_segment_i_a) + ', ' + last_fork_segment_i_a merged_segment_i_a.at[0, 'aggregated_forks'] = str_aggregated_forks_segment_i_a # # add column 'aggregated_pipes' From 9b7445d51fc96311677cf902c92908c5a3244d32 Mon Sep 17 00:00:00 2001 From: Johannes Nitsch Date: Thu, 20 Oct 2022 22:37:09 +0200 Subject: [PATCH 14/14] adjusted aggregated forks of superpipes. the last and first forks are also aggregated, if they are not already. added removed_con_prod_forks --- dhnx/gistools/geometry_operations.py | 54 +++++++++++++++++++++------- 1 file changed, 42 insertions(+), 12 deletions(-) diff --git a/dhnx/gistools/geometry_operations.py b/dhnx/gistools/geometry_operations.py index 6d753f39..984d00c8 100644 --- a/dhnx/gistools/geometry_operations.py +++ b/dhnx/gistools/geometry_operations.py @@ -39,6 +39,7 @@ from shapely import geometry from shapely import ops + def create_forks(lines): """ Creates a forks(nodes) GeoDataFrame from a "line"-GeoDataFrame @@ -515,8 +516,8 @@ def check_crs(gdf, crs=4647): return gdf -def aggregation(forks, pipes, consumers, producers): +def aggregation(forks, pipes, consumers, producers): """ This function forms a new aggregated network consisting of super forks, super pipes and super produsers Super forks are forks with less or more than two connections to DL or are connected to GL. @@ -550,7 +551,6 @@ def aggregation(forks, pipes, consumers, producers): network_aggregation """ - # # # 1. identify super forks # DL and GL pipes copied from pipes DLpipes = pipes.loc[pipes['type'].isin(['DL'])] @@ -594,8 +594,6 @@ def aggregation(forks, pipes, consumers, producers): i += 1 # select the current super fork (i)... superfork_i_id_full = super_forks.loc[i]['id_full'] - # ... and add to the aggregated forks - aggregated_forks.append(superfork_i_id_full) # search for consumer which are connected with super fork i aggregated_consumer_super_fork_i = [] @@ -698,9 +696,17 @@ def aggregation(forks, pipes, consumers, producers): merged_segment_i_a.at[0, 'to_node'] = last_fork_segment_i_a + # add last and first fork, if they are not aggregated yet + if superfork_i_id_full not in aggregated_forks: + aggregated_forks.append(superfork_i_id_full) + aggregated_forks_segment_i_a.append(superfork_i_id_full) + + if last_fork_segment_i_a not in aggregated_forks: + aggregated_forks.append(last_fork_segment_i_a) + aggregated_forks_segment_i_a.append(last_fork_segment_i_a) - # # add column 'aggregated_forks' # added also the last fork of a superpipe - str_aggregated_forks_segment_i_a = ', '.join(aggregated_forks_segment_i_a) + ', ' + last_fork_segment_i_a + # # add column 'aggregated_forks' + str_aggregated_forks_segment_i_a = ', '.join(aggregated_forks_segment_i_a) merged_segment_i_a.at[0, 'aggregated_forks'] = str_aggregated_forks_segment_i_a # # add column 'aggregated_pipes' @@ -709,7 +715,8 @@ def aggregation(forks, pipes, consumers, producers): # # add column 'aggregated_consumers' aggregated_consumer_segment_i_a = [] - aggregated_consumer_segment_i_a = HLpipes.loc[HLpipes['from_node'].isin(aggregated_forks_segment_i_a)][ + aggregated_consumer_segment_i_a = \ + HLpipes.loc[HLpipes['from_node'].isin(aggregated_forks_segment_i_a)][ 'to_node'].tolist() str_aggregated_consumer_segment_i_a = ', '.join(aggregated_consumer_segment_i_a) merged_segment_i_a.at[0, 'aggregated_consumer'] = str_aggregated_consumer_segment_i_a @@ -717,13 +724,14 @@ def aggregation(forks, pipes, consumers, producers): # # add column 'aggregated_P_heat_max' aggregated_P_heat_max_segment_i_a = [] aggregated_P_heat_max_segment_i_a = \ - consumers.loc[consumers['id_full'].isin(aggregated_consumer_segment_i_a)]['P_heat_max'].tolist() + consumers.loc[consumers['id_full'].isin(aggregated_consumer_segment_i_a)]['P_heat_max'].tolist() sum_aggregated_P_heat_max_segment_i_a = sum(aggregated_P_heat_max_segment_i_a) merged_segment_i_a.at[0, 'P_heat_max'] = sum_aggregated_P_heat_max_segment_i_a # # add column 'simultaneity factor' number_aggregated_consumer_segment_i_a = len(aggregated_consumer_segment_i_a) - simultaneity_factor_segment_i_a = pow(1.05, -number_aggregated_consumer_segment_i_a) # Note: this is just a placeholder formula + simultaneity_factor_segment_i_a = pow(1.05, + -number_aggregated_consumer_segment_i_a) # Note: this is just a placeholder formula merged_segment_i_a.at[0, 'simultaneity factor'] = simultaneity_factor_segment_i_a # add new pipe to super pipes @@ -747,7 +755,6 @@ def aggregation(forks, pipes, consumers, producers): DLGLpipes['to_node'].isin([fork_next_segment_i_a])][ 'id'].tolist() - if segment_i_a.at[b, 'id'] == list_of_connected_pipes_to_next_fork[0]: pipe_next_segment_i_a = DLGLpipes.loc[ DLGLpipes['id'].isin([list_of_connected_pipes_to_next_fork[1]])] @@ -782,7 +789,30 @@ def aggregation(forks, pipes, consumers, producers): # return return { 'super_forks': super_forks, - 'super_consumers': consumers, # not yet defined - 'super_producers': producers, # not yet defined + 'super_consumers': consumers, # not yet defined + 'super_producers': producers, # not yet defined 'super_pipes': super_pipes, } + + +def remove_con_prod_forks(forks, consumers, producers): + """ + Parameters + ---------- + forks + consumers + producers + Returns + ------- + """ + consumers["geometry_wkt"] = \ + consumers["geometry"].apply(lambda geom: geom.wkt) + + producers["geometry_wkt"] = \ + producers["geometry"].apply(lambda geom: geom.wkt) + + con_prod = list(producers["geometry_wkt"]) + list(consumers["geometry_wkt"]) + + forks_only = forks[forks.geometry_wkt.isin(con_prod) == False] + + return forks_only