diff --git a/DistrictHeatingNetworkCreator.py b/DistrictHeatingNetworkCreator.py index 9959c97..34a1e21 100644 --- a/DistrictHeatingNetworkCreator.py +++ b/DistrictHeatingNetworkCreator.py @@ -2,10 +2,12 @@ import json import matplotlib.pyplot as plt from shapely.geometry import Polygon, Point, LineString import networkx as nx +from typing import List, Tuple +from rtree import index class DistrictHeatingNetworkCreator: - def __init__(self, buildings_file, roads_file): + def __init__(self, buildings_file: str, roads_file: str): """ Initialize the class with paths to the buildings and roads data files. @@ -15,7 +17,7 @@ class DistrictHeatingNetworkCreator: self.buildings_file = buildings_file self.roads_file = roads_file - def run(self): + def run(self) -> nx.Graph: """ Main method to execute the district heating network creation process. :return: NetworkX graph with nodes and edges representing the network. @@ -27,6 +29,7 @@ class DistrictHeatingNetworkCreator: self._create_graph() self._create_mst() self._iteratively_remove_edges() + self.add_centroids_to_mst() # Add centroids to the MST return self.final_mst def _load_and_process_data(self): @@ -37,16 +40,15 @@ class DistrictHeatingNetworkCreator: with open(self.buildings_file, 'r') as file: city = json.load(file) - # Extract centroids and building IDs from building data self.centroids = [] - self.building_ids = [] # List to store building IDs + self.building_ids = [] buildings = city['features'] for building in buildings: coordinates = building['geometry']['coordinates'][0] building_polygon = Polygon(coordinates) centroid = building_polygon.centroid self.centroids.append(centroid) - self.building_ids.append(building['id']) # Extract building ID + self.building_ids.append(building['id']) # Load road data with open(self.roads_file, 'r') as file: @@ -54,18 +56,8 @@ class DistrictHeatingNetworkCreator: line_features = [feature for feature in roads['features'] if feature['geometry']['type'] == 'LineString'] - # Create a list of LineString objects and their properties - self.lines = [] - for feature in line_features: - # Create a LineString from coordinates - linestring = LineString(feature['geometry']['coordinates']) - self.lines.append(linestring) - - self.cleaned_lines = [] - for line in self.lines: - coords = list(line.coords) - cleaned_line = LineString([coords[0], coords[-1]]) - self.cleaned_lines.append(cleaned_line) + self.lines = [LineString(feature['geometry']['coordinates']) for feature in line_features] + self.cleaned_lines = [LineString([line.coords[0], line.coords[-1]]) for line in self.lines] def _find_nearest_roads(self): """ @@ -74,20 +66,21 @@ class DistrictHeatingNetworkCreator: self.closest_roads = [] unique_roads_set = set() - # Loop through each centroid - for centroid in self.centroids: - min_distance = float('inf') # Start with a large number to ensure any real distance is smaller - closest_road = None + # Create spatial index for roads + idx = index.Index() + for pos, line in enumerate(self.cleaned_lines): + idx.insert(pos, line.bounds) - # Loop through each road and calculate the distance to the current centroid - for line in self.cleaned_lines: - distance = line.distance(centroid) - # Check if the current road is closer than the ones previously checked + for centroid in self.centroids: + min_distance = float('inf') + closest_road = None + for pos in idx.nearest(centroid.bounds, 10): + road = self.cleaned_lines[pos] + distance = road.distance(centroid) if distance < min_distance: min_distance = distance - closest_road = line + closest_road = road - # Add the closest road to the list if it's not already added if closest_road and closest_road.wkt not in unique_roads_set: unique_roads_set.add(closest_road.wkt) self.closest_roads.append(closest_road) @@ -96,14 +89,11 @@ class DistrictHeatingNetworkCreator: """ Find the nearest point on each closest road for each centroid. """ - def find_nearest_point_on_line(point, line): + def find_nearest_point_on_line(point: Point, line: LineString) -> Point: return line.interpolate(line.project(point)) self.nearest_points = [] - - # Find the nearest point on each closest road for each centroid for centroid in self.centroids: - # Find the closest road for this centroid min_distance = float('inf') closest_road = None for road in self.closest_roads: @@ -112,7 +102,6 @@ class DistrictHeatingNetworkCreator: min_distance = distance closest_road = road - # Find the nearest point on the closest road if closest_road: nearest_point = find_nearest_point_on_line(centroid, closest_road) self.nearest_points.append(nearest_point) @@ -121,27 +110,19 @@ class DistrictHeatingNetworkCreator: """ Break down roads into segments connecting nearest points. """ - - def break_down_roads(closest_roads, nearest_points_list): + def break_down_roads(closest_roads: List[LineString], nearest_points_list: List[Point]) -> List[LineString]: new_segments = [] for road in closest_roads: - # Get coordinates of the road coords = list(road.coords) - # Find all nearest points for this road points_on_road = [point for point in nearest_points_list if road.distance(point) < 0.000000001] - # Sort nearest points along the road sorted_points = sorted(points_on_road, key=lambda point: road.project(point)) - # Add the start node to the sorted points sorted_points.insert(0, Point(coords[0])) - # Add the end node to the sorted points sorted_points.append(Point(coords[-1])) - # Create new segments for i in range(len(sorted_points) - 1): segment = LineString([sorted_points[i], sorted_points[i + 1]]) new_segments.append(segment) return new_segments - # Create new segments self.new_segments = break_down_roads(self.closest_roads, self.nearest_points) self.cleaned_lines = [line for line in self.cleaned_lines if line not in self.closest_roads] self.cleaned_lines.extend(self.new_segments) @@ -151,8 +132,6 @@ class DistrictHeatingNetworkCreator: Create a NetworkX graph from the cleaned lines. """ self.G = nx.Graph() - - # Add edges to the graph from the cleaned lines for line in self.cleaned_lines: coords = list(line.coords) for i in range(len(coords) - 1): @@ -162,8 +141,7 @@ class DistrictHeatingNetworkCreator: """ Create a Minimum Spanning Tree (MST) from the graph. """ - - def find_paths_between_nearest_points(g, nearest_points): + def find_paths_between_nearest_points(g: nx.Graph, nearest_points: List[Point]) -> List[Tuple]: edges = [] for i, start_point in enumerate(nearest_points): start = (start_point.x, start_point.y) @@ -175,51 +153,89 @@ class DistrictHeatingNetworkCreator: edges.extend((u, v, g[u][v]['weight']) for u, v in path_edges) return edges - # Find the edges used to connect the nearest points edges = find_paths_between_nearest_points(self.G, self.nearest_points) - - # Create a graph from these edges h = nx.Graph() h.add_weighted_edges_from(edges) - - # Compute the Minimum Spanning Tree (MST) using Kruskal's algorithm mst = nx.minimum_spanning_tree(h, weight='weight') - - # Perform pathfinding again on the MST to ensure shortest paths within the MST final_edges = [] for u, v in mst.edges(): if nx.has_path(self.G, u, v): path = nx.shortest_path(self.G, source=u, target=v, weight='weight') path_edges = list(zip(path[:-1], path[1:])) final_edges.extend((x, y, self.G[x][y]['weight']) for x, y in path_edges) - - # Create the final MST graph with these edges self.final_mst = nx.Graph() self.final_mst.add_weighted_edges_from(final_edges) def _iteratively_remove_edges(self): """ Iteratively remove edges that do not have any nearest points and have one end with only one connection. - Also remove nodes that don't have any connections. + Also remove nodes that don't have any connections and street nodes with only one connection. """ nearest_points_tuples = [(point.x, point.y) for point in self.nearest_points] - def find_edges_to_remove(graph): + def find_edges_to_remove(graph: nx.Graph) -> List[Tuple]: edges_to_remove = [] - for u, v in graph.edges(): + for u, v, d in graph.edges(data=True): if u not in nearest_points_tuples and v not in nearest_points_tuples: if graph.degree(u) == 1 or graph.degree(v) == 1: - edges_to_remove.append((u, v)) + edges_to_remove.append((u, v, d)) return edges_to_remove - edges_to_remove = find_edges_to_remove(self.final_mst) + def find_nodes_to_remove(graph: nx.Graph) -> List[Tuple]: + nodes_to_remove = [] + for node in graph.nodes(): + if graph.degree(node) == 0: + nodes_to_remove.append(node) + return nodes_to_remove - while edges_to_remove: + edges_to_remove = find_edges_to_remove(self.final_mst) + self.final_mst_steps = [list(self.final_mst.edges(data=True))] + + while edges_to_remove or find_nodes_to_remove(self.final_mst): self.final_mst.remove_edges_from(edges_to_remove) - # Find and remove nodes with no connections - nodes_to_remove = [node for node in self.final_mst.nodes() if self.final_mst.degree(node) == 0] + nodes_to_remove = find_nodes_to_remove(self.final_mst) self.final_mst.remove_nodes_from(nodes_to_remove) edges_to_remove = find_edges_to_remove(self.final_mst) + self.final_mst_steps.append(list(self.final_mst.edges(data=True))) + + def find_single_connection_street_nodes(graph: nx.Graph) -> List[Tuple]: + single_connection_street_nodes = [] + for node in graph.nodes(): + if node not in nearest_points_tuples and graph.degree(node) == 1: + single_connection_street_nodes.append(node) + return single_connection_street_nodes + + single_connection_street_nodes = find_single_connection_street_nodes(self.final_mst) + + while single_connection_street_nodes: + for node in single_connection_street_nodes: + neighbors = list(self.final_mst.neighbors(node)) + self.final_mst.remove_node(node) + for neighbor in neighbors: + if self.final_mst.degree(neighbor) == 0: + self.final_mst.remove_node(neighbor) + single_connection_street_nodes = find_single_connection_street_nodes(self.final_mst) + self.final_mst_steps.append(list(self.final_mst.edges(data=True))) + + def add_centroids_to_mst(self): + """ + Add centroids to the final MST graph and connect them to their associated node on the graph. + """ + for centroid in self.centroids: + centroid_tuple = (centroid.x, centroid.y) + self.final_mst.add_node(centroid_tuple, type='centroid') + nearest_point = None + min_distance = float('inf') + for node in self.final_mst.nodes(): + if self.final_mst.nodes[node].get('type') != 'centroid': + node_point = Point(node) + distance = centroid.distance(node_point) + if distance < min_distance: + min_distance = distance + nearest_point = node + + if nearest_point: + self.final_mst.add_edge(centroid_tuple, nearest_point, weight=min_distance) def plot_network_graph(self): """ @@ -227,11 +243,8 @@ class DistrictHeatingNetworkCreator: """ plt.figure(figsize=(15, 10)) pos = {node: (node[0], node[1]) for node in self.final_mst.nodes()} - - # Draw nodes and edges nx.draw_networkx_nodes(self.final_mst, pos, node_color='blue', node_size=50) nx.draw_networkx_edges(self.final_mst, pos, edge_color='gray') - plt.title('District Heating Network Graph') plt.axis('off') plt.show() diff --git a/input_files/buildings.geojson b/input_files/buildings.geojson index b8cb487..c14c9aa 100644 --- a/input_files/buildings.geojson +++ b/input_files/buildings.geojson @@ -8,51 +8,79 @@ "coordinates": [ [ [ - -73.62386118706482, - 45.483293837621986 + -73.59811728033907, + 45.516463145033896 ], [ - -73.62396328801941, - 45.48319043890058 + -73.5981157805577, + 45.51646554529844 ], [ - -73.62384478725585, - 45.48313253814868 + -73.59826858053829, + 45.51651314422041 ], [ - -73.6238028863874, - 45.48317493753852 + -73.59835528181955, + 45.51637534532314 ], [ - -73.62378388750452, - 45.483165537637056 + -73.59825658107137, + 45.51630584465338 ], [ - -73.62371428727164, - 45.48323803807301 + -73.59825648123493, + 45.516305844739264 ], [ - -73.62379598801256, - 45.48327673833359 + -73.59823248106586, + 45.516263345189124 ], [ - -73.62380568808908, - 45.48326673772642 + -73.59823218109571, + 45.51626234482375 ], [ - -73.62386118706482, - 45.483293837621986 + -73.59797578093375, + 45.516302445087824 + ], + [ + -73.5979903807703, + 45.51634854492168 + ], + [ + -73.5979628808441, + 45.51635294443621 + ], + [ + -73.59798178138722, + 45.516412344732885 + ], + [ + -73.59804408015282, + 45.51640164525812 + ], + [ + -73.59806118178813, + 45.51645034527519 + ], + [ + -73.5980615811349, + 45.51645034493237 + ], + [ + -73.59811728033907, + 45.516463145033896 ] ] ] }, - "id": 183476, + "id": 139333, "properties": { - "name": "03034929", - "address": "chemin Circle (MTL) 4910", + "name": "03039285", + "address": "chemin de la C\u00f4te-Sainte-Catherine (MTL+OUT) 205", "function": "1000", - "height": 13, - "year_of_construction": 1951 + "height": 57, + "year_of_construction": 1978 } }, { @@ -62,1358 +90,34 @@ "coordinates": [ [ [ - -73.62514888738954, - 45.485263539019904 + -73.5992126819938, + 45.51653774504043 ], [ - -73.62508698666122, - 45.48527383897175 + -73.5993037807794, + 45.516578544760726 ], [ - -73.62510878736676, - 45.48533783824085 + -73.59938998120657, + 45.51648334489168 ], [ - -73.6251120873524, - 45.485337038262735 + -73.59929898106923, + 45.51644254515369 ], [ - -73.62515498747813, - 45.485327938815466 - ], - [ - -73.62516646909236, - 45.48535464806212 - ], - [ - -73.62529245902284, - 45.48532980286457 - ], - [ - -73.62528718783068, - 45.485318538974745 - ], - [ - -73.62528278800332, - 45.48530793821532 - ], - [ - -73.62527158746438, - 45.485274738082516 - ], - [ - -73.62515848765274, - 45.48529333860046 - ], - [ - -73.62514888738954, - 45.485263539019904 + -73.5992126819938, + 45.51653774504043 ] ] ] }, - "id": 184330, + "id": 145913, "properties": { - "name": "03074695", - "address": "avenue Iona (MTL) 4956", - "function": "1000", - "height": 15, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62455358717726, - 45.48799823891021 - ], - [ - -73.62446068757643, - 45.48811053921706 - ], - [ - -73.6247499877023, - 45.4882289384585 - ], - [ - -73.62472049846316, - 45.48826446686817 - ], - [ - -73.62483771593413, - 45.488316446178736 - ], - [ - -73.62499364476328, - 45.48814404521932 - ], - [ - -73.6248777644253, - 45.48809265940332 - ], - [ - -73.62485408855625, - 45.488121238284336 - ], - [ - -73.62455358717726, - 45.48799823891021 - ] - ] - ] - }, - "id": 191419, - "properties": { - "name": "03075048", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4810", - "function": "1000", - "height": 19, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62612858746202, - 45.48386973807939 - ], - [ - -73.62630958770107, - 45.48395473821837 - ], - [ - -73.6263548066073, - 45.4839070809422 - ], - [ - -73.62618060042013, - 45.48382725018484 - ], - [ - -73.62615628765143, - 45.48385193822575 - ], - [ - -73.62614918822398, - 45.48384803803413 - ], - [ - -73.62612858746202, - 45.48386973807939 - ] - ] - ] - }, - "id": 191668, - "properties": { - "name": "03121624", - "address": "rue Byron (MTL) 5196", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62289198701373, - 45.489318838690956 - ], - [ - -73.62297838225884, - 45.48935872583983 - ], - [ - -73.62306522509374, - 45.489262769082174 - ], - [ - -73.622980686847, - 45.48922373935139 - ], - [ - -73.62289198701373, - 45.489318838690956 - ] - ] - ] - }, - "id": 192125, - "properties": { - "name": "03075408", - "address": "avenue Roslyn (MTL) 5036", + "name": "03030253", + "address": "avenue Bloomfield (OUT) 130", "function": "1000", "height": 16, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62553218724737, - 45.48493803824203 - ], - [ - -73.62571418849919, - 45.48490313821811 - ], - [ - -73.62569400808619, - 45.484844319490364 - ], - [ - -73.62551079829387, - 45.484882751806495 - ], - [ - -73.62553218724737, - 45.48493803824203 - ] - ] - ] - }, - "id": 192235, - "properties": { - "name": "03074678", - "address": "avenue Iona (MTL) 4985", - "function": "1000", - "height": 10, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63030933337811, - 45.49125578993202 - ], - [ - -73.63020525907926, - 45.49137189234242 - ], - [ - -73.63028228971838, - 45.491405639585224 - ], - [ - -73.63038539043704, - 45.49128903970246 - ], - [ - -73.63030933337811, - 45.49125578993202 - ] - ] - ] - }, - "id": 192251, - "properties": { - "name": "03007380", - "address": "avenue Victoria (MTL+WMT) 5465", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62840008937498, - 45.490651339421326 - ], - [ - -73.62861458946709, - 45.49074974003331 - ], - [ - -73.62877018898783, - 45.49058203965353 - ], - [ - -73.62855318920144, - 45.49048243995089 - ], - [ - -73.62849868969235, - 45.49054113878504 - ], - [ - -73.62849838949687, - 45.49054133978821 - ], - [ - -73.628516289111, - 45.4905497395024 - ], - [ - -73.62846588973065, - 45.49060273948676 - ], - [ - -73.62845168939945, - 45.49059573936338 - ], - [ - -73.62840008937498, - 45.490651339421326 - ] - ] - ] - }, - "id": 192436, - "properties": { - "name": "05080765", - "address": "avenue Victoria (MTL+WMT) 5365", - "function": "1000", - "height": 13, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62364542104542, - 45.48773177705243 - ], - [ - -73.62349337638209, - 45.48789917964123 - ], - [ - -73.6235801873445, - 45.48793983886275 - ], - [ - -73.62372758734247, - 45.48778383863543 - ], - [ - -73.62369918719007, - 45.48777063896385 - ], - [ - -73.62370848700698, - 45.48776093845487 - ], - [ - -73.6237021879566, - 45.48775813955791 - ], - [ - -73.62364542104542, - 45.48773177705243 - ] - ] - ] - }, - "id": 192448, - "properties": { - "name": "03007254", - "address": "avenue Victoria (MTL+WMT) 5024", - "function": "1000", - "height": 10, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62309862936986, - 45.481826094541496 - ], - [ - -73.62304692064849, - 45.481881047194214 - ], - [ - -73.62318962073721, - 45.481946910628686 - ], - [ - -73.6232395838021, - 45.48189101315682 - ], - [ - -73.62309862936986, - 45.481826094541496 - ] - ] - ] - }, - "id": 192454, - "properties": { - "name": "03035033", - "address": "avenue Jacques-Grenier (MTL) 5241", - "function": "1000", - "height": 15, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62534048724456, - 45.483548438114106 - ], - [ - -73.62529398791419, - 45.48359753794998 - ], - [ - -73.62547018709046, - 45.48367823802487 - ], - [ - -73.62551928805559, - 45.483624438061526 - ], - [ - -73.62534338780148, - 45.48354523777739 - ], - [ - -73.62534048724456, - 45.483548438114106 - ] - ] - ] - }, - "id": 192492, - "properties": { - "name": "03035260", - "address": "rue Snowdon (MTL) 5182", - "function": "1000", - "height": 9, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62901318897347, - 45.491477339911086 - ], - [ - -73.62898488894524, - 45.49151103957314 - ], - [ - -73.62897158860234, - 45.4915055403406 - ], - [ - -73.62896869003477, - 45.4915091402939 - ], - [ - -73.62894647621356, - 45.49153562441585 - ], - [ - -73.62913237628922, - 45.49161798059078 - ], - [ - -73.62918908873463, - 45.491550539667635 - ], - [ - -73.62901318897347, - 45.491477339911086 - ] - ] - ] - }, - "id": 192602, - "properties": { - "name": "03073719", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4756", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62500198791405, - 45.48654513896046 - ], - [ - -73.62513218716478, - 45.48662443929354 - ], - [ - -73.62522198766194, - 45.48655163874149 - ], - [ - -73.62509158716466, - 45.48647213896439 - ], - [ - -73.62500198791405, - 45.48654513896046 - ] - ] - ] - }, - "id": 192616, - "properties": { - "name": "03074724", - "address": "avenue Ponsard (MTL) 4915", - "function": "1000", - "height": 17, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62487748761717, - 45.482845737792914 - ], - [ - -73.62482666251954, - 45.48289961225944 - ], - [ - -73.62498917753527, - 45.48297383294805 - ], - [ - -73.62503888819225, - 45.48292103854564 - ], - [ - -73.62487748761717, - 45.482845737792914 - ] - ] - ] - }, - "id": 192776, - "properties": { - "name": "03035190", - "address": "rue Dalou (MTL) 5206", - "function": "1000", - "height": 13, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62594448769737, - 45.486591738805295 - ], - [ - -73.62594918840415, - 45.48659373937861 - ], - [ - -73.6262536885391, - 45.486726038696794 - ], - [ - -73.6262570891239, - 45.48672213860582 - ], - [ - -73.62635858778837, - 45.48661003876217 - ], - [ - -73.62625278816411, - 45.48656293903946 - ], - [ - -73.62623168777668, - 45.486587038634134 - ], - [ - -73.62602788796772, - 45.48649763902607 - ], - [ - -73.6260249877419, - 45.48650103824406 - ], - [ - -73.62594448769737, - 45.486591738805295 - ] - ] - ] - }, - "id": 192895, - "properties": { - "name": "03075061", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4930", - "function": "1000", - "height": 19, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6249052874826, - 45.48924963894249 - ], - [ - -73.62497998828937, - 45.48916573933429 - ], - [ - -73.62495198800863, - 45.4891579395122 - ], - [ - -73.62497338816905, - 45.48912003890772 - ], - [ - -73.62501058880686, - 45.489130439107676 - ], - [ - -73.6250890882222, - 45.48904563902304 - ], - [ - -73.62505698771845, - 45.48902743880382 - ], - [ - -73.62509298831912, - 45.48899623953663 - ], - [ - -73.6251159878284, - 45.48900933949253 - ], - [ - -73.62512198772589, - 45.48901213953845 - ], - [ - -73.62519854705909, - 45.48892605922217 - ], - [ - -73.62509673604164, - 45.48888032094126 - ], - [ - -73.62488808754881, - 45.488788639037935 - ], - [ - -73.62480668760301, - 45.48888023959006 - ], - [ - -73.62500158788455, - 45.48896583843384 - ], - [ - -73.62487428768478, - 45.48910893881377 - ], - [ - -73.62467818809542, - 45.48902263918452 - ], - [ - -73.62459688787783, - 45.4891139389261 - ], - [ - -73.6249052874826, - 45.48924963894249 - ] - ] - ] - }, - "id": 192896, - "properties": { - "name": "03074981", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4745", - "function": "1000", - "height": 14, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62355798800033, - 45.48845443956304 - ], - [ - -73.62355008718575, - 45.48846393877968 - ], - [ - -73.62359828729882, - 45.48848393879298 - ], - [ - -73.62360098801086, - 45.48848103926797 - ], - [ - -73.62374418715281, - 45.48833513894672 - ], - [ - -73.62368468807215, - 45.488306339042076 - ], - [ - -73.62369188725116, - 45.48829893901544 - ], - [ - -73.62367498697272, - 45.488291139456706 - ], - [ - -73.62365799091151, - 45.48828341378647 - ], - [ - -73.62351896304136, - 45.48843844382236 - ], - [ - -73.62355798800033, - 45.48845443956304 - ] - ] - ] - }, - "id": 192906, - "properties": { - "name": "03007425", - "address": "avenue Victoria (MTL+WMT) 5059", - "function": "1000", - "height": 11, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62703388743074, - 45.48363353844661 - ], - [ - -73.6269931996058, - 45.48367576128408 - ], - [ - -73.6271568214064, - 45.48375182053347 - ], - [ - -73.62717638875287, - 45.483731537810904 - ], - [ - -73.62716428731575, - 45.48372583815962 - ], - [ - -73.62718418758811, - 45.483705138436136 - ], - [ - -73.62703388743074, - 45.48363353844661 - ] - ] - ] - }, - "id": 192913, - "properties": { - "name": "03035334", - "address": "rue Byron (MTL) 5239", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62325788738205, - 45.48416933785389 - ], - [ - -73.62325788673057, - 45.48416903910566 - ], - [ - -73.62334288730322, - 45.484150138767774 - ], - [ - -73.62331428677147, - 45.48406473824806 - ], - [ - -73.623303772419, - 45.48403699744117 - ], - [ - -73.6231600695974, - 45.48406528346539 - ], - [ - -73.62320218654254, - 45.484168438708984 - ], - [ - -73.62320838796441, - 45.48416713804125 - ], - [ - -73.62325378714787, - 45.48415863770784 - ], - [ - -73.62325788738205, - 45.48416933785389 - ] - ] - ] - }, - "id": 192920, - "properties": { - "name": "03074776", - "address": "avenue Ponsard (MTL) 5042", - "function": "1000", - "height": 10, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62626648908152, - 45.489975439681835 - ], - [ - -73.62642588858094, - 45.49004873933727 - ], - [ - -73.62638958821411, - 45.49008774010906 - ], - [ - -73.62638718837846, - 45.49009013905233 - ], - [ - -73.62649338889563, - 45.490138438571215 - ], - [ - -73.6265652877452, - 45.490060139879475 - ], - [ - -73.62645898902502, - 45.49001193951845 - ], - [ - -73.6265131888202, - 45.48995293963599 - ], - [ - -73.6265162889945, - 45.489949639169204 - ], - [ - -73.62636288842953, - 45.48987913962003 - ], - [ - -73.62635818826729, - 45.48987693929861 - ], - [ - -73.62626648908152, - 45.489975439681835 - ] - ] - ] - }, - "id": 192928, - "properties": { - "name": "03074739", - "address": "rue Fulton (MTL) 4729", - "function": "1000", - "height": 13, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62444898694753, - 45.48211893873104 - ], - [ - -73.62439519051087, - 45.4821762824585 - ], - [ - -73.62454052792963, - 45.482242677638354 - ], - [ - -73.62459368751983, - 45.482186037317895 - ], - [ - -73.62444898694753, - 45.48211893873104 - ] - ] - ] - }, - "id": 193014, - "properties": { - "name": "03035128", - "address": "rue Saranac (MTL) 5256", - "function": "1000", - "height": 15, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6231504867233, - 45.48390373900468 - ], - [ - -73.62328938673326, - 45.48387183899406 - ], - [ - -73.62329338723524, - 45.48387083854631 - ], - [ - -73.62326895530866, - 45.48381742844508 - ], - [ - -73.6231241814996, - 45.48384592524515 - ], - [ - -73.6231504867233, - 45.48390373900468 - ] - ] - ] - }, - "id": 193056, - "properties": { - "name": "03074780", - "address": "avenue Ponsard (MTL) 5050", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62324018710898, - 45.48375473840287 - ], - [ - -73.62304668677565, - 45.48379913845799 - ], - [ - -73.62306368755073, - 45.48383553872091 - ], - [ - -73.6231140874509, - 45.48382373871765 - ], - [ - -73.6231241814996, - 45.48384592524515 - ], - [ - -73.62326895530866, - 45.48381742844508 - ], - [ - -73.62324018710898, - 45.48375473840287 - ] - ] - ] - }, - "id": 193076, - "properties": { - "name": "03074782", - "address": "avenue Ponsard (MTL) 5052", - "function": "1000", - "height": 8, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.632436590962, - 45.48895433860164 - ], - [ - -73.63251688989413, - 45.488989838860455 - ], - [ - -73.63270939081211, - 45.4890760392302 - ], - [ - -73.6327357904782, - 45.48904683916651 - ], - [ - -73.63283049047422, - 45.488941038636284 - ], - [ - -73.6325568900478, - 45.488819838637326 - ], - [ - -73.632436590962, - 45.48895433860164 - ] - ] - ] - }, - "id": 193084, - "properties": { - "name": "03073180", - "address": "avenue Saint-Kevin (MTL) 4950", - "function": "1000", - "height": 13, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62812608903391, - 45.491026939206314 - ], - [ - -73.6283021892778, - 45.491105039766026 - ], - [ - -73.62835798282107, - 45.491042886871675 - ], - [ - -73.62818180868, - 45.49096487016562 - ], - [ - -73.62812608903391, - 45.491026939206314 - ] - ] - ] - }, - "id": 193095, - "properties": { - "name": "03074142", - "address": "avenue Lacombe (MTL) 4722", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.628276289246, - 45.490860939072284 - ], - [ - -73.62844948978783, - 45.490938338984606 - ], - [ - -73.62850638383237, - 45.49087530742938 - ], - [ - -73.62833276877826, - 45.4907984227796 - ], - [ - -73.628276289246, - 45.490860939072284 - ] - ] - ] - }, - "id": 193097, - "properties": { - "name": "03074147", - "address": "avenue Lacombe (MTL) 4742", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62297388710314, - 45.49011673967985 - ], - [ - -73.62297438776956, - 45.49011693980634 - ], - [ - -73.6231649876397, - 45.4901881389726 - ], - [ - -73.62316508742991, - 45.490188138864994 - ], - [ - -73.6232104879076, - 45.49014573958618 - ], - [ - -73.62320428796838, - 45.49014273989054 - ], - [ - -73.62326618769148, - 45.49007893886929 - ], - [ - -73.62294188676105, - 45.48992343876939 - ], - [ - -73.62284288637106, - 45.49002593957425 - ], - [ - -73.62285728756595, - 45.490032738614204 - ], - [ - -73.6228407875033, - 45.490049740039325 - ], - [ - -73.62283788794262, - 45.49005243999379 - ], - [ - -73.62288558703335, - 45.49007803967828 - ], - [ - -73.62289048774352, - 45.49008073934088 - ], - [ - -73.62289888751201, - 45.49007343975742 - ], - [ - -73.62297388710314, - 45.49011673967985 - ] - ] - ] - }, - "id": 193195, - "properties": { - "name": "03075036", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4610", - "function": "1000", - "height": 16, - "year_of_construction": 1967 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62287448620728, - 45.482224037449534 - ], - [ - -73.6229243870287, - 45.48218043748771 - ], - [ - -73.62296588625006, - 45.482203938204854 - ], - [ - -73.62298588680535, - 45.48218653793664 - ], - [ - -73.62299908663373, - 45.482175338631684 - ], - [ - -73.62300011669404, - 45.48217430899794 - ], - [ - -73.6228403234034, - 45.48210059905418 - ], - [ - -73.62277648737577, - 45.48216843782726 - ], - [ - -73.62287448620728, - 45.482224037449534 - ] - ] - ] - }, - "id": 193203, - "properties": { - "name": "03035024", - "address": "avenue Jacques-Grenier (MTL) 5219", - "function": "1000", - "height": 8, "year_of_construction": 1928 } }, @@ -1424,7036 +128,44 @@ "coordinates": [ [ [ - -73.63205819013461, - 45.48888593942016 + -73.59897892748309, + 45.5174122189449 ], [ - -73.63228429074819, - 45.48898863901785 + -73.59884180823266, + 45.51756502988158 ], [ - -73.63239069037843, - 45.48887273893373 + -73.59890528079364, + 45.51759317865491 ], [ - -73.63216459003404, - 45.48877003864439 + -73.59890648164334, + 45.51759184495077 ], [ - -73.63205819013461, - 45.48888593942016 - ] - ] - ] - }, - "id": 193214, - "properties": { - "name": "03073242", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4925", - "function": "1000", - "height": 12, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62838428965641, - 45.4914613392617 - ], - [ - -73.62852198914457, - 45.491526439376344 - ], - [ - -73.62859768980995, - 45.49144723980093 - ], - [ - -73.62845998914858, - 45.49138213977797 - ], - [ - -73.62838428965641, - 45.4914613392617 - ] - ] - ] - }, - "id": 193242, - "properties": { - "name": "03073816", - "address": "avenue Lacombe (MTL) 4697", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62510918782137, - 45.486917838509555 - ], - [ - -73.62502178727604, - 45.48702103853008 - ], - [ - -73.62511338777858, - 45.487059438136676 - ], - [ - -73.6250993878927, - 45.48707593864396 - ], - [ - -73.62514895272247, - 45.487096672587015 - ], - [ - -73.62525161243185, - 45.48697725671637 - ], - [ - -73.62520308781896, - 45.486957138971476 - ], - [ - -73.62510918782137, - 45.486917838509555 - ] - ] - ] - }, - "id": 193253, - "properties": { - "name": "03074728", - "address": "avenue Ponsard (MTL) 4908", - "function": "1000", - "height": 10, - "year_of_construction": 1959 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62763868935096, - 45.49157663962311 - ], - [ - -73.62780998867348, - 45.491653439723635 - ], - [ - -73.62786589188771, - 45.4915917818677 - ], - [ - -73.62769472019676, - 45.491514796339416 - ], - [ - -73.62763868935096, - 45.49157663962311 - ] - ] - ] - }, - "id": 193259, - "properties": { - "name": "03074131", - "address": "avenue Lacombe (MTL) 4664", - "function": "1000", - "height": 8, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6239644872863, - 45.48612623866693 - ], - [ - -73.62410558708658, - 45.48609413822286 - ], - [ - -73.62411118766376, - 45.48609293894213 - ], - [ - -73.62406868792527, - 45.485998638968034 - ], - [ - -73.62390558664013, - 45.48603503840278 - ], - [ - -73.62392068768433, - 45.48606853858156 - ], - [ - -73.62392078702923, - 45.486068338707994 - ], - [ - -73.62393638752353, - 45.48606473859613 - ], - [ - -73.6239644872863, - 45.48612623866693 - ] - ] - ] - }, - "id": 193295, - "properties": { - "name": "03074744", - "address": "avenue Ponsard (MTL) 4950", - "function": "1000", - "height": 13, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62574028923805, - 45.48985563882609 - ], - [ - -73.62567850071551, - 45.48992608102666 - ], - [ - -73.62581276740083, - 45.48998551827627 - ], - [ - -73.62587528831051, - 45.489914240140294 - ], - [ - -73.62574028923805, - 45.48985563882609 - ] - ] - ] - }, - "id": 193296, - "properties": { - "name": "03074745", - "address": "rue Fulton (MTL) 4716", - "function": "1000", - "height": 8, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63208529033938, - 45.487896338950655 - ], - [ - -73.63236059053466, - 45.48802023946554 - ], - [ - -73.63247879029191, - 45.48789033840529 - ], - [ - -73.63220349024006, - 45.48776633918927 - ], - [ - -73.63208529033938, - 45.487896338950655 - ] - ] - ] - }, - "id": 193384, - "properties": { - "name": "03073747", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4990", - "function": "1000", - "height": 14, - "year_of_construction": 1953 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63159649020926, - 45.48785333799715 - ], - [ - -73.63155729043855, - 45.48789713904391 - ], - [ - -73.63171609057265, - 45.4879675390307 - ], - [ - -73.63177739061666, - 45.48789913945233 - ], - [ - -73.63161809085261, - 45.48782893899146 - ], - [ - -73.63159649020926, - 45.48785333799715 - ] - ] - ] - }, - "id": 193387, - "properties": { - "name": "03073753", - "address": "avenue Lacombe (MTL) 4995", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62466458734697, - 45.485834038244505 - ], - [ - -73.62446918697735, - 45.4858711387171 - ], - [ - -73.62447078741633, - 45.48587523937075 - ], - [ - -73.62450448724991, - 45.485967039119025 - ], - [ - -73.62450978783664, - 45.485966138894575 - ], - [ - -73.62465958762974, - 45.48593943905528 - ], - [ - -73.62465818762583, - 45.48593573951686 - ], - [ - -73.62463458770674, - 45.48587193829809 - ], - [ - -73.62467598720471, - 45.485864338012576 - ], - [ - -73.62466468712948, - 45.485834038135614 - ], - [ - -73.62466458734697, - 45.485834038244505 - ] - ] - ] - }, - "id": 193420, - "properties": { - "name": "03074714", - "address": "avenue Ponsard (MTL) 4943", - "function": "1000", - "height": 10, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62807168896025, - 45.49181803870361 - ], - [ - -73.6282291899254, - 45.491885238798524 - ], - [ - -73.62829038912264, - 45.4918143396829 - ], - [ - -73.62813288956211, - 45.491747139669954 - ], - [ - -73.62807168896025, - 45.49181803870361 - ] - ] - ] - }, - "id": 193430, - "properties": { - "name": "03073822", - "address": "avenue Lacombe (MTL) 4663", - "function": "1000", - "height": 8, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62982159019113, - 45.49137193940039 - ], - [ - -73.62975162388356, - 45.49145207091298 - ], - [ - -73.62992656206835, - 45.49152957008616 - ], - [ - -73.62999779009297, - 45.49144793878958 - ], - [ - -73.62982159019113, - 45.49137193940039 - ] - ] - ] - }, - "id": 193440, - "properties": { - "name": "03073256", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4785", - "function": "1000", - "height": 10, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62561748792582, - 45.489995639591655 - ], - [ - -73.62575248848135, - 45.49005423924826 - ], - [ - -73.62581276740083, - 45.48998551827627 - ], - [ - -73.62567850071551, - 45.48992608102666 - ], - [ - -73.62561748792582, - 45.489995639591655 - ] - ] - ] - }, - "id": 193495, - "properties": { - "name": "03074743", - "address": "rue Fulton (MTL) 4710", - "function": "1000", - "height": 8, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62866338945653, - 45.48988753886184 - ], - [ - -73.62881108919466, - 45.48995283974484 - ], - [ - -73.62887793676254, - 45.48987813027453 - ], - [ - -73.62874123133149, - 45.4898176213605 - ], - [ - -73.62871968935225, - 45.489843940017344 - ], - [ - -73.62870718865429, - 45.489838839382614 - ], - [ - -73.62870668910756, - 45.48983913869414 - ], - [ - -73.62866338945653, - 45.48988753886184 - ] - ] - ] - }, - "id": 193519, - "properties": { - "name": "03074241", - "address": "avenue Isabella (CSL+MTL) 4817", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62356878719126, - 45.485553138908514 - ], - [ - -73.62356228755498, - 45.48555443811837 - ], - [ - -73.62345318780451, - 45.48557463884495 - ], - [ - -73.62345468750266, - 45.48557833829061 - ], - [ - -73.62348778082895, - 45.48566622826853 - ], - [ - -73.62361674392308, - 45.48564080130571 - ], - [ - -73.62360228714898, - 45.48560343824821 - ], - [ - -73.62358998718918, - 45.485605838848414 - ], - [ - -73.62356878719126, - 45.485553138908514 - ] - ] - ] - }, - "id": 193592, - "properties": { - "name": "03074756", - "address": "avenue Ponsard (MTL) 4968", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62887468971502, - 45.490168138773534 - ], - [ - -73.62906278949225, - 45.49025383912398 - ], - [ - -73.62906758885418, - 45.49024843912899 - ], - [ - -73.62913118929433, - 45.49017983953318 - ], - [ - -73.62894328855442, - 45.49009383852125 - ], - [ - -73.62887468971502, - 45.490168138773534 - ] - ] - ] - }, - "id": 193772, - "properties": { - "name": "03074153", - "address": "avenue Lacombe (MTL) 4808", - "function": "1000", - "height": 10, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62900498963097, - 45.490048439149085 - ], - [ - -73.62916988967605, - 45.490123139719735 - ], - [ - -73.62922137194849, - 45.49006694014513 - ], - [ - -73.62905555558135, - 45.48999318642072 - ], - [ - -73.62900498963097, - 45.490048439149085 - ] - ] - ] - }, - "id": 193818, - "properties": { - "name": "03074155", - "address": "avenue Lacombe (MTL) 4816", - "function": "1000", - "height": 9, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62910638942532, - 45.48993763911724 - ], - [ - -73.62905555558135, - 45.48999318642072 - ], - [ - -73.62922137194849, - 45.49006694014513 - ], - [ - -73.6292713903497, - 45.490012339428795 - ], - [ - -73.62910638942532, - 45.48993763911724 - ] - ] - ] - }, - "id": 193819, - "properties": { - "name": "03074157", - "address": "avenue Lacombe (MTL) 4820", - "function": "1000", - "height": 9, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6260014889978, - 45.487547239234054 - ], - [ - -73.62630228901436, - 45.487678738919975 - ], - [ - -73.6264057876846, - 45.487561539216166 - ], - [ - -73.62628298767217, - 45.487507938959 - ], - [ - -73.62632328894483, - 45.48746243959257 - ], - [ - -73.62644838792939, - 45.48751723855589 - ], - [ - -73.62655188772796, - 45.48740023848082 - ], - [ - -73.62624738786822, - 45.48726713911011 - ], - [ - -73.62614298822918, - 45.4873852386173 - ], - [ - -73.62626148769978, - 45.487436938806496 - ], - [ - -73.62622478871313, - 45.487478338973055 - ], - [ - -73.62610768813546, - 45.487426938650074 - ], - [ - -73.6260014889978, - 45.487547239234054 - ] - ] - ] - }, - "id": 193833, - "properties": { - "name": "03119642", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4885", - "function": "1000", - "height": 20, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62861048990037, - 45.49120373901154 - ], - [ - -73.62855294120685, - 45.491267601908724 - ], - [ - -73.62872494185372, - 45.49134380235497 - ], - [ - -73.62878218917788, - 45.49128023936015 - ], - [ - -73.62861048990037, - 45.49120373901154 - ] - ] - ] - }, - "id": 193937, - "properties": { - "name": "03073812", - "address": "avenue Lacombe (MTL) 4711", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62974488914489, - 45.49070373947328 - ], - [ - -73.62982427560249, - 45.49073988513988 - ], - [ - -73.62992742519776, - 45.490624627270414 - ], - [ - -73.62985019038474, - 45.49058943936368 - ], - [ - -73.62974488914489, - 45.49070373947328 - ] - ] - ] - }, - "id": 193963, - "properties": { - "name": "03007292", - "address": "avenue Victoria (MTL+WMT) 5428", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63021769011992, - 45.49091573949151 - ], - [ - -73.63029884162204, - 45.49095140679676 - ], - [ - -73.6304026451343, - 45.490835359492166 - ], - [ - -73.63032109014738, - 45.490799439863785 - ], - [ - -73.63021769011992, - 45.49091573949151 - ] - ] - ] - }, - "id": 193965, - "properties": { - "name": "03007296", - "address": "avenue Victoria (MTL+WMT) 5452", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6304026451343, - 45.490835359492166 - ], - [ - -73.63029884162204, - 45.49095140679676 - ], - [ - -73.63037558896502, - 45.49098513900489 - ], - [ - -73.63047889051246, - 45.49086893923096 - ], - [ - -73.6304026451343, - 45.490835359492166 - ] - ] - ] - }, - "id": 193981, - "properties": { - "name": "03007299", - "address": "avenue Victoria (MTL+WMT) 5456", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63042178947909, - 45.49100263864276 - ], - [ - -73.6305016763999, - 45.49103906581666 - ], - [ - -73.6306034850005, - 45.49092518923724 - ], - [ - -73.63052568965956, - 45.490889738775316 - ], - [ - -73.63042178947909, - 45.49100263864276 - ] - ] - ] - }, - "id": 193982, - "properties": { - "name": "03007301", - "address": "avenue Victoria (MTL+WMT) 5460", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63140219023948, - 45.4914243387513 - ], - [ - -73.63139949106929, - 45.491427239357336 - ], - [ - -73.6315546902511, - 45.491495340064105 - ], - [ - -73.63155768985028, - 45.49149673946789 - ], - [ - -73.63175409044031, - 45.49128033972244 - ], - [ - -73.63169739011916, - 45.49125493949273 - ], - [ - -73.63165649078289, - 45.49123633915013 - ], - [ - -73.63165139043375, - 45.49123383896003 - ], - [ - -73.63164589048206, - 45.491239939049706 - ], - [ - -73.63159089044171, - 45.49121503892095 - ], - [ - -73.63140219023948, - 45.4914243387513 - ] - ] - ] - }, - "id": 193983, - "properties": { - "name": "03007305", - "address": "avenue Victoria (MTL+WMT) 5500", - "function": "1000", - "height": 14, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62589048777555, - 45.48962453888691 - ], - [ - -73.6260876885021, - 45.489712338852044 - ], - [ - -73.62617708807397, - 45.489613039385816 - ], - [ - -73.62597978776468, - 45.48952523878346 - ], - [ - -73.62589048777555, - 45.48962453888691 - ] - ] - ] - }, - "id": 194011, - "properties": { - "name": "03074749", - "address": "rue Fulton (MTL) 4740", - "function": "1000", - "height": 10, - "year_of_construction": 1954 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62337828723037, - 45.48419343803005 - ], - [ - -73.6232532874607, - 45.48421693838229 - ], - [ - -73.62328223084072, - 45.48429296844667 - ], - [ - -73.62340682557186, - 45.484268443575864 - ], - [ - -73.62337828723037, - 45.48419343803005 - ] - ] - ] - }, - "id": 194022, - "properties": { - "name": "03074774", - "address": "avenue Ponsard (MTL) 5036", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62382408661233, - 45.48571143870029 - ], - [ - -73.62382928744621, - 45.48572573881339 - ], - [ - -73.62375268656344, - 45.48573923943096 - ], - [ - -73.62377558779029, - 45.485802839125164 - ], - [ - -73.62374918742832, - 45.48580743804691 - ], - [ - -73.62376928792597, - 45.48585973871088 - ], - [ - -73.62389768742287, - 45.4858303383228 - ], - [ - -73.62389588684329, - 45.48582653932656 - ], - [ - -73.62388378816149, - 45.485797638598946 - ], - [ - -73.62391374379456, - 45.48579138457206 - ], - [ - -73.62387818023251, - 45.485702089139515 - ], - [ - -73.62382408661233, - 45.48571143870029 - ] - ] - ] - }, - "id": 194203, - "properties": { - "name": "03074750", - "address": "avenue Ponsard (MTL) 4962", - "function": "1000", - "height": 17, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62351308695798, - 45.485733438297764 - ], - [ - -73.62349988764382, - 45.485735838960814 - ], - [ - -73.62350008680424, - 45.485736239176944 - ], - [ - -73.62351588699153, - 45.48578423877265 - ], - [ - -73.62352158754933, - 45.48578313839571 - ], - [ - -73.62356228653418, - 45.485775739037024 - ], - [ - -73.62356078682177, - 45.485772038693085 - ], - [ - -73.62355128719079, - 45.485755739260746 - ], - [ - -73.62363188743325, - 45.485732438726636 - ], - [ - -73.62363188721477, - 45.485732338843995 - ], - [ - -73.62361818759747, - 45.485678538383276 - ], - [ - -73.62363068632968, - 45.48567693842782 - ], - [ - -73.62362898658037, - 45.48567243833815 - ], - [ - -73.62361674392308, - 45.48564080130571 - ], - [ - -73.62348778082895, - 45.48566622826853 - ], - [ - -73.62351308695798, - 45.485733438297764 - ] - ] - ] - }, - "id": 194204, - "properties": { - "name": "03074754", - "address": "avenue Ponsard (MTL) 4966", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6302556905184, - 45.48991123944324 - ], - [ - -73.63053558925667, - 45.49003894001539 - ], - [ - -73.63065618925049, - 45.48990823908191 - ], - [ - -73.63037628960902, - 45.4897805388034 - ], - [ - -73.6302556905184, - 45.48991123944324 - ] - ] - ] - }, - "id": 194302, - "properties": { - "name": "03073731", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4860", - "function": "1000", - "height": 12, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63001189054654, - 45.49019023886729 - ], - [ - -73.63018448946401, - 45.49026513887246 - ], - [ - -73.63026209012027, - 45.49017663970961 - ], - [ - -73.63026388987265, - 45.490174838866544 - ], - [ - -73.63029958889611, - 45.49014083888996 - ], - [ - -73.63030218955079, - 45.490137938421604 - ], - [ - -73.63037608962127, - 45.49005373926198 - ], - [ - -73.63019919039651, - 45.489976838690126 - ], - [ - -73.63001189054654, - 45.49019023886729 - ] - ] - ] - }, - "id": 194323, - "properties": { - "name": "03073729", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4850", - "function": "1000", - "height": 15, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63028639060182, - 45.49160614018021 - ], - [ - -73.63041128941444, - 45.4916611392572 - ], - [ - -73.6304953898952, - 45.491566639568795 - ], - [ - -73.63037039013395, - 45.49151163889837 - ], - [ - -73.63028639060182, - 45.49160614018021 - ] - ] - ] - }, - "id": 194329, - "properties": { - "name": "03073168", - "address": "avenue Saint-Kevin (MTL) 4790", - "function": "1000", - "height": 13, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6268085878197, - 45.489375439588436 - ], - [ - -73.627005288601, - 45.48946083954062 - ], - [ - -73.62707268844012, - 45.48938343906878 - ], - [ - -73.6270529895248, - 45.489374539014285 - ], - [ - -73.62717298878104, - 45.489242839083836 - ], - [ - -73.62701808894354, - 45.48917303945516 - ], - [ - -73.62690058904106, - 45.489302339259794 - ], - [ - -73.62688088784665, - 45.48929353906087 - ], - [ - -73.6268085878197, - 45.489375439588436 - ] - ] - ] - }, - "id": 194400, - "properties": { - "name": "03007275", - "address": "avenue Victoria (MTL+WMT) 5210", - "function": "1000", - "height": 14, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62729688856074, - 45.489588939977985 - ], - [ - -73.62736188912136, - 45.48951823956001 - ], - [ - -73.62736198868524, - 45.48951813956619 - ], - [ - -73.62734158919797, - 45.489508939794455 - ], - [ - -73.62746488878263, - 45.489375539672615 - ], - [ - -73.62731108860915, - 45.48930523980158 - ], - [ - -73.62718598943455, - 45.48944063941955 - ], - [ - -73.62717188790998, - 45.489434139339636 - ], - [ - -73.62717178879748, - 45.489434439998355 - ], - [ - -73.62710778867084, - 45.489498939261416 - ], - [ - -73.6271051880354, - 45.48950133934329 - ], - [ - -73.62720758879576, - 45.48955663962872 - ], - [ - -73.62721268946974, - 45.48955943876626 - ], - [ - -73.6272183888677, - 45.48955313980027 - ], - [ - -73.62729688856074, - 45.489588939977985 - ] - ] - ] - }, - "id": 194401, - "properties": { - "name": "03007277", - "address": "avenue Victoria (MTL+WMT) 5220", - "function": "1000", - "height": 14, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62672048832981, - 45.48996483886664 - ], - [ - -73.62687468791776, - 45.49003363903905 - ], - [ - -73.62699778869857, - 45.48989673925639 - ], - [ - -73.6270170886287, - 45.48990563976322 - ], - [ - -73.62708218941108, - 45.48983253860963 - ], - [ - -73.62688598789579, - 45.48974733890636 - ], - [ - -73.62681958941839, - 45.48982373932302 - ], - [ - -73.62683968889137, - 45.489832638972274 - ], - [ - -73.62672048832981, - 45.48996483886664 - ] - ] - ] - }, - "id": 194424, - "properties": { - "name": "03007410", - "address": "avenue Victoria (MTL+WMT) 5215", - "function": "1000", - "height": 13, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6265133886446, - 45.48967703874431 - ], - [ - -73.62653648829487, - 45.48968773931413 - ], - [ - -73.62640918791374, - 45.4898217394514 - ], - [ - -73.62656318814493, - 45.48989383909948 - ], - [ - -73.62668878806991, - 45.4897735390235 - ], - [ - -73.6266955887816, - 45.48976653968258 - ], - [ - -73.62676598877087, - 45.489692239634756 - ], - [ - -73.62658068771411, - 45.48960563884612 - ], - [ - -73.6265133886446, - 45.48967703874431 - ] - ] - ] - }, - "id": 194426, - "properties": { - "name": "03007412", - "address": "avenue Victoria (MTL+WMT) 5207", - "function": "1000", - "height": 13, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63217139087142, - 45.48922673923049 - ], - [ - -73.63202499077222, - 45.48938453895148 - ], - [ - -73.63214349078157, - 45.48943893885538 - ], - [ - -73.6321613900077, - 45.489419738843026 - ], - [ - -73.63219062479396, - 45.489433046122066 - ], - [ - -73.63228658373905, - 45.489324925691484 - ], - [ - -73.63225719003725, - 45.489310939237484 - ], - [ - -73.63228439069754, - 45.48928273897998 - ], - [ - -73.63228699016534, - 45.48927993835022 - ], - [ - -73.63217139087142, - 45.48922673923049 - ] - ] - ] - }, - "id": 194511, - "properties": { - "name": "03007107", - "address": "rue Lemieux (MTL) 5480", - "function": "1000", - "height": 16, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6322171905919, - 45.489445138992146 - ], - [ - -73.63220069073454, - 45.489463138799564 - ], - [ - -73.63231789007044, - 45.48951593830239 - ], - [ - -73.63246219086253, - 45.489357839195875 - ], - [ - -73.63234239055897, - 45.48930383886001 - ], - [ - -73.63234009103626, - 45.489306339495016 - ], - [ - -73.6323109901298, - 45.48933653962351 - ], - [ - -73.63228658373905, - 45.489324925691484 - ], - [ - -73.63219062479396, - 45.489433046122066 - ], - [ - -73.6322171905919, - 45.489445138992146 - ] - ] - ] - }, - "id": 194558, - "properties": { - "name": "03007109", - "address": "rue Lemieux (MTL) 5490", - "function": "1000", - "height": 16, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6242228883837, - 45.486507838131494 - ], - [ - -73.62427798794148, - 45.486483238501215 - ], - [ - -73.62429738734618, - 45.486504938771745 - ], - [ - -73.62429738778552, - 45.48650513853706 - ], - [ - -73.62436418811842, - 45.48647553828684 - ], - [ - -73.62428023153369, - 45.486381892721845 - ], - [ - -73.62419042398922, - 45.48641640320292 - ], - [ - -73.62415468779224, - 45.48643233872729 - ], - [ - -73.6242228883837, - 45.486507838131494 - ] - ] - ] - }, - "id": 194574, - "properties": { - "name": "03074738", - "address": "avenue Ponsard (MTL) 4934", - "function": "1000", - "height": 9, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6270927883359, - 45.48906093910967 - ], - [ - -73.62706508818867, - 45.48909113994382 - ], - [ - -73.6271826886295, - 45.48914443918739 - ], - [ - -73.62722998972463, - 45.48909273988385 - ], - [ - -73.6272298884281, - 45.48909263831414 - ], - [ - -73.62724417000067, - 45.48906777317457 - ], - [ - -73.62713198818128, - 45.489018118635855 - ], - [ - -73.6270927883359, - 45.48906093910967 - ] - ] - ] - }, - "id": 194575, - "properties": { - "name": "03074737", - "address": "rue Fulton (MTL) 4817", - "function": "1000", - "height": 10, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63070448961693, - 45.49177643872313 - ], - [ - -73.63070159022391, - 45.49177964008983 - ], - [ - -73.63086309000143, - 45.491848039570044 - ], - [ - -73.63086779027147, - 45.49185013982244 - ], - [ - -73.63089848917119, - 45.491814639956445 - ], - [ - -73.63086748987426, - 45.49180164032114 - ], - [ - -73.63104899044471, - 45.49158963931494 - ], - [ - -73.63091549015692, - 45.49153313905327 - ], - [ - -73.63070448961693, - 45.49177643872313 - ] - ] - ] - }, - "id": 194599, - "properties": { - "name": "03073057", - "address": "avenue Saint-Kevin (MTL) 4795", - "function": "1000", - "height": 14, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62723288868007, - 45.488890438802215 - ], - [ - -73.62740238868486, - 45.48896573881221 - ], - [ - -73.62745837244738, - 45.48890333596463 - ], - [ - -73.62728873102816, - 45.488828248558 - ], - [ - -73.62723288868007, - 45.488890438802215 - ] - ] - ] - }, - "id": 194626, - "properties": { - "name": "03074733", - "address": "rue Fulton (MTL) 4829", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62439008686424, - 45.486734638686215 - ], - [ - -73.62449198817798, - 45.48681873884132 - ], - [ - -73.6245641878805, - 45.486775438737844 - ], - [ - -73.62455468711259, - 45.48676753855368 - ], - [ - -73.6246354876092, - 45.48671913859834 - ], - [ - -73.62454318784782, - 45.48664283876311 - ], - [ - -73.62439008686424, - 45.486734638686215 - ] - ] - ] - }, - "id": 194627, - "properties": { - "name": "03074734", - "address": "avenue Ponsard (MTL) 4922", - "function": "1000", - "height": 22, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62719888915083, - 45.48894503969656 - ], - [ - -73.62713198818128, - 45.489018118635855 - ], - [ - -73.62724417000067, - 45.48906777317457 - ], - [ - -73.62726078870452, - 45.489038839027785 - ], - [ - -73.6272907886987, - 45.48904713906937 - ], - [ - -73.62730768862808, - 45.48902833866156 - ], - [ - -73.62728938818938, - 45.48902003908526 - ], - [ - -73.62731128846325, - 45.48899643872812 - ], - [ - -73.62719888915083, - 45.48894503969656 - ] - ] - ] - }, - "id": 194628, - "properties": { - "name": "03074735", - "address": "rue Fulton (MTL) 4821", - "function": "1000", - "height": 10, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62917228952429, - 45.49130003910294 - ], - [ - -73.62911477905674, - 45.49136415869475 - ], - [ - -73.62928718801123, - 45.4914405378006 - ], - [ - -73.62934458989056, - 45.49137653972489 - ], - [ - -73.62917228952429, - 45.49130003910294 - ] - ] - ] - }, - "id": 194633, - "properties": { - "name": "03073723", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4766", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6237645871461, - 45.48802023928526 - ], - [ - -73.62393178697673, - 45.48809943878073 - ], - [ - -73.62398721039672, - 45.488041509565655 - ], - [ - -73.62381728555694, - 45.487965154816706 - ], - [ - -73.6237645871461, - 45.48802023928526 - ] - ] - ] - }, - "id": 194823, - "properties": { - "name": "03007258", - "address": "avenue Victoria (MTL+WMT) 5040", - "function": "1000", - "height": 11, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62398658773093, - 45.487780438934905 - ], - [ - -73.62393668013684, - 45.48783507773127 - ], - [ - -73.62410928883766, - 45.48791263968067 - ], - [ - -73.62415888748168, - 45.487858338587564 - ], - [ - -73.62398658773093, - 45.487780438934905 - ] - ] - ] - }, - "id": 194824, - "properties": { - "name": "03007260", - "address": "avenue Victoria (MTL+WMT) 5052", - "function": "1000", - "height": 10, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62630548886737, - 45.48903203918453 - ], - [ - -73.62622388846914, - 45.489118939272025 - ], - [ - -73.62622858833998, - 45.489121039716714 - ], - [ - -73.62648218778209, - 45.48923633893504 - ], - [ - -73.62648538854172, - 45.48923283949145 - ], - [ - -73.62656498822955, - 45.489147839209714 - ], - [ - -73.62630838859428, - 45.48902893871017 - ], - [ - -73.62630548886737, - 45.48903203918453 - ] - ] - ] - }, - "id": 194853, - "properties": { - "name": "03007272", - "address": "avenue Victoria (MTL+WMT) 5190", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62293608670056, - 45.4889098393903 - ], - [ - -73.62286778677304, - 45.48898513905643 - ], - [ - -73.62296294737597, - 45.48902790169501 - ], - [ - -73.62310426088065, - 45.48887302286246 - ], - [ - -73.62300838736302, - 45.48883003974618 - ], - [ - -73.62293608670056, - 45.4889098393903 - ] - ] - ] - }, - "id": 194879, - "properties": { - "name": "03075184", - "address": "avenue Grosvenor (MTL) 5029", - "function": "1000", - "height": 11, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63170669038826, - 45.488324438523364 - ], - [ - -73.63163629022408, - 45.48839953889766 - ], - [ - -73.63164099023567, - 45.4884016391198 - ], - [ - -73.63191119018748, - 45.48852453875749 - ], - [ - -73.63191439033511, - 45.48852093837933 - ], - [ - -73.63198399022605, - 45.48844453848315 - ], - [ - -73.63170969038502, - 45.48832113893002 - ], - [ - -73.63170669038826, - 45.488324438523364 - ] - ] - ] - }, - "id": 194937, - "properties": { - "name": "03073741", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4960", - "function": "1000", - "height": 13, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63176039051669, - 45.48825883904198 - ], - [ - -73.63203568979806, - 45.488383539395905 - ], - [ - -73.6321558899244, - 45.48825223890575 - ], - [ - -73.63188068929288, - 45.48812743884188 - ], - [ - -73.63176039051669, - 45.48825883904198 - ] - ] - ] - }, - "id": 194938, - "properties": { - "name": "03073743", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4970", - "function": "1000", - "height": 15, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62794208905393, - 45.49124603996586 - ], - [ - -73.62788508415488, - 45.49130914874669 - ], - [ - -73.62805683293334, - 45.49138520200587 - ], - [ - -73.62811338966402, - 45.49132253996601 - ], - [ - -73.62794208905393, - 45.49124603996586 - ] - ] - ] - }, - "id": 194945, - "properties": { - "name": "03074137", - "address": "avenue Lacombe (MTL) 4686", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62797678903105, - 45.491207239367434 - ], - [ - -73.6281479890986, - 45.49128343978046 - ], - [ - -73.62820540159673, - 45.49121967622327 - ], - [ - -73.62803391820951, - 45.49114373536843 - ], - [ - -73.62797678903105, - 45.491207239367434 - ] - ] - ] - }, - "id": 194946, - "properties": { - "name": "03074138", - "address": "avenue Lacombe (MTL) 4692", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62479208845147, - 45.48695533820996 - ], - [ - -73.6247925884346, - 45.486955238680686 - ], - [ - -73.62489168826971, - 45.48692723875226 - ], - [ - -73.62486188788566, - 45.4868754393149 - ], - [ - -73.62486208745433, - 45.48687543909676 - ], - [ - -73.62482348792798, - 45.48682873879466 - ], - [ - -73.62482298812225, - 45.48682833890949 - ], - [ - -73.6247142876018, - 45.48691673881087 - ], - [ - -73.62476248767734, - 45.4869539388901 - ], - [ - -73.62476268768731, - 45.4869541384374 - ], - [ - -73.62477958723699, - 45.486944338654475 - ], - [ - -73.62479208845147, - 45.48695533820996 - ] - ] - ] - }, - "id": 194951, - "properties": { - "name": "03074730", - "address": "avenue Ponsard (MTL) 4914", - "function": "1000", - "height": 16, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62734548951637, - 45.4887650386394 - ], - [ - -73.62728873102816, - 45.488828248558 - ], - [ - -73.62745837244738, - 45.48890333596463 - ], - [ - -73.62751488950857, - 45.488840339495454 - ], - [ - -73.62734548951637, - 45.4887650386394 - ] - ] - ] - }, - "id": 194952, - "properties": { - "name": "03074731", - "address": "rue Fulton (MTL) 4833", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62905828937242, - 45.491427139699404 - ], - [ - -73.62923058997065, - 45.4915036395915 - ], - [ - -73.62928718801123, - 45.4914405378006 - ], - [ - -73.62911477905674, - 45.49136415869475 - ], - [ - -73.62905828937242, - 45.491427139699404 - ] - ] - ] - }, - "id": 195049, - "properties": { - "name": "03073721", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4762", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62387418677706, - 45.48537833788385 - ], - [ - -73.62375832028142, - 45.48540032253655 - ], - [ - -73.6237929825369, - 45.48548771581363 - ], - [ - -73.62384868684073, - 45.48547733869645 - ], - [ - -73.62385438630072, - 45.48547633818693 - ], - [ - -73.62385078740003, - 45.48546683881556 - ], - [ - -73.62390418683893, - 45.48545663874039 - ], - [ - -73.62387418677706, - 45.48537833788385 - ] - ] - ] - }, - "id": 195069, - "properties": { - "name": "03074762", - "address": "avenue Ponsard (MTL) 4978", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6280905891121, - 45.49108073936665 - ], - [ - -73.62803391820951, - 45.49114373536843 - ], - [ - -73.62820540159673, - 45.49121967622327 - ], - [ - -73.62826188874102, - 45.49115693949902 - ], - [ - -73.6280905891121, - 45.49108073936665 - ] - ] - ] - }, - "id": 195118, - "properties": { - "name": "03074141", - "address": "avenue Lacombe (MTL) 4696", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6289452896051, - 45.49153703941191 - ], - [ - -73.62889118946663, - 45.491601139741284 - ], - [ - -73.62908018944118, - 45.49168003979699 - ], - [ - -73.62913237628922, - 45.49161798059078 - ], - [ - -73.62894647621356, - 45.49153562441585 - ], - [ - -73.6289452896051, - 45.49153703941191 - ] - ] - ] - }, - "id": 195142, - "properties": { - "name": "03073717", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4752", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62624588908814, - 45.49025443877799 - ], - [ - -73.62630368869299, - 45.49018993966391 - ], - [ - -73.62640778819623, - 45.49023633931181 - ], - [ - -73.62647598867528, - 45.490160339375706 - ], - [ - -73.62636678780196, - 45.49011193967787 - ], - [ - -73.62633278847883, - 45.49015073901976 - ], - [ - -73.62617548860852, - 45.49008103989692 - ], - [ - -73.62608428846721, - 45.490182739428796 - ], - [ - -73.62624588908814, - 45.49025443877799 - ] - ] - ] - }, - "id": 195147, - "properties": { - "name": "03074741", - "address": "rue Fulton (MTL) 4725", - "function": "1000", - "height": 14, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62394868776471, - 45.486198338866686 - ], - [ - -73.6239905876807, - 45.486278738714276 - ], - [ - -73.62417438714608, - 45.48623133944113 - ], - [ - -73.6241744869293, - 45.48623133933265 - ], - [ - -73.62413248700209, - 45.4861509387607 - ], - [ - -73.62394868776471, - 45.486198338866686 - ] - ] - ] - }, - "id": 195148, - "properties": { - "name": "03074742", - "address": "avenue Ponsard (MTL) 4946", - "function": "1000", - "height": 15, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63237218959738, - 45.488511038685125 - ], - [ - -73.6326111901036, - 45.488617039523284 - ], - [ - -73.63271729080648, - 45.488498638803655 - ], - [ - -73.63247819081599, - 45.48839263830067 - ], - [ - -73.63237218959738, - 45.488511038685125 - ] - ] - ] - }, - "id": 195225, - "properties": { - "name": "03073238", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4955", - "function": "1000", - "height": 15, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62394238735406, - 45.485690838003464 - ], - [ - -73.62393748741331, - 45.48569183854971 - ], - [ - -73.62387818023251, - 45.485702089139515 - ], - [ - -73.62391374379456, - 45.48579138457206 - ], - [ - -73.62402508734237, - 45.48576813859101 - ], - [ - -73.62402518712477, - 45.485768138482676 - ], - [ - -73.62400328801243, - 45.48569203888987 - ], - [ - -73.62394508740283, - 45.48570053811274 - ], - [ - -73.62394238735406, - 45.485690838003464 - ] - ] - ] - }, - "id": 195227, - "properties": { - "name": "03074748", - "address": "avenue Ponsard (MTL) 4960", - "function": "1000", - "height": 17, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62590768907647, - 45.48943523925749 - ], - [ - -73.62605088830831, - 45.48949973971414 - ], - [ - -73.62616638862526, - 45.48937283838514 - ], - [ - -73.62602318830646, - 45.48930833897287 - ], - [ - -73.62590768907647, - 45.48943523925749 - ] - ] - ] - }, - "id": 195307, - "properties": { - "name": "03007414", - "address": "avenue Victoria (MTL+WMT) 5185", - "function": "1000", - "height": 9, - "year_of_construction": 1953 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62368458772674, - 45.48851183957391 - ], - [ - -73.62378043295232, - 45.488553015265936 - ], - [ - -73.62391395770356, - 45.488403094808675 - ], - [ - -73.62381568722935, - 45.48836083844246 - ], - [ - -73.62368458772674, - 45.48851183957391 - ] - ] - ] - }, - "id": 195308, - "properties": { - "name": "03007422", - "address": "avenue Victoria (MTL+WMT) 5073", - "function": "1000", - "height": 8, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62297418753273, - 45.48766683902243 - ], - [ - -73.6230646591938, - 45.48770693319263 - ], - [ - -73.62321811102804, - 45.48753798191637 - ], - [ - -73.62315008784061, - 45.487508038221705 - ], - [ - -73.62314098672664, - 45.48751853933409 - ], - [ - -73.62311688691278, - 45.48750783915162 - ], - [ - -73.62297418753273, - 45.48766683902243 - ] - ] - ] - }, - "id": 195377, - "properties": { - "name": "03007243", - "address": "avenue Victoria (MTL+WMT) 4996", - "function": "1000", - "height": 12, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6247933872586, - 45.48613163861882 - ], - [ - -73.62461798708925, - 45.48621733886441 - ], - [ - -73.6246646670288, - 45.48626453613583 - ], - [ - -73.62484986195558, - 45.48618893488252 - ], - [ - -73.6247933872586, - 45.48613163861882 - ] - ] - ] - }, - "id": 195550, - "properties": { - "name": "03074718", - "address": "avenue Ponsard (MTL) 4931", - "function": "1000", - "height": 13, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62473758793894, - 45.48631363850401 - ], - [ - -73.62489648729101, - 45.48623623830094 - ], - [ - -73.62484986195558, - 45.48618893488252 - ], - [ - -73.6246646670288, - 45.48626453613583 - ], - [ - -73.62470818785918, - 45.486308538784584 - ], - [ - -73.62470838764628, - 45.48630863844935 - ], - [ - -73.62472468694483, - 45.486300538237735 - ], - [ - -73.62473758793894, - 45.48631363850401 - ] - ] - ] - }, - "id": 195551, - "properties": { - "name": "03074720", - "address": "avenue Ponsard (MTL) 4929", - "function": "1000", - "height": 13, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62539778801265, - 45.48914213921673 - ], - [ - -73.62540128753226, - 45.48913833892712 - ], - [ - -73.62546858859228, - 45.48906633857844 - ], - [ - -73.62525378772628, - 45.48896713959616 - ], - [ - -73.62518168739462, - 45.489043039610195 - ], - [ - -73.62518638743974, - 45.48904523908063 - ], - [ - -73.62527378817617, - 45.489087438695655 - ], - [ - -73.62526538790536, - 45.489096038732214 - ], - [ - -73.62529638753378, - 45.489110439153194 - ], - [ - -73.62530128827487, - 45.48911313871279 - ], - [ - -73.62531138774483, - 45.489102338487164 - ], - [ - -73.62539778801265, - 45.48914213921673 - ] - ] - ] - }, - "id": 195579, - "properties": { - "name": "03007416", - "address": "avenue Victoria (MTL+WMT) 5145", - "function": "1000", - "height": 8, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6252432885332, - 45.48912833952034 - ], - [ - -73.62516037155734, - 45.48922406597382 - ], - [ - -73.62527855424052, - 45.48927638300745 - ], - [ - -73.62536288767755, - 45.489180239185956 - ], - [ - -73.6252432885332, - 45.48912833952034 - ] - ] - ] - }, - "id": 195624, - "properties": { - "name": "03074893", - "address": "avenue Dornal (MTL) 4740", - "function": "1000", - "height": 10, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63012638947328, - 45.491337339981406 - ], - [ - -73.63020525907926, - 45.49137189234242 - ], - [ - -73.63030933337811, - 45.49125578993202 - ], - [ - -73.63022939082579, - 45.491220839334204 - ], - [ - -73.63012638947328, - 45.491337339981406 - ] - ] - ] - }, - "id": 195647, - "properties": { - "name": "03007382", - "address": "avenue Victoria (MTL+WMT) 5461", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62321811102804, - 45.48753798191637 - ], - [ - -73.6230646591938, - 45.48770693319263 - ], - [ - -73.62315628731447, - 45.487747538956036 - ], - [ - -73.62329598699885, - 45.487591739249496 - ], - [ - -73.62327548674165, - 45.487582638740214 - ], - [ - -73.62328828657505, - 45.48756873940732 - ], - [ - -73.62328298672989, - 45.4875665387059 - ], - [ - -73.62321811102804, - 45.48753798191637 - ] - ] - ] - }, - "id": 195700, - "properties": { - "name": "03007245", - "address": "avenue Victoria (MTL+WMT) 5000", - "function": "1000", - "height": 12, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63082868940792, - 45.49026043904578 - ], - [ - -73.6310499909274, - 45.490358339585185 - ], - [ - -73.63119899003964, - 45.49019193923461 - ], - [ - -73.63097768996282, - 45.49009393909653 - ], - [ - -73.63082868940792, - 45.49026043904578 - ] - ] - ] - }, - "id": 195797, - "properties": { - "name": "03073250", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4865", - "function": "1000", - "height": 13, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62475848690232, - 45.48635683887607 - ], - [ - -73.62483248727791, - 45.48641963925705 - ], - [ - -73.62487868758245, - 45.48645803827091 - ], - [ - -73.62492288839067, - 45.486430439359715 - ], - [ - -73.6249011872932, - 45.48641623922749 - ], - [ - -73.62494468817957, - 45.48638453867574 - ], - [ - -73.62485518841208, - 45.48632423888421 - ], - [ - -73.62482808804673, - 45.48634443854782 - ], - [ - -73.6248066877658, - 45.486329138457066 - ], - [ - -73.62475848690232, - 45.48635683887607 - ] - ] - ] - }, - "id": 195805, - "properties": { - "name": "03074722", - "address": "avenue Ponsard (MTL) 4925", - "function": "1000", - "height": 18, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62542018737304, - 45.48477633834967 - ], - [ - -73.62549218829369, - 45.484762538417144 - ], - [ - -73.62547418741492, - 45.484716138730384 - ], - [ - -73.62550928769316, - 45.4847094386078 - ], - [ - -73.62550238782218, - 45.48469173811723 - ], - [ - -73.6254668873746, - 45.48469853856019 - ], - [ - -73.62545248821455, - 45.48466163908808 - ], - [ - -73.6253809873706, - 45.48467533766419 - ], - [ - -73.62542018737304, - 45.48477633834967 - ] - ] - ] - }, - "id": 195819, - "properties": { - "name": "03074673", - "address": "avenue Iona (MTL) 5001", - "function": "1000", - "height": 9, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62391395770356, - 45.488403094808675 - ], - [ - -73.62378043295232, - 45.488553015265936 - ], - [ - -73.62382168788096, - 45.48857073890261 - ], - [ - -73.62381128699221, - 45.48858243916975 - ], - [ - -73.62385518765821, - 45.488601938921015 - ], - [ - -73.623999187304, - 45.48845253881583 - ], - [ - -73.623939887143, - 45.48842413926001 - ], - [ - -73.62394658718416, - 45.48841723917331 - ], - [ - -73.62394568672194, - 45.48841673893644 - ], - [ - -73.62391395770356, - 45.488403094808675 - ] - ] - ] - }, - "id": 195835, - "properties": { - "name": "03007420", - "address": "avenue Victoria (MTL+WMT) 5077", - "function": "1000", - "height": 8, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63010870867699, - 45.49116303313365 - ], - [ - -73.62999486717645, - 45.491290213673594 - ], - [ - -73.6300700897512, - 45.49132393972161 - ], - [ - -73.6301848902877, - 45.491197139548774 - ], - [ - -73.63010870867699, - 45.49116303313365 - ] - ] - ] - }, - "id": 196118, - "properties": { - "name": "03007384", - "address": "avenue Victoria (MTL+WMT) 5457", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62991618934088, - 45.49125493927296 - ], - [ - -73.62999486717645, - 45.491290213673594 - ], - [ - -73.63010870867699, - 45.49116303313365 - ], - [ - -73.63003099031305, - 45.49112823913555 - ], - [ - -73.62991618934088, - 45.49125493927296 - ] - ] - ] - }, - "id": 196120, - "properties": { - "name": "03007386", - "address": "avenue Victoria (MTL+WMT) 5453", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63223259062052, - 45.488694138964895 - ], - [ - -73.63246649003771, - 45.48880193849964 - ], - [ - -73.63257539024733, - 45.48868503831095 - ], - [ - -73.6323414898279, - 45.48857723899814 - ], - [ - -73.63223259062052, - 45.488694138964895 - ] - ] - ] - }, - "id": 196367, - "properties": { - "name": "03073240", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4945", - "function": "1000", - "height": 18, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62935418915676, - 45.49083273895925 - ], - [ - -73.62923528874907, - 45.49097034018562 - ], - [ - -73.62928538970192, - 45.49099173939835 - ], - [ - -73.62928748915961, - 45.49098893940363 - ], - [ - -73.62930108985276, - 45.49097253962891 - ], - [ - -73.6293321797501, - 45.49098523364127 - ], - [ - -73.6294371545285, - 45.49086801069091 - ], - [ - -73.62943208983694, - 45.49086593958727 - ], - [ - -73.62935418915676, - 45.49083273895925 - ] - ] - ] - }, - "id": 196509, - "properties": { - "name": "03007394", - "address": "avenue Victoria (MTL+WMT) 5417", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62963209537561, - 45.490959108610824 - ], - [ - -73.62952569417074, - 45.49107794137916 - ], - [ - -73.62960209000204, - 45.49111193905927 - ], - [ - -73.62970878951106, - 45.490993239058824 - ], - [ - -73.62963209537561, - 45.490959108610824 - ] - ] - ] - }, - "id": 196721, - "properties": { - "name": "03007388", - "address": "avenue Victoria (MTL+WMT) 5433", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62469188751103, - 45.488477738999826 - ], - [ - -73.62483771593413, - 45.488316446178736 - ], - [ - -73.62472049846316, - 45.48826446686817 - ], - [ - -73.6246921878466, - 45.488298439050325 - ], - [ - -73.62453418715715, - 45.488233139554524 - ], - [ - -73.62454508773992, - 45.48822013929905 - ], - [ - -73.62454458686464, - 45.48821983929675 - ], - [ - -73.62441408791335, - 45.488161439355565 - ], - [ - -73.6242904878276, - 45.4882981389728 - ], - [ - -73.62469188751103, - 45.488477738999826 - ] - ] - ] - }, - "id": 196738, - "properties": { - "name": "03007270", - "address": "avenue Victoria (MTL+WMT) 5094", - "function": "1000", - "height": 19, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63008978896005, - 45.491800939538926 - ], - [ - -73.63010199011883, - 45.491806839424115 - ], - [ - -73.6300381899856, - 45.4918723389023 - ], - [ - -73.63016448961433, - 45.49193323963491 - ], - [ - -73.63025118926059, - 45.491844239721125 - ], - [ - -73.6301125900681, - 45.49177743931277 - ], - [ - -73.63008978896005, - 45.491800939538926 - ] - ] - ] - }, - "id": 196865, - "properties": { - "name": "03073164", - "address": "avenue Saint-Kevin (MTL) 4760", - "function": "1000", - "height": 12, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62578308810691, - 45.489209839283994 - ], - [ - -73.62571737945952, - 45.48928444491572 - ], - [ - -73.62584174738056, - 45.48934031704641 - ], - [ - -73.62590848830447, - 45.48926453860738 - ], - [ - -73.62578308810691, - 45.489209839283994 - ] - ] - ] - }, - "id": 196921, - "properties": { - "name": "03074867", - "address": "avenue Dornal (MTL) 4751", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62362948668903, - 45.48707653926681 - ], - [ - -73.62362768779448, - 45.48708053832855 - ], - [ - -73.62368958769596, - 45.487095138803156 - ], - [ - -73.6237132867912, - 45.487045538836796 - ], - [ - -73.6238627881857, - 45.48708083884278 - ], - [ - -73.62395018778598, - 45.48689803935505 - ], - [ - -73.62394798736936, - 45.48689743884609 - ], - [ - -73.62381108724196, - 45.48687023920197 - ], - [ - -73.62376598747832, - 45.486982538436905 - ], - [ - -73.62373018651896, - 45.48697553862842 - ], - [ - -73.62367708803023, - 45.4869643390617 - ], - [ - -73.62362948668903, - 45.48707653926681 - ] - ] - ] - }, - "id": 197003, - "properties": { - "name": "03074651", - "address": "chemin Circle (MTL) 4481", - "function": "1000", - "height": 20, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62353978655268, - 45.482780837717 - ], - [ - -73.62358588690654, - 45.48273023807596 - ], - [ - -73.62358648728669, - 45.482730438092176 - ], - [ - -73.6236245486233, - 45.482714713482295 - ], - [ - -73.62346037020396, - 45.4826397097804 - ], - [ - -73.62344128712829, - 45.48266193861464 - ], - [ - -73.6234367876723, - 45.48265993861911 - ], - [ - -73.62338868648546, - 45.48271283856969 - ], - [ - -73.62353978655268, - 45.482780837717 - ] - ] - ] - }, - "id": 197036, - "properties": { - "name": "03035095", - "address": "avenue Ponsard (MTL) 5207", - "function": "1000", - "height": 10, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62357738685418, - 45.48253373790599 - ], - [ - -73.62371898780378, - 45.482597838161745 - ], - [ - -73.62376908741861, - 45.48254293824649 - ], - [ - -73.62371978739668, - 45.48252073845144 - ], - [ - -73.6237353703312, - 45.482503714474234 - ], - [ - -73.62364327635306, - 45.482461641992835 - ], - [ - -73.62357738685418, - 45.48253373790599 - ] - ] - ] - }, - "id": 197037, - "properties": { - "name": "03035098", - "address": "avenue Ponsard (MTL) 5219", - "function": "1000", - "height": 12, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63259609043163, - 45.49155703961467 - ], - [ - -73.63260109035384, - 45.49155923933078 - ], - [ - -73.63279308989833, - 45.49134773896711 - ], - [ - -73.63263648993471, - 45.49127743964671 - ], - [ - -73.63263209077128, - 45.49127553888289 - ], - [ - -73.63244309042139, - 45.49149113879465 - ], - [ - -73.63244289107267, - 45.49149123980842 - ], - [ - -73.63253159038922, - 45.49153823931899 - ], - [ - -73.63253249097713, - 45.49153873948778 - ], - [ - -73.63253849074353, - 45.4915319395962 - ], - [ - -73.63259609043163, - 45.49155703961467 - ] - ] - ] - }, - "id": 197049, - "properties": { - "name": "03007137", - "address": "rue Beaucourt (MTL) 5595", - "function": "1000", - "height": 13, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6229016872962, - 45.48852953871804 - ], - [ - -73.62300636483278, - 45.48857617481699 - ], - [ - -73.62312442966903, - 45.48844675781362 - ], - [ - -73.62301868682624, - 45.488399638852215 - ], - [ - -73.6229016872962, - 45.48852953871804 - ] - ] - ] - }, - "id": 197177, - "properties": { - "name": "03075163", - "address": "avenue Grosvenor (MTL) 5022", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62353784510464, - 45.48683571641086 - ], - [ - -73.62343214293423, - 45.48688331464175 - ], - [ - -73.62351758750965, - 45.48698143864494 - ], - [ - -73.62352208752571, - 45.48697943882081 - ], - [ - -73.62362368759341, - 45.486936738308366 - ], - [ - -73.62353784510464, - 45.48683571641086 - ] - ] - ] - }, - "id": 197196, - "properties": { - "name": "03074650", - "address": "chemin Circle (MTL) 4495", - "function": "1000", - "height": 13, - "year_of_construction": 1955 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62447658759864, - 45.48349083789975 - ], - [ - -73.6244562869523, - 45.48350963891279 - ], - [ - -73.6244066872767, - 45.48355463756679 - ], - [ - -73.6244886872103, - 45.48359923819594 - ], - [ - -73.62457368700487, - 45.483521938716024 - ], - [ - -73.62449148733992, - 45.48347723848201 - ], - [ - -73.62447658759864, - 45.48349083789975 - ] - ] - ] - }, - "id": 197229, - "properties": { - "name": "03034922", - "address": "chemin Circle (MTL) 4938", - "function": "1000", - "height": 22, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62546358738975, - 45.48956523905092 - ], - [ - -73.62541227760329, - 45.48962223850962 - ], - [ - -73.62557327350886, - 45.48969350485597 - ], - [ - -73.62562428735254, - 45.489636939376624 - ], - [ - -73.62546358738975, - 45.48956523905092 - ] - ] - ] - }, - "id": 197297, - "properties": { - "name": "03074875", - "address": "avenue Dornal (MTL) 4727", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62964188937875, - 45.49003633863461 - ], - [ - -73.62958833959695, - 45.49009510710334 - ], - [ - -73.62977053078598, - 45.49017577475894 - ], - [ - -73.62982309004252, - 45.49011803945391 - ], - [ - -73.62964188937875, - 45.49003633863461 - ] - ] - ] - }, - "id": 197303, - "properties": { - "name": "03073794", - "address": "avenue Lacombe (MTL) 4823", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62474988652887, - 45.482473737626805 - ], - [ - -73.62469308695039, - 45.482526637729514 - ], - [ - -73.62489118816602, - 45.48262183832322 - ], - [ - -73.62489518787666, - 45.482617637966065 - ], - [ - -73.62494488649622, - 45.482569337447615 - ], - [ - -73.62475178682918, - 45.48247173789226 - ], - [ - -73.62474988652887, - 45.482473737626805 - ] - ] - ] - }, - "id": 197323, - "properties": { - "name": "05264057", - "address": "rue Saranac (MTL) 5245", - "function": "1000", - "height": 14, - "year_of_construction": 2009 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63162769025162, - 45.49152513982131 - ], - [ - -73.6316247911523, - 45.491528439294356 - ], - [ - -73.63177979105717, - 45.49159533953048 - ], - [ - -73.63178449006077, - 45.491597439746684 - ], - [ - -73.63197129066256, - 45.49138533936833 - ], - [ - -73.63191219057883, - 45.49135963877039 - ], - [ - -73.6319184903575, - 45.491352538916274 - ], - [ - -73.63191359073866, - 45.491350538819965 - ], - [ - -73.63182179092826, - 45.491311739094876 - ], - [ - -73.63181739051224, - 45.491309839201 - ], - [ - -73.63162769025162, - 45.49152513982131 - ] - ] - ] - }, - "id": 197354, - "properties": { - "name": "03007307", - "address": "avenue Victoria (MTL+WMT) 5520", - "function": "1000", - "height": 15, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63185018993065, - 45.491623339756195 - ], - [ - -73.63184739144529, - 45.4916264393531 - ], - [ - -73.6320084896515, - 45.49169723936565 - ], - [ - -73.63219529034868, - 45.49148703909731 - ], - [ - -73.6321341901201, - 45.49146013963631 - ], - [ - -73.63214569007874, - 45.491447339534794 - ], - [ - -73.63210499086705, - 45.4914296398668 - ], - [ - -73.63209999050649, - 45.49142723946395 - ], - [ - -73.63209029016595, - 45.49143873900349 - ], - [ - -73.6320428912439, - 45.49141903950621 - ], - [ - -73.6320375902305, - 45.49141663944818 - ], - [ - -73.63185018993065, - 45.491623339756195 - ] - ] - ] - }, - "id": 197356, - "properties": { - "name": "03007309", - "address": "avenue Victoria (MTL+WMT) 5530", - "function": "1000", - "height": 13, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63207398981996, - 45.49172463861856 - ], - [ - -73.63207109027381, - 45.491727740137456 - ], - [ - -73.63222989088553, - 45.49179783971403 - ], - [ - -73.63242499039825, - 45.491579938491235 - ], - [ - -73.63227119029712, - 45.49151213879591 - ], - [ - -73.6322665897978, - 45.49151003938547 - ], - [ - -73.63207398981996, - 45.49172463861856 - ] - ] - ] - }, - "id": 197358, - "properties": { - "name": "03007311", - "address": "avenue Victoria (MTL+WMT) 5560", - "function": "1000", - "height": 14, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62312442966903, - 45.48844675781362 - ], - [ - -73.62300636483278, - 45.48857617481699 - ], - [ - -73.62310818686704, - 45.488621538816105 - ], - [ - -73.62324808672854, - 45.488466139407656 - ], - [ - -73.62320518640067, - 45.48844703877491 - ], - [ - -73.62318228705375, - 45.48847253899836 - ], - [ - -73.62312442966903, - 45.48844675781362 - ] - ] - ] - }, - "id": 197378, - "properties": { - "name": "03075165", - "address": "avenue Grosvenor (MTL) 5026", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62947928932091, - 45.49024363864474 - ], - [ - -73.62944648998777, - 45.49027983969918 - ], - [ - -73.62958648924122, - 45.49034263863299 - ], - [ - -73.62965968967745, - 45.490261839449076 - ], - [ - -73.62951968949073, - 45.49019913958809 - ], - [ - -73.62947928932091, - 45.49024363864474 - ] - ] - ] - }, - "id": 197381, - "properties": { - "name": "03073798", - "address": "avenue Lacombe (MTL) 4815", - "function": "1000", - "height": 10, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6231007870002, - 45.48596793869838 - ], - [ - -73.6231545877547, - 45.48610933918109 - ], - [ - -73.62337508718542, - 45.48606783880171 - ], - [ - -73.62338068693045, - 45.48606683842362 - ], - [ - -73.62332698799237, - 45.4859254379364 - ], - [ - -73.6231007870002, - 45.48596793869838 - ] - ] - ] - }, - "id": 197404, - "properties": { - "name": "03074814", - "address": "avenue Glencairn (MTL) 4951", - "function": "1000", - "height": 15, - "year_of_construction": 1959 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62320548697626, - 45.48627343957698 - ], - [ - -73.62336378624198, - 45.48624313918606 - ], - [ - -73.62336998704447, - 45.48624203827652 - ], - [ - -73.62332238703975, - 45.48612913832206 - ], - [ - -73.62327058726054, - 45.48613993839463 - ], - [ - -73.62325938656308, - 45.486113238556314 - ], - [ - -73.62315158751734, - 45.486133838920495 - ], - [ - -73.62320548697626, - 45.48627343957698 - ] - ] - ] - }, - "id": 197405, - "properties": { - "name": "03074816", - "address": "avenue Glencairn (MTL) 4947", - "function": "1000", - "height": 16, - "year_of_construction": 1956 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62523058776128, - 45.48432053854094 - ], - [ - -73.62534568795277, - 45.48437823820963 - ], - [ - -73.62541168752784, - 45.48431313838288 - ], - [ - -73.6252964876201, - 45.48425543798956 - ], - [ - -73.62523058776128, - 45.48432053854094 - ] - ] - ] - }, - "id": 197407, - "properties": { - "name": "03034968", - "address": "chemin Circle (MTL) 4985", - "function": "1000", - "height": 7, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62383068627389, - 45.48223143821697 - ], - [ - -73.62403128634107, - 45.48231463814486 - ], - [ - -73.62407068700803, - 45.482267637765815 - ], - [ - -73.62407078762496, - 45.482267437890606 - ], - [ - -73.62404718733508, - 45.48225783786431 - ], - [ - -73.62404918395453, - 45.48225542050801 - ], - [ - -73.6238766256648, - 45.482176589552985 - ], - [ - -73.62383068627389, - 45.48223143821697 - ] - ] - ] - }, - "id": 197416, - "properties": { - "name": "03035105", - "address": "avenue Ponsard (MTL) 5247", - "function": "1000", - "height": 15, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62331798776911, - 45.489545439362665 - ], - [ - -73.62331508679014, - 45.48954863964502 - ], - [ - -73.62360158807103, - 45.48967663893753 - ], - [ - -73.62360618810173, - 45.48967873959796 - ], - [ - -73.6239927872895, - 45.48925563893914 - ], - [ - -73.62369968752529, - 45.48912313953869 - ], - [ - -73.62360858734299, - 45.48922273946311 - ], - [ - -73.62372558668739, - 45.48927573876722 - ], - [ - -73.62357498766967, - 45.489440239651586 - ], - [ - -73.62352078751427, - 45.48950083897044 - ], - [ - -73.62340418754947, - 45.489449239186605 - ], - [ - -73.62331798776911, - 45.489545439362665 - ] - ] - ] - }, - "id": 197430, - "properties": { - "name": "03075038", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4660", - "function": "1000", - "height": 16, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63229879027368, - 45.49182343971181 - ], - [ - -73.63229579036187, - 45.491826840101126 - ], - [ - -73.63245049111072, - 45.49189423918412 - ], - [ - -73.63245519016405, - 45.4918963393726 - ], - [ - -73.63264619026313, - 45.49168183944417 - ], - [ - -73.63249228982485, - 45.49161403926442 - ], - [ - -73.63248719010934, - 45.49161183965929 - ], - [ - -73.63229879027368, - 45.49182343971181 - ] - ] - ] - }, - "id": 197432, - "properties": { - "name": "03007313", - "address": "avenue Victoria (MTL+WMT) 5590", - "function": "1000", - "height": 15, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62968048940164, - 45.48999693918606 - ], - [ - -73.62985908990007, - 45.49007733902491 - ], - [ - -73.62991273740347, - 45.49001835705461 - ], - [ - -73.62973328072879, - 45.489938899509355 - ], - [ - -73.62968048940164, - 45.48999693918606 - ] - ] - ] - }, - "id": 197437, - "properties": { - "name": "03073792", - "address": "avenue Lacombe (MTL) 4829", - "function": "1000", - "height": 9, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6231734881826, - 45.48865053882754 - ], - [ - -73.62328029906938, - 45.48869905215123 - ], - [ - -73.62339568208154, - 45.488572573060644 - ], - [ - -73.62328948730051, - 45.48852433903074 - ], - [ - -73.6231734881826, - 45.48865053882754 - ] - ] - ] - }, - "id": 197492, - "properties": { - "name": "03075167", - "address": "avenue Grosvenor (MTL) 5034", - "function": "1000", - "height": 15, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62536348735605, - 45.48445443834572 - ], - [ - -73.62547528744435, - 45.48450633839651 - ], - [ - -73.62555088778127, - 45.484425737992396 - ], - [ - -73.6255513871271, - 45.48442593810923 - ], - [ - -73.62556468737144, - 45.48439313759466 - ], - [ - -73.62556718745353, - 45.48438873819802 - ], - [ - -73.62546938842681, - 45.48436033763811 - ], - [ - -73.625471087651, - 45.48435763803282 - ], - [ - -73.62545938709545, - 45.48435213842689 - ], - [ - -73.62536348735605, - 45.48445443834572 - ] - ] - ] - }, - "id": 197508, - "properties": { - "name": "03034970", - "address": "chemin Circle (MTL) 4991", - "function": "1000", - "height": 9, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62574408639321, - 45.48448828794708 - ], - [ - -73.62568355973173, - 45.484551733424084 - ], - [ - -73.62577928779463, - 45.48459033853561 - ], - [ - -73.62583338837983, - 45.48452383791111 - ], - [ - -73.62579848779764, - 45.4845098387527 - ], - [ - -73.62574408639321, - 45.48448828794708 - ] - ] - ] - }, - "id": 197509, - "properties": { - "name": "03034974", - "address": "chemin Circle (MTL) 4999", - "function": "1000", - "height": 8, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63012319033191, - 45.490505338714435 - ], - [ - -73.6301242903874, - 45.49050413886747 - ], - [ - -73.63013428980153, - 45.490480738699496 - ], - [ - -73.63014638968808, - 45.49048333986415 - ], - [ - -73.63014719000931, - 45.490482538989895 - ], - [ - -73.63023979023724, - 45.49037733962419 - ], - [ - -73.62995258896032, - 45.49025233897986 - ], - [ - -73.62983878940206, - 45.490381539489455 - ], - [ - -73.63012319033191, - 45.490505338714435 - ] - ] - ] - }, - "id": 197517, - "properties": { - "name": "03073727", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4840", - "function": "1000", - "height": 12, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62381578692066, - 45.482777137460936 - ], - [ - -73.62397758609089, - 45.48285293779697 - ], - [ - -73.62402809094046, - 45.48279967505124 - ], - [ - -73.62386504624428, - 45.48272519081231 - ], - [ - -73.62381578692066, - 45.482777137460936 - ] - ] - ] - }, - "id": 197531, - "properties": { - "name": "03035145", - "address": "rue Saranac (MTL) 5214", - "function": "1000", - "height": 14, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62332583352018, - 45.48897657112971 - ], - [ - -73.62318461851893, - 45.4891312872553 - ], - [ - -73.62327328724479, - 45.48917183941595 - ], - [ - -73.6234157876865, - 45.48901763920413 - ], - [ - -73.62332583352018, - 45.48897657112971 - ] - ] - ] - }, - "id": 197570, - "properties": { - "name": "03075178", - "address": "avenue Grosvenor (MTL) 5043", - "function": "1000", - "height": 13, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62309158686298, - 45.48908873937078 - ], - [ - -73.62318461851893, - 45.4891312872553 - ], - [ - -73.62332583352018, - 45.48897657112971 - ], - [ - -73.62323398674236, - 45.48893463937471 - ], - [ - -73.62309158686298, - 45.48908873937078 - ] - ] - ] - }, - "id": 197571, - "properties": { - "name": "03075179", - "address": "avenue Grosvenor (MTL) 5039", - "function": "1000", - "height": 13, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62602928882806, - 45.48469513800923 - ], - [ - -73.62611928760937, - 45.48473773817378 - ], - [ - -73.62612868789147, - 45.48474193817438 - ], - [ - -73.62616108902134, - 45.48475763890141 - ], - [ - -73.62621978840774, - 45.48469753902102 - ], - [ - -73.62608788800426, - 45.48463423834328 - ], - [ - -73.62602928882806, - 45.48469513800923 - ] - ] - ] - }, - "id": 197585, - "properties": { - "name": "03034978", - "address": "chemin Circle (MTL) 5021", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63167449094387, - 45.49114593976049 - ], - [ - -73.63167248999206, - 45.491148139488786 - ], - [ - -73.63177089028554, - 45.49119153982767 - ], - [ - -73.63183069077033, - 45.49121813863637 - ], - [ - -73.63202289019294, - 45.49100273939518 - ], - [ - -73.63186449042672, - 45.49093283882399 - ], - [ - -73.63167449094387, - 45.49114593976049 - ] - ] - ] - }, - "id": 197682, - "properties": { - "name": "03007143", - "address": "rue Beaucourt (MTL) 5535", - "function": "1000", - "height": 12, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63218639047007, - 45.49137583934592 - ], - [ - -73.63218459120817, - 45.49137783998394 - ], - [ - -73.63234289026471, - 45.49144773932267 - ], - [ - -73.63253469062113, - 45.49123233879151 - ], - [ - -73.6323767907582, - 45.491162839684385 - ], - [ - -73.63218639047007, - 45.49137583934592 - ] - ] - ] - }, - "id": 197686, - "properties": { - "name": "03007139", - "address": "rue Beaucourt (MTL) 5575", - "function": "1000", - "height": 12, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62403678748574, - 45.48338693864403 - ], - [ - -73.62417178678147, - 45.483451738379024 - ], - [ - -73.62425298647439, - 45.4833681380434 - ], - [ - -73.62415218713598, - 45.483319738729904 - ], - [ - -73.62413528756159, - 45.4833372384114 - ], - [ - -73.62410098770812, - 45.48332073830549 - ], - [ - -73.62403678748574, - 45.48338693864403 - ] - ] - ] - }, - "id": 197739, - "properties": { - "name": "03034926", - "address": "chemin Circle (MTL) 4920", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62295888693598, - 45.489734139810764 - ], - [ - -73.62291928722225, - 45.48977713924637 - ], - [ - -73.62292798764659, - 45.48978103971144 - ], - [ - -73.62289378653183, - 45.48981863965517 - ], - [ - -73.62332028830397, - 45.49001103934016 - ], - [ - -73.6234751873446, - 45.489842039432794 - ], - [ - -73.62304078781959, - 45.48964503982005 - ], - [ - -73.62295888693598, - 45.489734139810764 - ] - ] - ] - }, - "id": 197745, - "properties": { - "name": "03075414", - "address": "avenue Roslyn (MTL) 5055", - "function": "1000", - "height": 15, - "year_of_construction": 1968 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6248678865006, - 45.48232483797622 - ], - [ - -73.62502788733082, - 45.48240703760477 - ], - [ - -73.62509318712856, - 45.482343938164284 - ], - [ - -73.62507398743047, - 45.4823339384983 - ], - [ - -73.62507925039976, - 45.48232891429158 - ], - [ - -73.62493301711633, - 45.48226213024456 - ], - [ - -73.6248678865006, - 45.48232483797622 - ] - ] - ] - }, - "id": 197760, - "properties": { - "name": "03035165", - "address": "rue Saranac (MTL) 5261", - "function": "1000", - "height": 14, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62604518781615, - 45.48508603880251 - ], - [ - -73.62612158785767, - 45.485153438426934 - ], - [ - -73.62623828853265, - 45.48508803918107 - ], - [ - -73.62616198821979, - 45.4850206386239 - ], - [ - -73.62604518781615, - 45.48508603880251 - ] - ] - ] - }, - "id": 197795, - "properties": { - "name": "03074663", - "address": "chemin Circle (MTL) 4385", - "function": "1000", - "height": 8, - "year_of_construction": 1954 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62310426088065, - 45.48887302286246 - ], - [ - -73.62296294865529, - 45.48902790169363 - ], - [ - -73.6230504873178, - 45.48906723955325 - ], - [ - -73.62319128696583, - 45.488912039022985 - ], - [ - -73.62310426088065, - 45.48887302286246 - ] - ] - ] - }, - "id": 197798, - "properties": { - "name": "05189284", - "address": "avenue Grosvenor (MTL) 5033", - "function": "1000", - "height": 11, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62516668751341, - 45.4854671384717 - ], - [ - -73.62518753126054, - 45.48553276299422 - ], - [ - -73.62536287042134, - 45.48549818668085 - ], - [ - -73.6253441881045, - 45.485439338358084 - ], - [ - -73.62516668751341, - 45.4854671384717 - ] - ] - ] - }, - "id": 197830, - "properties": { - "name": "03074691", - "address": "avenue Iona (MTL) 4948", - "function": "1000", - "height": 8, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62550908820796, - 45.48661393851671 - ], - [ - -73.62550618794693, - 45.48661733862136 - ], - [ - -73.62558968748488, - 45.486651038756044 - ], - [ - -73.62559478776379, - 45.48665323867038 - ], - [ - -73.6256466859179, - 45.486591731125 - ], - [ - -73.62555766459396, - 45.48655494613086 - ], - [ - -73.62550908820796, - 45.48661393851671 - ] - ] - ] - }, - "id": 198004, - "properties": { - "name": "03074520", - "address": "chemin Circle (MTL) 4456", - "function": "1000", - "height": 9, - "year_of_construction": 1954 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62489788800521, - 45.487169338170965 - ], - [ - -73.62502848748807, - 45.48726473821544 - ], - [ - -73.62506288721188, - 45.48724133876327 - ], - [ - -73.62504578776858, - 45.48722903949552 - ], - [ - -73.62513138763552, - 45.48717103888432 - ], - [ - -73.62501778802132, - 45.48708803912244 - ], - [ - -73.62489788800521, - 45.487169338170965 - ] - ] - ] - }, - "id": 198006, - "properties": { - "name": "03074524", - "address": "chemin Circle (MTL) 4470", - "function": "1000", - "height": 16, - "year_of_construction": 1959 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62452778791416, - 45.487272239171865 - ], - [ - -73.62461108709397, - 45.48739823920936 - ], - [ - -73.62462508785893, - 45.48739363922118 - ], - [ - -73.62464598819936, - 45.48738743807586 - ], - [ - -73.62473048781632, - 45.48736273865724 - ], - [ - -73.62473558741472, - 45.48736113856205 - ], - [ - -73.62465038803535, - 45.48723213880282 - ], - [ - -73.62452778791416, - 45.487272239171865 - ] - ] - ] - }, - "id": 198007, - "properties": { - "name": "03074528", - "address": "chemin Circle (MTL) 4480", - "function": "1000", - "height": 12, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62618698801967, - 45.48479693806764 - ], - [ - -73.62630788894963, - 45.484852338445805 - ], - [ - -73.62638588826782, - 45.48476823803925 - ], - [ - -73.62626498744169, - 45.48471283774274 - ], - [ - -73.62618698801967, - 45.48479693806764 - ] - ] - ] - }, - "id": 198012, - "properties": { - "name": "03034980", - "address": "chemin Circle (MTL) 5025", - "function": "1000", - "height": 10, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62318688725877, - 45.48776403882381 - ], - [ - -73.62327765573153, - 45.48780458422703 - ], - [ - -73.62343242937759, - 45.487634177988475 - ], - [ - -73.6233408877269, - 45.487593339292346 - ], - [ - -73.62318688725877, - 45.48776403882381 - ] - ] - ] - }, - "id": 198078, - "properties": { - "name": "03007248", - "address": "avenue Victoria (MTL+WMT) 5008", - "function": "1000", - "height": 16, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62898338837668, - 45.490794239059376 - ], - [ - -73.6291465886262, - 45.49086373956855 - ], - [ - -73.62925020777759, - 45.49074331487136 - ], - [ - -73.62919861828668, - 45.49072042178325 - ], - [ - -73.62908758960108, - 45.49067313896712 - ], - [ - -73.62898338837668, - 45.490794239059376 - ] - ] - ] - }, - "id": 198112, - "properties": { - "name": "03073802", - "address": "avenue Lacombe (MTL) 4777", - "function": "1511", - "height": 9, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63152009102626, - 45.490811839571535 - ], - [ - -73.63153129036434, - 45.4908166390481 - ], - [ - -73.631405990001, - 45.49096163943201 - ], - [ - -73.6315981908616, - 45.49104373959599 - ], - [ - -73.63174158973538, - 45.490877639258805 - ], - [ - -73.63153828992077, - 45.49079083962615 - ], - [ - -73.63152009102626, - 45.490811839571535 - ] - ] - ] - }, - "id": 198113, - "properties": { - "name": "03073053", - "address": "avenue Saint-Kevin (MTL) 4825", - "function": "1000", - "height": 13, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62344518713992, - 45.48877353965426 - ], - [ - -73.6235529467347, - 45.48882334027541 - ], - [ - -73.62366908111345, - 45.48869603763995 - ], - [ - -73.62356328740324, - 45.4886471393454 - ], - [ - -73.62344518713992, - 45.48877353965426 - ] - ] - ] - }, - "id": 198304, - "properties": { - "name": "03075171", - "address": "avenue Grosvenor (MTL) 5046", - "function": "1000", - "height": 15, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62606708840387, - 45.48819263961223 - ], - [ - -73.6260208874468, - 45.488246738916466 - ], - [ - -73.62604028849992, - 45.488254839516635 - ], - [ - -73.62602286671928, - 45.48827549669657 - ], - [ - -73.62612817327691, - 45.48832215443863 - ], - [ - -73.62619328818258, - 45.48824593849035 - ], - [ - -73.62606708840387, - 45.48819263961223 - ] - ] - ] - }, - "id": 198376, - "properties": { - "name": "03074905", - "address": "avenue Dornal (MTL) 4842", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62610288841525, - 45.48815573972186 - ], - [ - -73.62621998854752, - 45.48820683859543 - ], - [ - -73.6262264888522, - 45.488209738813495 - ], - [ - -73.62629215287393, - 45.48813548656346 - ], - [ - -73.62618598982053, - 45.48808845018241 - ], - [ - -73.62617108774025, - 45.4881082389506 - ], - [ - -73.62615278770583, - 45.488099338993436 - ], - [ - -73.62610288841525, - 45.48815573972186 - ] - ] - ] - }, - "id": 198377, - "properties": { - "name": "03074907", - "address": "avenue Dornal (MTL) 4850", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62519308783016, - 45.486230738597435 - ], - [ - -73.62538348806282, - 45.48629963882227 - ], - [ - -73.62544158777244, - 45.48622013933928 - ], - [ - -73.62541308786663, - 45.48621023813489 - ], - [ - -73.62544748851589, - 45.48616513877801 - ], - [ - -73.62544288747878, - 45.48616363928861 - ], - [ - -73.62528428745729, - 45.48610613862889 - ], - [ - -73.62519308783016, - 45.486230738597435 - ] - ] - ] - }, - "id": 198379, - "properties": { - "name": "03074656", - "address": "chemin Circle (MTL) 4431", - "function": "1000", - "height": 12, - "year_of_construction": 1962 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62527448764276, - 45.4860360387834 - ], - [ - -73.62530238718509, - 45.486037738585814 - ], - [ - -73.62529728770464, - 45.486076837984896 - ], - [ - -73.62535058819583, - 45.486080138631095 - ], - [ - -73.62534818781543, - 45.4860995392432 - ], - [ - -73.62544728773446, - 45.48610983896937 - ], - [ - -73.62546238730538, - 45.486033339083406 - ], - [ - -73.62549558830845, - 45.48603683900634 - ], - [ - -73.62550248831329, - 45.48598193902523 - ], - [ - -73.62528178731003, - 45.48596973912925 - ], - [ - -73.62527448764276, - 45.4860360387834 - ] - ] - ] - }, - "id": 198380, - "properties": { - "name": "03074657", - "address": "chemin Circle (MTL) 4425", - "function": "1000", - "height": 8, - "year_of_construction": 1958 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62585248841812, - 45.488434239125716 - ], - [ - -73.62585248864056, - 45.488434339008336 - ], - [ - -73.62586988782826, - 45.48844943904157 - ], - [ - -73.62585258404722, - 45.48845937170589 - ], - [ - -73.6259671699688, - 45.48851013976331 - ], - [ - -73.62603678792873, - 45.48842963837564 - ], - [ - -73.62590518885327, - 45.48837333889382 - ], - [ - -73.62585248841812, - 45.488434239125716 - ] - ] - ] - }, - "id": 198399, - "properties": { - "name": "03074901", - "address": "avenue Dornal (MTL) 4830", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62394268680988, - 45.482642838133756 - ], - [ - -73.62410438740937, - 45.48271753788673 - ], - [ - -73.62415407718375, - 45.48266428046883 - ], - [ - -73.62399186758134, - 45.48259017703638 - ], - [ - -73.62394268680988, - 45.482642838133756 - ] - ] - ] - }, - "id": 198447, - "properties": { - "name": "03035141", - "address": "rue Saranac (MTL) 5222", - "function": "1000", - "height": 10, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6254270155643, - 45.4856615759857 - ], - [ - -73.62529422913606, - 45.48568452111194 - ], - [ - -73.6252961872271, - 45.485691238113894 - ], - [ - -73.62526448683724, - 45.485695738817356 - ], - [ - -73.62528478807052, - 45.48575083841634 - ], - [ - -73.62539258738501, - 45.485731038699875 - ], - [ - -73.62544438754745, - 45.48572133907531 - ], - [ - -73.6254270155643, - 45.4856615759857 - ] - ] - ] - }, - "id": 198538, - "properties": { - "name": "03074686", - "address": "avenue Iona (MTL) 4938", - "function": "1000", - "height": 9, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62527798827993, - 45.4856288384599 - ], - [ - -73.62529422913606, - 45.48568452111194 - ], - [ - -73.6254270155643, - 45.4856615759857 - ], - [ - -73.62541188795342, - 45.485609538305944 - ], - [ - -73.62527798827993, - 45.4856288384599 - ] - ] - ] - }, - "id": 198539, - "properties": { - "name": "03074688", - "address": "avenue Iona (MTL) 4940", - "function": "1000", - "height": 9, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62578568805142, - 45.48617573867745 - ], - [ - -73.62582778857144, - 45.486183038650815 - ], - [ - -73.62582428771486, - 45.48619303889505 - ], - [ - -73.6258245885659, - 45.48619313844655 - ], - [ - -73.62586418807247, - 45.486202139170565 - ], - [ - -73.62590803924769, - 45.48610576234123 - ], - [ - -73.62581686388906, - 45.486087214397585 - ], - [ - -73.62578568805142, - 45.48617573867745 - ] - ] - ] - }, - "id": 198687, - "properties": { - "name": "03074511", - "address": "chemin Circle (MTL) 4430", - "function": "1000", - "height": 10, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62569768702198, - 45.486419139473774 - ], - [ - -73.62579648828923, - 45.486448439470024 - ], - [ - -73.6258371074687, - 45.486380410475974 - ], - [ - -73.62573735712172, - 45.48635285636035 - ], - [ - -73.62569768702198, - 45.486419139473774 - ] - ] - ] - }, - "id": 198689, - "properties": { - "name": "03074516", - "address": "chemin Circle (MTL) 4450", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6256102878342, - 45.486491038814926 - ], - [ - -73.62555766459396, - 45.48655494613086 - ], - [ - -73.6256466859179, - 45.486591731125 - ], - [ - -73.62570008826388, - 45.48652843930551 - ], - [ - -73.62561518808815, - 45.486493039182605 - ], - [ - -73.6256102878342, - 45.486491038814926 - ] - ] - ] - }, - "id": 198690, - "properties": { - "name": "03074518", - "address": "chemin Circle (MTL) 4454", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62299526925244, - 45.481935936772025 - ], - [ - -73.62294361903533, - 45.481990826324655 - ], - [ - -73.62308998398301, - 45.48205838304829 - ], - [ - -73.62313980304877, - 45.482002646848876 - ], - [ - -73.62299526925244, - 45.481935936772025 - ] - ] - ] - }, - "id": 198744, - "properties": { - "name": "03035029", - "address": "avenue Jacques-Grenier (MTL) 5233", - "function": "1000", - "height": 10, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62621878754763, - 45.483771037791804 - ], - [ - -73.62619678816418, - 45.483794237639124 - ], - [ - -73.6262080873887, - 45.483799338081745 - ], - [ - -73.62618060042013, - 45.48382725018484 - ], - [ - -73.6263548066073, - 45.4839070809422 - ], - [ - -73.62640228816228, - 45.483857038351026 - ], - [ - -73.62621878754763, - 45.483771037791804 - ] - ] - ] - }, - "id": 198777, - "properties": { - "name": "03035315", - "address": "rue Byron (MTL) 5202", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62291788644144, - 45.48270583784328 - ], - [ - -73.62300638637623, - 45.48274173823216 - ], - [ - -73.62304761037969, - 45.48269149409939 - ], - [ - -73.62296159195078, - 45.48265256938653 - ], - [ - -73.62291788644144, - 45.48270583784328 - ] - ] - ] - }, - "id": 198841, - "properties": { - "name": "03035080", - "address": "avenue Ponsard (MTL) 5196", - "function": "1000", - "height": 16, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62276248720403, - 45.48321233772695 - ], - [ - -73.62288348647664, - 45.48332313797931 - ], - [ - -73.62299768664857, - 45.48326143858234 - ], - [ - -73.62287668600547, - 45.483150638451235 - ], - [ - -73.62276248720403, - 45.48321233772695 - ] - ] - ] - }, - "id": 198842, - "properties": { - "name": "03035082", - "address": "avenue Ponsard (MTL) 5090", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62571337595601, - 45.48502496657301 - ], - [ - -73.62557799403805, - 45.48505414272279 - ], - [ - -73.62560068708999, - 45.48510903897667 - ], - [ - -73.6257365877245, - 45.4850812380939 - ], - [ - -73.62571337595601, - 45.48502496657301 - ] - ] - ] - }, - "id": 198901, - "properties": { - "name": "03074681", - "address": "avenue Iona (MTL) 4965", - "function": "1000", - "height": 10, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62568068712012, - 45.48527223884498 - ], - [ - -73.62570448831887, - 45.48531913872496 - ], - [ - -73.6258339877933, - 45.48528663857685 - ], - [ - -73.62584188807041, - 45.48528473839716 - ], - [ - -73.62581028748254, - 45.48522073836343 - ], - [ - -73.62575608807737, - 45.48523393849779 - ], - [ - -73.62573998801972, - 45.48520143848552 - ], - [ - -73.62565548707309, - 45.48522273814372 - ], - [ - -73.62568068712012, - 45.48527223884498 - ] - ] - ] - }, - "id": 198902, - "properties": { - "name": "03074684", - "address": "avenue Iona (MTL) 4955", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62315224998822, - 45.48479870880827 - ], - [ - -73.62310686404396, - 45.484807657209466 - ], - [ - -73.62313234925327, - 45.484871723077944 - ], - [ - -73.62316858697014, - 45.484864938762975 - ], - [ - -73.62318758676119, - 45.484915037901615 - ], - [ - -73.62318898727153, - 45.484918438709244 - ], - [ - -73.6233148873728, - 45.48489233870288 - ], - [ - -73.623278687744, - 45.484805737895506 - ], - [ - -73.62316498741478, - 45.48482923855098 - ], - [ - -73.62315224998822, - 45.48479870880827 - ] - ] - ] - }, - "id": 198907, - "properties": { - "name": "03074951", - "address": "avenue Meridian (MTL) 4780", - "function": "1000", - "height": 14, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6233864758863, - 45.48206581894274 - ], - [ - -73.6233401641475, - 45.48211551979076 - ], - [ - -73.62349245819873, - 45.48218333774918 - ], - [ - -73.62353813352189, - 45.482133955174135 - ], - [ - -73.6233864758863, - 45.48206581894274 - ] - ] - ] - }, - "id": 198935, - "properties": { - "name": "03035065", - "address": "avenue Ponsard (MTL) 5236", - "function": "1000", - "height": 8, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62366638766791, - 45.485511338020686 - ], - [ - -73.6237929825369, - 45.48548771581363 - ], - [ - -73.62375832028142, - 45.48540032253655 - ], - [ - -73.62369498758166, - 45.485412339291614 - ], - [ - -73.62368568749812, - 45.48538783845683 - ], - [ - -73.62362408705896, - 45.485399338584955 - ], - [ - -73.62366638766791, - 45.485511338020686 - ] - ] - ] - }, - "id": 198995, - "properties": { - "name": "03074760", - "address": "avenue Ponsard (MTL) 4976", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62528268792387, - 45.48867743864877 - ], - [ - -73.62523928782083, - 45.488727038932254 - ], - [ - -73.62533468833314, - 45.488768338884746 - ], - [ - -73.62547028733402, - 45.488613338309406 - ], - [ - -73.62546478856906, - 45.488610939062234 - ], - [ - -73.62536628819433, - 45.488569539137224 - ], - [ - -73.62537848812175, - 45.48855523889983 - ], - [ - -73.62540688772481, - 45.488521139573194 - ], - [ - -73.62550548777848, - 45.48856193915708 - ], - [ - -73.62550888794661, - 45.48856353894583 - ], - [ - -73.6256108879999, - 45.48844923912981 - ], - [ - -73.6253094883316, - 45.488316138373385 - ], - [ - -73.62520828805278, - 45.488429539000485 - ], - [ - -73.62533188806466, - 45.48848403847221 - ], - [ - -73.62528948754857, - 45.48853143935711 - ], - [ - -73.62516618828576, - 45.48847643919627 - ], - [ - -73.62502548885217, - 45.48863293964043 - ], - [ - -73.62519198734853, - 45.48870693964319 - ], - [ - -73.62523528808221, - 45.48865693905523 - ], - [ - -73.62528268792387, - 45.48867743864877 - ] - ] - ] - }, - "id": 199018, - "properties": { - "name": "03074979", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4815", - "function": "1000", - "height": 19, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62350518687572, - 45.484922938435226 - ], - [ - -73.62368068703246, - 45.48488223927383 - ], - [ - -73.62368808651694, - 45.48488063853412 - ], - [ - -73.62366118750772, - 45.484809738189504 - ], - [ - -73.6234817874271, - 45.48484353881803 - ], - [ - -73.62346178646672, - 45.484790838454906 - ], - [ - -73.62346168646785, - 45.484790738680076 - ], - [ - -73.62343608667263, - 45.48479443771875 - ], - [ - -73.62343596939323, - 45.4847940401135 - ], - [ - -73.6233892574941, - 45.48480325011526 - ], - [ - -73.62342062927823, - 45.4849091173096 + -73.59894278104922, + 45.51754454487196 ], [ - -73.62342362376752, - 45.48491663048839 + -73.59896755111595, + 45.51755392855115 ], [ - -73.62349998688163, - 45.48490543845179 + -73.59906151407003, + 45.51744921180192 ], [ - -73.62350518687572, - 45.484922938435226 + -73.59897892748309, + 45.5174122189449 ] ] ] }, - "id": 199043, + "id": 146509, "properties": { - "name": "03074953", - "address": "avenue Meridian (MTL) 4790", + "name": "03030770", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 145", "function": "1000", "height": 12, "year_of_construction": 1927 @@ -8466,59 +178,227 @@ "coordinates": [ [ [ - -73.62362838742737, - 45.48380133857749 + -73.59941608141678, + 45.51733044510431 ], [ - -73.62372318695238, - 45.48378163818432 + -73.5994185814061, + 45.51732764532297 ], [ - -73.62372708740219, - 45.48379103825282 + -73.5995757811686, + 45.5171580449487 ], [ - -73.62374128762978, - 45.48378793819768 + -73.59963528147671, + 45.51718524474928 ], [ - -73.62374798723786, - 45.48378633821193 + -73.59966638190019, + 45.517151645451236 ], [ - -73.62374268760648, - 45.483778238138065 + -73.59985288165308, + 45.517236845088696 ], [ - -73.62377468647199, - 45.48376793802283 + -73.59994528078973, + 45.51713714468723 ], [ - -73.62377458775362, - 45.48376783824685 + -73.59985418160615, + 45.51709544474205 ], [ - -73.62374328695773, - 45.48369323891006 + -73.59987526093988, + 45.51707269902971 ], [ - -73.6235958869521, - 45.48372383849494 + -73.59984720749387, + 45.5170602463595 ], [ - -73.62362838742737, - 45.48380133857749 + -73.5998289823202, + 45.517081445445235 + ], + [ + -73.5996146812053, + 45.51699064510821 + ], + [ + -73.59959648174389, + 45.5170119449169 + ], + [ + -73.59956918123791, + 45.51700034547085 + ], + [ + -73.59951598156452, + 45.51705614507866 + ], + [ + -73.59951578113723, + 45.51705644490031 + ], + [ + -73.59954158130945, + 45.51706864496053 + ], + [ + -73.59945898200083, + 45.51715434487712 + ], + [ + -73.59940988207299, + 45.5171310448431 + ], + [ + -73.59944648129672, + 45.51709304419602 + ], + [ + -73.59944568206629, + 45.51709274524476 + ], + [ + -73.59942298121334, + 45.51707864470077 + ], + [ + -73.59945668178884, + 45.51705184509406 + ], + [ + -73.59936408164732, + 45.51699484516793 + ], + [ + -73.59935698117803, + 45.516990944234564 + ], + [ + -73.59920528107752, + 45.516912044847764 + ], + [ + -73.59917578198255, + 45.51693994483813 + ], + [ + -73.59901808111033, + 45.516857745295795 + ], + [ + -73.59896938138634, + 45.51690404472742 + ], + [ + -73.59890348075629, + 45.51686964509343 + ], + [ + -73.59889978105238, + 45.516867845015305 + ], + [ + -73.5988094808446, + 45.51695944509105 + ], + [ + -73.59879268095473, + 45.51695124497341 + ], + [ + -73.59879238196636, + 45.51695154487904 + ], + [ + -73.59874668131002, + 45.51700024509644 + ], + [ + -73.5988095815354, + 45.51702794539982 + ], + [ + -73.5988431813675, + 45.516990244487346 + ], + [ + -73.59886238174948, + 45.51699874486654 + ], + [ + -73.59884128177202, + 45.51702234525903 + ], + [ + -73.59884138178461, + 45.51702244505486 + ], + [ + -73.59902648106099, + 45.5171048442506 + ], + [ + -73.59900328179857, + 45.517130545821466 + ], + [ + -73.59900358166257, + 45.517130745326256 + ], + [ + -73.59929718123016, + 45.51722764541221 + ], + [ + -73.59930168136366, + 45.51722094488381 + ], + [ + -73.59932228062516, + 45.51719654488384 + ], + [ + -73.59936138076922, + 45.51721294467505 + ], + [ + -73.59930138100158, + 45.517283044968984 + ], + [ + -73.5993406808775, + 45.51729944549323 + ], + [ + -73.59933118178216, + 45.517310145663984 + ], + [ + -73.59936668112093, + 45.517325645143856 + ], + [ + -73.5993771808995, + 45.517313345082236 + ], + [ + -73.59941608141678, + 45.51733044510431 ] ] ] }, - "id": 199078, + "id": 148507, "properties": { - "name": "03035089", - "address": "avenue Ponsard (MTL) 5053", - "function": "1000", - "height": 10, - "year_of_construction": 1938 + "name": "03030271", + "address": "avenue Bloomfield (OUT) 185", + "function": "6911", + "height": 52, + "year_of_construction": 1911 } }, { @@ -8528,43 +408,39 @@ "coordinates": [ [ [ - -73.6250788886262, - 45.48931813957894 + -73.59886898116667, + 45.51683934491782 ], [ - -73.62507608776643, - 45.48932143877948 + -73.59887768101652, + 45.516842944850126 ], [ - -73.62519038843175, - 45.48936943909659 + -73.59895438138614, + 45.51687554536026 ], [ - -73.62519508828508, - 45.48937153958376 + -73.59900408106398, + 45.51681774509986 ], [ - -73.62527855424052, - 45.48927638300745 + -73.59891868200518, + 45.51678144481083 ], [ - -73.62516037155734, - 45.48922406597382 - ], - [ - -73.6250788886262, - 45.48931813957894 + -73.59886898116667, + 45.51683934491782 ] ] ] }, - "id": 199095, + "id": 148508, "properties": { - "name": "03074891", - "address": "avenue Dornal (MTL) 4734", - "function": "1000", - "height": 10, - "year_of_construction": 1942 + "name": "03030271", + "address": "avenue Bloomfield (OUT) 185", + "function": "6911", + "height": 52, + "year_of_construction": 1911 } }, { @@ -8574,2112 +450,42 @@ "coordinates": [ [ [ - -73.62329420325389, - 45.48216483150716 + -73.59797381497064, + 45.51737783867921 ], [ - -73.62324713829013, - 45.482215291700236 + -73.59791900634617, + 45.51744064778048 ], [ - -73.6233987425688, - 45.48228466186201 + -73.59820268115347, + 45.51756284561085 ], [ - -73.62344594180006, - 45.48223363005948 + -73.59824368093126, + 45.51751684468262 ], [ - -73.62329420325389, - 45.48216483150716 + -73.59815948071017, + 45.51747984452283 + ], + [ + -73.59817206775926, + 45.517465685507 + ], + [ + -73.59797381497064, + 45.51737783867921 ] ] ] }, - "id": 199107, + "id": 148570, "properties": { - "name": "03035068", - "address": "avenue Ponsard (MTL) 5228", - "function": "1000", - "height": 8, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62447028698894, - 45.482097038454064 - ], - [ - -73.62461618754115, - 45.482163038792216 - ], - [ - -73.62466909743783, - 45.48210519201408 - ], - [ - -73.6245236219304, - 45.48203873325761 - ], - [ - -73.62447028698894, - 45.482097038454064 - ] - ] - ] - }, - "id": 199108, - "properties": { - "name": "03035126", - "address": "rue Saranac (MTL) 5262", - "function": "1000", - "height": 15, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62431338683682, - 45.48294233791495 - ], - [ - -73.62447268684211, - 45.483016638423734 - ], - [ - -73.62451886198177, - 45.482967180231824 - ], - [ - -73.62435801886446, - 45.482894988907056 - ], - [ - -73.62431338683682, - 45.48294233791495 - ] - ] - ] - }, - "id": 199117, - "properties": { - "name": "03035153", - "address": "rue Saranac (MTL) 5209", - "function": "1000", - "height": 16, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62588818808264, - 45.48596473877394 - ], - [ - -73.62598548808859, - 45.485985438636455 - ], - [ - -73.62602148725603, - 45.48590133801946 - ], - [ - -73.62604358813073, - 45.48590603872539 - ], - [ - -73.62604508831406, - 45.48590241878951 - ], - [ - -73.62592548271323, - 45.48587808749565 - ], - [ - -73.62588818808264, - 45.48596473877394 - ] - ] - ] - }, - "id": 199250, - "properties": { - "name": "03074507", - "address": "chemin Circle (MTL) 4420", - "function": "1000", - "height": 10, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62585668803789, - 45.48370043856141 - ], - [ - -73.62581287565224, - 45.48374908122433 - ], - [ - -73.62597566260749, - 45.48382367993407 - ], - [ - -73.625992187957, - 45.48380433840926 - ], - [ - -73.62599248835032, - 45.483804238195006 - ], - [ - -73.62598018790418, - 45.48379873840374 - ], - [ - -73.6260079881018, - 45.483767838513614 - ], - [ - -73.62585668803789, - 45.48370043856141 - ] - ] - ] - }, - "id": 199314, - "properties": { - "name": "03035264", - "address": "rue Snowdon (MTL) 5191", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62574538731374, - 45.48855733896351 - ], - [ - -73.62569738857269, - 45.48861443929751 - ], - [ - -73.62570878761359, - 45.488619139244136 - ], - [ - -73.62569068523374, - 45.488640478304134 - ], - [ - -73.62580508056968, - 45.48869116214681 - ], - [ - -73.62587298802764, - 45.4886104395837 - ], - [ - -73.62574538731374, - 45.48855733896351 - ] - ] - ] - }, - "id": 199479, - "properties": { - "name": "03104753", - "address": "avenue Dornal (MTL) 4818", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62371498765825, - 45.483978238274055 - ], - [ - -73.62375028772044, - 45.48406523766237 - ], - [ - -73.6238468868964, - 45.48404583846591 - ], - [ - -73.62385348762818, - 45.484044638112984 - ], - [ - -73.62381808742212, - 45.48395753898188 - ], - [ - -73.62371498765825, - 45.483978238274055 - ] - ] - ] - }, - "id": 199497, - "properties": { - "name": "03074700", - "address": "avenue Ponsard (MTL) 5043", - "function": "1000", - "height": 10, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62330338735326, - 45.48733823933453 - ], - [ - -73.62349958712888, - 45.48741313929619 - ], - [ - -73.62359738792141, - 45.48728653950522 - ], - [ - -73.6235073869886, - 45.487252139468715 - ], - [ - -73.62352058694694, - 45.48723523869089 - ], - [ - -73.62341428715474, - 45.48719463917041 - ], - [ - -73.62330338735326, - 45.48733823933453 - ] - ] - ] - }, - "id": 199560, - "properties": { - "name": "03074546", - "address": "chemin Circle (MTL) 4530", - "function": "1000", - "height": 7, - "year_of_construction": 1959 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62597478745143, - 45.48357163845651 - ], - [ - -73.62592668674594, - 45.48362231324716 - ], - [ - -73.62608086962778, - 45.48369296916882 - ], - [ - -73.6261277882516, - 45.48364343752405 - ], - [ - -73.62597478745143, - 45.48357163845651 - ] - ] - ] - }, - "id": 199576, - "properties": { - "name": "03035268", - "address": "rue Snowdon (MTL) 5203", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62599368712908, - 45.48354663877811 - ], - [ - -73.62614878778112, - 45.4836233378642 - ], - [ - -73.62620086208426, - 45.48357119274035 - ], - [ - -73.62604195298313, - 45.48349837266489 - ], - [ - -73.62599368712908, - 45.48354663877811 - ] - ] - ] - }, - "id": 199577, - "properties": { - "name": "03035270", - "address": "rue Snowdon (MTL) 5211", - "function": "1000", - "height": 10, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62536287042134, - 45.48549818668085 - ], - [ - -73.62518753126054, - 45.48553276299422 - ], - [ - -73.62520778761821, - 45.485596538972544 - ], - [ - -73.62536508739382, - 45.48557143890969 - ], - [ - -73.62536508717027, - 45.48557133812718 - ], - [ - -73.62535988694897, - 45.4855511386927 - ], - [ - -73.62537888736277, - 45.48554863876317 - ], - [ - -73.62536287042134, - 45.48549818668085 - ] - ] - ] - }, - "id": 199659, - "properties": { - "name": "03074689", - "address": "avenue Iona (MTL) 4946", - "function": "1000", - "height": 8, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62609478814282, - 45.483445538366254 - ], - [ - -73.62604195298313, - 45.48349837266489 - ], - [ - -73.62620086208426, - 45.48357119274035 - ], - [ - -73.62622138851526, - 45.48355063826739 - ], - [ - -73.62622168823768, - 45.48355023840443 - ], - [ - -73.62621038794659, - 45.48354463854942 - ], - [ - -73.62623848708505, - 45.48351653769338 - ], - [ - -73.62609478814282, - 45.483445538366254 - ] - ] - ] - }, - "id": 199674, - "properties": { - "name": "03035272", - "address": "rue Snowdon (MTL) 5215", - "function": "1000", - "height": 10, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62552798837395, - 45.48334063767106 - ], - [ - -73.62548008743656, - 45.48338573750818 - ], - [ - -73.62548408790983, - 45.48338763808819 - ], - [ - -73.62565738811224, - 45.48347183786466 - ], - [ - -73.62566438858697, - 45.48346463859172 - ], - [ - -73.62570518781376, - 45.4834232376631 - ], - [ - -73.62553008756646, - 45.48333833805646 - ], - [ - -73.62552798837395, - 45.48334063767106 - ] - ] - ] - }, - "id": 199748, - "properties": { - "name": "03035256", - "address": "rue Snowdon (MTL) 5202", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62539898727088, - 45.48353933855063 - ], - [ - -73.62552648809663, - 45.483595338118896 - ], - [ - -73.62559368742573, - 45.48351973745288 - ], - [ - -73.62546608798345, - 45.48346363818426 - ], - [ - -73.62539898727088, - 45.48353933855063 - ] - ] - ] - }, - "id": 199749, - "properties": { - "name": "03035258", - "address": "rue Snowdon (MTL) 5192", - "function": "1000", - "height": 8, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6297880895122, - 45.48987863939675 - ], - [ - -73.62973328072879, - 45.489938899509355 - ], - [ - -73.62991273740347, - 45.49001835705461 - ], - [ - -73.6299666897891, - 45.4899590390693 - ], - [ - -73.6297880895122, - 45.48987863939675 - ] - ] - ] - }, - "id": 199782, - "properties": { - "name": "03073790", - "address": "avenue Lacombe (MTL) 4833", - "function": "1000", - "height": 9, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62394858655585, - 45.48210853798373 - ], - [ - -73.62388888721189, - 45.482180937810966 - ], - [ - -73.62387708752111, - 45.48217603834604 - ], - [ - -73.6238766256648, - 45.482176589552985 - ], - [ - -73.62404918395453, - 45.48225542050801 - ], - [ - -73.62407188672704, - 45.48222793793447 - ], - [ - -73.62404848728491, - 45.48221833769024 - ], - [ - -73.62409098618942, - 45.48216673842252 - ], - [ - -73.62394858655585, - 45.48210853798373 - ] - ] - ] - }, - "id": 199866, - "properties": { - "name": "03035107", - "address": "avenue Ponsard (MTL) 5253", - "function": "1000", - "height": 15, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6298240903598, - 45.48983953890088 - ], - [ - -73.6300007892354, - 45.48991873848834 - ], - [ - -73.63005371379049, - 45.48986039346357 - ], - [ - -73.62987638971899, - 45.489781881249996 - ], - [ - -73.6298240903598, - 45.48983953890088 - ] - ] - ] - }, - "id": 199996, - "properties": { - "name": "03073788", - "address": "avenue Lacombe (MTL) 4837", - "function": "1000", - "height": 9, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62439358685023, - 45.485559338961714 - ], - [ - -73.62439348706624, - 45.48555933817055 - ], - [ - -73.62441678654818, - 45.485628638728585 - ], - [ - -73.62441718673612, - 45.4856285384098 - ], - [ - -73.6246244877245, - 45.48555683856128 - ], - [ - -73.6246241885545, - 45.48555633857331 - ], - [ - -73.62467048760809, - 45.485545938921966 - ], - [ - -73.62465088763713, - 45.485502238595444 - ], - [ - -73.62439358685023, - 45.485559338961714 - ] - ] - ] - }, - "id": 200045, - "properties": { - "name": "03074710", - "address": "avenue Ponsard (MTL) 4955", - "function": "1000", - "height": 7, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62520768766355, - 45.482488537722475 - ], - [ - -73.62535178675344, - 45.48255583846946 - ], - [ - -73.62541358756366, - 45.48249033739755 - ], - [ - -73.62526938751382, - 45.482423037738315 - ], - [ - -73.62520768766355, - 45.482488537722475 - ] - ] - ] - }, - "id": 200104, - "properties": { - "name": "03035180", - "address": "rue Dalou (MTL) 5262", - "function": "1000", - "height": 8, - "year_of_construction": 1915 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.624777487472, - 45.48295173829856 - ], - [ - -73.6249389869343, - 45.483027138066134 - ], - [ - -73.62498917753527, - 45.48297383294805 - ], - [ - -73.62482666251954, - 45.48289961225944 - ], - [ - -73.624777487472, - 45.48295173829856 - ] - ] - ] - }, - "id": 200106, - "properties": { - "name": "03035192", - "address": "rue Dalou (MTL) 5202", - "function": "1000", - "height": 13, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62291048677557, - 45.48552263799217 - ], - [ - -73.62311638654681, - 45.48548703880917 - ], - [ - -73.62308858696063, - 45.485416538839544 - ], - [ - -73.62308488675079, - 45.485417438173556 - ], - [ - -73.62300208750997, - 45.48543183941429 - ], - [ - -73.62297898785147, - 45.48536593886829 - ], - [ - -73.62286278667061, - 45.48538593881254 - ], - [ - -73.62291048677557, - 45.48552263799217 - ] - ] - ] - }, - "id": 200215, - "properties": { - "name": "03074808", - "address": "avenue Glencairn (MTL) 4975", - "function": "1000", - "height": 10, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62293218672747, - 45.48558433867577 - ], - [ - -73.62295518698855, - 45.48563863942134 - ], - [ - -73.62300038639123, - 45.485742339398975 - ], - [ - -73.6231081865394, - 45.48571903873714 - ], - [ - -73.6231007871055, - 45.48570133864306 - ], - [ - -73.62313448704762, - 45.48569443829517 - ], - [ - -73.62312228663598, - 45.48566503908123 - ], - [ - -73.623170486848, - 45.485655139203054 - ], - [ - -73.62312368651432, - 45.4855442386495 - ], - [ - -73.62293218672747, - 45.48558433867577 - ] - ] - ] - }, - "id": 200216, - "properties": { - "name": "03074810", - "address": "avenue Glencairn (MTL) 4965", - "function": "1000", - "height": 16, - "year_of_construction": 1954 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62365438707748, - 45.4838613382787 - ], - [ - -73.62365028742528, - 45.48386203829778 - ], - [ - -73.6236776871026, - 45.48393103853926 - ], - [ - -73.6236787865602, - 45.48393423810192 - ], - [ - -73.62377958683567, - 45.483913238085876 - ], - [ - -73.62377158747549, - 45.48389553867974 - ], - [ - -73.6238129868157, - 45.48388613811216 - ], - [ - -73.62381308765518, - 45.48388603811994 - ], - [ - -73.6238113874443, - 45.48384743835846 - ], - [ - -73.62378478680525, - 45.48384953863409 - ], - [ - -73.62378548678791, - 45.4838391383524 - ], - [ - -73.62365438707748, - 45.4838613382787 - ] - ] - ] - }, - "id": 200218, - "properties": { - "name": "03035088", - "address": "avenue Ponsard (MTL) 5047", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62421318733608, - 45.482370838364325 - ], - [ - -73.62435738705344, - 45.48243803767518 - ], - [ - -73.6244119577964, - 45.48238016311526 - ], - [ - -73.62426685066089, - 45.482313873704754 - ], - [ - -73.62421318733608, - 45.482370838364325 - ] - ] - ] - }, - "id": 200279, - "properties": { - "name": "03035134", - "address": "rue Saranac (MTL) 5242", - "function": "1000", - "height": 14, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62665358865142, - 45.49008953893475 - ], - [ - -73.62648848864305, - 45.49027433952663 - ], - [ - -73.62648838757131, - 45.490274338738715 - ], - [ - -73.62643998806935, - 45.49033103938013 - ], - [ - -73.62658948793694, - 45.490394139216704 - ], - [ - -73.62659238861998, - 45.49039543897794 - ], - [ - -73.62687118811513, - 45.490087439275946 - ], - [ - -73.6267170890078, - 45.490018440122185 - ], - [ - -73.62665358865142, - 45.49008953893475 - ] - ] - ] - }, - "id": 200356, - "properties": { - "name": "03074628", - "address": "rue Jean-Brillant (MTL) 4780", - "function": "1000", - "height": 12, - "year_of_construction": 1965 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62490378759071, - 45.482816637699585 - ], - [ - -73.62506728701483, - 45.482891238736556 - ], - [ - -73.62511656238331, - 45.48283776899155 - ], - [ - -73.62495310899266, - 45.48276311938235 - ], - [ - -73.62490378759071, - 45.482816637699585 - ] - ] - ] - }, - "id": 200387, - "properties": { - "name": "03035188", - "address": "rue Dalou (MTL) 5210", - "function": "1000", - "height": 12, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62475648650968, - 45.48420633773903 - ], - [ - -73.6247860877636, - 45.48427523902244 - ], - [ - -73.62491758707995, - 45.48424723785326 - ], - [ - -73.62492358785691, - 45.4842460389945 - ], - [ - -73.62489388772978, - 45.48417703797155 - ], - [ - -73.62475648650968, - 45.48420633773903 - ] - ] - ] - }, - "id": 200447, - "properties": { - "name": "03034994", - "address": "avenue Iona (MTL) 5020", - "function": "1000", - "height": 9, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62388068716382, - 45.48439453810573 - ], - [ - -73.62392078707126, - 45.48448253915724 - ], - [ - -73.6240601865662, - 45.4844510381023 - ], - [ - -73.62406478705701, - 45.48445003787581 - ], - [ - -73.62402468695262, - 45.4843620386743 - ], - [ - -73.62388068716382, - 45.48439453810573 - ] - ] - ] - }, - "id": 200525, - "properties": { - "name": "03074706", - "address": "avenue Ponsard (MTL) 5029", - "function": "1000", - "height": 13, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62450408812293, - 45.48539503897083 - ], - [ - -73.62433718767467, - 45.485420738598634 - ], - [ - -73.62433818719721, - 45.48542383837994 - ], - [ - -73.62436638735876, - 45.485508238430135 - ], - [ - -73.62446918691981, - 45.485490638852234 - ], - [ - -73.6244675877306, - 45.485485938899494 - ], - [ - -73.62445368671328, - 45.48544383855378 - ], - [ - -73.62451928797104, - 45.48543323796233 - ], - [ - -73.62451538816467, - 45.4854213381507 - ], - [ - -73.6245082878774, - 45.48539443869506 - ], - [ - -73.62450408812293, - 45.48539503897083 - ] - ] - ] - }, - "id": 200526, - "properties": { - "name": "03074708", - "address": "avenue Ponsard (MTL) 4965", - "function": "1000", - "height": 10, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62476348826644, - 45.489845039808785 - ], - [ - -73.62516718889493, - 45.490007739209254 - ], - [ - -73.62523948827918, - 45.48991833862014 - ], - [ - -73.62483768766644, - 45.489757839317654 - ], - [ - -73.62476348826644, - 45.489845039808785 - ] - ] - ] - }, - "id": 200702, - "properties": { - "name": "03074883", - "address": "avenue Dornal (MTL) 4701", - "function": "6812", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62565248788604, - 45.484120537925065 - ], - [ - -73.62576648806409, - 45.48400063843406 - ], - [ - -73.62562037719711, - 45.483931963674884 - ], - [ - -73.62550892999654, - 45.48405293193324 - ], - [ - -73.62565248788604, - 45.484120537925065 - ] - ] - ] - }, - "id": 200742, - "properties": { - "name": "03034908", - "address": "chemin Circle (MTL) 4990", - "function": "1000", - "height": 7, - "year_of_construction": 1961 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62547488788488, - 45.48386363898528 - ], - [ - -73.62534528738512, - 45.48400033833999 - ], - [ - -73.62543178781847, - 45.48404093803281 - ], - [ - -73.6254477881806, - 45.48402413832975 - ], - [ - -73.62550892999654, - 45.48405293193324 - ], - [ - -73.62562037719711, - 45.483931963674884 - ], - [ - -73.62547488788488, - 45.48386363898528 - ] - ] - ] - }, - "id": 200743, - "properties": { - "name": "03034910", - "address": "chemin Circle (MTL) 4988", - "function": "1000", - "height": 7, - "year_of_construction": 1961 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62527288801861, - 45.48383913832182 - ], - [ - -73.62525328676942, - 45.48385483783812 - ], - [ - -73.62521078746136, - 45.48390403763348 - ], - [ - -73.62522068772194, - 45.48391343827262 - ], - [ - -73.62524148759658, - 45.483920238103146 - ], - [ - -73.62525988769673, - 45.48393513827776 - ], - [ - -73.62531768803743, - 45.483959338333854 - ], - [ - -73.62534188794199, - 45.483951637892986 - ], - [ - -73.62539408823811, - 45.48389353871911 - ], - [ - -73.62538808719223, - 45.48388363889936 - ], - [ - -73.62532008793974, - 45.48385263823233 - ], - [ - -73.62530478748796, - 45.48384123866828 - ], - [ - -73.62528768778773, - 45.48383703894582 - ], - [ - -73.62527288801861, - 45.48383913832182 - ] - ] - ] - }, - "id": 200744, - "properties": { - "name": "03034912", - "address": "chemin Circle (MTL) 4984", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62464358734212, - 45.48743633921022 - ], - [ - -73.62473748770451, - 45.487567139058235 - ], - [ - -73.62485418846785, - 45.487525438690085 - ], - [ - -73.62485548757984, - 45.48752513942119 - ], - [ - -73.62476208722013, - 45.48739433912305 - ], - [ - -73.62464358734212, - 45.48743633921022 - ] - ] - ] - }, - "id": 200772, - "properties": { - "name": "03074530", - "address": "chemin Circle (MTL) 4482", - "function": "1000", - "height": 14, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62430368715663, - 45.4873061392908 - ], - [ - -73.62432368777331, - 45.48744863958422 - ], - [ - -73.6244481882472, - 45.487439939279994 - ], - [ - -73.62445388815674, - 45.48743963882039 - ], - [ - -73.62443398805952, - 45.48729703855716 - ], - [ - -73.62430368715663, - 45.4873061392908 - ] - ] - ] - }, - "id": 200773, - "properties": { - "name": "03074537", - "address": "chemin Circle (MTL) 4490", - "function": "1000", - "height": 12, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62410738668031, - 45.487404739168305 - ], - [ - -73.62410428730892, - 45.48743403881176 - ], - [ - -73.62416998664933, - 45.48743613874015 - ], - [ - -73.62417148714282, - 45.48740463891061 - ], - [ - -73.62422008704834, - 45.48740603932014 - ], - [ - -73.62422058730937, - 45.48733563934821 - ], - [ - -73.62407678728992, - 45.48733083838854 - ], - [ - -73.62407188726495, - 45.487403538645296 - ], - [ - -73.62410738668031, - 45.487404739168305 - ] - ] - ] - }, - "id": 200775, - "properties": { - "name": "03074539", - "address": "chemin Circle (MTL) 4500", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62389368714138, - 45.487452639577675 - ], - [ - -73.62388518707724, - 45.487499738620876 - ], - [ - -73.62388468646458, - 45.48750363909496 - ], - [ - -73.62399528809398, - 45.48751153851334 - ], - [ - -73.62400078720253, - 45.48751183939122 - ], - [ - -73.6240217872179, - 45.48734813916159 - ], - [ - -73.62385948703721, - 45.487347338930775 - ], - [ - -73.62385888772857, - 45.487405439017635 - ], - [ - -73.62382154961153, - 45.48740524643803 - ], - [ - -73.62382002446091, - 45.48741039970784 - ], - [ - -73.62381958720572, - 45.48744613935288 - ], - [ - -73.62382048655519, - 45.487446139277864 - ], - [ - -73.62389368714138, - 45.487452639577675 - ] - ] - ] - }, - "id": 200776, - "properties": { - "name": "03074541", - "address": "chemin Circle (MTL) 4504", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62488018712892, - 45.48954273972601 - ], - [ - -73.624877287516, - 45.489545939146694 - ], - [ - -73.62498888792854, - 45.48959343870212 - ], - [ - -73.62499358779307, - 45.489595539197495 - ], - [ - -73.62507744683536, - 45.48950138386962 - ], - [ - -73.62496142167994, - 45.48945002170521 - ], - [ - -73.62488018712892, - 45.48954273972601 - ] - ] - ] - }, - "id": 200835, - "properties": { - "name": "03074887", - "address": "avenue Dornal (MTL) 4720", + "name": "03033683", + "address": "avenue Laurier Ouest (MTL+OUT) 1105", "function": "1000", "height": 11, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62507338785466, - 45.48269483787615 - ], - [ - -73.62518698670328, - 45.4827456384428 - ], - [ - -73.62523128816188, - 45.482696137921515 - ], - [ - -73.6252544308775, - 45.482670521814086 - ], - [ - -73.62514191301743, - 45.48261913432953 - ], - [ - -73.62507338785466, - 45.48269483787615 - ] - ] - ] - }, - "id": 200878, - "properties": { - "name": "03035184", - "address": "rue Dalou (MTL) 5232", - "function": "1000", - "height": 10, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62500248772763, - 45.48270953889115 - ], - [ - -73.62495310899266, - 45.48276311938235 - ], - [ - -73.62511656238331, - 45.48283776899155 - ], - [ - -73.62516598696762, - 45.48278413798876 - ], - [ - -73.62500248772763, - 45.48270953889115 - ] - ] - ] - }, - "id": 200879, - "properties": { - "name": "03035186", - "address": "rue Dalou (MTL) 5214", - "function": "1000", - "height": 12, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62424968841525, - 45.48850153945101 - ], - [ - -73.62414075129529, - 45.48862387581098 - ], - [ - -73.62443791860396, - 45.48875849329554 - ], - [ - -73.62454867286333, - 45.488634813004104 - ], - [ - -73.62446234859445, - 45.4885957854131 - ], - [ - -73.62425448816632, - 45.48850373885154 - ], - [ - -73.62424968841525, - 45.48850153945101 - ] - ] - ] - }, - "id": 200951, - "properties": { - "name": "03075046", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4730", - "function": "1000", - "height": 15, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62587118758385, - 45.4829977379837 - ], - [ - -73.62589248704427, - 45.483007838682646 - ], - [ - -73.62585078786078, - 45.48305103766595 - ], - [ - -73.62597048733832, - 45.483108137751884 - ], - [ - -73.62603918791622, - 45.48303683822707 - ], - [ - -73.62589808800932, - 45.48296963762973 - ], - [ - -73.62587118758385, - 45.4829977379837 - ] - ] - ] - }, - "id": 201028, - "properties": { - "name": "03035246", - "address": "rue Snowdon (MTL) 5232", - "function": "1000", - "height": 8, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62587188784312, - 45.48420943783305 - ], - [ - -73.62584908829352, - 45.48423133821562 - ], - [ - -73.62584638700994, - 45.48423383826489 - ], - [ - -73.62595178873143, - 45.48428703887916 - ], - [ - -73.62595578786929, - 45.4842831381355 - ], - [ - -73.6260123878597, - 45.4842305390899 - ], - [ - -73.62594688772545, - 45.484195638806995 - ], - [ - -73.6259691886624, - 45.484175038332545 - ], - [ - -73.62589056686195, - 45.48413292312235 - ], - [ - -73.62583675061205, - 45.484191337447356 - ], - [ - -73.62587188784312, - 45.48420943783305 - ] - ] - ] - }, - "id": 201051, - "properties": { - "name": "03034903", - "address": "chemin Circle (MTL) 4996", - "function": "1000", - "height": 10, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62432208743766, - 45.48225523809166 - ], - [ - -73.62426685066089, - 45.482313873704754 - ], - [ - -73.6244119577964, - 45.48238016311526 - ], - [ - -73.62446638676725, - 45.482322438057686 - ], - [ - -73.62432208743766, - 45.48225523809166 - ] - ] - ] - }, - "id": 201097, - "properties": { - "name": "03035132", - "address": "rue Saranac (MTL) 5246", - "function": "1000", - "height": 14, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62564182759158, - 45.482709820981015 - ], - [ - -73.6255968870345, - 45.48275823804917 - ], - [ - -73.62577328808416, - 45.48283923799505 - ], - [ - -73.62581790825769, - 45.4827911721512 - ], - [ - -73.62564182759158, - 45.482709820981015 - ] - ] - ] - }, - "id": 201105, - "properties": { - "name": "03035222", - "address": "rue Dalou (MTL) 5253", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62534938825799, - 45.48303113818025 - ], - [ - -73.62530441260155, - 45.48307895317193 - ], - [ - -73.62548070009755, - 45.48316040001346 - ], - [ - -73.62552528801916, - 45.483113137884864 - ], - [ - -73.62534938825799, - 45.48303113818025 - ] - ] - ] - }, - "id": 201119, - "properties": { - "name": "03035212", - "address": "rue Dalou (MTL) 5223", - "function": "1000", - "height": 9, "year_of_construction": 1927 } }, @@ -10690,260 +496,54 @@ "coordinates": [ [ [ - -73.62524058741465, - 45.48314853810065 + -73.59819623531936, + 45.517129506651784 ], [ - -73.62519681327684, - 45.48319659199052 + -73.59814568015311, + 45.51718914566768 ], [ - -73.62537365288962, - 45.483278293946825 + -73.59814433778156, + 45.517190804328074 ], [ - -73.62541878812954, - 45.48322913798332 + -73.59830703310524, + 45.51726289555975 ], [ - -73.62524058741465, - 45.48314853810065 + -73.59832908170294, + 45.51724214514652 + ], + [ + -73.5983789813753, + 45.5172684450256 + ], + [ + -73.59837878187308, + 45.517268545079766 + ], + [ + -73.598436881489, + 45.51729284562313 + ], + [ + -73.59847183620802, + 45.517251627075616 + ], + [ + -73.59819623531936, + 45.517129506651784 ] ] ] }, - "id": 201123, + "id": 149273, "properties": { - "name": "03035208", - "address": "rue Dalou (MTL) 5211", + "name": "03033689", + "address": "avenue Laurier Ouest (MTL+OUT) 1139", "function": "1000", - "height": 8, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62391658740252, - 45.48267083817675 - ], - [ - -73.62386504624428, - 45.48272519081231 - ], - [ - -73.62402809094046, - 45.48279967505124 - ], - [ - -73.62407828684525, - 45.48274673836271 - ], - [ - -73.62391658740252, - 45.48267083817675 - ] - ] - ] - }, - "id": 201160, - "properties": { - "name": "03035143", - "address": "rue Saranac (MTL) 5218", - "function": "1000", - "height": 14, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62536748733838, - 45.483009638084376 - ], - [ - -73.62554268765531, - 45.48309523791563 - ], - [ - -73.6255925616046, - 45.48304473050344 - ], - [ - -73.62541417042647, - 45.48296231250881 - ], - [ - -73.62536748733838, - 45.483009638084376 - ] - ] - ] - }, - "id": 201164, - "properties": { - "name": "03035214", - "address": "rue Dalou (MTL) 5231", - "function": "1000", - "height": 9, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62939058914017, - 45.491299439294494 - ], - [ - -73.62943178961538, - 45.491255439684565 - ], - [ - -73.62944399012804, - 45.49126113897587 - ], - [ - -73.6294440899201, - 45.49126113886278 - ], - [ - -73.62949278944677, - 45.49120903932522 - ], - [ - -73.62931878994077, - 45.49112843935419 - ], - [ - -73.62922878975766, - 45.49122443950089 - ], - [ - -73.62939058914017, - 45.491299439294494 - ] - ] - ] - }, - "id": 201169, - "properties": { - "name": "03073725", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4782", - "function": "1000", - "height": 8, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62359132547532, - 45.48192204226381 - ], - [ - -73.62351728792645, - 45.48200163818741 - ], - [ - -73.6236054869451, - 45.48204123771105 - ], - [ - -73.6236846073561, - 45.48196491166869 - ], - [ - -73.62359132547532, - 45.48192204226381 - ] - ] - ] - }, - "id": 201174, - "properties": { - "name": "03035061", - "address": "avenue Ponsard (MTL) 5250", - "function": "1000", - "height": 10, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6245218866563, - 45.48320263793514 - ], - [ - -73.62452618813933, - 45.483204738886364 - ], - [ - -73.62455548723295, - 45.483218738245895 - ], - [ - -73.62453508688124, - 45.48323983848998 - ], - [ - -73.62459188823244, - 45.483270338029925 - ], - [ - -73.62458418791984, - 45.483277538000685 - ], - [ - -73.62458898785856, - 45.48327943774011 - ], - [ - -73.624669187644, - 45.48331473849372 - ], - [ - -73.6247304882774, - 45.48325313828014 - ], - [ - -73.62456128706843, - 45.48316993865273 - ], - [ - -73.6245218866563, - 45.48320263793514 - ] - ] - ] - }, - "id": 201211, - "properties": { - "name": "03035198", - "address": "rue Dalou (MTL) 5182", - "function": "1000", - "height": 12, + "height": 13, "year_of_construction": 1934 } }, @@ -10954,43 +554,51 @@ "coordinates": [ [ [ - -73.62501148714165, - 45.48339793851658 + -73.5989206187427, + 45.51765228222093 ], [ - -73.62496428703618, - 45.483446638554895 + -73.59879370046444, + 45.51779349880788 ], [ - -73.62511908761779, - 45.48351913798631 + -73.59887251920655, + 45.5178290364157 ], [ - -73.62512238769418, - 45.483515537685825 + -73.59900139448642, + 45.517685640431 ], [ - -73.62516808713279, - 45.48346853813706 + -73.5990004721788, + 45.51768523180275 ], [ - -73.62501458726591, - 45.483394737969725 + -73.59894328119391, + 45.517741544806015 ], [ - -73.62501148714165, - 45.48339793851658 + -73.59891738088395, + 45.517728545640146 + ], + [ + -73.5989697814703, + 45.5176769447678 + ], + [ + -73.5989206187427, + 45.51765228222093 ] ] ] }, - "id": 201212, + "id": 149311, "properties": { - "name": "03035200", - "address": "rue Dalou (MTL) 5187", + "name": "03033749", + "address": "avenue Querbes (OUT) 162", "function": "1000", - "height": 18, - "year_of_construction": 1933 + "height": 12, + "year_of_construction": 1908 } }, { @@ -11000,35 +608,43 @@ "coordinates": [ [ [ - -73.6260140873444, - 45.4828721373402 + -73.5988963295066, + 45.517375238635545 ], [ - -73.62613388888693, - 45.482928638746245 + -73.5987976741419, + 45.51748518378521 ], [ - -73.62620278786338, - 45.48285643815544 + -73.59882638107538, + 45.517498045574506 ], [ - -73.62608288791137, - 45.482799938729265 + -73.59878746654793, + 45.51754093055931 ], [ - -73.6260140873444, - 45.4828721373402 + -73.59884180823266, + 45.51756502988158 + ], + [ + -73.59897892748309, + 45.5174122189449 + ], + [ + -73.5988963295066, + 45.517375238635545 ] ] ] }, - "id": 201229, + "id": 149462, "properties": { - "name": "03035242", - "address": "rue Snowdon (MTL) 5252", + "name": "03030768", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 139", "function": "1000", - "height": 8, - "year_of_construction": 1950 + "height": 12, + "year_of_construction": 1911 } }, { @@ -11038,51 +654,47 @@ "coordinates": [ [ [ - -73.62460918748219, - 45.4840910383551 + -73.59952958111586, + 45.516489745389386 ], [ - -73.62469088814991, - 45.4840059380273 + -73.59950798153032, + 45.516515744418925 ], [ - -73.62456558745066, - 45.483946438328694 + -73.59950548893313, + 45.51651472707033 ], [ - -73.62451298754448, - 45.4840012387227 + -73.5994095518746, + 45.516618593770545 ], [ - -73.6245018871106, - 45.483995738364186 + -73.59948658062702, + 45.51665014442419 ], [ - -73.62444648659798, - 45.48405273830419 + -73.59959658179665, + 45.51651724462382 ], [ - -73.62450608687898, - 45.48408113819144 + -73.5995296811287, + 45.516489845184594 ], [ - -73.62453168739115, - 45.484054138293786 - ], - [ - -73.62460918748219, - 45.4840910383551 + -73.59952958111586, + 45.516489745389386 ] ] ] }, - "id": 201234, + "id": 149514, "properties": { - "name": "03034966", - "address": "chemin Circle (MTL) 4955", + "name": "03030257", + "address": "avenue Bloomfield (OUT) 140", "function": "1000", - "height": 9, - "year_of_construction": 1942 + "height": 17, + "year_of_construction": 1900 } }, { @@ -11092,55 +704,43 @@ "coordinates": [ [ [ - -73.62569838783595, - 45.48312483810193 + -73.59869822674787, + 45.517286546183335 ], [ - -73.62570408713736, - 45.48312733880209 + -73.59857468682364, + 45.517424222342264 ], [ - -73.62588358834182, - 45.48320803821146 + -73.59859818134305, + 45.5174347446014 ], [ - -73.62588668796135, - 45.4832046378755 + -73.59858618135073, + 45.51744784494467 ], [ - -73.62593828757201, - 45.48314963817813 + -73.59862897653963, + 45.517467046600885 ], [ - -73.62577238774304, - 45.483072737427506 + -73.59876437024086, + 45.5173161585694 ], [ - -73.62576928812385, - 45.48307613776044 - ], - [ - -73.62574548820902, - 45.483100138569746 - ], - [ - -73.62573098798745, - 45.483093038546166 - ], - [ - -73.62569838783595, - 45.48312483810193 + -73.59869822674787, + 45.517286546183335 ] ] ] }, - "id": 201306, + "id": 150185, "properties": { - "name": "03035250", - "address": "rue Snowdon (MTL) 5224", + "name": "03030764", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 131", "function": "1000", "height": 10, - "year_of_construction": 1939 + "year_of_construction": 1906 } }, { @@ -11150,611 +750,79 @@ "coordinates": [ [ [ - -73.62563398750628, - 45.483260637276814 + -73.59910728097347, + 45.51633794493868 ], [ - -73.62558588814404, - 45.48331423822551 + -73.59910708182807, + 45.51633824565839 ], [ - -73.62573278786768, - 45.48337943786127 + -73.59912108156034, + 45.51634674510805 ], [ - -73.6257849882914, - 45.483321238619794 + -73.59904428096588, + 45.516409145517535 ], [ - -73.62563788826598, - 45.483256238136896 + -73.59914158164776, + 45.516456244277066 ], [ - -73.62563398750628, - 45.483260637276814 + -73.5991708806753, + 45.5164712452903 + ], + [ + -73.59916528115275, + 45.51646704519417 + ], + [ + -73.5992682817307, + 45.51639914460571 + ], + [ + -73.59919378116905, + 45.51634344527207 + ], + [ + -73.59922610340672, + 45.516322030676164 + ], + [ + -73.59916322716339, + 45.516293077999066 + ], + [ + -73.59916238210953, + 45.516293645632544 + ], + [ + -73.59915872447588, + 45.51629100417468 + ], + [ + -73.59915242327634, + 45.516288102257775 + ], + [ + -73.599151281003, + 45.51628924514765 + ], + [ + -73.59910728097347, + 45.51633794493868 ] ] ] }, - "id": 201307, + "id": 150245, "properties": { - "name": "03035254", - "address": "rue Snowdon (MTL) 5210", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62300608710297, - 45.48259833812637 - ], - [ - -73.62296159195078, - 45.48265256938653 - ], - [ - -73.62304761037969, - 45.48269149409939 - ], - [ - -73.62309458692515, - 45.48263423844773 - ], - [ - -73.62300608710297, - 45.48259833812637 - ] - ] - ] - }, - "id": 201356, - "properties": { - "name": "03035078", - "address": "avenue Ponsard (MTL) 5198", - "function": "1000", - "height": 16, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62692668810807, - 45.48375043786499 - ], - [ - -73.62688445271336, - 45.48379286124849 - ], - [ - -73.62704825776493, - 45.48386897803842 - ], - [ - -73.62706908818892, - 45.48384773829308 - ], - [ - -73.62706958890055, - 45.48384683878966 - ], - [ - -73.62705928843546, - 45.483841638338276 - ], - [ - -73.62707658915494, - 45.48382423856223 - ], - [ - -73.62692668810807, - 45.48375043786499 - ] - ] - ] - }, - "id": 201375, - "properties": { - "name": "03035330", - "address": "rue Byron (MTL) 5227", - "function": "1000", - "height": 8, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62320014215541, - 45.48226567711196 - ], - [ - -73.6231377861947, - 45.48233283780405 - ], - [ - -73.62328518718945, - 45.482399837951405 - ], - [ - -73.62329008766187, - 45.48240213896874 - ], - [ - -73.62335253101361, - 45.48233462625993 - ], - [ - -73.62320014215541, - 45.48226567711196 - ] - ] - ] - }, - "id": 201453, - "properties": { - "name": "03035072", - "address": "avenue Ponsard (MTL) 5220", - "function": "1000", - "height": 13, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62591448760469, - 45.48387013805858 - ], - [ - -73.62594348744261, - 45.48383793748413 - ], - [ - -73.62595818760637, - 45.4838445378447 - ], - [ - -73.6259610880871, - 45.483840738194964 - ], - [ - -73.62597566260749, - 45.48382367993407 - ], - [ - -73.62581287565224, - 45.48374908122433 - ], - [ - -73.62576418733929, - 45.48380313821439 - ], - [ - -73.62591448760469, - 45.48387013805858 - ] - ] - ] - }, - "id": 201510, - "properties": { - "name": "03035262", - "address": "rue Snowdon (MTL) 5187", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62353118724481, - 45.481877438033486 - ], - [ - -73.62351978651964, - 45.48188823772291 - ], - [ - -73.62359188699187, - 45.48192143785922 - ], - [ - -73.62359132547532, - 45.48192204226381 - ], - [ - -73.6236846073561, - 45.48196491166869 - ], - [ - -73.62373008716743, - 45.48192103808729 - ], - [ - -73.62357078762611, - 45.48183923810673 - ], - [ - -73.62353118724481, - 45.481877438033486 - ] - ] - ] - }, - "id": 201562, - "properties": { - "name": "03035059", - "address": "avenue Ponsard (MTL) 5256", - "function": "1000", - "height": 10, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62440698740652, - 45.48284303874298 - ], - [ - -73.62435801886446, - 45.482894988907056 - ], - [ - -73.62451886198177, - 45.482967180231824 - ], - [ - -73.62453738714709, - 45.48294733821965 - ], - [ - -73.62452828771616, - 45.48294363807342 - ], - [ - -73.62455708800368, - 45.48291303799019 - ], - [ - -73.62440698740652, - 45.48284303874298 - ] - ] - ] - }, - "id": 201578, - "properties": { - "name": "03035155", - "address": "rue Saranac (MTL) 5213", - "function": "1000", - "height": 16, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62458248704245, - 45.48288483790015 - ], - [ - -73.6246093880599, - 45.482853838543356 - ], - [ - -73.62461948657746, - 45.48285813779078 - ], - [ - -73.62462228758486, - 45.48285503836342 - ], - [ - -73.62463753039022, - 45.482837578209704 - ], - [ - -73.6244787337693, - 45.48276693165623 - ], - [ - -73.62443238708164, - 45.48282033764672 - ], - [ - -73.62458248704245, - 45.48288483790015 - ] - ] - ] - }, - "id": 201580, - "properties": { - "name": "03035157", - "address": "rue Saranac (MTL) 5221", - "function": "1000", - "height": 18, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62294361903533, - 45.481990826324655 - ], - [ - -73.62289196743879, - 45.48204571585491 - ], - [ - -73.62304016737542, - 45.48211411832292 - ], - [ - -73.62308998398301, - 45.48205838304829 - ], - [ - -73.62294361903533, - 45.481990826324655 - ] - ] - ] - }, - "id": 201602, - "properties": { - "name": "03035028", - "address": "avenue Jacques-Grenier (MTL) 5227", - "function": "1000", - "height": 10, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62580088823239, - 45.4825450379037 - ], - [ - -73.62575201534764, - 45.48259501969874 - ], - [ - -73.62592320169281, - 45.4826741084833 - ], - [ - -73.62592668849881, - 45.482670538547964 - ], - [ - -73.62594218774504, - 45.48267823854317 - ], - [ - -73.62597248784878, - 45.4826477381306 - ], - [ - -73.6259523882283, - 45.48263813733741 - ], - [ - -73.625965088069, - 45.48262493788323 - ], - [ - -73.62596498678838, - 45.482624837212114 - ], - [ - -73.62580088823239, - 45.4825450379037 - ] - ] - ] - }, - "id": 201621, - "properties": { - "name": "03035229", - "address": "rue Dalou (MTL) 5269", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62414168700026, - 45.4819240379138 - ], - [ - -73.62428948624355, - 45.48199233841513 - ], - [ - -73.62433894188831, - 45.48193943120505 - ], - [ - -73.62419063225462, - 45.481871677528844 - ], - [ - -73.62414168700026, - 45.4819240379138 - ] - ] - ] - }, - "id": 201662, - "properties": { - "name": "03035113", - "address": "avenue Ponsard (MTL) 5271", - "function": "1000", - "height": 16, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6246137871525, - 45.48313753821291 - ], - [ - -73.62476078742266, - 45.48320843861774 - ], - [ - -73.62483402209375, - 45.48313318544103 - ], - [ - -73.62475163372754, - 45.48309555838988 - ], - [ - -73.62475038676835, - 45.48309683753357 - ], - [ - -73.62470608699097, - 45.483075537950754 - ], - [ - -73.62468058695768, - 45.483102037467916 - ], - [ - -73.62465868791237, - 45.4830914386826 - ], - [ - -73.6246137871525, - 45.48313753821291 - ] - ] - ] - }, - "id": 201678, - "properties": { - "name": "03035196", - "address": "rue Dalou (MTL) 5192", - "function": "1000", - "height": 10, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62484228752983, - 45.483749637722916 - ], - [ - -73.62490928796876, - 45.48366573839673 - ], - [ - -73.62485328770308, - 45.48364373808911 - ], - [ - -73.6247807880534, - 45.48361473877764 - ], - [ - -73.62471748702079, - 45.483693438277705 - ], - [ - -73.62475468735398, - 45.48370823881939 - ], - [ - -73.62473838758629, - 45.48372853825544 - ], - [ - -73.62478508791652, - 45.48374703757885 - ], - [ - -73.62479728752642, - 45.483731838445316 - ], - [ - -73.62484228752983, - 45.483749637722916 - ] - ] - ] - }, - "id": 201711, - "properties": { - "name": "03034918", - "address": "chemin Circle (MTL) 4956", + "name": "03030251", + "address": "avenue Bloomfield (OUT) 126", "function": "1000", "height": 14, - "year_of_construction": 1945 + "year_of_construction": 1931 } }, { @@ -11764,89 +832,35 @@ "coordinates": [ [ [ - -73.62475768750961, - 45.48299903875485 + -73.59856778073495, + 45.51722814486145 ], [ - -73.62470638714483, - 45.4830521380179 + -73.59844588127146, + 45.5173869450326 ], [ - -73.62476628689164, - 45.483080437564446 + -73.59849538891179, + 45.517409267001256 ], [ - -73.62475163372754, - 45.48309555838988 + -73.59863208204267, + 45.51725693286003 ], [ - -73.62483402209375, - 45.48313318544103 - ], - [ - -73.62489868745915, - 45.48306673848478 - ], - [ - -73.62475768750961, - 45.48299903875485 + -73.59856778073495, + 45.51722814486145 ] ] ] }, - "id": 201756, + "id": 150267, "properties": { - "name": "03035194", - "address": "rue Dalou (MTL) 5198", - "function": "1000", - "height": 10, - "year_of_construction": 1923 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62694638830335, - 45.48372433842788 - ], - [ - -73.62713478759767, - 45.483814137816694 - ], - [ - -73.62716958793062, - 45.48377793875653 - ], - [ - -73.6271435880433, - 45.48376553812295 - ], - [ - -73.6271568214064, - 45.48375182053347 - ], - [ - -73.6269931996058, - 45.48367576128408 - ], - [ - -73.62694638830335, - 45.48372433842788 - ] - ] - ] - }, - "id": 201768, - "properties": { - "name": "03035332", - "address": "rue Byron (MTL) 5235", + "name": "03030761", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 127", "function": "1000", "height": 9, - "year_of_construction": 1928 + "year_of_construction": 1906 } }, { @@ -11856,131 +870,35 @@ "coordinates": [ [ [ - -73.6253204866543, - 45.48332223869472 + -73.59872079487437, + 45.51763104607609 ], [ - -73.62533928711653, - 45.483301437915344 + -73.59863852023182, + 45.51772353171024 ], [ - -73.62534838776762, - 45.48330563830999 + -73.59871471529257, + 45.51775788660249 ], [ - -73.62534918699977, - 45.48330493825234 + -73.59879461758896, + 45.517668066494885 ], [ - -73.62537365288962, - 45.483278293946825 - ], - [ - -73.62519681327684, - 45.48319659199052 - ], - [ - -73.62515158685079, - 45.48324623748292 - ], - [ - -73.6253204866543, - 45.48332223869472 + -73.59872079487437, + 45.51763104607609 ] ] ] }, - "id": 201783, + "id": 150793, "properties": { - "name": "03035206", - "address": "rue Dalou (MTL) 5207", - "function": "1000", - "height": 8, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6241021870024, - 45.48384073837904 - ], - [ - -73.62417554933435, - 45.48387580844485 - ], - [ - -73.62426071928944, - 45.48378533526738 - ], - [ - -73.62418958712045, - 45.483751038498504 - ], - [ - -73.6241021870024, - 45.48384073837904 - ] - ] - ] - }, - "id": 201913, - "properties": { - "name": "03034960", - "address": "chemin Circle (MTL) 4935", - "function": "1000", - "height": 14, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62379178720349, - 45.484103838390716 - ], - [ - -73.62380578685041, - 45.48415863824947 - ], - [ - -73.62381568751222, - 45.48419633827262 - ], - [ - -73.623925287357, - 45.48418203874351 - ], - [ - -73.62392538691759, - 45.48418193875254 - ], - [ - -73.62390188664999, - 45.484089938773984 - ], - [ - -73.62379178720349, - 45.484103838390716 - ] - ] - ] - }, - "id": 201929, - "properties": { - "name": "03074702", - "address": "avenue Ponsard (MTL) 5037", + "name": "03108654", + "address": "avenue Querbes (OUT) 152", "function": "1000", "height": 11, - "year_of_construction": 1942 + "year_of_construction": 1908 } }, { @@ -11990,154 +908,74 @@ "coordinates": [ [ [ - -73.62431328718479, - 45.48394453825791 + -73.59784448094318, + 45.51776944601724 ], [ - -73.62440598726053, - 45.483989237978975 + -73.59782638036255, + 45.51778924542153 ], [ - -73.62440618809825, - 45.48398923776023 + -73.59795678023792, + 45.517848045353524 ], [ - -73.6244843871943, - 45.48390913823834 + -73.59801163880915, + 45.51778799780745 ], [ - -73.62439158718935, - 45.483864338806164 + -73.5980683032404, + 45.517722742204654 ], [ - -73.62431328718479, - 45.48394453825791 + -73.59795280785528, + 45.51767140459713 + ], + [ + -73.59793718076348, + 45.517690744779074 + ], + [ + -73.59788578059468, + 45.51767024456947 + ], + [ + -73.59790280116883, + 45.51764917730535 + ], + [ + -73.5977918343213, + 45.517599853096314 + ], + [ + -73.59769253460675, + 45.517702833070345 + ], + [ + -73.59767603004875, + 45.51772184012593 + ], + [ + -73.59780358109482, + 45.51778254493306 + ], + [ + -73.59782498117477, + 45.517760345530654 + ], + [ + -73.59784448094318, + 45.51776944601724 ] ] ] }, - "id": 201945, + "id": 150823, "properties": { - "name": "03034964", - "address": "chemin Circle (MTL) 4945", + "name": "03033725", + "address": "avenue Querbes (OUT) 111", "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62411768782033, - 45.481942437960434 - ], - [ - -73.62405883371201, - 45.48199820239697 - ], - [ - -73.62422392787138, - 45.48207362357972 - ], - [ - -73.62424378631664, - 45.482054037518175 - ], - [ - -73.62424908692448, - 45.48204923827012 - ], - [ - -73.62424158703152, - 45.482045137728534 - ], - [ - -73.62426748667792, - 45.482020738111515 - ], - [ - -73.62411768782033, - 45.481942437960434 - ] - ] - ] - }, - "id": 201966, - "properties": { - "name": "03035111", - "address": "avenue Ponsard (MTL) 5267", - "function": "1000", - "height": 15, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63067108922645, - 45.490434639610704 - ], - [ - -73.6308269900622, - 45.4905045393058 - ], - [ - -73.63077849007715, - 45.490558039349374 - ], - [ - -73.63077588896324, - 45.490560739163385 - ], - [ - -73.6309154899684, - 45.490621338599524 - ], - [ - -73.6310014895875, - 45.49052313888065 - ], - [ - -73.63086508958577, - 45.49046413940552 - ], - [ - -73.63091748921921, - 45.490404138872314 - ], - [ - -73.63092009031915, - 45.490401439055006 - ], - [ - -73.6307665901712, - 45.4903350398349 - ], - [ - -73.63076298993172, - 45.490333338749686 - ], - [ - -73.63067108922645, - 45.490434639610704 - ] - ] - ] - }, - "id": 202628, - "properties": { - "name": "03121713", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4855", - "function": "1000", - "height": 15, + "height": 18, "year_of_construction": 1943 } }, @@ -12148,55 +986,35 @@ "coordinates": [ [ [ - -73.63080268991, - 45.49073953920827 + -73.59935830069942, + 45.51758214848965 ], [ - -73.63089529042038, - 45.49064253960469 + -73.59921272893406, + 45.51774437955447 ], [ - -73.63076069014032, - 45.490579039617714 + -73.59928547130642, + 45.517773836531255 ], [ - -73.63075649036523, - 45.490583639034824 + -73.59942904623966, + 45.517613830619574 ], [ - -73.63071059030277, - 45.490635638730254 - ], - [ - -73.63055438950363, - 45.490567239262646 - ], - [ - -73.63046459028764, - 45.49066863923399 - ], - [ - -73.6306214907246, - 45.49073743935405 - ], - [ - -73.63067629013122, - 45.49067983877677 - ], - [ - -73.63080268991, - 45.49073953920827 + -73.59935830069942, + 45.51758214848965 ] ] ] }, - "id": 202629, + "id": 151232, "properties": { - "name": "03121713", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4855", + "name": "03030780", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 175", "function": "1000", - "height": 15, - "year_of_construction": 1943 + "height": 12, + "year_of_construction": 1912 } }, { @@ -12206,19070 +1024,74 @@ "coordinates": [ [ [ - -73.62590478774892, - 45.48967593938851 + -73.59930227494544, + 45.51619761723985 ], [ - -73.62584250519406, - 45.48974266406373 + -73.59914738150661, + 45.51620864526451 ], [ - -73.62598337192881, - 45.48980502283983 + -73.59914958191351, + 45.51622404503521 ], [ - -73.62604398765555, - 45.489740139211655 + -73.59912028121956, + 45.5162262444803 ], [ - -73.62590478774892, - 45.48967593938851 + -73.59912488046626, + 45.51625634467383 + ], + [ + -73.59912548089045, + 45.516257145011394 + ], + [ + -73.59913578154838, + 45.516250344971326 + ], + [ + -73.59917908121821, + 45.51628244521 + ], + [ + -73.59916322716339, + 45.516293077999066 + ], + [ + -73.59922610340672, + 45.516322030676164 + ], + [ + -73.59923408104578, + 45.51631674527812 + ], + [ + -73.59926475098669, + 45.516339826549604 + ], + [ + -73.59928674694203, + 45.51634995584094 + ], + [ + -73.59933120751522, + 45.51632084422144 + ], + [ + -73.59930227494544, + 45.51619761723985 ] ] ] }, - "id": 202753, + "id": 151969, "properties": { - "name": "03111626", - "address": "rue Fulton (MTL) 4730", - "function": "1000", - "height": 10, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6292608897905, - 45.490482339581924 - ], - [ - -73.62925809017052, - 45.490485539899964 - ], - [ - -73.62938878942485, - 45.4905408394892 - ], - [ - -73.62939318992615, - 45.49054283845981 - ], - [ - -73.62955279015718, - 45.49036193894522 - ], - [ - -73.62942238942252, - 45.49030503927884 - ], - [ - -73.62941738996356, - 45.4903029393054 - ], - [ - -73.6292608897905, - 45.490482339581924 - ] - ] - ] - }, - "id": 202821, - "properties": { - "name": "03073800", - "address": "avenue Lacombe (MTL) 4811", - "function": "1000", - "height": 10, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63150187508103, - 45.490129515121204 - ], - [ - -73.63112939007358, - 45.49053983992828 - ], - [ - -73.63112929051246, - 45.49053993902555 - ], - [ - -73.63116868975627, - 45.490556339360566 - ], - [ - -73.63094458940996, - 45.49082343926486 - ], - [ - -73.63109058996373, - 45.490891439573005 - ], - [ - -73.63141789078776, - 45.490533639584164 - ], - [ - -73.6314212901973, - 45.490529839226255 - ], - [ - -73.63140218987444, - 45.49052133966597 - ], - [ - -73.63164563817445, - 45.49025078184369 - ], - [ - -73.6316018953543, - 45.49023154676508 - ], - [ - -73.6316389931251, - 45.49018981148861 - ], - [ - -73.63150187508103, - 45.490129515121204 - ] - ] - ] - }, - "id": 202973, - "properties": { - "name": "03118878", - "address": "avenue Saint-Kevin (MTL) 4850", - "function": "6812", - "height": 14, - "year_of_construction": 1959 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62293428677764, - 45.48492363796695 - ], - [ - -73.62312478782262, - 45.4848841383065 - ], - [ - -73.62312558713292, - 45.48488403846184 - ], - [ - -73.6231215862455, - 45.4848737386368 - ], - [ - -73.62313234925327, - 45.484871723077944 - ], - [ - -73.62310686404396, - 45.484807657209466 - ], - [ - -73.62315224998822, - 45.48479870880827 - ], - [ - -73.62315188606549, - 45.48479783814961 - ], - [ - -73.62309578712419, - 45.48480943914425 - ], - [ - -73.62304428738858, - 45.484686637741916 - ], - [ - -73.6228517873079, - 45.48472663793425 - ], - [ - -73.62293428677764, - 45.48492363796695 - ] - ] - ] - }, - "id": 203044, - "properties": { - "name": "03110110", - "address": "avenue Meridian (MTL) 4774", + "name": "03034142", + "address": "chemin de la C\u00f4te-Sainte-Catherine (MTL+OUT) 235", "function": "1000", "height": 14, - "year_of_construction": 1957 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62464468698482, - 45.48410423816093 - ], - [ - -73.62467898712721, - 45.48414203836055 - ], - [ - -73.6246670877071, - 45.48414723806172 - ], - [ - -73.62466718770693, - 45.48414733783552 - ], - [ - -73.62470878735373, - 45.484193338456016 - ], - [ - -73.62484788740475, - 45.484131038628874 - ], - [ - -73.62477208727739, - 45.484047237787884 - ], - [ - -73.62464468698482, - 45.48410423816093 - ] - ] - ] - }, - "id": 203711, - "properties": { - "name": "03034992", - "address": "avenue Iona (MTL) 5026", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62853118892531, - 45.49129173953551 - ], - [ - -73.62849799034217, - 45.49132843927427 - ], - [ - -73.62866978858744, - 45.49140503956163 - ], - [ - -73.62872494185372, - 45.49134380235497 - ], - [ - -73.62855294120685, - 45.491267601908724 - ], - [ - -73.62853118892531, - 45.49129173953551 - ] - ] - ] - }, - "id": 204188, - "properties": { - "name": "03073814", - "address": "avenue Lacombe (MTL) 4707", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62370418801493, - 45.48888633853881 - ], - [ - -73.62370108733163, - 45.48889003936168 - ], - [ - -73.62379538724862, - 45.48892863955453 - ], - [ - -73.62380018807889, - 45.488930739089966 - ], - [ - -73.62391858805019, - 45.488789539233835 - ], - [ - -73.62388868716427, - 45.48877713940267 - ], - [ - -73.62390738776566, - 45.48875523937615 - ], - [ - -73.62390838758262, - 45.48875553973981 - ], - [ - -73.62386078713926, - 45.48873203970899 - ], - [ - -73.62379208791207, - 45.48880193949065 - ], - [ - -73.62378868699481, - 45.488805238410414 - ], - [ - -73.62379828776291, - 45.488809039751 - ], - [ - -73.62377548740187, - 45.48883703885532 - ], - [ - -73.62375368746967, - 45.48882823859082 - ], - [ - -73.62370418801493, - 45.48888633853881 - ] - ] - ] - }, - "id": 205230, - "properties": { - "name": "03117951", - "address": "avenue Grosvenor (MTL) 5060", - "function": "1000", - "height": 10, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62603588893136, - 45.48429723855609 - ], - [ - -73.62615758805988, - 45.48435373872929 - ], - [ - -73.62622878692913, - 45.48427783813282 - ], - [ - -73.62615698846945, - 45.484244438675255 - ], - [ - -73.62614148821102, - 45.48426113804184 - ], - [ - -73.62609148762581, - 45.484237938521815 - ], - [ - -73.62603588893136, - 45.48429723855609 - ] - ] - ] - }, - "id": 205308, - "properties": { - "name": "03034901", - "address": "chemin Circle (MTL) 5000", - "function": "1000", - "height": 8, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62893868899236, - 45.49084673969849 - ], - [ - -73.62888328941887, - 45.49090063995439 - ], - [ - -73.62907128943401, - 45.490985839178734 - ], - [ - -73.62912448960816, - 45.49092743939349 - ], - [ - -73.62894058919727, - 45.4908446400145 - ], - [ - -73.62893868899236, - 45.49084673969849 - ] - ] - ] - }, - "id": 205949, - "properties": { - "name": "03073804", - "address": "avenue Lacombe (MTL) 4765", - "function": "1000", - "height": 9, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62549818802982, - 45.48952633942027 - ], - [ - -73.62565988820906, - 45.48959853891145 - ], - [ - -73.6257097827278, - 45.48954324880533 - ], - [ - -73.62554771648279, - 45.48947150510819 - ], - [ - -73.62549818802982, - 45.48952633942027 - ] - ] - ] - }, - "id": 206646, - "properties": { - "name": "05066552", - "address": "avenue Dornal (MTL) 4735", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62555438785962, - 45.48499703834549 - ], - [ - -73.62557799403805, - 45.48505414272279 - ], - [ - -73.62571337595601, - 45.48502496657301 - ], - [ - -73.62569038803085, - 45.48496923830756 - ], - [ - -73.62555438785962, - 45.48499703834549 - ] - ] - ] - }, - "id": 206824, - "properties": { - "name": "03074680", - "address": "avenue Iona (MTL) 4975", - "function": "1000", - "height": 10, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62455618703059, - 45.4826899373509 - ], - [ - -73.62470028709242, - 45.48275373851372 - ], - [ - -73.62478788778152, - 45.48265583853847 - ], - [ - -73.62464368809609, - 45.48259203849363 - ], - [ - -73.62455618703059, - 45.4826899373509 - ] - ] - ] - }, - "id": 207182, - "properties": { - "name": "03035161", - "address": "rue Saranac (MTL) 5237", - "function": "1000", - "height": 13, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62310438761291, - 45.48802853929887 - ], - [ - -73.6229500869676, - 45.488204439928815 - ], - [ - -73.62298208817765, - 45.48821633923115 - ], - [ - -73.62296888741773, - 45.48823363857627 - ], - [ - -73.62300341731977, - 45.48824646289114 - ], - [ - -73.62304215736225, - 45.48820282365073 - ], - [ - -73.62302977162723, - 45.488197239952214 - ], - [ - -73.62308099585226, - 45.48814038741665 - ], - [ - -73.62309930552179, - 45.48814864086649 - ], - [ - -73.62311632732172, - 45.48812947740691 - ], - [ - -73.62310986553555, - 45.48812656347263 - ], - [ - -73.62317100881558, - 45.48805768636678 - ], - [ - -73.6231097864348, - 45.48803093876762 - ], - [ - -73.62310438761291, - 45.48802853929887 - ] - ] - ] - }, - "id": 207396, - "properties": { - "name": "05075095", - "address": "avenue Victoria (MTL+WMT) 5017", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6291590894092, - 45.48988753914365 - ], - [ - -73.62932988977883, - 45.48996343860635 - ], - [ - -73.62938682458464, - 45.48990006821378 - ], - [ - -73.6292160497817, - 45.48982410941662 - ], - [ - -73.6291590894092, - 45.48988753914365 - ] - ] - ] - }, - "id": 207508, - "properties": { - "name": "03074159", - "address": "avenue Lacombe (MTL) 4828", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6229078869537, - 45.48713073912661 - ], - [ - -73.62287778668947, - 45.4871626386471 - ], - [ - -73.62293628687834, - 45.487189939110145 - ], - [ - -73.62305468757181, - 45.48706443881429 - ], - [ - -73.62287238783475, - 45.48697953934405 - ], - [ - -73.62277428741166, - 45.48708413851472 - ], - [ - -73.62284708704918, - 45.4871177387709 - ], - [ - -73.62284758703721, - 45.487117639250144 - ], - [ - -73.62285718644117, - 45.487107439072766 - ], - [ - -73.6229078869537, - 45.48713073912661 - ] - ] - ] - }, - "id": 207586, - "properties": { - "name": "03074550", - "address": "chemin Circle (MTL) 4550", - "function": "1000", - "height": 12, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62518868783698, - 45.485406338763354 - ], - [ - -73.62531178758898, - 45.48538013884458 - ], - [ - -73.62531568776514, - 45.48537943808503 - ], - [ - -73.62529245902284, - 45.48532980286457 - ], - [ - -73.62516646909236, - 45.48535464806212 - ], - [ - -73.62518868783698, - 45.485406338763354 - ] - ] - ] - }, - "id": 208074, - "properties": { - "name": "03074693", - "address": "avenue Iona (MTL) 4954", - "function": "1000", - "height": 15, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62580128792393, - 45.486246038154455 - ], - [ - -73.62573735712172, - 45.48635285636035 - ], - [ - -73.6258371074687, - 45.486380410475974 - ], - [ - -73.62584998781998, - 45.48635883867862 - ], - [ - -73.62594488842527, - 45.486386938850565 - ], - [ - -73.62599478708384, - 45.486303338533425 - ], - [ - -73.62599068710958, - 45.48630223894483 - ], - [ - -73.62580128792393, - 45.486246038154455 - ] - ] - ] - }, - "id": 208210, - "properties": { - "name": "03074514", - "address": "chemin Circle (MTL) 4440", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62292588678481, - 45.48818123916079 - ], - [ - -73.62307658761507, - 45.488008939124406 - ], - [ - -73.62299090932251, - 45.48797190827828 - ], - [ - -73.62292058118094, - 45.48805113079945 - ], - [ - -73.62290538886312, - 45.488044458594736 - ], - [ - -73.62289156645045, - 45.4880600290971 - ], - [ - -73.62292194981544, - 45.488073373509465 - ], - [ - -73.62290663681131, - 45.48809062382963 - ], - [ - -73.62289144448256, - 45.488083950723265 - ], - [ - -73.62283322076227, - 45.48814953740382 - ], - [ - -73.62286978738517, - 45.48816653935173 - ], - [ - -73.62287068718047, - 45.4881667390494 - ], - [ - -73.62287658774765, - 45.48815983898529 - ], - [ - -73.62292588678481, - 45.48818123916079 - ] - ] - ] - }, - "id": 208257, - "properties": { - "name": "05103119", - "address": "avenue Victoria (MTL+WMT) 5011", - "function": "1000", - "height": 12, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62559898813367, - 45.48941473868902 - ], - [ - -73.62554771648279, - 45.48947150510819 - ], - [ - -73.6257097827278, - 45.48954324880533 - ], - [ - -73.62576068790347, - 45.48948683995622 - ], - [ - -73.62559898813367, - 45.48941473868902 - ] - ] - ] - }, - "id": 208606, - "properties": { - "name": "03074871", - "address": "avenue Dornal (MTL) 4739", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62414278666698, - 45.48803623936566 - ], - [ - -73.62409437697242, - 45.48808966450856 - ], - [ - -73.62426708911367, - 45.488167271995785 - ], - [ - -73.62431568759438, - 45.4881136396105 - ], - [ - -73.62414278666698, - 45.48803623936566 - ] - ] - ] - }, - "id": 208649, - "properties": { - "name": "05098799", - "address": "avenue Victoria (MTL+WMT) 5072", - "function": "1000", - "height": 10, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62339448726223, - 45.48817418933687 - ], - [ - -73.62326389844687, - 45.48831799247415 - ], - [ - -73.62335708737795, - 45.48836043927153 - ], - [ - -73.62348888738873, - 45.488217138632926 - ], - [ - -73.62339448726223, - 45.48817418933687 - ] - ] - ] - }, - "id": 208763, - "properties": { - "name": "05190694", - "address": "avenue Victoria (MTL+WMT) 5041", - "function": "1000", - "height": 14, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62354008725178, - 45.485339638296324 - ], - [ - -73.6235814871652, - 45.4853323389549 - ], - [ - -73.62357508760473, - 45.48531503824007 - ], - [ - -73.62370678718582, - 45.48529123873455 - ], - [ - -73.62370968623186, - 45.4852995384741 - ], - [ - -73.62371014912372, - 45.48529944798817 - ], - [ - -73.6236677096684, - 45.48519294767393 - ], - [ - -73.62362538662812, - 45.48520743871558 - ], - [ - -73.62353058699766, - 45.485234638339506 - ], - [ - -73.62353198725116, - 45.48523673796571 - ], - [ - -73.62354698652405, - 45.485273038629444 - ], - [ - -73.62351278797406, - 45.485279938738856 - ], - [ - -73.62354008725178, - 45.485339638296324 - ] - ] - ] - }, - "id": 208788, - "properties": { - "name": "03074955", - "address": "avenue Meridian (MTL) 4787", - "function": "1000", - "height": 10, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62585258404722, - 45.48845937170589 - ], - [ - -73.62578628775337, - 45.488497139259024 - ], - [ - -73.62578648799676, - 45.488497439586936 - ], - [ - -73.62575998832315, - 45.488528039216824 - ], - [ - -73.62589988824107, - 45.48858793899591 - ], - [ - -73.6259671699688, - 45.48851013976331 - ], - [ - -73.62585258404722, - 45.48845937170589 - ] - ] - ] - }, - "id": 208915, - "properties": { - "name": "03074899", - "address": "avenue Dornal (MTL) 4826", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6242602874541, - 45.4879033393864 - ], - [ - -73.62420989230641, - 45.48795784565419 - ], - [ - -73.6243822661274, - 45.48803530036324 - ], - [ - -73.6244317882089, - 45.487981739809065 - ], - [ - -73.6242602874541, - 45.4879033393864 - ] - ] - ] - }, - "id": 209065, - "properties": { - "name": "05100862", - "address": "rue Victoria (MTL) 5064", - "function": "1000", - "height": 16, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62504498871313, - 45.489354639329136 - ], - [ - -73.62496142167994, - 45.48945002170521 - ], - [ - -73.62507744683536, - 45.48950138386962 - ], - [ - -73.62516218743667, - 45.489406239482506 - ], - [ - -73.6250498881373, - 45.489356739603814 - ], - [ - -73.62504498871313, - 45.489354639329136 - ] - ] - ] - }, - "id": 209239, - "properties": { - "name": "05151925", - "address": "avenue Dornal (MTL) 4726", - "function": "1000", - "height": 11, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62410738773238, - 45.487725038331284 - ], - [ - -73.62410518711431, - 45.487728439439174 - ], - [ - -73.62408358752224, - 45.48775943829093 - ], - [ - -73.6240945869605, - 45.4877617389451 - ], - [ - -73.62408388845276, - 45.487787539243236 - ], - [ - -73.62408398823874, - 45.48778753913482 - ], - [ - -73.62425580055066, - 45.4878671038851 - ], - [ - -73.62433290852242, - 45.48778220593202 - ], - [ - -73.62428998693383, - 45.48776383910171 - ], - [ - -73.62428338739767, - 45.48777333875402 - ], - [ - -73.62422878752339, - 45.48775403886875 - ], - [ - -73.62422218779851, - 45.487764038831905 - ], - [ - -73.62410738773238, - 45.487725038331284 - ] - ] - ] - }, - "id": 209291, - "properties": { - "name": "05196151", - "address": "avenue Victoria (MTL+WMT) 5056", - "function": "1000", - "height": 22, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62757418820901, - 45.49191703935843 - ], - [ - -73.62757718886307, - 45.491913839757785 - ], - [ - -73.62763768893117, - 45.491850239515934 - ], - [ - -73.62752238843238, - 45.491796040153005 - ], - [ - -73.6275191886462, - 45.49179943974018 - ], - [ - -73.62748748909968, - 45.491831838948976 - ], - [ - -73.62741238930148, - 45.491795439426554 - ], - [ - -73.6273825891646, - 45.49182593961433 - ], - [ - -73.62757418820901, - 45.49191703935843 - ] - ] - ] - }, - "id": 209293, - "properties": { - "name": "05152047", - "address": "avenue Lacombe (MTL) 4638", - "function": "1000", - "height": 9, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62954108896285, - 45.49061303872258 - ], - [ - -73.62962041887597, - 45.490648071487065 - ], - [ - -73.62972201188927, - 45.490534557667885 - ], - [ - -73.62964248997149, - 45.4904994397059 - ], - [ - -73.62954108896285, - 45.49061303872258 - ] - ] - ] - }, - "id": 209338, - "properties": { - "name": "03007288", - "address": "avenue Victoria (MTL+WMT) 5416", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62546188726094, - 45.482913938357136 - ], - [ - -73.62541417042647, - 45.48296231250881 - ], - [ - -73.6255925616046, - 45.48304473050344 - ], - [ - -73.62561358787259, - 45.483023437714145 - ], - [ - -73.62561688705534, - 45.4830200380658 - ], - [ - -73.62560438848608, - 45.48301393825365 - ], - [ - -73.62562468735493, - 45.4829934381269 - ], - [ - -73.62546188726094, - 45.482913938357136 - ] - ] - ] - }, - "id": 209357, - "properties": { - "name": "03035216", - "address": "rue Dalou (MTL) 5235", - "function": "1000", - "height": 9, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62513158725407, - 45.48326393867472 - ], - [ - -73.62508059586153, - 45.48331845232334 - ], - [ - -73.6252417736273, - 45.483392918869654 - ], - [ - -73.62529268719291, - 45.48333853751256 - ], - [ - -73.62513158725407, - 45.48326393867472 - ] - ] - ] - }, - "id": 209396, - "properties": { - "name": "05138650", - "address": "rue Dalou (MTL) 5197", - "function": "1000", - "height": 9, - "year_of_construction": 1933 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62547368835062, - 45.48703363848461 - ], - [ - -73.62540418779643, - 45.48711013870582 - ], - [ - -73.62539968765181, - 45.4871149380243 - ], - [ - -73.62570578793299, - 45.48725333888803 - ], - [ - -73.62567838811796, - 45.487283339299246 - ], - [ - -73.62537428799826, - 45.487145838712735 - ], - [ - -73.62529328792188, - 45.487234039582134 - ], - [ - -73.62560078869363, - 45.487373839348095 - ], - [ - -73.62557158766731, - 45.48740563870543 - ], - [ - -73.6252665877034, - 45.48726693933002 - ], - [ - -73.6251860885971, - 45.487355638986486 - ], - [ - -73.62549548709, - 45.487494339141406 - ], - [ - -73.62548181667569, - 45.487509420275686 - ], - [ - -73.62548381435697, - 45.48751030622884 - ], - [ - -73.62546780259315, - 45.48752817135642 - ], - [ - -73.62552071940233, - 45.487551636085634 - ], - [ - -73.62583085205499, - 45.487210218257374 - ], - [ - -73.62582980551154, - 45.487208459311994 - ], - [ - -73.6258282071989, - 45.48720594960324 - ], - [ - -73.6258265206792, - 45.48720346878669 - ], - [ - -73.62582474467521, - 45.48720101776361 - ], - [ - -73.62582288303282, - 45.4871986001291 - ], - [ - -73.62582093447075, - 45.48719621498473 - ], - [ - -73.62581890283289, - 45.487193865025844 - ], - [ - -73.62581678812323, - 45.487191552052096 - ], - [ - -73.62581459034382, - 45.48718927696333 - ], - [ - -73.62581231333654, - 45.48718704155498 - ], - [ - -73.62580985071367, - 45.487184753260124 - ], - [ - -73.62547368835062, - 45.48703363848461 - ] - ] - ] - }, - "id": 209432, - "properties": { - "name": "03075056", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4890", - "function": "1000", - "height": 14, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62424198683269, - 45.481816738241164 - ], - [ - -73.62419063225462, - 45.481871677528844 - ], - [ - -73.62433894188831, - 45.48193943120505 - ], - [ - -73.62438978719325, - 45.48188503771295 - ], - [ - -73.62424198683269, - 45.481816738241164 - ] - ] - ] - }, - "id": 209503, - "properties": { - "name": "03035115", - "address": "avenue Ponsard (MTL) 5275", - "function": "1000", - "height": 16, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62416098775746, - 45.48801073865556 - ], - [ - -73.62433248742173, - 45.488089139227036 - ], - [ - -73.6243822661274, - 45.48803530036324 - ], - [ - -73.62420989230641, - 45.48795784565419 - ], - [ - -73.62416098775746, - 45.48801073865556 - ] - ] - ] - }, - "id": 209520, - "properties": { - "name": "05100861", - "address": "rue Victoria (MTL) 5068", - "function": "1000", - "height": 16, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6228927874578, - 45.48340543871633 - ], - [ - -73.62289418660593, - 45.48340823843261 - ], - [ - -73.6229195869688, - 45.4834713380206 - ], - [ - -73.62284998686818, - 45.483485138251964 - ], - [ - -73.62286688616172, - 45.48353203806196 - ], - [ - -73.62286858687324, - 45.48353703847818 - ], - [ - -73.623105586605, - 45.48349463810086 - ], - [ - -73.62310528746131, - 45.48349413900855 - ], - [ - -73.6230526862584, - 45.48337193806642 - ], - [ - -73.62305138750642, - 45.48336883769522 - ], - [ - -73.6228927874578, - 45.48340543871633 - ] - ] - ] - }, - "id": 209583, - "properties": { - "name": "03035084", - "address": "avenue Ponsard (MTL) 5080", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62823838960257, - 45.49090183909558 - ], - [ - -73.62818180868, - 45.49096487016562 - ], - [ - -73.62835798282107, - 45.491042886871675 - ], - [ - -73.62841448961106, - 45.49097993948414 - ], - [ - -73.62823838960257, - 45.49090183909558 - ] - ] - ] - }, - "id": 209637, - "properties": { - "name": "03074144", - "address": "avenue Lacombe (MTL) 4726", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62419348681274, - 45.48239423779716 - ], - [ - -73.62413962803676, - 45.48245197380229 - ], - [ - -73.62428224485302, - 45.48251712687677 - ], - [ - -73.62433568751409, - 45.48245983848168 - ], - [ - -73.62419348681274, - 45.48239423779716 - ] - ] - ] - }, - "id": 209728, - "properties": { - "name": "03035136", - "address": "rue Saranac (MTL) 5234", - "function": "1000", - "height": 14, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6245229865237, - 45.482715937717856 - ], - [ - -73.6244787337693, - 45.48276693165623 - ], - [ - -73.62463753039022, - 45.482837578209704 - ], - [ - -73.62468348715183, - 45.482784937431205 - ], - [ - -73.6245229865237, - 45.482715937717856 - ] - ] - ] - }, - "id": 209827, - "properties": { - "name": "05097846", - "address": "rue Saranac (MTL) 5225", - "function": "1000", - "height": 18, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6273819890949, - 45.48923053927888 - ], - [ - -73.62754778917281, - 45.48930753850337 - ], - [ - -73.62762438859191, - 45.48922593865077 - ], - [ - -73.62745858887277, - 45.48914903851898 - ], - [ - -73.6273819890949, - 45.48923053927888 - ] - ] - ] - }, - "id": 210117, - "properties": { - "name": "03074631", - "address": "rue Jean-Brillant (MTL) 4822", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62369168662246, - 45.4851847385129 - ], - [ - -73.6236677096684, - 45.48519294767393 - ], - [ - -73.62371014912372, - 45.48529944798817 - ], - [ - -73.62375458668487, - 45.48529073883475 - ], - [ - -73.6237588875004, - 45.48529013847707 - ], - [ - -73.62375298692676, - 45.485278738421655 - ], - [ - -73.62382188667829, - 45.485260838705216 - ], - [ - -73.62383548795813, - 45.48525803893719 - ], - [ - -73.6238003871985, - 45.48518533883086 - ], - [ - -73.62370358735933, - 45.485208639033914 - ], - [ - -73.62369378713731, - 45.4851882384391 - ], - [ - -73.62369168662246, - 45.4851847385129 - ] - ] - ] - }, - "id": 210337, - "properties": { - "name": "03074764", - "address": "avenue Ponsard (MTL) 4990", - "function": "1000", - "height": 10, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62386178737117, - 45.482926238031716 - ], - [ - -73.62385548792011, - 45.48293293791984 - ], - [ - -73.62388718648955, - 45.48294693844904 - ], - [ - -73.62395718766483, - 45.482868538075884 - ], - [ - -73.6238274869659, - 45.48281123795581 - ], - [ - -73.62376018717903, - 45.482886638834955 - ], - [ - -73.62377278676168, - 45.48289223842496 - ], - [ - -73.62377548694433, - 45.482888638812994 - ], - [ - -73.62386178737117, - 45.482926238031716 - ] - ] - ] - }, - "id": 210358, - "properties": { - "name": "03035147", - "address": "rue Saranac (MTL) 5202", - "function": "1000", - "height": 15, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62347598678208, - 45.48469513886944 - ], - [ - -73.62344238794205, - 45.48470293815631 - ], - [ - -73.62345998680877, - 45.48474643839381 - ], - [ - -73.62360418705505, - 45.48471733799661 - ], - [ - -73.62358948742695, - 45.48465713889932 - ], - [ - -73.62358308701938, - 45.48465813835444 - ], - [ - -73.62354848744732, - 45.48466633828697 - ], - [ - -73.62353468671547, - 45.484636939043 - ], - [ - -73.62345698668574, - 45.48465493898437 - ], - [ - -73.62347598678208, - 45.48469513886944 - ] - ] - ] - }, - "id": 210456, - "properties": { - "name": "03110109", - "address": "avenue Ponsard (MTL) 5014", - "function": "1000", - "height": 12, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62425928702876, - 45.485390339284585 - ], - [ - -73.6243197873067, - 45.48537773859975 - ], - [ - -73.62432398757227, - 45.48538783839913 - ], - [ - -73.62432918762568, - 45.48538603844636 - ], - [ - -73.62438158735142, - 45.4853692388655 - ], - [ - -73.62435468662791, - 45.48530503804571 - ], - [ - -73.6242340874601, - 45.485330038318416 - ], - [ - -73.62425928702876, - 45.485390339284585 - ] - ] - ] - }, - "id": 210457, - "properties": { - "name": "05138584", - "address": "avenue Ponsard (MTL) 4979", - "function": "1000", - "height": 12, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62587718784965, - 45.482721237365304 - ], - [ - -73.62592320169281, - 45.4826741084833 - ], - [ - -73.62575201534764, - 45.48259501969874 - ], - [ - -73.62570838793481, - 45.48263963801415 - ], - [ - -73.62587718784965, - 45.482721237365304 - ] - ] - ] - }, - "id": 210471, - "properties": { - "name": "03035227", - "address": "rue Dalou (MTL) 5265", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62879397215156, - 45.4917146082734 - ], - [ - -73.62876528882728, - 45.49174584003693 - ], - [ - -73.62873518936465, - 45.49177883978484 - ], - [ - -73.6289148890466, - 45.49186023956395 - ], - [ - -73.62897486251194, - 45.49179474503383 - ], - [ - -73.62879397215156, - 45.4917146082734 - ] - ] - ] - }, - "id": 210492, - "properties": { - "name": "03073713", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4742", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62558708732223, - 45.48278193818085 - ], - [ - -73.62553967056554, - 45.48282997371392 - ], - [ - -73.62571507662649, - 45.482911012635775 - ], - [ - -73.6257385874325, - 45.482887037345954 - ], - [ - -73.62573898754471, - 45.48288633772486 - ], - [ - -73.62572868782337, - 45.48288133781753 - ], - [ - -73.6257487872693, - 45.48286093867054 - ], - [ - -73.62558708732223, - 45.48278193818085 - ] - ] - ] - }, - "id": 210499, - "properties": { - "name": "03035220", - "address": "rue Dalou (MTL) 5247", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62355378734833, - 45.487705739288366 - ], - [ - -73.62340738690398, - 45.487858539262554 - ], - [ - -73.62345848708917, - 45.487882839265495 - ], - [ - -73.62349337510278, - 45.48789917964261 - ], - [ - -73.62364541976612, - 45.48773177705382 - ], - [ - -73.62356458770942, - 45.48769423837651 - ], - [ - -73.62355378734833, - 45.487705739288366 - ] - ] - ] - }, - "id": 210675, - "properties": { - "name": "05162682", - "address": "avenue Victoria (MTL+WMT) 5018", - "function": "1000", - "height": 10, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62306338697218, - 45.48373743870526 - ], - [ - -73.62306508618167, - 45.483737038242694 - ], - [ - -73.6231720868002, - 45.483709038476505 - ], - [ - -73.62317198786535, - 45.48370883881735 - ], - [ - -73.62321548692195, - 45.48369323896052 - ], - [ - -73.62318888769288, - 45.4836566385072 - ], - [ - -73.62318868639203, - 45.48365583876094 - ], - [ - -73.62298368715136, - 45.48369303794289 - ], - [ - -73.6229976868874, - 45.48373123844039 - ], - [ - -73.62299858702228, - 45.48373103860511 - ], - [ - -73.6230610859586, - 45.483725238369 - ], - [ - -73.62306338697218, - 45.48373743870526 - ] - ] - ] - }, - "id": 210915, - "properties": { - "name": "03074785", - "address": "avenue Ponsard (MTL) 5060", - "function": "1000", - "height": 17, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62536258722199, - 45.489677439176276 - ], - [ - -73.62552318736503, - 45.489749039869515 - ], - [ - -73.62557327350886, - 45.48969350485597 - ], - [ - -73.62541227760329, - 45.48962223850962 - ], - [ - -73.62536258722199, - 45.489677439176276 - ] - ] - ] - }, - "id": 210926, - "properties": { - "name": "03074877", - "address": "avenue Dornal (MTL) 4723", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63014548966441, - 45.4917401401515 - ], - [ - -73.63028799018659, - 45.49179993887592 - ], - [ - -73.63036449008884, - 45.49170984009868 - ], - [ - -73.63022819031406, - 45.49165253956814 - ], - [ - -73.63021088997044, - 45.49167293988037 - ], - [ - -73.63017169001287, - 45.491719939371336 - ], - [ - -73.63016508953925, - 45.4917171393765 - ], - [ - -73.63014548966441, - 45.4917401401515 - ] - ] - ] - }, - "id": 210960, - "properties": { - "name": "03073166", - "address": "avenue Saint-Kevin (MTL) 4770", - "function": "1000", - "height": 12, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6294144903111, - 45.49101883961667 - ], - [ - -73.62951329012887, - 45.49089913912037 - ], - [ - -73.6294371545285, - 45.49086801069091 - ], - [ - -73.6293321797501, - 45.49098523364127 - ], - [ - -73.6294144903111, - 45.49101883961667 - ] - ] - ] - }, - "id": 210963, - "properties": { - "name": "03007392", - "address": "avenue Victoria (MTL+WMT) 5421", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62816357479576, - 45.48979320576307 - ], - [ - -73.62803922523658, - 45.489932657466156 - ], - [ - -73.62813478979163, - 45.48997453888719 - ], - [ - -73.62825868853736, - 45.48983493911284 - ], - [ - -73.62816357479576, - 45.48979320576307 - ] - ] - ] - }, - "id": 211192, - "properties": { - "name": "03007284", - "address": "avenue Victoria (MTL+WMT) 5290", - "function": "1000", - "height": 12, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62275878688696, - 45.487570339106476 - ], - [ - -73.62285072972719, - 45.48761056414301 - ], - [ - -73.62302648046801, - 45.48741706294279 - ], - [ - -73.62293138747647, - 45.48737533869431 - ], - [ - -73.62275878688696, - 45.487570339106476 - ] - ] - ] - }, - "id": 211196, - "properties": { - "name": "03007239", - "address": "avenue Victoria (MTL+WMT) 4984", - "function": "1000", - "height": 11, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62529418755433, - 45.482400138240266 - ], - [ - -73.62544538826674, - 45.48246383799335 - ], - [ - -73.62549908692698, - 45.48240083834648 - ], - [ - -73.62534788737855, - 45.482337037879695 - ], - [ - -73.62529418755433, - 45.482400138240266 - ] - ] - ] - }, - "id": 211432, - "properties": { - "name": "03035178", - "address": "rue Dalou (MTL) 5270", - "function": "1000", - "height": 11, - "year_of_construction": 1915 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62387058759607, - 45.48790943887698 - ], - [ - -73.62381728555694, - 45.487965154816706 - ], - [ - -73.62398721039672, - 45.488041509565655 - ], - [ - -73.62403788809515, - 45.487988539126526 - ], - [ - -73.62387058759607, - 45.48790943887698 - ] - ] - ] - }, - "id": 211491, - "properties": { - "name": "05196136", - "address": "avenue Victoria (MTL+WMT) 5044", - "function": "1000", - "height": 11, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62388848772726, - 45.487887839366806 - ], - [ - -73.6240607876689, - 45.48796573826592 - ], - [ - -73.62410928883766, - 45.48791263968067 - ], - [ - -73.62393668013684, - 45.48783507773127 - ], - [ - -73.62388848772726, - 45.487887839366806 - ] - ] - ] - }, - "id": 211492, - "properties": { - "name": "05196137", - "address": "avenue Victoria (MTL+WMT) 5048", - "function": "1000", - "height": 10, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62765508839871, - 45.48918093997112 - ], - [ - -73.62768408906241, - 45.4891500392606 - ], - [ - -73.62769188928796, - 45.48915403935254 - ], - [ - -73.62772178906434, - 45.48912133883622 - ], - [ - -73.62772528933124, - 45.489117938905764 - ], - [ - -73.627711288893, - 45.48911143877906 - ], - [ - -73.6277372892234, - 45.48908383844279 - ], - [ - -73.6275897887413, - 45.489015139022406 - ], - [ - -73.62750118835399, - 45.489109339288774 - ], - [ - -73.62765508839871, - 45.48918093997112 - ] - ] - ] - }, - "id": 211515, - "properties": { - "name": "03074633", - "address": "rue Jean-Brillant (MTL) 4832", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62586748712752, - 45.48464133824484 - ], - [ - -73.62593578786093, - 45.48467273778106 - ], - [ - -73.62592828781763, - 45.4846808383658 - ], - [ - -73.62592858782864, - 45.48468113858367 - ], - [ - -73.625975388131, - 45.484702639193834 - ], - [ - -73.62605438865195, - 45.48461763806111 - ], - [ - -73.62593878708189, - 45.484564537875464 - ], - [ - -73.62586748712752, - 45.48464133824484 - ] - ] - ] - }, - "id": 211809, - "properties": { - "name": "03034976", - "address": "chemin Circle (MTL) 5015", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6306034850005, - 45.49092518923724 - ], - [ - -73.6305016763999, - 45.49103906581666 - ], - [ - -73.63057399044308, - 45.49107203988716 - ], - [ - -73.63067799023798, - 45.49095913976869 - ], - [ - -73.6306034850005, - 45.49092518923724 - ] - ] - ] - }, - "id": 211878, - "properties": { - "name": "03007303", - "address": "avenue Victoria (MTL+WMT) 5464", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62324713829013, - 45.482215291700236 - ], - [ - -73.62320014215541, - 45.48226567711196 - ], - [ - -73.62335253101361, - 45.48233462625993 - ], - [ - -73.6233987425688, - 45.48228466186201 - ], - [ - -73.62324713829013, - 45.482215291700236 - ] - ] - ] - }, - "id": 212007, - "properties": { - "name": "03035070", - "address": "avenue Ponsard (MTL) 5224", - "function": "1000", - "height": 8, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62565668896869, - 45.48690833896247 - ], - [ - -73.62595986122928, - 45.48703560678018 - ], - [ - -73.62596448400814, - 45.48703591752836 - ], - [ - -73.62596841312907, - 45.48703610216303 - ], - [ - -73.62597173695127, - 45.48703620018009 - ], - [ - -73.62605728775591, - 45.48693553903932 - ], - [ - -73.62593598837552, - 45.48688233897828 - ], - [ - -73.62598558825115, - 45.48682633907175 - ], - [ - -73.62611388835272, - 45.486882639418894 - ], - [ - -73.62621318766065, - 45.486770739202086 - ], - [ - -73.62590488739286, - 45.486635338597765 - ], - [ - -73.62580488738767, - 45.486748139166785 - ], - [ - -73.62594128792668, - 45.486808038268535 - ], - [ - -73.6259256878485, - 45.48682563935381 - ], - [ - -73.62590768856906, - 45.486817738752514 - ], - [ - -73.62590738732533, - 45.48681803873322 - ], - [ - -73.62589068871706, - 45.48683753879927 - ], - [ - -73.62590278807862, - 45.48684263928736 - ], - [ - -73.62588908715841, - 45.486858838114216 - ], - [ - -73.62574868844506, - 45.48679993948145 - ], - [ - -73.62565668896869, - 45.48690833896247 - ] - ] - ] - }, - "id": 212024, - "properties": { - "name": "03075058", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4906", - "function": "1000", - "height": 16, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62388358732035, - 45.48332653804189 - ], - [ - -73.62401398730618, - 45.483384237765534 - ], - [ - -73.62411948669822, - 45.48326613802618 - ], - [ - -73.62398908687767, - 45.48320843842159 - ], - [ - -73.62388358732035, - 45.48332653804189 - ] - ] - ] - }, - "id": 212204, - "properties": { - "name": "03034927", - "address": "chemin Circle (MTL) 4912", - "function": "1000", - "height": 14, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62771668901253, - 45.49028433973375 - ], - [ - -73.62770098881309, - 45.49030253955972 - ], - [ - -73.62780398841828, - 45.49034453892085 - ], - [ - -73.62780708893551, - 45.490345939210336 - ], - [ - -73.62792718848874, - 45.490210939565166 - ], - [ - -73.62782078899227, - 45.49016463925898 - ], - [ - -73.62771668901253, - 45.49028433973375 - ] - ] - ] - }, - "id": 212215, - "properties": { - "name": "03007404", - "address": "avenue Victoria (MTL+WMT) 5285", - "function": "1000", - "height": 12, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62366908111345, - 45.48869603763995 - ], - [ - -73.6235529467347, - 45.48882334027541 - ], - [ - -73.62365288829953, - 45.48886953907791 - ], - [ - -73.62377098701864, - 45.48874313855812 - ], - [ - -73.62366908111345, - 45.48869603763995 - ] - ] - ] - }, - "id": 212230, - "properties": { - "name": "03075173", - "address": "avenue Grosvenor (MTL) 5050", - "function": "1000", - "height": 15, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62404238736808, - 45.48814703934082 - ], - [ - -73.6242152872183, - 45.48822443973732 - ], - [ - -73.62426708911367, - 45.488167271995785 - ], - [ - -73.62409437697242, - 45.48808966450856 - ], - [ - -73.62404238736808, - 45.48814703934082 - ] - ] - ] - }, - "id": 212265, - "properties": { - "name": "05098793", - "address": "avenue Victoria (MTL+WMT) 5076", - "function": "1000", - "height": 10, - "year_of_construction": 2003 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62338878663803, - 45.48660503917996 - ], - [ - -73.62337468774604, - 45.48660683880306 - ], - [ - -73.62337498647447, - 45.48660713902891 - ], - [ - -73.62338618665473, - 45.486649938895376 - ], - [ - -73.62336668686217, - 45.48665243903227 - ], - [ - -73.62337338760206, - 45.48667463818998 - ], - [ - -73.62335688728865, - 45.486676938919125 - ], - [ - -73.62337088679718, - 45.48672043944286 - ], - [ - -73.6236220878344, - 45.48667033889573 - ], - [ - -73.62362848675085, - 45.48666913877479 - ], - [ - -73.62358458728994, - 45.48656463859301 - ], - [ - -73.6234934876026, - 45.48658363838081 - ], - [ - -73.62348921618235, - 45.48657314809684 - ], - [ - -73.62338569761337, - 45.48659352359041 - ], - [ - -73.62338878663803, - 45.48660503917996 - ] - ] - ] - }, - "id": 212303, - "properties": { - "name": "03074823", - "address": "avenue Glencairn (MTL) 4921", - "function": "1000", - "height": 12, - "year_of_construction": 1934 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63104778946644, - 45.49001423858664 - ], - [ - -73.6312661904345, - 45.49011173890838 - ], - [ - -73.63139169106158, - 45.48997263871129 - ], - [ - -73.63117329041565, - 45.48987513862674 - ], - [ - -73.63104778946644, - 45.49001423858664 - ] - ] - ] - }, - "id": 212341, - "properties": { - "name": "03073248", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4875", - "function": "1000", - "height": 17, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62345358679457, - 45.48439973819399 - ], - [ - -73.62332618734284, - 45.48442643837205 - ], - [ - -73.62333498676249, - 45.484456138192044 - ], - [ - -73.62328568668656, - 45.48446333799072 - ], - [ - -73.62330040969756, - 45.48450041645699 - ], - [ - -73.6234843742376, - 45.48446420498835 - ], - [ - -73.62345458665705, - 45.48440243845155 - ], - [ - -73.62345358679457, - 45.48439973819399 - ] - ] - ] - }, - "id": 212344, - "properties": { - "name": "03074770", - "address": "avenue Ponsard (MTL) 5028", - "function": "1000", - "height": 17, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62292468781148, - 45.48512913894419 - ], - [ - -73.6228245877237, - 45.48515383851514 - ], - [ - -73.6228666871259, - 45.485238238390764 - ], - [ - -73.62293598669639, - 45.48522113874162 - ], - [ - -73.62296048623632, - 45.485214938527875 - ], - [ - -73.62300548739566, - 45.485201838710225 - ], - [ - -73.62296448720276, - 45.48511943895954 - ], - [ - -73.62292468781148, - 45.48512913894419 - ] - ] - ] - }, - "id": 212408, - "properties": { - "name": "03074961", - "address": "avenue Meridian (MTL) 4773", - "function": "1000", - "height": 9, - "year_of_construction": 1935 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6256994879113, - 45.483173137944576 - ], - [ - -73.62567838786099, - 45.4832176387676 - ], - [ - -73.62582788720034, - 45.483296238633066 - ], - [ - -73.62582988726606, - 45.483294237871156 - ], - [ - -73.62586048803547, - 45.4832601386749 - ], - [ - -73.62584888705787, - 45.48325503852987 - ], - [ - -73.62586718819118, - 45.48323413833055 - ], - [ - -73.6258637877219, - 45.483232838200145 - ], - [ - -73.62570018691518, - 45.48317223822885 - ], - [ - -73.6256994879113, - 45.483173137944576 - ] - ] - ] - }, - "id": 212480, - "properties": { - "name": "03035252", - "address": "rue Snowdon (MTL) 5216", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62871348854534, - 45.491089839384166 - ], - [ - -73.62887948955489, - 45.49116423947144 - ], - [ - -73.62894338741796, - 45.49109367259431 - ], - [ - -73.6287768672557, - 45.491019901276154 - ], - [ - -73.62871348854534, - 45.491089839384166 - ] - ] - ] - }, - "id": 212481, - "properties": { - "name": "03108535", - "address": "avenue Lacombe (MTL) 4745", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62567748744563, - 45.48477563891778 - ], - [ - -73.62560518760118, - 45.48478903886426 - ], - [ - -73.625609587501, - 45.48480023890967 - ], - [ - -73.62548788859779, - 45.484823538309016 - ], - [ - -73.62551079829387, - 45.484882751806495 - ], - [ - -73.62569400808619, - 45.484844319490364 - ], - [ - -73.62569308874306, - 45.48484163806078 - ], - [ - -73.62565268771905, - 45.48484913863489 - ], - [ - -73.6256458883469, - 45.48483063807969 - ], - [ - -73.62569468853906, - 45.48482183878642 - ], - [ - -73.62567748744563, - 45.48477563891778 - ] - ] - ] - }, - "id": 212509, - "properties": { - "name": "03074675", - "address": "avenue Iona (MTL) 4995", - "function": "1000", - "height": 10, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62538218782623, - 45.486738238604545 - ], - [ - -73.6253723879072, - 45.48675123863512 - ], - [ - -73.62548068791632, - 45.486790739027015 - ], - [ - -73.62551288731635, - 45.48674683886805 - ], - [ - -73.6254897876069, - 45.48673893930583 - ], - [ - -73.62552368758435, - 45.48669523884061 - ], - [ - -73.62543978754012, - 45.48666323890649 - ], - [ - -73.62538218782623, - 45.486738238604545 - ] - ] - ] - }, - "id": 212574, - "properties": { - "name": "03074522", - "address": "chemin Circle (MTL) 4460", - "function": "1000", - "height": 8, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62880018867656, - 45.49170783982853 - ], - [ - -73.62879397215156, - 45.4917146082734 - ], - [ - -73.62897486251194, - 45.49179474503383 - ], - [ - -73.62903228957664, - 45.49173193938527 - ], - [ - -73.6288526899272, - 45.49165053967619 - ], - [ - -73.62880018867656, - 45.49170783982853 - ] - ] - ] - }, - "id": 212666, - "properties": { - "name": "03073715", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4746", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62749068892803, - 45.49020553899485 - ], - [ - -73.6275891899528, - 45.49025093958716 - ], - [ - -73.62771698978126, - 45.49011513969565 - ], - [ - -73.62767258878114, - 45.49009443979958 - ], - [ - -73.62761758942376, - 45.490069139120585 - ], - [ - -73.62749068892803, - 45.49020553899485 - ] - ] - ] - }, - "id": 212789, - "properties": { - "name": "03007406", - "address": "avenue Victoria (MTL+WMT) 5275", - "function": "1000", - "height": 12, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62565088837452, - 45.48935993861684 - ], - [ - -73.62577628877986, - 45.48941463898349 - ], - [ - -73.62584174738056, - 45.48934031704641 - ], - [ - -73.62571737945952, - 45.48928444491572 - ], - [ - -73.62565088837452, - 45.48935993861684 - ] - ] - ] - }, - "id": 213205, - "properties": { - "name": "03074868", - "address": "avenue Dornal (MTL) 4747", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62611868883542, - 45.48950553906599 - ], - [ - -73.62622288821866, - 45.48955203956035 - ], - [ - -73.62631568826747, - 45.48944893977758 - ], - [ - -73.62621148794204, - 45.48940253925094 - ], - [ - -73.62611868883542, - 45.48950553906599 - ] - ] - ] - }, - "id": 213280, - "properties": { - "name": "03074751", - "address": "rue Fulton (MTL) 4750", - "function": "1000", - "height": 11, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62403106968608, - 45.48874704702957 - ], - [ - -73.62392138759714, - 45.48887021724083 - ], - [ - -73.62421767717927, - 45.48900443671339 - ], - [ - -73.62432779813206, - 45.488881465508534 - ], - [ - -73.62403106968608, - 45.48874704702957 - ] - ] - ] - }, - "id": 213322, - "properties": { - "name": "03075042", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4712", - "function": "1000", - "height": 16, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62838948938001, - 45.490735638933316 - ], - [ - -73.62833276877826, - 45.4907984227796 - ], - [ - -73.62850638383237, - 45.49087530742938 - ], - [ - -73.62856258862342, - 45.49081303968956 - ], - [ - -73.62838948938001, - 45.490735638933316 - ] - ] - ] - }, - "id": 213478, - "properties": { - "name": "03074149", - "address": "avenue Lacombe (MTL) 4746", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62782908859839, - 45.491371139661084 - ], - [ - -73.62800038966171, - 45.4914477397113 - ], - [ - -73.62805683293334, - 45.49138520200587 - ], - [ - -73.62788508415488, - 45.49130914874669 - ], - [ - -73.62782908859839, - 45.491371139661084 - ] - ] - ] - }, - "id": 213666, - "properties": { - "name": "03074135", - "address": "avenue Lacombe (MTL) 4682", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62405148752903, - 45.4863282388024 - ], - [ - -73.62411398722084, - 45.486407738879805 - ], - [ - -73.62426798688084, - 45.48634783877933 - ], - [ - -73.62427458757372, - 45.48634533902521 - ], - [ - -73.6242471876369, - 45.486310838147006 - ], - [ - -73.62421358728253, - 45.48632473951492 - ], - [ - -73.62418808775453, - 45.48629343910726 - ], - [ - -73.62417708719813, - 45.48627943866677 - ], - [ - -73.62405148752903, - 45.4863282388024 - ] - ] - ] - }, - "id": 213698, - "properties": { - "name": "03074740", - "address": "avenue Ponsard (MTL) 4940", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62623408908547, - 45.49196434018537 - ], - [ - -73.62627898840644, - 45.491913339535735 - ], - [ - -73.62636798883483, - 45.49195223949203 - ], - [ - -73.62640168861712, - 45.49191403978019 - ], - [ - -73.62641348867491, - 45.49191923952386 - ], - [ - -73.62643078886464, - 45.4918998395156 - ], - [ - -73.62643088798738, - 45.491899539757505 - ], - [ - -73.62641818877577, - 45.49188873947575 - ], - [ - -73.62645478810708, - 45.49186734024404 - ], - [ - -73.62645498791692, - 45.49186743990564 - ], - [ - -73.6265229884989, - 45.49177273960588 - ], - [ - -73.6265384892366, - 45.49177823938527 - ], - [ - -73.62654078838091, - 45.4917748390236 - ], - [ - -73.6265674880868, - 45.491734239030855 - ], - [ - -73.62657138827456, - 45.49173563936732 - ], - [ - -73.62659028827126, - 45.49171254009844 - ], - [ - -73.62664488899956, - 45.49164624018406 - ], - [ - -73.62644088862109, - 45.49156313962948 - ], - [ - -73.62642268876718, - 45.49158524017121 - ], - [ - -73.6264281880879, - 45.491587740153044 - ], - [ - -73.62637278845224, - 45.491646439857504 - ], - [ - -73.62637248868808, - 45.49164683972031 - ], - [ - -73.62638608799568, - 45.491654539945486 - ], - [ - -73.62631848796163, - 45.491713838920425 - ], - [ - -73.62631318860751, - 45.49171094008087 - ], - [ - -73.62631158826404, - 45.491712739740855 - ], - [ - -73.6262464880765, - 45.49178293933007 - ], - [ - -73.6261746879607, - 45.491749639812 - ], - [ - -73.6261736886464, - 45.491750739626575 - ], - [ - -73.62613618877864, - 45.49172923965257 - ], - [ - -73.6261238890406, - 45.49173974002763 - ], - [ - -73.62601168808705, - 45.491674839258785 - ], - [ - -73.62600518916639, - 45.4916813397096 - ], - [ - -73.6259462879455, - 45.49165194014359 - ], - [ - -73.62592378802796, - 45.49164083926581 - ], - [ - -73.62579838871424, - 45.49176763962014 - ], - [ - -73.62589048808744, - 45.49181263928529 - ], - [ - -73.62588268854533, - 45.49182053952151 - ], - [ - -73.62588658816804, - 45.491822839726964 - ], - [ - -73.62591408880141, - 45.49184174035491 - ], - [ - -73.62592708854807, - 45.49183243962414 - ], - [ - -73.62597318853923, - 45.49186483990288 - ], - [ - -73.62598138768436, - 45.49185483988147 - ], - [ - -73.62607768847667, - 45.49189333968012 - ], - [ - -73.62607108819536, - 45.49190143927085 - ], - [ - -73.62623408908547, - 45.49196434018537 - ] - ] - ] - }, - "id": 213711, - "properties": { - "name": "03110457", - "address": "avenue Isabella (CSL+MTL) 4650", - "function": "1000", - "height": 20, - "year_of_construction": 1991 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62544228839081, - 45.4857836386156 - ], - [ - -73.62526558687406, - 45.485790338415995 - ], - [ - -73.62526788792003, - 45.485819038278564 - ], - [ - -73.62532318825498, - 45.48581683868585 - ], - [ - -73.62532509279201, - 45.48583978446743 - ], - [ - -73.62544615522361, - 45.485835336817324 - ], - [ - -73.62544228839081, - 45.4857836386156 - ] - ] - ] - }, - "id": 213779, - "properties": { - "name": "03074662", - "address": "chemin Circle (MTL) 4415", - "function": "1000", - "height": 8, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62306138698422, - 45.48720473824286 - ], - [ - -73.62320798711892, - 45.48727473938126 - ], - [ - -73.62329708696876, - 45.48718233886742 - ], - [ - -73.62315048696586, - 45.487112338741944 - ], - [ - -73.62306138698422, - 45.48720473824286 - ] - ] - ] - }, - "id": 213943, - "properties": { - "name": "03074548", - "address": "chemin Circle (MTL) 4540", - "function": "1000", - "height": 9, - "year_of_construction": 1955 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62458658675797, - 45.4836305378945 - ], - [ - -73.62466918671865, - 45.48366693833975 - ], - [ - -73.62472988834733, - 45.4835986385286 - ], - [ - -73.62464728738863, - 45.483562338010856 - ], - [ - -73.62458658675797, - 45.4836305378945 - ] - ] - ] - }, - "id": 213998, - "properties": { - "name": "03034920", - "address": "chemin Circle (MTL) 4948", - "function": "1000", - "height": 17, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62372488679084, - 45.48235033889954 - ], - [ - -73.6239095869808, - 45.48244003785446 - ], - [ - -73.62396024357054, - 45.48238844328561 - ], - [ - -73.62377190323917, - 45.482302401732966 - ], - [ - -73.62372488679084, - 45.48235033889954 - ] - ] - ] - }, - "id": 214180, - "properties": { - "name": "03035102", - "address": "avenue Ponsard (MTL) 5237", - "function": "1000", - "height": 17, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62729498864732, - 45.49010913906616 - ], - [ - -73.62729328859237, - 45.49011093975137 - ], - [ - -73.62737718786323, - 45.49014893937382 - ], - [ - -73.62738388870648, - 45.490152138949874 - ], - [ - -73.62750558933567, - 45.490020539373056 - ], - [ - -73.6274488889564, - 45.489994840080094 - ], - [ - -73.62740658877308, - 45.48997693985446 - ], - [ - -73.62729498864732, - 45.49010913906616 - ] - ] - ] - }, - "id": 214223, - "properties": { - "name": "03007408", - "address": "avenue Victoria (MTL+WMT) 5251", - "function": "1000", - "height": 12, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62752948907448, - 45.49174443961261 - ], - [ - -73.62767048927267, - 45.49180903945105 - ], - [ - -73.6277409890286, - 45.49173303981016 - ], - [ - -73.62759998999364, - 45.49166834017381 - ], - [ - -73.62752948907448, - 45.49174443961261 - ] - ] - ] - }, - "id": 214288, - "properties": { - "name": "03074128", - "address": "avenue Lacombe (MTL) 4650", - "function": "1000", - "height": 9, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62326938720497, - 45.48517563865834 - ], - [ - -73.62331808674394, - 45.48529863823832 - ], - [ - -73.62346948701666, - 45.485269038024946 - ], - [ - -73.62347488711785, - 45.485268037857914 - ], - [ - -73.62342628682748, - 45.48514493835393 - ], - [ - -73.62326938720497, - 45.48517563865834 - ] - ] - ] - }, - "id": 214296, - "properties": { - "name": "03074957", - "address": "avenue Meridian (MTL) 4785", - "function": "1000", - "height": 8, - "year_of_construction": 1976 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6260418710564, - 45.48893342386117 - ], - [ - -73.62597488903836, - 45.489007539734104 - ], - [ - -73.62611048801259, - 45.489068038791274 - ], - [ - -73.62617712366458, - 45.488994120288375 - ], - [ - -73.6260418710564, - 45.48893342386117 - ] - ] - ] - }, - "id": 214400, - "properties": { - "name": "05235628", - "address": "avenue Dornal (MTL) 4801", - "function": "1000", - "height": 10, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62524658717015, - 45.48711743839716 - ], - [ - -73.62529518761603, - 45.48713533881996 - ], - [ - -73.62529838721929, - 45.487131338195546 - ], - [ - -73.62538188774022, - 45.48703083908402 - ], - [ - -73.62525161243185, - 45.48697725671637 - ], - [ - -73.62514895272247, - 45.487096672587015 - ], - [ - -73.62519478752878, - 45.487115838566176 - ], - [ - -73.62520498747702, - 45.48710203815036 - ], - [ - -73.62524658717015, - 45.48711743839716 - ] - ] - ] - }, - "id": 214431, - "properties": { - "name": "03074726", - "address": "avenue Ponsard (MTL) 4904", - "function": "1000", - "height": 10, - "year_of_construction": 1955 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63192278936549, - 45.4880771392509 - ], - [ - -73.63220009012748, - 45.48820123850375 - ], - [ - -73.63231849042452, - 45.488070338552845 - ], - [ - -73.6320412898302, - 45.48794623856896 - ], - [ - -73.63192278936549, - 45.4880771392509 - ] - ] - ] - }, - "id": 214453, - "properties": { - "name": "03073745", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4980", - "function": "1000", - "height": 12, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6238220861974, - 45.482251237864 - ], - [ - -73.62377190323917, - 45.482302401732966 - ], - [ - -73.62396024357054, - 45.48238844328561 - ], - [ - -73.62400678643824, - 45.482341037446055 - ], - [ - -73.6238220861974, - 45.482251237864 - ] - ] - ] - }, - "id": 214532, - "properties": { - "name": "03035103", - "address": "avenue Ponsard (MTL) 5241", - "function": "1000", - "height": 17, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62879498904022, - 45.4897347389967 - ], - [ - -73.62875058887946, - 45.48978463958149 - ], - [ - -73.62876388961965, - 45.48978993907531 - ], - [ - -73.62874123133149, - 45.4898176213605 - ], - [ - -73.62887793676254, - 45.48987813027453 - ], - [ - -73.62894628867696, - 45.48980173905474 - ], - [ - -73.62879498904022, - 45.4897347389967 - ] - ] - ] - }, - "id": 214629, - "properties": { - "name": "05161254", - "address": "avenue Isabella (CSL+MTL) 4821", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62533028829563, - 45.4897153392108 - ], - [ - -73.62528016547255, - 45.48977118100504 - ], - [ - -73.6254422325254, - 45.48984132515217 - ], - [ - -73.62549118765031, - 45.48978683883754 - ], - [ - -73.62533028829563, - 45.4897153392108 - ] - ] - ] - }, - "id": 214683, - "properties": { - "name": "05009898", - "address": "avenue Dornal (MTL) 4715", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62633598796559, - 45.48367643876605 - ], - [ - -73.62637678803014, - 45.483695637746024 - ], - [ - -73.62637424580035, - 45.483698308602825 - ], - [ - -73.62650488557483, - 45.48375817474333 - ], - [ - -73.6265581881871, - 45.483702237944954 - ], - [ - -73.62638788802283, - 45.48362193885241 - ], - [ - -73.62633598796559, - 45.48367643876605 - ] - ] - ] - }, - "id": 214797, - "properties": { - "name": "03035311", - "address": "rue Byron (MTL) 5220", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62343242937759, - 45.487634177988475 - ], - [ - -73.62327765573153, - 45.48780458422703 - ], - [ - -73.62336908769397, - 45.48784543928799 - ], - [ - -73.62351378758984, - 45.487684838639794 - ], - [ - -73.62343728747501, - 45.48765083878006 - ], - [ - -73.6234466870732, - 45.48764053888718 - ], - [ - -73.62343242937759, - 45.487634177988475 - ] - ] - ] - }, - "id": 215185, - "properties": { - "name": "05003115", - "address": "avenue Victoria (MTL+WMT) 5012", - "function": "1000", - "height": 16, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62411948741845, - 45.482132838133296 - ], - [ - -73.62417178713477, - 45.48208233769548 - ], - [ - -73.62420018655514, - 45.48209703820747 - ], - [ - -73.62422392787138, - 45.48207362357972 - ], - [ - -73.62405883371201, - 45.48199820239697 - ], - [ - -73.62401178748922, - 45.482042837279764 - ], - [ - -73.6239883879742, - 45.48206523826529 - ], - [ - -73.62411948741845, - 45.482132838133296 - ] - ] - ] - }, - "id": 215317, - "properties": { - "name": "03035109", - "address": "avenue Ponsard (MTL) 5261", - "function": "1000", - "height": 15, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62460238820432, - 45.489592239439695 - ], - [ - -73.62466828790298, - 45.489515839053496 - ], - [ - -73.62463548777181, - 45.48950183905915 - ], - [ - -73.62466508788313, - 45.48946753884706 - ], - [ - -73.62469778843315, - 45.48948163882454 - ], - [ - -73.62469788800169, - 45.48948153883302 - ], - [ - -73.62477258863004, - 45.48939843932663 - ], - [ - -73.6247725884095, - 45.48939833944404 - ], - [ - -73.62474018879566, - 45.489382039037196 - ], - [ - -73.62477198820368, - 45.489350739179 - ], - [ - -73.62480258705939, - 45.48936613899946 - ], - [ - -73.62480268768633, - 45.48936593912385 - ], - [ - -73.62486818801071, - 45.4892908393322 - ], - [ - -73.6245546873583, - 45.48915563879412 - ], - [ - -73.62447788682906, - 45.4892437390911 - ], - [ - -73.62467228751345, - 45.48932753934496 - ], - [ - -73.62465768736531, - 45.4893442393125 - ], - [ - -73.62456128798209, - 45.48945593879773 - ], - [ - -73.62436298837456, - 45.48937133993971 - ], - [ - -73.62428808806324, - 45.48945813956002 - ], - [ - -73.62460238820432, - 45.489592239439695 - ] - ] - ] - }, - "id": 215798, - "properties": { - "name": "03074983", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4715", - "function": "1000", - "height": 19, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62443978789422, - 45.48792253835084 - ], - [ - -73.62443988768239, - 45.48792253914197 - ], - [ - -73.62448238764271, - 45.48788473981173 - ], - [ - -73.62448528785104, - 45.487881839148216 - ], - [ - -73.62450708704546, - 45.48785673939152 - ], - [ - -73.62433290852242, - 45.48778220593202 - ], - [ - -73.62425580055066, - 45.4878671038851 - ], - [ - -73.62430748751098, - 45.48789103933228 - ], - [ - -73.62432528802213, - 45.487871338536266 - ], - [ - -73.62443978789422, - 45.48792253835084 - ] - ] - ] - }, - "id": 215812, - "properties": { - "name": "03007262", - "address": "avenue Victoria (MTL+WMT) 5060", - "function": "1000", - "height": 22, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62948868978415, - 45.49175483958687 - ], - [ - -73.62965558958162, - 45.491829340101155 - ], - [ - -73.62971715652043, - 45.491761160034415 - ], - [ - -73.62954986111818, - 45.491687046991224 - ], - [ - -73.62948868978415, - 45.49175483958687 - ] - ] - ] - }, - "id": 215997, - "properties": { - "name": "03073261", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4761", - "function": "1000", - "height": 11, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62370688650883, - 45.48239203838449 - ], - [ - -73.62364327635306, - 45.482461641992835 - ], - [ - -73.6237353703312, - 45.482503714474234 - ], - [ - -73.62375008676072, - 45.4824876380721 - ], - [ - -73.62380058712053, - 45.48251063831645 - ], - [ - -73.62384988671752, - 45.48245673806159 - ], - [ - -73.62370688650883, - 45.48239203838449 - ] - ] - ] - }, - "id": 216120, - "properties": { - "name": "03035100", - "address": "avenue Ponsard (MTL) 5229", - "function": "1000", - "height": 12, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63262599089916, - 45.48874033896541 - ], - [ - -73.63289709028116, - 45.488863839015835 - ], - [ - -73.63302169114624, - 45.488728538991325 - ], - [ - -73.63290619069276, - 45.488675839009346 - ], - [ - -73.63290569128338, - 45.488675638924875 - ], - [ - -73.6328968901585, - 45.488683539010104 - ], - [ - -73.6328207907285, - 45.48864173881441 - ], - [ - -73.63274749135928, - 45.48860843885374 - ], - [ - -73.63262599089916, - 45.48874033896541 - ] - ] - ] - }, - "id": 216139, - "properties": { - "name": "03073182", - "address": "avenue Saint-Kevin (MTL) 4970", - "function": "1000", - "height": 14, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62505908786453, - 45.48383213783313 - ], - [ - -73.62518878733982, - 45.4838930386305 - ], - [ - -73.62526468793428, - 45.483813038275485 - ], - [ - -73.62513488750311, - 45.483752137674045 - ], - [ - -73.62505908786453, - 45.48383213783313 - ] - ] - ] - }, - "id": 216150, - "properties": { - "name": "03034914", - "address": "chemin Circle (MTL) 4980", - "function": "1000", - "height": 7, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62408138764525, - 45.48713563885869 - ], - [ - -73.62408608773885, - 45.48713503895501 - ], - [ - -73.62422518811945, - 45.4871193384298 - ], - [ - -73.62423278749282, - 45.48711833853502 - ], - [ - -73.62418628743116, - 45.48693483856294 - ], - [ - -73.62411198767045, - 45.486944239019174 - ], - [ - -73.62412508814401, - 45.48699573915419 - ], - [ - -73.62395045170166, - 45.48701778874265 - ], - [ - -73.62394897066305, - 45.48702321282024 - ], - [ - -73.62397548709032, - 45.48712783970295 - ], - [ - -73.62397548650371, - 45.48712873864948 - ], - [ - -73.62408068722442, - 45.48712543896833 - ], - [ - -73.62408138764525, - 45.48713563885869 - ] - ] - ] - }, - "id": 216157, - "properties": { - "name": "03074653", - "address": "chemin Circle (MTL) 4477", - "function": "1000", - "height": 8, - "year_of_construction": 1953 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62594748792543, - 45.48573653816438 - ], - [ - -73.62603768751754, - 45.4857646389463 - ], - [ - -73.62603958820965, - 45.48576163856236 - ], - [ - -73.62607258751518, - 45.48571663864312 - ], - [ - -73.62612488782267, - 45.48573563874467 - ], - [ - -73.62614990608677, - 45.48570169052458 - ], - [ - -73.625998065282, - 45.485656374499456 - ], - [ - -73.62594748792543, - 45.48573653816438 - ] - ] - ] - }, - "id": 216228, - "properties": { - "name": "03074502", - "address": "chemin Circle (MTL) 4410", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62532738771185, - 45.48586743781447 - ], - [ - -73.62528598801482, - 45.48586913894634 - ], - [ - -73.62529018722665, - 45.48591213887729 - ], - [ - -73.62538468804321, - 45.48590753865461 - ], - [ - -73.62545118834258, - 45.48590413890881 - ], - [ - -73.6254512876818, - 45.48590393903392 - ], - [ - -73.62544615522361, - 45.485835336817324 - ], - [ - -73.62532509279201, - 45.48583978446743 - ], - [ - -73.62532738771185, - 45.48586743781447 - ] - ] - ] - }, - "id": 216388, - "properties": { - "name": "03074659", - "address": "chemin Circle (MTL) 4417", - "function": "1000", - "height": 8, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62432288672173, - 45.482223738094774 - ], - [ - -73.62448678756819, - 45.48229993766084 - ], - [ - -73.62454052792963, - 45.482242677638354 - ], - [ - -73.62439519051087, - 45.4821762824585 - ], - [ - -73.62437468724305, - 45.48219813776109 - ], - [ - -73.62435538758636, - 45.48218913781244 - ], - [ - -73.62432288672173, - 45.482223738094774 - ] - ] - ] - }, - "id": 216468, - "properties": { - "name": "03035130", - "address": "rue Saranac (MTL) 5252", - "function": "1000", - "height": 15, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62637424580035, - 45.483698308602825 - ], - [ - -73.6263031870087, - 45.48377293855991 - ], - [ - -73.6264326883529, - 45.48383393894742 - ], - [ - -73.62650488557483, - 45.48375817474333 - ], - [ - -73.62637424580035, - 45.483698308602825 - ] - ] - ] - }, - "id": 216500, - "properties": { - "name": "03035313", - "address": "rue Byron (MTL) 5216", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62596958817659, - 45.49055513914428 - ], - [ - -73.62602798785362, - 45.49048694024773 - ], - [ - -73.62609378782146, - 45.49051473943638 - ], - [ - -73.62609768835905, - 45.49051633955454 - ], - [ - -73.62615928816155, - 45.49044153939261 - ], - [ - -73.62605728840147, - 45.490399939676635 - ], - [ - -73.62608168901657, - 45.49037033933327 - ], - [ - -73.62608168879372, - 45.49037023945068 - ], - [ - -73.62596628875322, - 45.490307239026514 - ], - [ - -73.62596258805608, - 45.49031033857504 - ], - [ - -73.62590088806573, - 45.490273039624014 - ], - [ - -73.62571908822062, - 45.49017213954563 - ], - [ - -73.62571928863588, - 45.49017193955942 - ], - [ - -73.62561638773505, - 45.49013033953977 - ], - [ - -73.62554018809084, - 45.490210039819715 - ], - [ - -73.62548038785725, - 45.490181739705044 - ], - [ - -73.62549008859615, - 45.49017163908344 - ], - [ - -73.62548568742575, - 45.490169839728736 - ], - [ - -73.62528488851679, - 45.49009013948561 - ], - [ - -73.62524318826854, - 45.490114639409825 - ], - [ - -73.62524258797654, - 45.490113939988404 - ], - [ - -73.62518208887472, - 45.490140239494416 - ], - [ - -73.62519378891609, - 45.490153639765104 - ], - [ - -73.62542178822348, - 45.490418239297036 - ], - [ - -73.62544928782346, - 45.490386339281145 - ], - [ - -73.62570148889482, - 45.49049403895081 - ], - [ - -73.62573448777584, - 45.49045553874917 - ], - [ - -73.62596958817659, - 45.49055513914428 - ] - ] - ] - }, - "id": 216536, - "properties": { - "name": "03074986", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4635", - "function": "6813", - "height": 11, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.624810788116, - 45.49057753955274 - ], - [ - -73.62493778839342, - 45.49042683861617 - ], - [ - -73.62480888691124, - 45.490373040109546 - ], - [ - -73.62475118763777, - 45.49044153906734 - ], - [ - -73.62448538828002, - 45.490330639671456 - ], - [ - -73.62454988786938, - 45.490254139206826 - ], - [ - -73.62463128703902, - 45.4902881392598 - ], - [ - -73.62463248761388, - 45.490286638807724 - ], - [ - -73.62465268788566, - 45.49025083891898 - ], - [ - -73.62475798810226, - 45.4902801399004 - ], - [ - -73.62477918876048, - 45.49022753968585 - ], - [ - -73.62478958742189, - 45.490202039309715 - ], - [ - -73.62481588789002, - 45.490139739483176 - ], - [ - -73.62478048819595, - 45.490132340037945 - ], - [ - -73.62481568782196, - 45.49004973987803 - ], - [ - -73.62426098834533, - 45.48982383919233 - ], - [ - -73.62425798721517, - 45.489827439138715 - ], - [ - -73.62419808743131, - 45.48990063920959 - ], - [ - -73.62400108692641, - 45.48982083899208 - ], - [ - -73.62391598725708, - 45.48992493906056 - ], - [ - -73.62388148702605, - 45.489911038778175 - ], - [ - -73.62387898733996, - 45.48991403887376 - ], - [ - -73.62385368809034, - 45.4899473389873 - ], - [ - -73.623831787349, - 45.48997563946985 - ], - [ - -73.62397748789498, - 45.49003133932112 - ], - [ - -73.62393948747895, - 45.49008054000577 - ], - [ - -73.62401728797805, - 45.49011023864231 - ], - [ - -73.62393998793901, - 45.490210139675675 - ], - [ - -73.62420898718484, - 45.490313139821765 - ], - [ - -73.62419458678283, - 45.4903318389661 - ], - [ - -73.62419488765505, - 45.49033193942163 - ], - [ - -73.624810788116, - 45.49057753955274 - ] - ] - ] - }, - "id": 216537, - "properties": { - "name": "03074986", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4635", - "function": "6813", - "height": 11, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6249789868944, - 45.48252233805562 - ], - [ - -73.62498198697509, - 45.48251903773566 - ], - [ - -73.62502428721814, - 45.48247043842894 - ], - [ - -73.62482708785724, - 45.482385537620694 - ], - [ - -73.62482488722088, - 45.482388237765285 - ], - [ - -73.62478668664772, - 45.48242523889828 - ], - [ - -73.62477558795104, - 45.482419238248305 - ], - [ - -73.62475778740568, - 45.48243633767732 - ], - [ - -73.62484798806754, - 45.48247973860332 - ], - [ - -73.6248530873236, - 45.48248223820235 - ], - [ - -73.6248643876021, - 45.4824700383297 - ], - [ - -73.6249789868944, - 45.48252233805562 - ] - ] - ] - }, - "id": 216717, - "properties": { - "name": "03035163", - "address": "rue Saranac (MTL) 5255", - "function": "1000", - "height": 15, - "year_of_construction": 1918 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62568958830973, - 45.4878953390048 - ], - [ - -73.62598918845987, - 45.488027539107605 - ], - [ - -73.6260917875707, - 45.487912539010566 - ], - [ - -73.62599148789332, - 45.48786823870381 - ], - [ - -73.62603448832239, - 45.487820139510504 - ], - [ - -73.6261306875725, - 45.487862639217376 - ], - [ - -73.62613478816887, - 45.487864538762686 - ], - [ - -73.6262365888675, - 45.48775203918506 - ], - [ - -73.62593838882273, - 45.487618538803964 - ], - [ - -73.62583348790164, - 45.48773443935087 - ], - [ - -73.62595168729823, - 45.487787338783235 - ], - [ - -73.62590888823074, - 45.48783453877791 - ], - [ - -73.62579098813313, - 45.487781638972095 - ], - [ - -73.62568958830973, - 45.4878953390048 - ] - ] - ] - }, - "id": 216901, - "properties": { - "name": "03074975", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4865", - "function": "1000", - "height": 18, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62468228811636, - 45.48964063862105 - ], - [ - -73.62483592397358, - 45.489713489669 - ], - [ - -73.62487569915882, - 45.489729734293036 - ], - [ - -73.62488318768352, - 45.48972183986177 - ], - [ - -73.62495158893333, - 45.48965093913315 - ], - [ - -73.62476018815018, - 45.48955963857138 - ], - [ - -73.62468228811636, - 45.48964063862105 - ] - ] - ] - }, - "id": 216942, - "properties": { - "name": "03074885", - "address": "avenue Dornal (MTL) 4704", - "function": "1000", - "height": 17, - "year_of_construction": 1955 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62371258692292, - 45.48799223932965 - ], - [ - -73.62371698808786, - 45.48799413953607 - ], - [ - -73.62386068772824, - 45.487828638976715 - ], - [ - -73.62379218679736, - 45.48779933867373 - ], - [ - -73.62379198744419, - 45.48779943877265 - ], - [ - -73.62378088734714, - 45.487811339562086 - ], - [ - -73.62375878688398, - 45.48780123934573 - ], - [ - -73.62375338827334, - 45.48779893889035 - ], - [ - -73.62360578703374, - 45.48797053909167 - ], - [ - -73.62366188658125, - 45.48799173902419 - ], - [ - -73.62367428719843, - 45.48797663968722 - ], - [ - -73.62371258692292, - 45.48799223932965 - ] - ] - ] - }, - "id": 217017, - "properties": { - "name": "03115075", - "address": "avenue Victoria (MTL+WMT) 5032", - "function": "1000", - "height": 10, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62793878930957, - 45.48988863978927 - ], - [ - -73.62803922523658, - 45.489932657466156 - ], - [ - -73.62816357479576, - 45.48979320576307 - ], - [ - -73.62806268940099, - 45.48974893854135 - ], - [ - -73.62793878930957, - 45.48988863978927 - ] - ] - ] - }, - "id": 217145, - "properties": { - "name": "03007283", - "address": "avenue Victoria (MTL+WMT) 5280", - "function": "1000", - "height": 12, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62775148984767, - 45.491452138741394 - ], - [ - -73.62769472019676, - 45.491514796339416 - ], - [ - -73.62786589188771, - 45.4915917818677 - ], - [ - -73.6279227891735, - 45.49152903945706 - ], - [ - -73.62775148984767, - 45.491452138741394 - ] - ] - ] - }, - "id": 217198, - "properties": { - "name": "03074133", - "address": "avenue Lacombe (MTL) 4674", - "function": "1000", - "height": 8, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62526068754129, - 45.48312543770097 - ], - [ - -73.62543658852736, - 45.48320733855632 - ], - [ - -73.62545428767184, - 45.483188338659716 - ], - [ - -73.62545858860737, - 45.48318383830357 - ], - [ - -73.62548070009755, - 45.48316040001346 - ], - [ - -73.62530441260155, - 45.48307895317193 - ], - [ - -73.62526068754129, - 45.48312543770097 - ] - ] - ] - }, - "id": 217236, - "properties": { - "name": "03035210", - "address": "rue Dalou (MTL) 5219", - "function": "1000", - "height": 9, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62884198905782, - 45.49094803909679 - ], - [ - -73.6287768672557, - 45.491019901276154 - ], - [ - -73.62894338741796, - 45.49109367259431 - ], - [ - -73.62900788874815, - 45.49102243911362 - ], - [ - -73.62884198905782, - 45.49094803909679 - ] - ] - ] - }, - "id": 217438, - "properties": { - "name": "03073806", - "address": "avenue Lacombe (MTL) 4755", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62408648764254, - 45.482508938732465 - ], - [ - -73.62422868722568, - 45.48257453775041 - ], - [ - -73.62428224485302, - 45.48251712687677 - ], - [ - -73.62413962803676, - 45.48245197380229 - ], - [ - -73.62408648764254, - 45.482508938732465 - ] - ] - ] - }, - "id": 217556, - "properties": { - "name": "03035137", - "address": "rue Saranac (MTL) 5230", - "function": "1000", - "height": 14, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62496848679314, - 45.48382333841049 - ], - [ - -73.62498348736969, - 45.48380733802923 - ], - [ - -73.6250081881247, - 45.48381903869602 - ], - [ - -73.62515318767129, - 45.48366763825697 - ], - [ - -73.62501988801334, - 45.48360453853348 - ], - [ - -73.6248597878963, - 45.483771938381594 - ], - [ - -73.62496848679314, - 45.48382333841049 - ] - ] - ] - }, - "id": 217573, - "properties": { - "name": "03034916", - "address": "chemin Circle (MTL) 4970", - "function": "1000", - "height": 18, - "year_of_construction": 1969 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62358468729556, - 45.483162138647494 - ], - [ - -73.62359538683249, - 45.483166938549395 - ], - [ - -73.62363418626713, - 45.48318733837082 - ], - [ - -73.62368638647999, - 45.48321523828608 - ], - [ - -73.62379538649895, - 45.48311423843192 - ], - [ - -73.62374638677778, - 45.48308803850794 - ], - [ - -73.62375608774242, - 45.48307903853285 - ], - [ - -73.62375548713733, - 45.48307873773503 - ], - [ - -73.62368638689472, - 45.48304823849839 - ], - [ - -73.62358468729556, - 45.483162138647494 - ] - ] - ] - }, - "id": 217578, - "properties": { - "name": "03034931", - "address": "chemin Circle (MTL) 4906", - "function": "1000", - "height": 12, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62421278712495, - 45.48347283839032 - ], - [ - -73.62420798725194, - 45.48347853783715 - ], - [ - -73.62432288655728, - 45.48352583833981 - ], - [ - -73.62441888737177, - 45.48341003877346 - ], - [ - -73.6244096880938, - 45.483406337826956 - ], - [ - -73.62433048660795, - 45.48337183846808 - ], - [ - -73.62431118721614, - 45.48336313816233 - ], - [ - -73.62421278712495, - 45.48347283839032 - ] - ] - ] - }, - "id": 217756, - "properties": { - "name": "03034924", - "address": "chemin Circle (MTL) 4930", - "function": "1000", - "height": 21, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62428818781508, - 45.48297023897821 - ], - [ - -73.62423743412671, - 45.48302315296758 - ], - [ - -73.62439611830855, - 45.48309424989897 - ], - [ - -73.6244158878083, - 45.48307363808302 - ], - [ - -73.62441138784541, - 45.48307143836069 - ], - [ - -73.6244394875621, - 45.48304213844901 - ], - [ - -73.62428818781508, - 45.48297023897821 - ] - ] - ] - }, - "id": 217824, - "properties": { - "name": "03035150", - "address": "rue Saranac (MTL) 5201", - "function": "1000", - "height": 14, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6327725912944, - 45.48844813819664 - ], - [ - -73.63285969058789, - 45.488351938819 - ], - [ - -73.63286569056339, - 45.488354638575565 - ], - [ - -73.63288959033743, - 45.488328839197145 - ], - [ - -73.63264099094754, - 45.48821593836901 - ], - [ - -73.63252849024603, - 45.488338738595345 - ], - [ - -73.63255329060095, - 45.488349938991405 - ], - [ - -73.6327725912944, - 45.48844813819664 - ] - ] - ] - }, - "id": 217835, - "properties": { - "name": "03073236", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4965", - "function": "1000", - "height": 17, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62543698811268, - 45.48879623968086 - ], - [ - -73.62562738908028, - 45.48888273864506 - ], - [ - -73.62571208832517, - 45.48879053907926 - ], - [ - -73.62556668749619, - 45.48872453876799 - ], - [ - -73.6255127885317, - 45.48878353878339 - ], - [ - -73.62546758852433, - 45.48876283890341 - ], - [ - -73.62543698811268, - 45.48879623968086 - ] - ] - ] - }, - "id": 217890, - "properties": { - "name": "03074895", - "address": "avenue Dornal (MTL) 4804", - "function": "1000", - "height": 9, - "year_of_construction": 1953 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.623156087164, - 45.48527163856632 - ], - [ - -73.62325078706627, - 45.485253738369806 - ], - [ - -73.62320988679602, - 45.485146938374825 - ], - [ - -73.62306938707566, - 45.485173538112186 - ], - [ - -73.62309478707449, - 45.4852395387457 - ], - [ - -73.62314048667167, - 45.48523053872065 - ], - [ - -73.623156087164, - 45.48527163856632 - ] - ] - ] - }, - "id": 217929, - "properties": { - "name": "03074959", - "address": "avenue Meridian (MTL) 4779", - "function": "1000", - "height": 11, - "year_of_construction": 1935 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62515638788018, - 45.48738603952535 - ], - [ - -73.62515108800574, - 45.48739193842162 - ], - [ - -73.62507438780862, - 45.487474738946126 - ], - [ - -73.62507878791868, - 45.487476738084396 - ], - [ - -73.62538468792457, - 45.48761313876239 - ], - [ - -73.62537032068902, - 45.487629003513646 - ], - [ - -73.62537545830926, - 45.487631276283885 - ], - [ - -73.62535601491355, - 45.48765297040579 - ], - [ - -73.62540780745576, - 45.48767593700625 - ], - [ - -73.62552071940233, - 45.487551636085634 - ], - [ - -73.62546780259315, - 45.48752817135642 - ], - [ - -73.62548381435697, - 45.48751030622884 - ], - [ - -73.62548181667569, - 45.487509420275686 - ], - [ - -73.62546738820714, - 45.48752533909744 - ], - [ - -73.62515638788018, - 45.48738603952535 - ] - ] - ] - }, - "id": 217950, - "properties": { - "name": "03075054", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4860", - "function": "1000", - "height": 14, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63189409101129, - 45.48906623938189 - ], - [ - -73.63212309103578, - 45.48916893864708 - ], - [ - -73.63222999071523, - 45.48905103868141 - ], - [ - -73.63200099097311, - 45.4889483387282 - ], - [ - -73.63189409101129, - 45.48906623938189 - ] - ] - ] - }, - "id": 218021, - "properties": { - "name": "03073244", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4915", - "function": "1000", - "height": 13, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62297728717294, - 45.48253063859349 - ], - [ - -73.62311388627336, - 45.48258673815056 - ], - [ - -73.62317373849622, - 45.482514574328505 - ], - [ - -73.62304062398876, - 45.48245434529282 - ], - [ - -73.62297728717294, - 45.48253063859349 - ] - ] - ] - }, - "id": 218030, - "properties": { - "name": "03035076", - "address": "avenue Ponsard (MTL) 5206", - "function": "1000", - "height": 17, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63042128997725, - 45.49130893928605 - ], - [ - -73.63034521219357, - 45.491390964216095 - ], - [ - -73.63032965546411, - 45.491408452458714 - ], - [ - -73.63054509024785, - 45.49150723979886 - ], - [ - -73.6306371894522, - 45.491407939186935 - ], - [ - -73.63042128997725, - 45.49130893928605 - ] - ] - ] - }, - "id": 218044, - "properties": { - "name": "03007378", - "address": "avenue Victoria (MTL+WMT) 5477", - "function": "5010", - "height": 11, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62405997500763, - 45.48367568223953 - ], - [ - -73.62399498743946, - 45.48374471792126 - ], - [ - -73.62406368642223, - 45.48377843885295 - ], - [ - -73.62413098670503, - 45.48371053802499 - ], - [ - -73.62405997500763, - 45.48367568223953 - ] - ] - ] - }, - "id": 218089, - "properties": { - "name": "03034958", - "address": "chemin Circle (MTL) 4929", - "function": "1000", - "height": 9, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62392168735776, - 45.483708738826394 - ], - [ - -73.62399498743946, - 45.48374471792126 - ], - [ - -73.62405997500763, - 45.48367568223953 - ], - [ - -73.62398898772848, - 45.48364083808118 - ], - [ - -73.62392168735776, - 45.483708738826394 - ] - ] - ] - }, - "id": 218364, - "properties": { - "name": "03034956", - "address": "chemin Circle (MTL) 4925", - "function": "1000", - "height": 9, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62710848864796, - 45.4835413372918 - ], - [ - -73.62727288859242, - 45.48361823776693 - ], - [ - -73.62731258761193, - 45.483576138310575 - ], - [ - -73.62732153322128, - 45.48356651078258 - ], - [ - -73.6271570115047, - 45.483490031640386 - ], - [ - -73.62710848864796, - 45.4835413372918 - ] - ] - ] - }, - "id": 218429, - "properties": { - "name": "03035339", - "address": "rue Byron (MTL) 5253", - "function": "1000", - "height": 8, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62433838841929, - 45.48749523918874 - ], - [ - -73.62435638765163, - 45.48763683820517 - ], - [ - -73.62448288707773, - 45.48762883936653 - ], - [ - -73.62446488752711, - 45.48748723857046 - ], - [ - -73.62433838841929, - 45.48749523918874 - ] - ] - ] - }, - "id": 218697, - "properties": { - "name": "03074535", - "address": "chemin Circle (MTL) 4488", - "function": "1000", - "height": 18, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62461268720932, - 45.48793013892595 - ], - [ - -73.624895586839, - 45.48805803905537 - ], - [ - -73.62496448783972, - 45.487982638523796 - ], - [ - -73.62496458846361, - 45.487982438647975 - ], - [ - -73.62492858860854, - 45.48796683960951 - ], - [ - -73.62498648852436, - 45.4879006394182 - ], - [ - -73.6251435877509, - 45.4879686388166 - ], - [ - -73.62527218735757, - 45.48782163945135 - ], - [ - -73.62486918749741, - 45.487647238900934 - ], - [ - -73.62480958785939, - 45.48771533866739 - ], - [ - -73.62484438854256, - 45.48773023807494 - ], - [ - -73.62471608827559, - 45.48787763886507 - ], - [ - -73.62468048708189, - 45.487862338961456 - ], - [ - -73.62467638781175, - 45.48786043846262 - ], - [ - -73.62461268720932, - 45.48793013892595 - ] - ] - ] - }, - "id": 218853, - "properties": { - "name": "03075050", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4830", - "function": "1000", - "height": 25, - "year_of_construction": 1980 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62363678708685, - 45.48738563916688 - ], - [ - -73.62377338792817, - 45.487412339027564 - ], - [ - -73.62380888707969, - 45.4873217382857 - ], - [ - -73.62367338810304, - 45.48729453875959 - ], - [ - -73.62363678708685, - 45.48738563916688 - ] - ] - ] - }, - "id": 218998, - "properties": { - "name": "03074543", - "address": "chemin Circle (MTL) 4514", - "function": "1000", - "height": 12, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62304692064849, - 45.481881047194214 - ], - [ - -73.62299526925244, - 45.481935936772025 - ], - [ - -73.62313980304877, - 45.482002646848876 - ], - [ - -73.62318962073721, - 45.481946910628686 - ], - [ - -73.62304692064849, - 45.481881047194214 - ] - ] - ] - }, - "id": 219110, - "properties": { - "name": "03035031", - "address": "avenue Jacques-Grenier (MTL) 5237", - "function": "1000", - "height": 15, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62445068703354, - 45.489668539833055 - ], - [ - -73.62451058807846, - 45.48969313931563 - ], - [ - -73.62455988709024, - 45.48971363983475 - ], - [ - -73.62461518746193, - 45.489647639752825 - ], - [ - -73.62450608705794, - 45.48960243981205 - ], - [ - -73.62445068703354, - 45.489668539833055 - ] - ] - ] - }, - "id": 219319, - "properties": { - "name": "03074984", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4661", - "function": "1000", - "height": 19, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62412618787248, - 45.48966083929851 - ], - [ - -73.62426848767382, - 45.489717839154224 - ], - [ - -73.6243523874523, - 45.48961423953974 - ], - [ - -73.62421008782766, - 45.48955723978732 - ], - [ - -73.62412618787248, - 45.48966083929851 - ] - ] - ] - }, - "id": 219320, - "properties": { - "name": "03074984", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4661", - "function": "1000", - "height": 19, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62563838823267, - 45.484484238865804 - ], - [ - -73.62560818734109, - 45.48452133854241 - ], - [ - -73.62568355973173, - 45.484551733424084 - ], - [ - -73.62574408639321, - 45.48448828794708 - ], - [ - -73.62566148731608, - 45.48445543817643 - ], - [ - -73.62563838823267, - 45.484484238865804 - ] - ] - ] - }, - "id": 219618, - "properties": { - "name": "03034972", - "address": "chemin Circle (MTL) 4997", - "function": "1000", - "height": 8, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62452078767777, - 45.48766883938853 - ], - [ - -73.62462468845553, - 45.48773753907333 - ], - [ - -73.62473428731857, - 45.48765543900828 - ], - [ - -73.6246303880585, - 45.4875868393034 - ], - [ - -73.62452078767777, - 45.48766883938853 - ] - ] - ] - }, - "id": 219651, - "properties": { - "name": "03074533", - "address": "chemin Circle (MTL) 4486", - "function": "1000", - "height": 17, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6233450866586, - 45.48436953778976 - ], - [ - -73.6233854878369, - 45.48436153861638 - ], - [ - -73.62339358616106, - 45.48436013870628 - ], - [ - -73.62338628624865, - 45.4843481390445 - ], - [ - -73.62343208698034, - 45.484334838427216 - ], - [ - -73.62340682557186, - 45.484268443575864 - ], - [ - -73.62328223084072, - 45.48429296844667 - ], - [ - -73.62330928684375, - 45.4843640387884 - ], - [ - -73.62334128760901, - 45.48435793837566 - ], - [ - -73.6233450866586, - 45.48436953778976 - ] - ] - ] - }, - "id": 219666, - "properties": { - "name": "03074772", - "address": "avenue Ponsard (MTL) 5032", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62777598984746, - 45.4910208398847 - ], - [ - -73.62777978907388, - 45.49101663965701 - ], - [ - -73.62780438887101, - 45.49098884021594 - ], - [ - -73.62784398930867, - 45.49100624029932 - ], - [ - -73.62784398908066, - 45.491006139516934 - ], - [ - -73.62788498909102, - 45.49096413924304 - ], - [ - -73.62788508843047, - 45.490963939366196 - ], - [ - -73.62785788862995, - 45.49095143947149 - ], - [ - -73.62790788964443, - 45.490897839108186 - ], - [ - -73.62743118976503, - 45.490678239185605 - ], - [ - -73.62746318867654, - 45.49064383929597 - ], - [ - -73.6273939892802, - 45.490656639403674 - ], - [ - -73.62731838839524, - 45.49045503869132 - ], - [ - -73.62723188802077, - 45.490471139719126 - ], - [ - -73.62722348863836, - 45.49044883921225 - ], - [ - -73.62722338907258, - 45.49044893920594 - ], - [ - -73.62713328899294, - 45.49046353962714 - ], - [ - -73.62719628827867, - 45.490654739686654 - ], - [ - -73.62712088911019, - 45.49066703991954 - ], - [ - -73.62711998827223, - 45.49066753853642 - ], - [ - -73.62749388944688, - 45.49095213967529 - ], - [ - -73.6274956881097, - 45.49095093997386 - ], - [ - -73.62753128882161, - 45.49091153920652 - ], - [ - -73.62777598984746, - 45.4910208398847 - ] - ] - ] - }, - "id": 219759, - "properties": { - "name": "03007402", - "address": "avenue Victoria (MTL+WMT) 5325", - "function": "1541", - "height": 15, - "year_of_construction": 1981 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62587948824424, - 45.48367203768504 - ], - [ - -73.62603258792, - 45.48374393755264 - ], - [ - -73.62608086962778, - 45.48369296916882 - ], - [ - -73.62592668674594, - 45.48362231324716 - ], - [ - -73.62587948824424, - 45.48367203768504 - ] - ] - ] - }, - "id": 219805, - "properties": { - "name": "03035266", - "address": "rue Snowdon (MTL) 5199", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6307629896928, - 45.49107573981081 - ], - [ - -73.63071589077921, - 45.49112953966658 - ], - [ - -73.63082998947816, - 45.49117893921491 - ], - [ - -73.63083518934677, - 45.49118133944493 - ], - [ - -73.63103919053958, - 45.49095143993291 - ], - [ - -73.63091809044813, - 45.49089833945453 - ], - [ - -73.6307629896928, - 45.49107573981081 - ] - ] - ] - }, - "id": 219932, - "properties": { - "name": "03073170", - "address": "avenue Saint-Kevin (MTL) 4806", - "function": "1000", - "height": 10, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62824997262292, - 45.491601734594994 - ], - [ - -73.62819408903317, - 45.49166283921208 - ], - [ - -73.6283791893005, - 45.491746539177406 - ], - [ - -73.62843615365698, - 45.491684217564845 - ], - [ - -73.62824997262292, - 45.491601734594994 - ] - ] - ] - }, - "id": 219955, - "properties": { - "name": "03073820", - "address": "avenue Lacombe (MTL) 4677", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62552008845618, - 45.49090543977571 - ], - [ - -73.62576468810612, - 45.49101233958782 - ], - [ - -73.6259063883071, - 45.490851939966355 - ], - [ - -73.62572158766747, - 45.49077113945167 - ], - [ - -73.62565278880075, - 45.49084923982597 - ], - [ - -73.62559978905536, - 45.49082613969993 - ], - [ - -73.62559288759292, - 45.490823040123 - ], - [ - -73.62552008845618, - 45.49090543977571 - ] - ] - ] - }, - "id": 220006, - "properties": { - "name": "03105655", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4565", - "function": "6513", - "height": 6, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62524708730471, - 45.49081863982922 - ], - [ - -73.62524748797073, - 45.490818739272704 - ], - [ - -73.62530848797333, - 45.49069203896181 - ], - [ - -73.62530828816968, - 45.490691939298166 - ], - [ - -73.62533398879533, - 45.49067313943137 - ], - [ - -73.62534928863639, - 45.49066323964333 - ], - [ - -73.62540918772177, - 45.49070993974973 - ], - [ - -73.62540928773457, - 45.49071003952275 - ], - [ - -73.62539648868626, - 45.49075723965464 - ], - [ - -73.6255021889009, - 45.49077133932403 - ], - [ - -73.62550228847226, - 45.490771240231666 - ], - [ - -73.62543618779983, - 45.49074053993295 - ], - [ - -73.62549398886574, - 45.490678939633824 - ], - [ - -73.62549668786005, - 45.49067583940151 - ], - [ - -73.6251087876291, - 45.49050423880849 - ], - [ - -73.62510558843594, - 45.49050793887646 - ], - [ - -73.6249774883006, - 45.49065233958503 - ], - [ - -73.62507588770386, - 45.49069573939682 - ], - [ - -73.62502498890643, - 45.49075293978543 - ], - [ - -73.62502348856312, - 45.490754840100884 - ], - [ - -73.62511308814933, - 45.49078993944102 - ], - [ - -73.62511328795301, - 45.490790039104986 - ], - [ - -73.62512818862389, - 45.49077143918117 - ], - [ - -73.62524708730471, - 45.49081863982922 - ] - ] - ] - }, - "id": 220007, - "properties": { - "name": "03105655", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4565", - "function": "6513", - "height": 6, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62375118695611, - 45.49196973952219 - ], - [ - -73.62375428802541, - 45.491966139482216 - ], - [ - -73.62383978817294, - 45.49187044009025 - ], - [ - -73.62379658805276, - 45.49185183942993 - ], - [ - -73.62383208733195, - 45.491810839107536 - ], - [ - -73.62402228823028, - 45.49189243946283 - ], - [ - -73.62421058821211, - 45.49167533892277 - ], - [ - -73.62442428843306, - 45.491767039910805 - ], - [ - -73.62452778787681, - 45.49165083992044 - ], - [ - -73.62453088803998, - 45.49164743962574 - ], - [ - -73.62425428786173, - 45.49152314019955 - ], - [ - -73.62426468835856, - 45.49151163966416 - ], - [ - -73.62426428746774, - 45.49151143943484 - ], - [ - -73.62420228809651, - 45.49148353968121 - ], - [ - -73.62419688783635, - 45.49148123925008 - ], - [ - -73.62418788735066, - 45.4914917403291 - ], - [ - -73.62410338834506, - 45.49145613981133 - ], - [ - -73.62414368788608, - 45.49140893964048 - ], - [ - -73.62420598790496, - 45.49143513929205 - ], - [ - -73.62420788722382, - 45.49143603977141 - ], - [ - -73.62425218766123, - 45.49138433958566 - ], - [ - -73.62415368757573, - 45.49134254000336 - ], - [ - -73.62419128819549, - 45.49129973939123 - ], - [ - -73.6242261877598, - 45.491315039301334 - ], - [ - -73.62422628733239, - 45.49131493931025 - ], - [ - -73.62426798742264, - 45.49126823968477 - ], - [ - -73.6243285870763, - 45.49129503951691 - ], - [ - -73.62433388753185, - 45.49129734005052 - ], - [ - -73.62444518786837, - 45.49117004014343 - ], - [ - -73.62440698766521, - 45.49115073958398 - ], - [ - -73.62443838762485, - 45.491119939677496 - ], - [ - -73.62438148774267, - 45.4910912390007 - ], - [ - -73.62439238779857, - 45.49108063955366 - ], - [ - -73.62439198796989, - 45.49108033944081 - ], - [ - -73.6240313871803, - 45.4909201398015 - ], - [ - -73.62405108762962, - 45.49089823957389 - ], - [ - -73.62409688797989, - 45.49091853982319 - ], - [ - -73.62409688775854, - 45.49091843904076 - ], - [ - -73.6241823883656, - 45.490820439369955 - ], - [ - -73.62451868812634, - 45.490965439648896 - ], - [ - -73.62465278738522, - 45.49081153954999 - ], - [ - -73.62453468835106, - 45.49076063994777 - ], - [ - -73.62457978757135, - 45.490708939657765 - ], - [ - -73.62449528772864, - 45.49067253946359 - ], - [ - -73.62445328849408, - 45.49071963993398 - ], - [ - -73.6242042873295, - 45.49061023962495 - ], - [ - -73.62420398751564, - 45.49061003928549 - ], - [ - -73.62418928830942, - 45.490625539803446 - ], - [ - -73.6238091869936, - 45.49044723956679 - ], - [ - -73.62380788766136, - 45.490448639334566 - ], - [ - -73.62374278776585, - 45.490515639462316 - ], - [ - -73.62368738775052, - 45.490489039750145 - ], - [ - -73.62368468842739, - 45.49048793946279 - ], - [ - -73.62365968723688, - 45.49051963928252 - ], - [ - -73.62371758736192, - 45.490542239187796 - ], - [ - -73.62366058833302, - 45.49061453957995 - ], - [ - -73.6239299875385, - 45.490731839382306 - ], - [ - -73.62378408681714, - 45.49089743951267 - ], - [ - -73.62363638748869, - 45.49083313906695 - ], - [ - -73.62354968742139, - 45.49093243990237 - ], - [ - -73.62369048699368, - 45.49099313955173 - ], - [ - -73.62354168756433, - 45.49116363946065 - ], - [ - -73.62339828795503, - 45.49110174024544 - ], - [ - -73.62340648853642, - 45.49109223981999 - ], - [ - -73.62340588657052, - 45.49109193992208 - ], - [ - -73.62327888713169, - 45.49103563967029 - ], - [ - -73.62321338705384, - 45.49110863918854 - ], - [ - -73.62315408779475, - 45.491082339475476 - ], - [ - -73.62312998756933, - 45.491109139447815 - ], - [ - -73.6231300875788, - 45.49110923922283 - ], - [ - -73.62319288671793, - 45.49113763991136 - ], - [ - -73.62310628796688, - 45.491232339387736 - ], - [ - -73.62324948793334, - 45.491297139384166 - ], - [ - -73.62325238772618, - 45.49129393910574 - ], - [ - -73.62327968729994, - 45.49126283979523 - ], - [ - -73.62353298705916, - 45.491372839454826 - ], - [ - -73.62353328815414, - 45.49137303979466 - ], - [ - -73.62354658767617, - 45.491357939508426 - ], - [ - -73.62363168694142, - 45.4913950398307 - ], - [ - -73.62360588790865, - 45.491424239827694 - ], - [ - -73.62360088727897, - 45.491429739692684 - ], - [ - -73.62375318757165, - 45.49149813938628 - ], - [ - -73.62371098748598, - 45.49154463959784 - ], - [ - -73.62379678747904, - 45.49158314009573 - ], - [ - -73.62379688727171, - 45.49158313998757 - ], - [ - -73.62383868814301, - 45.49153663927756 - ], - [ - -73.62390948835481, - 45.4915680390774 - ], - [ - -73.62386888857982, - 45.4916132391344 - ], - [ - -73.62384188747791, - 45.491601239283085 - ], - [ - -73.62370678772248, - 45.491751739877635 - ], - [ - -73.62313988723268, - 45.49150003947218 - ], - [ - -73.6230471874326, - 45.49160343977723 - ], - [ - -73.62305138777249, - 45.49160523944175 - ], - [ - -73.62313648736088, - 45.49164364040706 - ], - [ - -73.62310128822656, - 45.491682239404525 - ], - [ - -73.62375118695611, - 45.49196973952219 - ] - ] - ] - }, - "id": 220008, - "properties": { - "name": "03105655", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4565", - "function": "6513", - "height": 6, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6270945881051, - 45.48356723863758 - ], - [ - -73.62705228374855, - 45.48360788946407 - ], - [ - -73.62721102905856, - 45.48368167654969 - ], - [ - -73.62725118819901, - 45.48364333796018 - ], - [ - -73.62709798745804, - 45.48356403860119 - ], - [ - -73.6270945881051, - 45.48356723863758 - ] - ] - ] - }, - "id": 220094, - "properties": { - "name": "03035336", - "address": "rue Byron (MTL) 5247", - "function": "1000", - "height": 8, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62566668805044, - 45.482683038499424 - ], - [ - -73.62564182759158, - 45.482709820981015 - ], - [ - -73.62581790825769, - 45.4827911721512 - ], - [ - -73.6258611871095, - 45.482744538523235 - ], - [ - -73.62568478750724, - 45.482663537810296 - ], - [ - -73.62566668805044, - 45.482683038499424 - ] - ] - ] - }, - "id": 220212, - "properties": { - "name": "03035225", - "address": "rue Dalou (MTL) 5257", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62608588841971, - 45.48887803928647 - ], - [ - -73.62605998888928, - 45.48890583890229 - ], - [ - -73.62606538869638, - 45.4889074391671 - ], - [ - -73.6260418710564, - 45.48893342386117 - ], - [ - -73.62617712366458, - 45.488994120288375 - ], - [ - -73.62624498809826, - 45.488918838921435 - ], - [ - -73.62610518910206, - 45.48885653866934 - ], - [ - -73.62608588841971, - 45.48887803928647 - ] - ] - ] - }, - "id": 220352, - "properties": { - "name": "03074862", - "address": "avenue Dornal (MTL) 4807", - "function": "1000", - "height": 10, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63132529030436, - 45.4914025393564 - ], - [ - -73.63142468710207, - 45.491292329894094 - ], - [ - -73.63144003033045, - 45.491275068508614 - ], - [ - -73.63137149005142, - 45.4912444392431 - ], - [ - -73.63128768996575, - 45.49133743919495 - ], - [ - -73.63126218977133, - 45.491326139451374 - ], - [ - -73.6314391901837, - 45.491128940031444 - ], - [ - -73.63143098990106, - 45.49112533928848 - ], - [ - -73.63131129057894, - 45.49107193976809 - ], - [ - -73.63110279008599, - 45.491303338668104 - ], - [ - -73.63132529030436, - 45.4914025393564 - ] - ] - ] - }, - "id": 220693, - "properties": { - "name": "03073055", - "address": "avenue Saint-Kevin (MTL) 4805", - "function": "1000", - "height": 13, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62502878760486, - 45.48337383789403 - ], - [ - -73.62518988750264, - 45.483448337892376 - ], - [ - -73.6252417736273, - 45.483392918869654 - ], - [ - -73.62508059586153, - 45.48331845232334 - ], - [ - -73.62502878760486, - 45.48337383789403 - ] - ] - ] - }, - "id": 220694, - "properties": { - "name": "03035202", - "address": "rue Dalou (MTL) 5195", - "function": "1000", - "height": 9, - "year_of_construction": 1933 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62325898618879, - 45.48391883837735 - ], - [ - -73.62325358749182, - 45.48391983853289 - ], - [ - -73.62311198670884, - 45.483947538228826 - ], - [ - -73.6231600695974, - 45.48406528346539 - ], - [ - -73.623303772419, - 45.48403699744117 - ], - [ - -73.62325898618879, - 45.48391883837735 - ] - ] - ] - }, - "id": 220789, - "properties": { - "name": "03074778", - "address": "avenue Ponsard (MTL) 5044", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62426071928944, - 45.48378533526738 - ], - [ - -73.62417554933435, - 45.48387580844485 - ], - [ - -73.62417958696113, - 45.48387773872492 - ], - [ - -73.62416078766103, - 45.483896438169054 - ], - [ - -73.62422968683902, - 45.48392973765436 - ], - [ - -73.62433538722472, - 45.483821337851 - ], - [ - -73.62426071928944, - 45.48378533526738 - ] - ] - ] - }, - "id": 220857, - "properties": { - "name": "03034962", - "address": "chemin Circle (MTL) 4937", - "function": "1000", - "height": 14, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62352258659395, - 45.482567238172976 - ], - [ - -73.62346037020396, - 45.4826397097804 - ], - [ - -73.6236245486233, - 45.482714713482295 - ], - [ - -73.62363828628133, - 45.482709038579515 - ], - [ - -73.62363878622703, - 45.482708938155426 - ], - [ - -73.62362408791024, - 45.482702338392954 - ], - [ - -73.62363778682239, - 45.48268713865765 - ], - [ - -73.62361878647991, - 45.48267873845888 - ], - [ - -73.62366288696215, - 45.48262973817763 - ], - [ - -73.6235289861163, - 45.48257003877341 - ], - [ - -73.62352258659395, - 45.482567238172976 - ] - ] - ] - }, - "id": 221052, - "properties": { - "name": "03035096", - "address": "avenue Ponsard (MTL) 5211", - "function": "1000", - "height": 10, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62478958760315, - 45.48733663887226 - ], - [ - -73.62489908798484, - 45.48730073952913 - ], - [ - -73.62490868791028, - 45.48731523904388 - ], - [ - -73.6249090881113, - 45.48731513962322 - ], - [ - -73.62495308740715, - 45.48729793864202 - ], - [ - -73.62487258773416, - 45.48719613894176 - ], - [ - -73.62482518737392, - 45.48721473926965 - ], - [ - -73.62481408775176, - 45.4872006382183 - ], - [ - -73.62481248691005, - 45.48720043840204 - ], - [ - -73.6248053874693, - 45.48723143864544 - ], - [ - -73.62476328820242, - 45.48722673884934 - ], - [ - -73.62476118847901, - 45.487227138874545 - ], - [ - -73.62475348836568, - 45.4872155383749 - ], - [ - -73.62471718770297, - 45.48722743888143 - ], - [ - -73.62478958760315, - 45.48733663887226 - ] - ] - ] - }, - "id": 221152, - "properties": { - "name": "03074526", - "address": "chemin Circle (MTL) 4474", - "function": "1000", - "height": 16, - "year_of_construction": 1959 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62343388634058, - 45.48201493808928 - ], - [ - -73.6233864758863, - 45.48206581894274 - ], - [ - -73.62353813352189, - 45.482133955174135 - ], - [ - -73.6235844864035, - 45.48208383757254 - ], - [ - -73.62343388634058, - 45.48201493808928 - ] - ] - ] - }, - "id": 221157, - "properties": { - "name": "03035063", - "address": "avenue Ponsard (MTL) 5242", - "function": "1000", - "height": 8, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62593468838635, - 45.48834273862165 - ], - [ - -73.62606398852232, - 45.488397338999064 - ], - [ - -73.62612817327691, - 45.48832215443863 - ], - [ - -73.62602286671928, - 45.48827549669657 - ], - [ - -73.62600798789038, - 45.48829313838572 - ], - [ - -73.62598518816978, - 45.488283539686456 - ], - [ - -73.62593468838635, - 45.48834273862165 - ] - ] - ] - }, - "id": 221190, - "properties": { - "name": "03074903", - "address": "avenue Dornal (MTL) 4838", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62861028849126, - 45.48994433930622 - ], - [ - -73.62854188923056, - 45.490015939600056 - ], - [ - -73.62874968937308, - 45.49011363933039 - ], - [ - -73.62882139000315, - 45.490035639090046 - ], - [ - -73.62861338831719, - 45.4899409397999 - ], - [ - -73.62861028849126, - 45.48994433930622 - ] - ] - ] - }, - "id": 221201, - "properties": { - "name": "03007286", - "address": "avenue Victoria (MTL+WMT) 5360", - "function": "1000", - "height": 12, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62860838899859, - 45.4901873392611 - ], - [ - -73.62872058935146, - 45.49023623914842 - ], - [ - -73.62878968959747, - 45.490157838729274 - ], - [ - -73.62867758913285, - 45.49010893969646 - ], - [ - -73.62860838899859, - 45.4901873392611 - ] - ] - ] - }, - "id": 221202, - "properties": { - "name": "03007286", - "address": "avenue Victoria (MTL+WMT) 5360", - "function": "1000", - "height": 12, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62330818655424, - 45.48214983846769 - ], - [ - -73.62329420325389, - 45.48216483150716 - ], - [ - -73.62344594180006, - 45.48223363005948 - ], - [ - -73.62349245819873, - 45.48218333774918 - ], - [ - -73.6233401641475, - 45.48211551979076 - ], - [ - -73.62330818655424, - 45.48214983846769 - ] - ] - ] - }, - "id": 221214, - "properties": { - "name": "03035067", - "address": "avenue Ponsard (MTL) 5232", - "function": "1000", - "height": 8, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62878248944388, - 45.49023703952805 - ], - [ - -73.62877778930223, - 45.49024163943679 - ], - [ - -73.62879448923776, - 45.490248539518454 - ], - [ - -73.62876028962432, - 45.49028913949827 - ], - [ - -73.6287660895724, - 45.49029163902923 - ], - [ - -73.62895468928254, - 45.490376539029924 - ], - [ - -73.62902518900466, - 45.490298139589854 - ], - [ - -73.6288324893115, - 45.49021333881246 - ], - [ - -73.62881658908692, - 45.490231738783244 - ], - [ - -73.62879508922093, - 45.49022214008203 - ], - [ - -73.62878248944388, - 45.49023703952805 - ] - ] - ] - }, - "id": 221263, - "properties": { - "name": "03074151", - "address": "avenue Lacombe (MTL) 4802", - "function": "1000", - "height": 11, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62346428735893, - 45.48640123880135 - ], - [ - -73.62345838760504, - 45.486402538256534 - ], - [ - -73.62330598719812, - 45.486434238869194 - ], - [ - -73.62330678705653, - 45.486436139380004 - ], - [ - -73.62334548697724, - 45.486550638973355 - ], - [ - -73.62334558763496, - 45.48655103929605 - ], - [ - -73.6233581865369, - 45.486548938048394 - ], - [ - -73.62337178744242, - 45.486590938960475 - ], - [ - -73.62338438719742, - 45.4865886388431 - ], - [ - -73.62338569761337, - 45.48659352359041 - ], - [ - -73.62348921618235, - 45.48657314809684 - ], - [ - -73.62348668754618, - 45.4865669391948 - ], - [ - -73.6235308875549, - 45.48655793883712 - ], - [ - -73.62346428735893, - 45.48640123880135 - ] - ] - ] - }, - "id": 221306, - "properties": { - "name": "03074820", - "address": "avenue Glencairn (MTL) 4931", - "function": "1000", - "height": 12, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6256039878249, - 45.488711939515184 - ], - [ - -73.62573998768237, - 45.48876853954402 - ], - [ - -73.62580508056968, - 45.48869116214681 - ], - [ - -73.62569068523374, - 45.488640478304134 - ], - [ - -73.62567578811651, - 45.48865803988273 - ], - [ - -73.62565618868133, - 45.48864993943944 - ], - [ - -73.6256039878249, - 45.488711939515184 - ] - ] - ] - }, - "id": 221524, - "properties": { - "name": "03104752", - "address": "avenue Dornal (MTL) 4814", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62452458681041, - 45.48602553868813 - ], - [ - -73.62454348717843, - 45.48607623879651 - ], - [ - -73.62456218814742, - 45.486125838607215 - ], - [ - -73.62471068767083, - 45.486098138591124 - ], - [ - -73.62471308798087, - 45.486097738238605 - ], - [ - -73.62467568746214, - 45.48599753893224 - ], - [ - -73.62452458681041, - 45.48602553868813 - ] - ] - ] - }, - "id": 222116, - "properties": { - "name": "03074716", - "address": "avenue Ponsard (MTL) 4935", - "function": "1000", - "height": 14, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62298248593636, - 45.48353663785276 - ], - [ - -73.62293118706728, - 45.483545538561415 - ], - [ - -73.62293048627483, - 45.4835456382987 - ], - [ - -73.62293528708138, - 45.48355853872759 - ], - [ - -73.62291728697323, - 45.48356193882114 - ], - [ - -73.62295268686476, - 45.48365493852982 - ], - [ - -73.62316738676303, - 45.48361443820585 - ], - [ - -73.62314478663875, - 45.48355033862599 - ], - [ - -73.62313098741222, - 45.48351083855109 - ], - [ - -73.62298248593636, - 45.48353663785276 - ] - ] - ] - }, - "id": 222142, - "properties": { - "name": "03035086", - "address": "avenue Ponsard (MTL) 5070", - "function": "1000", - "height": 12, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63252159039149, - 45.491933639218345 - ], - [ - -73.63251999000539, - 45.49193533908251 - ], - [ - -73.63268278549766, - 45.4920090120757 - ], - [ - -73.63279952479824, - 45.49187941571909 - ], - [ - -73.6327653903637, - 45.491863638822906 - ], - [ - -73.63281739091798, - 45.49181323924285 - ], - [ - -73.63283909124895, - 45.49182484000622 - ], - [ - -73.63290319128808, - 45.49175443985784 - ], - [ - -73.63274552380827, - 45.49168337796555 - ], - [ - -73.63260394307173, - 45.491840412390474 - ], - [ - -73.63252159039149, - 45.491933639218345 - ] - ] - ] - }, - "id": 222212, - "properties": { - "name": "03007315", - "address": "avenue Victoria (MTL+WMT) 5670", - "function": "1000", - "height": 8, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62316608671401, - 45.48827343864758 - ], - [ - -73.62326389844687, - 45.48831799247415 - ], - [ - -73.62339448726223, - 45.48817418933687 - ], - [ - -73.62329788722698, - 45.48813023900932 - ], - [ - -73.62316608671401, - 45.48827343864758 - ] - ] - ] - }, - "id": 222213, - "properties": { - "name": "03007431", - "address": "avenue Victoria (MTL+WMT) 5037", - "function": "1000", - "height": 14, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62454168816997, - 45.48686443822268 - ], - [ - -73.62463748685269, - 45.486916238637015 - ], - [ - -73.62474538796423, - 45.48681683906704 - ], - [ - -73.6247055870826, - 45.48679553908383 - ], - [ - -73.6247035876899, - 45.4867973391585 - ], - [ - -73.6246857876442, - 45.486814138913864 - ], - [ - -73.62463068774663, - 45.48678353949991 - ], - [ - -73.62454168816997, - 45.48686443822268 - ] - ] - ] - }, - "id": 222362, - "properties": { - "name": "03074732", - "address": "avenue Ponsard (MTL) 4918", - "function": "1000", - "height": 18, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62579498782029, - 45.484029338241754 - ], - [ - -73.62579318789635, - 45.48403103823377 - ], - [ - -73.6256696882452, - 45.484135438453066 - ], - [ - -73.62579928747259, - 45.48421103855178 - ], - [ - -73.62582568794632, - 45.484185638310066 - ], - [ - -73.62583675061205, - 45.484191337447356 - ], - [ - -73.62589056686195, - 45.48413292312235 - ], - [ - -73.62587808718183, - 45.48412623842048 - ], - [ - -73.6258877879845, - 45.48411723826615 - ], - [ - -73.62581168849428, - 45.48407663826199 - ], - [ - -73.62583798773092, - 45.48405233774043 - ], - [ - -73.62579498782029, - 45.484029338241754 - ] - ] - ] - }, - "id": 222386, - "properties": { - "name": "03034906", - "address": "chemin Circle (MTL) 4994", - "function": "1000", - "height": 10, - "year_of_construction": 1956 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63224569019066, - 45.48916723914241 - ], - [ - -73.63252249046154, - 45.48928863863228 - ], - [ - -73.63263999019664, - 45.48915603871018 - ], - [ - -73.63244229021913, - 45.489069438422625 - ], - [ - -73.6324484903586, - 45.48906253931746 - ], - [ - -73.63236939046523, - 45.48902773860117 - ], - [ - -73.63224569019066, - 45.48916723914241 - ] - ] - ] - }, - "id": 222485, - "properties": { - "name": "03073177", - "address": "avenue Saint-Kevin (MTL) 4930", - "function": "1000", - "height": 13, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62591058783735, - 45.482941837495225 - ], - [ - -73.62591628712966, - 45.48294433818491 - ], - [ - -73.62606488818717, - 45.48301323749035 - ], - [ - -73.62606798800992, - 45.48300993793192 - ], - [ - -73.62612038766068, - 45.48295533859892 - ], - [ - -73.62599268683513, - 45.48289473809338 - ], - [ - -73.62597778800684, - 45.48291023818292 - ], - [ - -73.6259531878379, - 45.48289823796418 - ], - [ - -73.62591058783735, - 45.482941837495225 - ] - ] - ] - }, - "id": 222488, - "properties": { - "name": "03035244", - "address": "rue Snowdon (MTL) 5244", - "function": "1000", - "height": 8, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62482608723593, - 45.48514313828981 - ], - [ - -73.6248559878096, - 45.48522913899087 - ], - [ - -73.62485608759104, - 45.485229138881806 - ], - [ - -73.62513698772749, - 45.48516933817683 - ], - [ - -73.624819288159, - 45.484382638082614 - ], - [ - -73.62453568685736, - 45.48443933829014 - ], - [ - -73.6245377873063, - 45.484444538910594 - ], - [ - -73.62456638726184, - 45.48451133839928 - ], - [ - -73.62456808744932, - 45.484515438943774 - ], - [ - -73.62458128704971, - 45.484512737607815 - ], - [ - -73.62467768766523, - 45.48474293814626 - ], - [ - -73.62464328811576, - 45.48475013846293 - ], - [ - -73.62464338811664, - 45.484750238236735 - ], - [ - -73.62471198760029, - 45.48492133838417 - ], - [ - -73.62471208782199, - 45.48492153804059 - ], - [ - -73.62474678690053, - 45.484915537770966 - ], - [ - -73.62482608723593, - 45.48514313828981 - ] - ] - ] - }, - "id": 222622, - "properties": { - "name": "03074698", - "address": "avenue Iona (MTL) 5000", - "function": "6812", - "height": 15, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62291458744141, - 45.48655113945177 - ], - [ - -73.62286218711318, - 45.48657483927436 - ], - [ - -73.62286208776169, - 45.486575038247146 - ], - [ - -73.6228704866329, - 45.486584039369234 - ], - [ - -73.62285147370355, - 45.48659276312803 - ], - [ - -73.62293512113813, - 45.48667343879506 - ], - [ - -73.62299978663141, - 45.4866441385903 - ], - [ - -73.62291458744141, - 45.48655113945177 - ] - ] - ] - }, - "id": 222903, - "properties": { - "name": "03074827", - "address": "avenue Glencairn (MTL) 4934", - "function": "1000", - "height": 10, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62310128733343, - 45.4894466388231 - ], - [ - -73.62309798700021, - 45.48945033894453 - ], - [ - -73.62326258758513, - 45.48952233983861 - ], - [ - -73.62326808784478, - 45.48952483997246 - ], - [ - -73.6234322391368, - 45.48934291644285 - ], - [ - -73.62342844851958, - 45.489341197334966 - ], - [ - -73.62353935149288, - 45.48922022370936 - ], - [ - -73.62354190630323, - 45.489221377247574 - ], - [ - -73.62365048690917, - 45.489101039514374 - ], - [ - -73.6234794873695, - 45.48902473943116 - ], - [ - -73.62310128733343, - 45.4894466388231 - ] - ] - ] - }, - "id": 222939, - "properties": { - "name": "03075412", - "address": "avenue Roslyn (MTL) 5050", - "function": "1000", - "height": 17, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6243581873897, - 45.486655938711515 - ], - [ - -73.62440568752054, - 45.48662933883763 - ], - [ - -73.62442648697126, - 45.48664773872614 - ], - [ - -73.62442678716454, - 45.486647539533216 - ], - [ - -73.62448988792615, - 45.48661213923458 - ], - [ - -73.62440858769273, - 45.4865404390107 - ], - [ - -73.62429778643809, - 45.48660263909779 - ], - [ - -73.6243581873897, - 45.486655938711515 - ] - ] - ] - }, - "id": 223056, - "properties": { - "name": "03074736", - "address": "avenue Ponsard (MTL) 4928", - "function": "1000", - "height": 15, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6281341888576, - 45.49047233935007 - ], - [ - -73.62825216349712, - 45.49052589171623 - ], - [ - -73.62836240533511, - 45.49040012609884 - ], - [ - -73.62824798871813, - 45.49034823906353 - ], - [ - -73.6281341888576, - 45.49047233935007 - ] - ] - ] - }, - "id": 223128, - "properties": { - "name": "03007400", - "address": "avenue Victoria (MTL+WMT) 5351", - "function": "1000", - "height": 11, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6231173866675, - 45.48239023760451 - ], - [ - -73.62308308584697, - 45.482431637813015 - ], - [ - -73.62306548644015, - 45.48242443820722 - ], - [ - -73.62306528732213, - 45.48242463818767 - ], - [ - -73.62304062398876, - 45.48245434529282 - ], - [ - -73.62317373849622, - 45.482514574328505 - ], - [ - -73.62323638719536, - 45.48243903753211 - ], - [ - -73.6231173866675, - 45.48239023760451 - ] - ] - ] - }, - "id": 223139, - "properties": { - "name": "03035074", - "address": "avenue Ponsard (MTL) 5210", - "function": "1000", - "height": 17, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62523388775752, - 45.489822738896926 - ], - [ - -73.62539468750892, - 45.48989423966733 - ], - [ - -73.62544223124806, - 45.48984132605342 - ], - [ - -73.62528016547455, - 45.48977118190488 - ], - [ - -73.62523388775752, - 45.489822738896926 - ] - ] - ] - }, - "id": 223157, - "properties": { - "name": "03074881", - "address": "avenue Dornal (MTL) 4709", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62337288640248, - 45.48455623844225 - ], - [ - -73.62337458694081, - 45.48456053876993 - ], - [ - -73.62350998626606, - 45.48453173864636 - ], - [ - -73.6235080878756, - 45.484527639200316 - ], - [ - -73.62349538693267, - 45.48449863829341 - ], - [ - -73.62352178707596, - 45.484493038800544 - ], - [ - -73.6235088868242, - 45.484464738190816 - ], - [ - -73.6234871872279, - 45.484470038349464 - ], - [ - -73.6234843742376, - 45.48446420498835 - ], - [ - -73.62330040969756, - 45.48450041645699 - ], - [ - -73.6233018876592, - 45.48450413842498 - ], - [ - -73.62334738725595, - 45.484494638217384 - ], - [ - -73.62337288640248, - 45.48455623844225 - ] - ] - ] - }, - "id": 223348, - "properties": { - "name": "03074768", - "address": "avenue Ponsard (MTL) 5024", - "function": "1000", - "height": 17, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62683648902404, - 45.4838410382949 - ], - [ - -73.62699788740917, - 45.48392033788535 - ], - [ - -73.62704825776493, - 45.48386897803842 - ], - [ - -73.62688445271336, - 45.48379286124849 - ], - [ - -73.62683648902404, - 45.4838410382949 - ] - ] - ] - }, - "id": 223355, - "properties": { - "name": "03035328", - "address": "rue Byron (MTL) 5223", - "function": "1000", - "height": 8, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62448518820237, - 45.485703938901906 - ], - [ - -73.62443038734834, - 45.48571623921556 - ], - [ - -73.62447018692355, - 45.4858041386984 - ], - [ - -73.62463528768352, - 45.485767038893734 - ], - [ - -73.62464148752775, - 45.48576553838452 - ], - [ - -73.62460278726, - 45.48567793831018 - ], - [ - -73.62448518820237, - 45.485703938901906 - ] - ] - ] - }, - "id": 223908, - "properties": { - "name": "03074712", - "address": "avenue Ponsard (MTL) 4949", - "function": "1000", - "height": 20, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62381388733377, - 45.48899093919928 - ], - [ - -73.62381172169925, - 45.48899340442361 - ], - [ - -73.62390213623719, - 45.48903421246043 - ], - [ - -73.62410468682816, - 45.489123039477924 - ], - [ - -73.62410958747671, - 45.48912513979166 - ], - [ - -73.62421767717927, - 45.48900443671339 - ], - [ - -73.62392179739174, - 45.488870403064276 - ], - [ - -73.62383598595933, - 45.4889661227023 - ], - [ - -73.62381388733377, - 45.48899093919928 - ] - ] - ] - }, - "id": 223941, - "properties": { - "name": "03075040", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4702", - "function": "1000", - "height": 16, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62289196743879, - 45.48204571585491 - ], - [ - -73.6228403234034, - 45.48210059905418 - ], - [ - -73.62300011669404, - 45.48217430899794 - ], - [ - -73.62300278693306, - 45.48217163807765 - ], - [ - -73.62299268716242, - 45.482167237905344 - ], - [ - -73.62304016737542, - 45.48211411832292 - ], - [ - -73.62289196743879, - 45.48204571585491 - ] - ] - ] - }, - "id": 223952, - "properties": { - "name": "03035026", - "address": "avenue Jacques-Grenier (MTL) 5225", - "function": "1000", - "height": 8, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6253746882669, - 45.4882460390487 - ], - [ - -73.62567588819601, - 45.48837743914637 - ], - [ - -73.62577758854735, - 45.488262138879215 - ], - [ - -73.62577368817453, - 45.48826053874928 - ], - [ - -73.62567758729925, - 45.488218738716355 - ], - [ - -73.62571928858273, - 45.4881718387685 - ], - [ - -73.62582008863406, - 45.488216639074885 - ], - [ - -73.62592298823843, - 45.48810183946783 - ], - [ - -73.62562108747848, - 45.48796783933248 - ], - [ - -73.6255187885075, - 45.488081938830206 - ], - [ - -73.62563938872961, - 45.48813443911246 - ], - [ - -73.62559608803065, - 45.48818353911275 - ], - [ - -73.62547608796622, - 45.488131138908706 - ], - [ - -73.6253746882669, - 45.4882460390487 - ] - ] - ] - }, - "id": 224011, - "properties": { - "name": "03074977", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4855", - "function": "1000", - "height": 18, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62646408839201, - 45.488859939233805 - ], - [ - -73.62638958907104, - 45.488941239040834 - ], - [ - -73.62664138883746, - 45.48905633923508 - ], - [ - -73.62671978847318, - 45.488971539039106 - ], - [ - -73.62646698810141, - 45.48885683875534 - ], - [ - -73.62646408839201, - 45.488859939233805 - ] - ] - ] - }, - "id": 224069, - "properties": { - "name": "03074753", - "address": "rue Fulton (MTL) 4814", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6234246870878, - 45.48305563845605 - ], - [ - -73.62342508704124, - 45.483055438257985 - ], - [ - -73.6236657874955, - 45.48292293739576 - ], - [ - -73.62358288722648, - 45.48284843794819 - ], - [ - -73.62353248722448, - 45.482876137546576 - ], - [ - -73.62349278670864, - 45.482897538328885 - ], - [ - -73.623450286455, - 45.48285823758497 - ], - [ - -73.62345018730247, - 45.48285793804328 - ], - [ - -73.62332118681093, - 45.48288093888515 - ], - [ - -73.62332128680615, - 45.48288103866013 - ], - [ - -73.6234246870878, - 45.48305563845605 - ] - ] - ] - }, - "id": 224167, - "properties": { - "name": "03034933", - "address": "chemin Circle (MTL) 4890", - "function": "1000", - "height": 17, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62301508732274, - 45.48578683804714 - ], - [ - -73.62307208740977, - 45.48592013831407 - ], - [ - -73.62320128725526, - 45.48589263922123 - ], - [ - -73.62315858680635, - 45.4857929382464 - ], - [ - -73.6231828868447, - 45.48578783871228 - ], - [ - -73.62316858691477, - 45.48575423858746 - ], - [ - -73.62301508732274, - 45.48578683804714 - ] - ] - ] - }, - "id": 224287, - "properties": { - "name": "03074812", - "address": "avenue Glencairn (MTL) 4955", - "function": "1000", - "height": 8, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.626140888141, - 45.48270083849638 - ], - [ - -73.62609948768142, - 45.48274013820836 - ], - [ - -73.62611948764408, - 45.482750338383255 - ], - [ - -73.62610678746879, - 45.482762237576594 - ], - [ - -73.62623668736266, - 45.4828258383132 - ], - [ - -73.6262399877756, - 45.482822438645364 - ], - [ - -73.6262919882371, - 45.48276623794638 - ], - [ - -73.62614328828049, - 45.48269813810626 - ], - [ - -73.626140888141, - 45.48270083849638 - ] - ] - ] - }, - "id": 224316, - "properties": { - "name": "03035240", - "address": "rue Snowdon (MTL) 5264", - "function": "1000", - "height": 11, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62383298718845, - 45.48426553838792 - ], - [ - -73.62388288672771, - 45.484350437858936 - ], - [ - -73.62401398691648, - 45.484312238406815 - ], - [ - -73.62400118650467, - 45.484291638626985 - ], - [ - -73.62398218708898, - 45.484259438458274 - ], - [ - -73.62396368725254, - 45.48422753829271 - ], - [ - -73.62383298718845, - 45.48426553838792 - ] - ] - ] - }, - "id": 224496, - "properties": { - "name": "03074704", - "address": "avenue Ponsard (MTL) 5031", - "function": "1000", - "height": 10, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62836240533511, - 45.49040012609884 - ], - [ - -73.62825216349712, - 45.49052589171623 - ], - [ - -73.62835778863118, - 45.49057383920456 - ], - [ - -73.62847158925842, - 45.49044963971363 - ], - [ - -73.62836240533511, - 45.49040012609884 - ] - ] - ] - }, - "id": 224547, - "properties": { - "name": "03007398", - "address": "avenue Victoria (MTL+WMT) 5355", - "function": "1000", - "height": 11, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62322268732217, - 45.48631003845112 - ], - [ - -73.62326418728026, - 45.4864104389688 - ], - [ - -73.62340658681012, - 45.48638133897313 - ], - [ - -73.62341218764679, - 45.486380238709515 - ], - [ - -73.62337068723214, - 45.486279739262514 - ], - [ - -73.62322268732217, - 45.48631003845112 - ] - ] - ] - }, - "id": 224582, - "properties": { - "name": "03074818", - "address": "avenue Glencairn (MTL) 4945", - "function": "1000", - "height": 15, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62992742519776, - 45.490624627270414 - ], - [ - -73.62982427560249, - 45.49073988513988 - ], - [ - -73.62989928978688, - 45.490774038966876 - ], - [ - -73.63000448977445, - 45.49065973883163 - ], - [ - -73.62992742519776, - 45.490624627270414 - ] - ] - ] - }, - "id": 224643, - "properties": { - "name": "03007294", - "address": "avenue Victoria (MTL+WMT) 5432", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62307838701027, - 45.488261838783856 - ], - [ - -73.62308078707234, - 45.48826303929128 - ], - [ - -73.6231640868525, - 45.48816353906634 - ], - [ - -73.62317148794003, - 45.488154839477595 - ], - [ - -73.62323338757948, - 45.48808493929851 - ], - [ - -73.62317100881558, - 45.48805768636678 - ], - [ - -73.62310986553555, - 45.48812656347263 - ], - [ - -73.62311632732172, - 45.48812947740691 - ], - [ - -73.62309930552179, - 45.48814864086649 - ], - [ - -73.62308099585226, - 45.48814038741665 - ], - [ - -73.62302977162723, - 45.488197239952214 - ], - [ - -73.62304215736225, - 45.48820282365073 - ], - [ - -73.62300341731977, - 45.48824646289114 - ], - [ - -73.6230345875823, - 45.48825803912907 - ], - [ - -73.62304088761319, - 45.48824893850395 - ], - [ - -73.62307838701027, - 45.488261838783856 - ] - ] - ] - }, - "id": 224674, - "properties": { - "name": "05200885", - "address": "avenue Victoria (MTL+WMT) 5021", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62306522509374, - 45.489262769082174 - ], - [ - -73.62297838225884, - 45.48935872583983 - ], - [ - -73.62305508706825, - 45.489394139433315 - ], - [ - -73.62314378802407, - 45.48929903996714 - ], - [ - -73.62306522509374, - 45.489262769082174 - ] - ] - ] - }, - "id": 224769, - "properties": { - "name": "03075410", - "address": "avenue Roslyn (MTL) 5042", - "function": "1000", - "height": 16, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62457758715557, - 45.4819797380658 - ], - [ - -73.6245236219304, - 45.48203873325761 - ], - [ - -73.62466909743783, - 45.48210519201408 - ], - [ - -73.62472338797426, - 45.482045838260085 - ], - [ - -73.62457758715557, - 45.4819797380658 - ] - ] - ] - }, - "id": 224813, - "properties": { - "name": "03035124", - "address": "rue Saranac (MTL) 5268", - "function": "1000", - "height": 15, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62972201188927, - 45.490534557667885 - ], - [ - -73.62962041887597, - 45.490648071487065 - ], - [ - -73.6296977894566, - 45.4906822389702 - ], - [ - -73.6297991889944, - 45.49056863981745 - ], - [ - -73.62972201188927, - 45.490534557667885 - ] - ] - ] - }, - "id": 224896, - "properties": { - "name": "05283958", - "address": "rue Victoria (MTL) 5418", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62408148818645, - 45.48846213898111 - ], - [ - -73.62399008752591, - 45.488560439271076 - ], - [ - -73.6239883876292, - 45.48856233889044 - ], - [ - -73.62400288782821, - 45.48856713912333 - ], - [ - -73.62398118836902, - 45.48859943923611 - ], - [ - -73.62396102035996, - 45.48859271678252 - ], - [ - -73.62392913203662, - 45.48862956856229 - ], - [ - -73.62392888849833, - 45.48862993956285 - ], - [ - -73.6239548873223, - 45.488638239422954 - ], - [ - -73.62394828770215, - 45.48864893944841 - ], - [ - -73.6239931874419, - 45.48866893927624 - ], - [ - -73.6240119883795, - 45.48867763926898 - ], - [ - -73.6241739868487, - 45.48850503848313 - ], - [ - -73.62408718689521, - 45.488464739643106 - ], - [ - -73.62408148818645, - 45.48846213898111 - ] - ] - ] - }, - "id": 225117, - "properties": { - "name": "03007418", - "address": "avenue Victoria (MTL+WMT) 5091", - "function": "1000", - "height": 16, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62344688724662, - 45.48673653836038 - ], - [ - -73.62334258729598, - 45.486780038895816 - ], - [ - -73.6233484872955, - 45.486787038724145 - ], - [ - -73.62343214293423, - 45.48688331464175 - ], - [ - -73.62353784510464, - 45.48683571641086 - ], - [ - -73.62345178744518, - 45.486734439123374 - ], - [ - -73.62344688724662, - 45.48673653836038 - ] - ] - ] - }, - "id": 225190, - "properties": { - "name": "03074825", - "address": "avenue Glencairn (MTL) 4915", - "function": "1000", - "height": 13, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62499698727791, - 45.48220053865476 - ], - [ - -73.62493301711633, - 45.48226213024456 - ], - [ - -73.62507925039976, - 45.48232891429158 - ], - [ - -73.62509158767722, - 45.48231713798809 - ], - [ - -73.62514958761494, - 45.482347338093874 - ], - [ - -73.62519598794321, - 45.48230303729582 - ], - [ - -73.62499698727791, - 45.48220053865476 - ] - ] - ] - }, - "id": 225242, - "properties": { - "name": "03116533", - "address": "rue Saranac (MTL) 5263", - "function": "1000", - "height": 14, - "year_of_construction": 1920 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62520988801006, - 45.482544037840384 - ], - [ - -73.62514191301743, - 45.48261913432953 - ], - [ - -73.6252544308775, - 45.482670521814086 - ], - [ - -73.62532298734888, - 45.48259463815491 - ], - [ - -73.62520988801006, - 45.482544037840384 - ] - ] - ] - }, - "id": 225541, - "properties": { - "name": "03035182", - "address": "rue Dalou (MTL) 5242", - "function": "1000", - "height": 10, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63208359120017, - 45.49133033881558 - ], - [ - -73.63208769097291, - 45.49133223994675 - ], - [ - -73.6322793904039, - 45.49111883941242 - ], - [ - -73.63212028958114, - 45.491048139147026 - ], - [ - -73.63192759061135, - 45.49126483850364 - ], - [ - -73.63198159068168, - 45.491286039462516 - ], - [ - -73.6319752899852, - 45.49129273979004 - ], - [ - -73.63201708978865, - 45.49130953928744 - ], - [ - -73.63202008991294, - 45.49130513917699 - ], - [ - -73.63208359120017, - 45.49133033881558 - ] - ] - ] - }, - "id": 225682, - "properties": { - "name": "03007141", - "address": "rue Beaucourt (MTL) 5555", - "function": "1000", - "height": 14, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62967418992662, - 45.491534039344444 - ], - [ - -73.6298546894401, - 45.491611939942864 - ], - [ - -73.62992656206835, - 45.49152957008616 - ], - [ - -73.62975162388356, - 45.49145207091298 - ], - [ - -73.62972788954333, - 45.491479238996874 - ], - [ - -73.6297240898121, - 45.491477039591636 - ], - [ - -73.62967418992662, - 45.491534039344444 - ] - ] - ] - }, - "id": 225755, - "properties": { - "name": "03073257", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4777", - "function": "1000", - "height": 10, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62944839042072, - 45.49104353884651 - ], - [ - -73.62952569417074, - 45.49107794137916 - ], - [ - -73.62963209537561, - 45.490959108610824 - ], - [ - -73.62955508884679, - 45.490924839889296 - ], - [ - -73.62944839042072, - 45.49104353884651 - ] - ] - ] - }, - "id": 225889, - "properties": { - "name": "03007390", - "address": "avenue Victoria (MTL+WMT) 5429", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62953618964325, - 45.49015233882293 - ], - [ - -73.62971748903777, - 45.490234039696126 - ], - [ - -73.62977053078598, - 45.49017577475894 - ], - [ - -73.62958833959695, - 45.49009510710334 - ], - [ - -73.62953618964325, - 45.49015233882293 - ] - ] - ] - }, - "id": 226004, - "properties": { - "name": "03073796", - "address": "avenue Lacombe (MTL) 4819", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6235724865638, - 45.48367133888538 - ], - [ - -73.62367768682861, - 45.48365263780468 - ], - [ - -73.62368428773864, - 45.48365153824406 - ], - [ - -73.62367378649958, - 45.483622238021404 - ], - [ - -73.62366088723948, - 45.48362473826206 - ], - [ - -73.62363338733539, - 45.48354843766829 - ], - [ - -73.62353458731448, - 45.48356603847368 - ], - [ - -73.6235724865638, - 45.48367133888538 - ] - ] - ] - }, - "id": 226030, - "properties": { - "name": "03035091", - "address": "avenue Ponsard (MTL) 5059", - "function": "1000", - "height": 11, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62418958771514, - 45.4830730384896 - ], - [ - -73.6243454871365, - 45.48314703782331 - ], - [ - -73.62439611830855, - 45.48309424989897 - ], - [ - -73.62423743412671, - 45.48302315296758 - ], - [ - -73.62418958771514, - 45.4830730384896 - ] - ] - ] - }, - "id": 226043, - "properties": { - "name": "03035149", - "address": "rue Saranac (MTL) 5197", - "function": "1000", - "height": 14, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62960879010545, - 45.49162173957873 - ], - [ - -73.62954986111818, - 45.491687046991224 - ], - [ - -73.62971715652043, - 45.491761160034415 - ], - [ - -73.62977568989464, - 45.49169633890227 - ], - [ - -73.62960879010545, - 45.49162173957873 - ] - ] - ] - }, - "id": 226075, - "properties": { - "name": "03073259", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4765", - "function": "1000", - "height": 11, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62289988663669, - 45.487932738785815 - ], - [ - -73.62275278749955, - 45.48810243956625 - ], - [ - -73.62280298729647, - 45.4881239396097 - ], - [ - -73.622795486973, - 45.488131739435715 - ], - [ - -73.62282268772286, - 45.48814463917252 - ], - [ - -73.62283322076227, - 45.48814953740382 - ], - [ - -73.62289144448256, - 45.488083950723265 - ], - [ - -73.62290663681131, - 45.48809062382963 - ], - [ - -73.62292194981544, - 45.488073373509465 - ], - [ - -73.62289156645045, - 45.4880600290971 - ], - [ - -73.62290538886312, - 45.488044458594736 - ], - [ - -73.62292058118094, - 45.48805113079945 - ], - [ - -73.62299090932251, - 45.48797190827828 - ], - [ - -73.6229430870825, - 45.4879512390149 - ], - [ - -73.62289988663669, - 45.487932738785815 - ] - ] - ] - }, - "id": 226250, - "properties": { - "name": "03007439", - "address": "avenue Victoria (MTL+WMT) 5009", - "function": "1000", - "height": 12, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62827008854234, - 45.49157973959198 - ], - [ - -73.62824997262292, - 45.491601734594994 - ], - [ - -73.62843615365698, - 45.491684217564845 - ], - [ - -73.6284950896525, - 45.49161973947629 - ], - [ - -73.62830988878451, - 45.49153613969275 - ], - [ - -73.62827008854234, - 45.49157973959198 - ] - ] - ] - }, - "id": 226319, - "properties": { - "name": "03073818", - "address": "avenue Lacombe (MTL) 4687", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6252798870585, - 45.48773543929319 - ], - [ - -73.62525058831815, - 45.48776833918481 - ], - [ - -73.62530008836998, - 45.48779013854799 - ], - [ - -73.62530288782638, - 45.487791439353465 - ], - [ - -73.62540780745576, - 45.48767593700625 - ], - [ - -73.62535601491355, - 45.48765297040579 - ], - [ - -73.62537545830926, - 45.487631276283885 - ], - [ - -73.62537032068902, - 45.487629003513646 - ], - [ - -73.62535588707729, - 45.487644938523836 - ], - [ - -73.62504888777931, - 45.487507838892974 - ], - [ - -73.62497208861097, - 45.48759403907232 - ], - [ - -73.62496848747628, - 45.487598139109586 - ], - [ - -73.6252798870585, - 45.48773543929319 - ] - ] - ] - }, - "id": 226653, - "properties": { - "name": "03075052", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4850", - "function": "1000", - "height": 15, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62339568208154, - 45.488572573060644 - ], - [ - -73.62328029906938, - 45.48869905215123 - ], - [ - -73.62338198773148, - 45.488745238508024 - ], - [ - -73.62349798785856, - 45.488619039400355 - ], - [ - -73.62339568208154, - 45.488572573060644 - ] - ] - ] - }, - "id": 226654, - "properties": { - "name": "03075169", - "address": "avenue Grosvenor (MTL) 5038", - "function": "1000", - "height": 15, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62577858753481, - 45.48981113980395 - ], - [ - -73.62591758827303, - 45.48987543898189 - ], - [ - -73.62598337192881, - 45.48980502283983 - ], - [ - -73.62584250519406, - 45.48974266406373 - ], - [ - -73.62577858753481, - 45.48981113980395 - ] - ] - ] - }, - "id": 226668, - "properties": { - "name": "03111625", - "address": "rue Fulton (MTL) 4724", - "function": "1000", - "height": 10, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62596208871683, - 45.48579303778919 - ], - [ - -73.62592548271323, - 45.48587808749565 - ], - [ - -73.62604508831406, - 45.48590241878951 - ], - [ - -73.62605808859898, - 45.485871038513885 - ], - [ - -73.62607538892509, - 45.485874838366506 - ], - [ - -73.62609678772219, - 45.485821738233376 - ], - [ - -73.62596208871683, - 45.48579303778919 - ] - ] - ] - }, - "id": 226677, - "properties": { - "name": "03074504", - "address": "chemin Circle (MTL) 4414", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62391628752009, - 45.48588323808581 - ], - [ - -73.62390168764378, - 45.48588983899571 - ], - [ - -73.6239248879359, - 45.48595553857429 - ], - [ - -73.62394708745317, - 45.485975538759014 - ], - [ - -73.62402958761292, - 45.485963338182565 - ], - [ - -73.6240489882978, - 45.48595543896429 - ], - [ - -73.62405448723212, - 45.485945238637996 - ], - [ - -73.62405158767366, - 45.4859233386374 - ], - [ - -73.62402478729241, - 45.48586633820436 - ], - [ - -73.62391628752009, - 45.48588323808581 - ] - ] - ] - }, - "id": 226678, - "properties": { - "name": "03074746", - "address": "avenue Ponsard (MTL) 4954", - "function": "1000", - "height": 18, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62404158681095, - 45.482536937631146 - ], - [ - -73.62399186758134, - 45.48259017703638 - ], - [ - -73.62415407718375, - 45.48266428046883 - ], - [ - -73.6242032870201, - 45.48261153826282 - ], - [ - -73.62404158681095, - 45.482536937631146 - ] - ] - ] - }, - "id": 226738, - "properties": { - "name": "03035139", - "address": "rue Saranac (MTL) 5226", - "function": "1000", - "height": 10, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62642428790402, - 45.483562938842624 - ], - [ - -73.62644368759203, - 45.48357283817516 - ], - [ - -73.62643198803185, - 45.48358433766339 - ], - [ - -73.62643568771288, - 45.483586138659994 - ], - [ - -73.62658558822642, - 45.48366303817498 - ], - [ - -73.62664339780635, - 45.483607306905256 - ], - [ - -73.62646366666598, - 45.483524945134214 - ], - [ - -73.62642428790402, - 45.483562938842624 - ] - ] - ] - }, - "id": 226742, - "properties": { - "name": "03035309", - "address": "rue Byron (MTL) 5228", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63153048981843, - 45.49202434001895 - ], - [ - -73.63153409075791, - 45.49202023977822 - ], - [ - -73.63167089075272, - 45.491869039591435 - ], - [ - -73.63112799086944, - 45.49162613995159 - ], - [ - -73.63111298868289, - 45.491642691824744 - ], - [ - -73.63097032041262, - 45.491803277162354 - ], - [ - -73.63097319047542, - 45.49180453905364 - ], - [ - -73.63111678973446, - 45.491869838935614 - ], - [ - -73.63113648986462, - 45.49184773952406 - ], - [ - -73.63153048981843, - 45.49202434001895 - ] - ] - ] - }, - "id": 226902, - "properties": { - "name": "03007376", - "address": "avenue Victoria (MTL+WMT) 5499", - "function": "1000", - "height": 10, - "year_of_construction": 1964 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62355268720844, - 45.488251139594766 - ], - [ - -73.62341768743372, - 45.48841013886914 - ], - [ - -73.62346798667271, - 45.488431239880185 - ], - [ - -73.62346858711106, - 45.488431438996884 - ], - [ - -73.62347698789922, - 45.48842123916552 - ], - [ - -73.62351896304136, - 45.48843844382236 - ], - [ - -73.62365799091151, - 45.48828341378647 - ], - [ - -73.62362658688552, - 45.48826913933485 - ], - [ - -73.62362588665759, - 45.48826893852729 - ], - [ - -73.62361778758795, - 45.48827843886335 - ], - [ - -73.62355268720844, - 45.488251139594766 - ] - ] - ] - }, - "id": 226903, - "properties": { - "name": "03007426", - "address": "avenue Victoria (MTL+WMT) 5055", - "function": "1000", - "height": 11, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62584988799316, - 45.48599343837043 - ], - [ - -73.62581686388906, - 45.486087214397585 - ], - [ - -73.62590803924769, - 45.48610576234123 - ], - [ - -73.62590968783215, - 45.48610213864432 - ], - [ - -73.62594948813167, - 45.4861111382177 - ], - [ - -73.62595548781194, - 45.48611223841263 - ], - [ - -73.62597768829369, - 45.48604393812286 - ], - [ - -73.62594018768692, - 45.48604103877864 - ], - [ - -73.62594498756667, - 45.48601063849138 - ], - [ - -73.62594568771657, - 45.486010239087655 - ], - [ - -73.62584988799316, - 45.48599343837043 - ] - ] - ] - }, - "id": 227025, - "properties": { - "name": "03074509", - "address": "chemin Circle (MTL) 4426", - "function": "1000", - "height": 10, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62302648046801, - 45.48741706294279 - ], - [ - -73.62285072972719, - 45.48761056414301 - ], - [ - -73.62294378689276, - 45.48765133951128 - ], - [ - -73.62311638709012, - 45.48745633882275 - ], - [ - -73.62302648046801, - 45.48741706294279 - ] - ] - ] - }, - "id": 227082, - "properties": { - "name": "03007241", - "address": "avenue Victoria (MTL+WMT) 4988", - "function": "1000", - "height": 11, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63172548957505, - 45.48925563903172 - ], - [ - -73.63186819022063, - 45.48931873891244 - ], - [ - -73.63195558929829, - 45.48922093816808 - ], - [ - -73.6318128900819, - 45.48915783839382 - ], - [ - -73.63172548957505, - 45.48925563903172 - ] - ] - ] - }, - "id": 227136, - "properties": { - "name": "03073246", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4901", - "function": "1000", - "height": 13, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62549518801089, - 45.482875038309814 - ], - [ - -73.62566778693338, - 45.48295923794866 - ], - [ - -73.62571507662649, - 45.482911012635775 - ], - [ - -73.62553967056554, - 45.48282997371392 - ], - [ - -73.62549518801089, - 45.482875038309814 - ] - ] - ] - }, - "id": 227184, - "properties": { - "name": "03035219", - "address": "rue Dalou (MTL) 5243", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62414075129529, - 45.48862387581098 - ], - [ - -73.62403106968608, - 45.48874704702957 - ], - [ - -73.62432779813206, - 45.488881465508534 - ], - [ - -73.62443791860396, - 45.48875849329554 - ], - [ - -73.62414075129529, - 45.48862387581098 - ] - ] - ] - }, - "id": 227325, - "properties": { - "name": "03075044", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4720", - "function": "1000", - "height": 16, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6279384880831, - 45.48737483894526 - ], - [ - -73.62809428843163, - 45.487443439543185 - ], - [ - -73.62814877846805, - 45.48738225640656 - ], - [ - -73.62802878112811, - 45.487329093105046 - ], - [ - -73.62801718966512, - 45.48734163824754 - ], - [ - -73.62798248906554, - 45.48732543941642 - ], - [ - -73.6279384880831, - 45.48737483894526 - ] - ] - ] - }, - "id": 227540, - "properties": { - "name": "03074779", - "address": "rue Fulton (MTL) 4918", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63139388943638, - 45.48665323912864 - ], - [ - -73.63160558938762, - 45.48669503801283 - ], - [ - -73.63163909092593, - 45.48661083863039 - ], - [ - -73.63163699068826, - 45.48661043791982 - ], - [ - -73.63154569062776, - 45.48658893780068 - ], - [ - -73.6315514893675, - 45.48657673911155 - ], - [ - -73.63155118977946, - 45.48657663777401 - ], - [ - -73.63143378977394, - 45.48655343811701 - ], - [ - -73.63139388943638, - 45.48665323912864 - ] - ] - ] - }, - "id": 227774, - "properties": { - "name": "03034756", - "address": "avenue Isabella (CSL+MTL) 5165", - "function": "7119", - "height": 10, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62652378778525, - 45.48346693835268 - ], - [ - -73.62646366666598, - 45.483524945134214 - ], - [ - -73.62664339780635, - 45.483607306905256 - ], - [ - -73.62669688774254, - 45.483555738586766 - ], - [ - -73.62652378778525, - 45.48346693835268 - ] - ] - ] - }, - "id": 227797, - "properties": { - "name": "03035307", - "address": "rue Byron (MTL) 5232", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62687538808262, - 45.4851582384809 - ], - [ - -73.62687538907176, - 45.48516323802442 - ], - [ - -73.62687318807494, - 45.485229038111385 - ], - [ - -73.62687988751864, - 45.485229037868805 - ], - [ - -73.6269698252465, - 45.48523013022926 - ], - [ - -73.62697059822071, - 45.48515965612775 - ], - [ - -73.62687538808262, - 45.4851582384809 - ] - ] - ] - }, - "id": 227841, - "properties": { - "name": "03034988", - "address": "chemin Circle (MTL) 4376", - "function": "1000", - "height": 9, - "year_of_construction": 1953 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62676718853096, - 45.48710343849453 - ], - [ - -73.62676728853975, - 45.487103538266425 - ], - [ - -73.62683198843189, - 45.487046338838454 - ], - [ - -73.62684378809581, - 45.487052938702476 - ], - [ - -73.62685888837997, - 45.48703903911314 - ], - [ - -73.62684038811412, - 45.48702973815564 - ], - [ - -73.6268658886575, - 45.48700483899967 - ], - [ - -73.62686578864873, - 45.48700473922785 - ], - [ - -73.62669088864526, - 45.486930438714815 - ], - [ - -73.62672278772702, - 45.48689333868344 - ], - [ - -73.62689558825143, - 45.486968739292315 - ], - [ - -73.6269905880072, - 45.48686093837579 - ], - [ - -73.62678878867624, - 45.48677293896538 - ], - [ - -73.6268039021298, - 45.486755813420835 - ], - [ - -73.62679733669327, - 45.48675290160923 - ], - [ - -73.62681534745462, - 45.486732806055336 - ], - [ - -73.62675470013804, - 45.486705913090155 - ], - [ - -73.6266280881051, - 45.486846438459594 - ], - [ - -73.62662798854461, - 45.486846538452845 - ], - [ - -73.62666028749064, - 45.486861138634396 - ], - [ - -73.62662498883562, - 45.486899738860636 - ], - [ - -73.6265931881923, - 45.48688543866542 - ], - [ - -73.62659308735239, - 45.48688553866008 - ], - [ - -73.62650448834361, - 45.48698703863579 - ], - [ - -73.62650158834698, - 45.48699053864805 - ], - [ - -73.62676718853096, - 45.48710343849453 - ] - ] - ] - }, - "id": 227845, - "properties": { - "name": "03108501", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4935", - "function": "1000", - "height": 18, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6311622896155, - 45.487625839007535 - ], - [ - -73.63134539020477, - 45.487710538949614 - ], - [ - -73.63139697904421, - 45.48765527768679 - ], - [ - -73.63122223752563, - 45.48757663318396 - ], - [ - -73.63120229004635, - 45.487598438661536 - ], - [ - -73.63119239010041, - 45.48759373844036 - ], - [ - -73.6311622896155, - 45.487625839007535 - ] - ] - ] - }, - "id": 228023, - "properties": { - "name": "05203479", - "address": "avenue Lacombe (MTL) 4990", - "function": "1000", - "height": 8, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62934118901678, - 45.48779853891584 - ], - [ - -73.6292873241603, - 45.487859715610234 - ], - [ - -73.62945736487117, - 45.48793497777845 - ], - [ - -73.62951199010955, - 45.48787293899028 - ], - [ - -73.62934118901678, - 45.48779853891584 - ] - ] - ] - }, - "id": 228037, - "properties": { - "name": "03074573", - "address": "rue Jean-Brillant (MTL) 4919", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63229893257311, - 45.483899625768665 - ], - [ - -73.63220182332296, - 45.48400642217085 - ], - [ - -73.63226479013558, - 45.48403683786805 - ], - [ - -73.63226488991491, - 45.48403683775253 - ], - [ - -73.63228769014619, - 45.484014137924156 - ], - [ - -73.63230340072357, - 45.48402196728741 - ], - [ - -73.63238118830472, - 45.483936417866644 - ], - [ - -73.63229893257311, - 45.483899625768665 - ] - ] - ] - }, - "id": 228060, - "properties": { - "name": "03001414", - "address": "avenue Coolbrook (MTL) 5259", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63238118830472, - 45.483936417866644 - ], - [ - -73.63230340072357, - 45.48402196728741 - ], - [ - -73.63231799067607, - 45.484029238242265 - ], - [ - -73.63229699017968, - 45.48405023798238 - ], - [ - -73.63236069030376, - 45.48408183787464 - ], - [ - -73.6323321893473, - 45.484110337531654 - ], - [ - -73.63233730964532, - 45.48411287816446 - ], - [ - -73.63246346462981, - 45.483973217979894 - ], - [ - -73.63238118830472, - 45.483936417866644 - ] - ] - ] - }, - "id": 228070, - "properties": { - "name": "03001417", - "address": "avenue Coolbrook (MTL) 5263", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6303023898668, - 45.48931543907299 - ], - [ - -73.63031038918645, - 45.48931913911035 - ], - [ - -73.63028899018337, - 45.48934103966154 - ], - [ - -73.63042389050277, - 45.489406339566216 - ], - [ - -73.63049658901166, - 45.48933193920626 - ], - [ - -73.6303536905175, - 45.48926283856878 - ], - [ - -73.6303023898668, - 45.48931543907299 - ] - ] - ] - }, - "id": 228090, - "properties": { - "name": "03073778", - "address": "avenue Lacombe (MTL) 4867", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62810899087657, - 45.48413935431216 - ], - [ - -73.62800419105015, - 45.484254979657734 - ], - [ - -73.62828881274201, - 45.48438263287644 - ], - [ - -73.62838625413333, - 45.4842636483187 - ], - [ - -73.62810899087657, - 45.48413935431216 - ] - ] - ] - }, - "id": 228275, - "properties": { - "name": "03034847", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5222", - "function": "1000", - "height": 17, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62945198995178, - 45.48634133907821 - ], - [ - -73.6297333891568, - 45.48646633865772 - ], - [ - -73.629890688496, - 45.48629113807842 - ], - [ - -73.62960938960022, - 45.48616613876873 - ], - [ - -73.62945198995178, - 45.48634133907821 - ] - ] - ] - }, - "id": 228455, - "properties": { - "name": "03000375", - "address": "avenue de Westbury (MTL) 5215", - "function": "6911", - "height": 11, - "year_of_construction": 1963 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6299474890085, - 45.48482143781446 - ], - [ - -73.63003199584033, - 45.484861487379874 - ], - [ - -73.63014246478114, - 45.4847391885671 - ], - [ - -73.63009938882037, - 45.484718039062024 - ], - [ - -73.63009078850067, - 45.484726938436864 - ], - [ - -73.6300544901164, - 45.484709737819145 - ], - [ - -73.6299474890085, - 45.48482143781446 - ] - ] - ] - }, - "id": 228487, - "properties": { - "name": "03001213", - "address": "avenue Trans Island (MTL) 5164", - "function": "1000", - "height": 9, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6306744989198, - 45.486149657576185 - ], - [ - -73.63057228868271, - 45.48626310464755 - ], - [ - -73.63065268968916, - 45.48629843784559 - ], - [ - -73.63075398945102, - 45.48618463900561 - ], - [ - -73.6306744989198, - 45.486149657576185 - ] - ] - ] - }, - "id": 228489, - "properties": { - "name": "03000255", - "address": "avenue de Westbury (MTL) 5246", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62719588854198, - 45.48620393857619 - ], - [ - -73.62712228926064, - 45.4862852387968 - ], - [ - -73.6274046891445, - 45.486411638661316 - ], - [ - -73.62765628853892, - 45.486133438562845 - ], - [ - -73.62770678907147, - 45.486077939008936 - ], - [ - -73.627424089326, - 45.485951438535814 - ], - [ - -73.62719588854198, - 45.48620393857619 - ] - ] - ] - }, - "id": 228643, - "properties": { - "name": "05217991", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4965", - "function": "1000", - "height": 17, - "year_of_construction": 2013 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62976205975986, - 45.48572780346227 - ], - [ - -73.62963746072444, - 45.48586609918693 - ], - [ - -73.62972808981192, - 45.485906538853556 - ], - [ - -73.62985278976558, - 45.48576823841706 - ], - [ - -73.62976205975986, - 45.48572780346227 - ] - ] - ] - }, - "id": 228665, - "properties": { - "name": "03000240", - "address": "avenue de Westbury (MTL) 5200", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6326910944597, - 45.48359816241291 - ], - [ - -73.6325895556323, - 45.48371057213795 - ], - [ - -73.63267048988929, - 45.48374683825278 - ], - [ - -73.6326754903414, - 45.48374083766897 - ], - [ - -73.63267710754897, - 45.483741499877105 - ], - [ - -73.63275069004554, - 45.483660040386816 - ], - [ - -73.63273849025882, - 45.4836546374897 - ], - [ - -73.63275929083633, - 45.48363143777515 - ], - [ - -73.63275918954395, - 45.48363133800993 - ], - [ - -73.6326910944597, - 45.48359816241291 - ] - ] - ] - }, - "id": 228739, - "properties": { - "name": "03001944", - "address": "avenue Coolbrook (MTL) 5264", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6266513880706, - 45.485193339002066 - ], - [ - -73.62662398875148, - 45.485198339228 - ], - [ - -73.62661968736366, - 45.4851992384431 - ], - [ - -73.62664858922142, - 45.48526533878652 - ], - [ - -73.62673566994499, - 45.4852542343865 - ], - [ - -73.62670875201454, - 45.485182955949874 - ], - [ - -73.6266513880706, - 45.485193339002066 - ] - ] - ] - }, - "id": 228773, - "properties": { - "name": "03034984", - "address": "chemin Circle (MTL) 4380", - "function": "1000", - "height": 10, - "year_of_construction": 1953 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62858578894128, - 45.48865743860391 - ], - [ - -73.62875368906386, - 45.4887319393501 - ], - [ - -73.62882858907821, - 45.48864843922365 - ], - [ - -73.62866068910752, - 45.48857393948616 - ], - [ - -73.62858578894128, - 45.48865743860391 - ] - ] - ] - }, - "id": 228837, - "properties": { - "name": "03074585", - "address": "rue Jean-Brillant (MTL) 4877", - "function": "1000", - "height": 11, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62949838957036, - 45.48762553825254 - ], - [ - -73.62944500421492, - 45.487686464322486 - ], - [ - -73.62961340799453, - 45.48776100194027 - ], - [ - -73.62966778977005, - 45.4876989390561 - ], - [ - -73.62949838957036, - 45.48762553825254 - ] - ] - ] - }, - "id": 228850, - "properties": { - "name": "03074569", - "address": "rue Jean-Brillant (MTL) 4931", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63057329067401, - 45.48932963883452 - ], - [ - -73.63058668995404, - 45.48931443952593 - ], - [ - -73.63059589047273, - 45.48931863938395 - ], - [ - -73.63063778994193, - 45.48927033906315 - ], - [ - -73.63041889034709, - 45.48917663904199 - ], - [ - -73.63041629020357, - 45.48917973927859 - ], - [ - -73.63036758928838, - 45.489239539207254 - ], - [ - -73.63037119026264, - 45.48924103963892 - ], - [ - -73.63057329067401, - 45.48932963883452 - ] - ] - ] - }, - "id": 228883, - "properties": { - "name": "03073776", - "address": "avenue Lacombe (MTL) 4877", - "function": "1000", - "height": 10, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6304895899308, - 45.48972373897042 - ], - [ - -73.63070948925105, - 45.48982223927774 - ], - [ - -73.63083688907015, - 45.48968143950175 - ], - [ - -73.63061699007683, - 45.48958293943688 - ], - [ - -73.6304895899308, - 45.48972373897042 - ] - ] - ] - }, - "id": 228947, - "properties": { - "name": "03073733", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4870", - "function": "1000", - "height": 13, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62836098954361, - 45.489499739794454 - ], - [ - -73.62850448897404, - 45.489562739494595 - ], - [ - -73.62856789089186, - 45.48949126812112 - ], - [ - -73.62843797861397, - 45.4894334984218 - ], - [ - -73.62839518876999, - 45.48948213907662 - ], - [ - -73.62838198912085, - 45.48947623922911 - ], - [ - -73.62836098954361, - 45.489499739794454 - ] - ] - ] - }, - "id": 229000, - "properties": { - "name": "03074299", - "address": "avenue Isabella (CSL+MTL) 4824", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62848848876203, - 45.489357639542 - ], - [ - -73.62846728932246, - 45.4893815389837 - ], - [ - -73.62847928944323, - 45.48938653852557 - ], - [ - -73.62843797861397, - 45.4894334984218 - ], - [ - -73.62856789089186, - 45.48949126812112 - ], - [ - -73.62863098894393, - 45.489420138994944 - ], - [ - -73.62848848876203, - 45.489357639542 - ] - ] - ] - }, - "id": 229001, - "properties": { - "name": "03074300", - "address": "avenue Isabella (CSL+MTL) 4828", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6280485891241, - 45.487251438513134 - ], - [ - -73.62800558896465, - 45.487299839017666 - ], - [ - -73.62804148923429, - 45.4873153391167 - ], - [ - -73.62802878112811, - 45.487329093105046 - ], - [ - -73.62814877846805, - 45.48738225640656 - ], - [ - -73.62820418841385, - 45.487320038288146 - ], - [ - -73.6280485891241, - 45.487251438513134 - ] - ] - ] - }, - "id": 229044, - "properties": { - "name": "03074781", - "address": "rue Fulton (MTL) 4922", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62923289009252, - 45.48792153901172 - ], - [ - -73.62940368885444, - 45.487995938349336 - ], - [ - -73.62945736487117, - 45.48793497777845 - ], - [ - -73.6292873241603, - 45.487859715610234 - ], - [ - -73.62923289009252, - 45.48792153901172 - ] - ] - ] - }, - "id": 229062, - "properties": { - "name": "03074575", - "address": "rue Jean-Brillant (MTL) 4915", - "function": "1000", - "height": 9, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.628209988179, - 45.489693239352405 - ], - [ - -73.62834018894804, - 45.48974943875414 - ], - [ - -73.62840357205047, - 45.4896768228921 - ], - [ - -73.62827442921856, - 45.48961941208186 - ], - [ - -73.628209988179, - 45.489693239352405 - ] - ] - ] - }, - "id": 229069, - "properties": { - "name": "03074295", - "address": "avenue Isabella (CSL+MTL) 4812", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62809718842172, - 45.48719783870344 - ], - [ - -73.62825128962913, - 45.48726533958363 - ], - [ - -73.6283063526672, - 45.48720312540326 - ], - [ - -73.62818961079962, - 45.48715140376448 - ], - [ - -73.62817748893076, - 45.48716413848649 - ], - [ - -73.62814628916101, - 45.48714933863563 - ], - [ - -73.62814198852453, - 45.4871472387211 - ], - [ - -73.62809718842172, - 45.48719783870344 - ] - ] - ] - }, - "id": 229084, - "properties": { - "name": "03074783", - "address": "rue Fulton (MTL) 4934", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62749508798241, - 45.48859593926969 - ], - [ - -73.62744018517638, - 45.48865872246713 - ], - [ - -73.62761560184529, - 45.48873636595903 - ], - [ - -73.62767158810036, - 45.4886724395632 - ], - [ - -73.62749508798241, - 45.48859593926969 - ] - ] - ] - }, - "id": 229111, - "properties": { - "name": "03074727", - "address": "rue Fulton (MTL) 4845", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62738638857405, - 45.4887202392211 - ], - [ - -73.62756308933562, - 45.48879653879132 - ], - [ - -73.62758978878878, - 45.488765839538395 - ], - [ - -73.62761560184529, - 45.48873636595903 - ], - [ - -73.62744018517638, - 45.48865872246713 - ], - [ - -73.62738638857405, - 45.4887202392211 - ] - ] - ] - }, - "id": 229112, - "properties": { - "name": "03074729", - "address": "rue Fulton (MTL) 4841", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6306610895538, - 45.48823073892814 - ], - [ - -73.63059060202671, - 45.48831232034656 - ], - [ - -73.63074868861958, - 45.4883823220576 - ], - [ - -73.6308205906034, - 45.48829893923159 - ], - [ - -73.63081439010948, - 45.488296339480065 - ], - [ - -73.6306610895538, - 45.48823073892814 - ] - ] - ] - }, - "id": 229141, - "properties": { - "name": "03074189", - "address": "avenue Lacombe (MTL) 4926", - "function": "1000", - "height": 8, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6316018953543, - 45.49023154676508 - ], - [ - -73.63164563817445, - 45.49025078184369 - ], - [ - -73.63210859075011, - 45.48973633941815 - ], - [ - -73.63151199053976, - 45.489470738419094 - ], - [ - -73.63151189075084, - 45.489470738533996 - ], - [ - -73.63144719084873, - 45.48953753833893 - ], - [ - -73.63145198992453, - 45.48953983911994 - ], - [ - -73.6314805900315, - 45.489553139212184 - ], - [ - -73.63135918938133, - 45.489682238420635 - ], - [ - -73.63141339020876, - 45.48970743923558 - ], - [ - -73.63138208996816, - 45.48974063904028 - ], - [ - -73.63148569037676, - 45.48978883882827 - ], - [ - -73.63139799082595, - 45.489881939656925 - ], - [ - -73.6316319897614, - 45.489990939357455 - ], - [ - -73.6315209903101, - 45.490108739982304 - ], - [ - -73.63151149046944, - 45.490118938968045 - ], - [ - -73.63150187508103, - 45.490129515121204 - ], - [ - -73.6316389931251, - 45.49018981148861 - ], - [ - -73.6316018953543, - 45.49023154676508 - ] - ] - ] - }, - "id": 229148, - "properties": { - "name": "03073176", - "address": "avenue Saint-Kevin (MTL) 4894", - "function": "6911", - "height": 14, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63067088945594, - 45.48948293916624 - ], - [ - -73.63092189023776, - 45.489591838992446 - ], - [ - -73.63102329072808, - 45.489476139390824 - ], - [ - -73.63101989057871, - 45.48947463874944 - ], - [ - -73.6309507891821, - 45.489442638501146 - ], - [ - -73.63098689012936, - 45.48940413861773 - ], - [ - -73.63105489033259, - 45.48943573877677 - ], - [ - -73.63105898969944, - 45.48943753916327 - ], - [ - -73.6311630902216, - 45.489320139228056 - ], - [ - -73.6309111896549, - 45.489209638333215 - ], - [ - -73.63080938945363, - 45.48932443845308 - ], - [ - -73.63088179029131, - 45.4893565393892 - ], - [ - -73.63084509019262, - 45.48939763957932 - ], - [ - -73.63077749068431, - 45.48936773954421 - ], - [ - -73.63077349007196, - 45.48936603891738 - ], - [ - -73.63067088945594, - 45.48948293916624 - ] - ] - ] - }, - "id": 229162, - "properties": { - "name": "03073735", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4890", - "function": "1000", - "height": 16, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62914997546531, - 45.488056548438905 - ], - [ - -73.62908588916723, - 45.488128138806765 - ], - [ - -73.62921838929394, - 45.48818683889461 - ], - [ - -73.62928249969855, - 45.48811520523329 - ], - [ - -73.62914997546531, - 45.488056548438905 - ] - ] - ] - }, - "id": 229168, - "properties": { - "name": "03074579", - "address": "rue Jean-Brillant (MTL) 4903", - "function": "1000", - "height": 10, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63177198990735, - 45.48766783856299 - ], - [ - -73.6319275907184, - 45.48774123843524 - ], - [ - -73.63199689019483, - 45.487668638016 - ], - [ - -73.6318412907734, - 45.487595238235585 - ], - [ - -73.63177198990735, - 45.48766783856299 - ] - ] - ] - }, - "id": 229196, - "properties": { - "name": "03073749", - "address": "avenue Lacombe (MTL) 5015", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63112229007287, - 45.48765363886989 - ], - [ - -73.63108329050007, - 45.48769063849229 - ], - [ - -73.63108779004469, - 45.48769293873324 - ], - [ - -73.63111608906841, - 45.48770703832949 - ], - [ - -73.63110018960971, - 45.48772293885424 - ], - [ - -73.63110048919887, - 45.48772303839327 - ], - [ - -73.63127208961967, - 45.48779863891303 - ], - [ - -73.63127608980436, - 45.487794138687114 - ], - [ - -73.63132279033337, - 45.487742639032135 - ], - [ - -73.63112298950911, - 45.487652938886924 - ], - [ - -73.63112229007287, - 45.48765363886989 - ] - ] - ] - }, - "id": 229206, - "properties": { - "name": "03074199", - "address": "avenue Lacombe (MTL) 4988", - "function": "1000", - "height": 9, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6283902898627, - 45.487605739031636 - ], - [ - -73.62832407192558, - 45.48768077148357 - ], - [ - -73.62844896078127, - 45.487736050807236 - ], - [ - -73.62851568902083, - 45.487660438208906 - ], - [ - -73.6283902898627, - 45.487605739031636 - ] - ] - ] - }, - "id": 229207, - "properties": { - "name": "03074711", - "address": "rue Fulton (MTL) 4905", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62825808860471, - 45.48775553907808 - ], - [ - -73.62838348924724, - 45.48781023839736 - ], - [ - -73.62844896078127, - 45.487736050807236 - ], - [ - -73.62832407192558, - 45.48768077148357 - ], - [ - -73.62825808860471, - 45.48775553907808 - ] - ] - ] - }, - "id": 229208, - "properties": { - "name": "03074713", - "address": "rue Fulton (MTL) 4903", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62631508829716, - 45.488615039281 - ], - [ - -73.6264704884493, - 45.48868423911885 - ], - [ - -73.62652273436804, - 45.48862623121138 - ], - [ - -73.62636764813824, - 45.48855663426477 - ], - [ - -73.62631508829716, - 45.488615039281 - ] - ] - ] - }, - "id": 229211, - "properties": { - "name": "03074857", - "address": "avenue Dornal (MTL) 4829", - "function": "1000", - "height": 10, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62822507137757, - 45.482056157100324 - ], - [ - -73.62813135671422, - 45.48216084422442 - ], - [ - -73.62820528053938, - 45.4821946162036 - ], - [ - -73.62829936003918, - 45.48208952007935 - ], - [ - -73.62822507137757, - 45.482056157100324 - ] - ] - ] - }, - "id": 229216, - "properties": { - "name": "03001344", - "address": "avenue Coolbrook (MTL) 4931", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62638558765164, - 45.4853992383224 - ], - [ - -73.62649373124208, - 45.48535311578888 - ], - [ - -73.62644427653909, - 45.485291941421266 - ], - [ - -73.62633378754951, - 45.4853389393531 - ], - [ - -73.62638558765164, - 45.4853992383224 - ] - ] - ] - }, - "id": 229248, - "properties": { - "name": "03074493", - "address": "chemin Circle (MTL) 4386", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62609138790438, - 45.48551953812587 - ], - [ - -73.62620258800824, - 45.48558393877782 - ], - [ - -73.62628432754249, - 45.485513480483505 - ], - [ - -73.62617769334763, - 45.48544687474334 - ], - [ - -73.62609138790438, - 45.48551953812587 - ] - ] - ] - }, - "id": 229249, - "properties": { - "name": "03074498", - "address": "chemin Circle (MTL) 4394", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6260498879343, - 45.48557423877415 - ], - [ - -73.625998065282, - 45.485656374499456 - ], - [ - -73.62614990608677, - 45.48570169052458 - ], - [ - -73.62620678781569, - 45.485624038473034 - ], - [ - -73.62618888817562, - 45.485617638747385 - ], - [ - -73.6260498879343, - 45.48557423877415 - ] - ] - ] - }, - "id": 229250, - "properties": { - "name": "03074500", - "address": "chemin Circle (MTL) 4400", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6290897403213, - 45.48941812323287 - ], - [ - -73.6290221890366, - 45.48949243949579 - ], - [ - -73.62916488954659, - 45.48955653887984 - ], - [ - -73.62923292650004, - 45.48948150030792 - ], - [ - -73.6290897403213, - 45.48941812323287 - ] - ] - ] - }, - "id": 229254, - "properties": { - "name": "03074236", - "address": "avenue Isabella (CSL+MTL) 4841", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63105419015817, - 45.48897273942274 - ], - [ - -73.63136519015923, - 45.48910903901238 - ], - [ - -73.63143528906083, - 45.48902983856561 - ], - [ - -73.63137868976978, - 45.489005039148225 - ], - [ - -73.631446090172, - 45.48892903894787 - ], - [ - -73.63150319033711, - 45.48895413920381 - ], - [ - -73.63150329012512, - 45.48895413908893 - ], - [ - -73.63157259022496, - 45.48887763811186 - ], - [ - -73.63126399021759, - 45.48873933866647 - ], - [ - -73.63119388981572, - 45.488816739322964 - ], - [ - -73.6312784900503, - 45.48885383903749 - ], - [ - -73.63120959047252, - 45.488931639653046 - ], - [ - -73.6311238902871, - 45.48889413891974 - ], - [ - -73.63105419015817, - 45.48897273942274 - ] - ] - ] - }, - "id": 229261, - "properties": { - "name": "03073737", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4910", - "function": "1000", - "height": 14, - "year_of_construction": 1955 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63067068918822, - 45.48815753900777 - ], - [ - -73.63085938914638, - 45.48824613864514 - ], - [ - -73.63092968989297, - 45.48817193870721 - ], - [ - -73.63074098902462, - 45.48808343906871 - ], - [ - -73.63067068918822, - 45.48815753900777 - ] - ] - ] - }, - "id": 229270, - "properties": { - "name": "03074191", - "address": "avenue Lacombe (MTL) 4936", - "function": "1000", - "height": 10, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63108308911784, - 45.48777203876009 - ], - [ - -73.63101457523456, - 45.4878518634829 - ], - [ - -73.63115276776628, - 45.4879130554717 - ], - [ - -73.63122289081143, - 45.48783153890821 - ], - [ - -73.63108308911784, - 45.48777203876009 - ] - ] - ] - }, - "id": 229282, - "properties": { - "name": "03074197", - "address": "avenue Lacombe (MTL) 4972", - "function": "1000", - "height": 9, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6261416887087, - 45.48879873908778 - ], - [ - -73.62631138851054, - 45.48887433924586 - ], - [ - -73.62636441960652, - 45.488815458594246 - ], - [ - -73.62619504394806, - 45.4887394496262 - ], - [ - -73.6261416887087, - 45.48879873908778 - ] - ] - ] - }, - "id": 229287, - "properties": { - "name": "03074861", - "address": "avenue Dornal (MTL) 4817", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62689918802997, - 45.48851093933827 - ], - [ - -73.62706488813961, - 45.48858453886819 - ], - [ - -73.62711228807164, - 45.48853143933873 - ], - [ - -73.62711678818118, - 45.488526639054186 - ], - [ - -73.62711138831018, - 45.48852443864207 - ], - [ - -73.62713071668333, - 45.48850296301514 - ], - [ - -73.62696991403729, - 45.48843223494212 - ], - [ - -73.62689918802997, - 45.48851093933827 - ] - ] - ] - }, - "id": 229302, - "properties": { - "name": "03074759", - "address": "rue Fulton (MTL) 4840", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62810196281379, - 45.4836810507056 - ], - [ - -73.62804420235034, - 45.48373640382248 - ], - [ - -73.6282118696233, - 45.48381370871109 - ], - [ - -73.6282661545646, - 45.48375675318732 - ], - [ - -73.62810196281379, - 45.4836810507056 - ] - ] - ] - }, - "id": 229313, - "properties": { - "name": "03035405", - "address": "rue Globert (MTL) 5249", - "function": "1000", - "height": 9, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62748948814857, - 45.48730003827116 - ], - [ - -73.62766218882577, - 45.487377239317574 - ], - [ - -73.62771752248776, - 45.487316128330654 - ], - [ - -73.62754434837403, - 45.48723940211441 - ], - [ - -73.62748948814857, - 45.48730003827116 - ] - ] - ] - }, - "id": 229338, - "properties": { - "name": "03074832", - "address": "avenue Dornal (MTL) 4911", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62697848753052, - 45.487873439308494 - ], - [ - -73.62713968902617, - 45.4879447383344 - ], - [ - -73.62719250440931, - 45.48788570905422 - ], - [ - -73.62703193328858, - 45.48781365083123 - ], - [ - -73.62697848753052, - 45.487873439308494 - ] - ] - ] - }, - "id": 229347, - "properties": { - "name": "03074841", - "address": "avenue Dornal (MTL) 4877", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62808678888274, - 45.48283493770255 - ], - [ - -73.62827508860875, - 45.48262433870494 - ], - [ - -73.6281310886826, - 45.48256063732156 - ], - [ - -73.62802058782158, - 45.482684138266315 - ], - [ - -73.62800284563663, - 45.48267633848411 - ], - [ - -73.62792554503827, - 45.482762748249264 - ], - [ - -73.62808678888274, - 45.48283493770255 - ] - ] - ] - }, - "id": 229422, - "properties": { - "name": "05089652", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 4980", - "function": "1000", - "height": 12, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63103969043676, - 45.48875713958721 - ], - [ - -73.63106128980588, - 45.488731938929845 - ], - [ - -73.63106718925144, - 45.48873433834766 - ], - [ - -73.63109849674731, - 45.488697808286865 - ], - [ - -73.63091906354131, - 45.48861855322479 - ], - [ - -73.630864089493, - 45.48868263842616 - ], - [ - -73.63103969043676, - 45.48875713958721 - ] - ] - ] - }, - "id": 229424, - "properties": { - "name": "03073766", - "address": "avenue Lacombe (MTL) 4917", - "function": "1000", - "height": 13, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63220508996751, - 45.487496438531146 - ], - [ - -73.63224668994856, - 45.4874503389738 - ], - [ - -73.63226647357169, - 45.487428682877386 - ], - [ - -73.63208401835448, - 45.48734717811354 - ], - [ - -73.6320227896607, - 45.487415038773094 - ], - [ - -73.63220508996751, - 45.487496438531146 - ] - ] - ] - }, - "id": 229498, - "properties": { - "name": "03000765", - "address": "avenue Lacombe (MTL) 5103", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63259089004886, - 45.48738213838397 - ], - [ - -73.63283869048223, - 45.487488738647414 - ], - [ - -73.63292489073851, - 45.4873895392639 - ], - [ - -73.63292499028668, - 45.48738943836534 - ], - [ - -73.63287779062028, - 45.48736773861174 - ], - [ - -73.63292199051041, - 45.48732043898818 - ], - [ - -73.63296759089633, - 45.487341538588595 - ], - [ - -73.63296769044646, - 45.487341438589816 - ], - [ - -73.63305769067506, - 45.487241538199456 - ], - [ - -73.63281259004471, - 45.48713213854691 - ], - [ - -73.63272199097463, - 45.48723263873912 - ], - [ - -73.63272189014498, - 45.48723273873917 - ], - [ - -73.6327717905768, - 45.487254038586514 - ], - [ - -73.63273138976656, - 45.48730063815736 - ], - [ - -73.63268079091826, - 45.487278838789535 - ], - [ - -73.63259089004886, - 45.48738213838397 - ] - ] - ] - }, - "id": 229512, - "properties": { - "name": "03000791", - "address": "boulevard \u00c9douard-Montpetit (MTL) 5120", - "function": "1000", - "height": 17, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62788908906627, - 45.48742793836707 - ], - [ - -73.62784748833236, - 45.48747413802093 - ], - [ - -73.62785088805123, - 45.48747553887488 - ], - [ - -73.62788348921393, - 45.48749053880205 - ], - [ - -73.62786845184635, - 45.487506743859925 - ], - [ - -73.62798763239964, - 45.48755954650546 - ], - [ - -73.62804398849794, - 45.487496938673246 - ], - [ - -73.62788908906627, - 45.48742793836707 - ] - ] - ] - }, - "id": 229526, - "properties": { - "name": "03074777", - "address": "rue Fulton (MTL) 4906", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63114458953623, - 45.48836473874924 - ], - [ - -73.6312978897097, - 45.48844023875175 - ], - [ - -73.631375089749, - 45.488362838859516 - ], - [ - -73.6312217894509, - 45.48828723907688 - ], - [ - -73.63114458953623, - 45.48836473874924 - ] - ] - ] - }, - "id": 229546, - "properties": { - "name": "03073761", - "address": "avenue Lacombe (MTL) 4937", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6317740901628, - 45.48332983787362 - ], - [ - -73.63177108938984, - 45.48333323825523 - ], - [ - -73.63185128906994, - 45.48336653810707 - ], - [ - -73.63185618950602, - 45.48336863809085 - ], - [ - -73.63195278948868, - 45.48325703737929 - ], - [ - -73.63187239010651, - 45.483222537433605 - ], - [ - -73.63186738990461, - 45.48322043756564 - ], - [ - -73.6317740901628, - 45.48332983787362 - ] - ] - ] - }, - "id": 229629, - "properties": { - "name": "03001962", - "address": "avenue Coolbrook (MTL) 5216", - "function": "1000", - "height": 9, - "year_of_construction": 1910 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62761688865184, - 45.48974013936646 - ], - [ - -73.62771345112829, - 45.48978288027859 - ], - [ - -73.6278342446334, - 45.489647418321205 - ], - [ - -73.62773788863865, - 45.48960483925141 - ], - [ - -73.62761688865184, - 45.48974013936646 - ] - ] - ] - }, - "id": 229645, - "properties": { - "name": "03007279", - "address": "avenue Victoria (MTL+WMT) 5250", - "function": "1000", - "height": 13, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62979128987403, - 45.485936238461996 - ], - [ - -73.62990818809887, - 45.48598575727396 - ], - [ - -73.62998532558122, - 45.48590014006581 - ], - [ - -73.62996038884924, - 45.485890138757235 - ], - [ - -73.63001238954533, - 45.485826638644035 - ], - [ - -73.62997108865166, - 45.485810038495 - ], - [ - -73.6299826900926, - 45.485796038088566 - ], - [ - -73.62994948865766, - 45.485781838502156 - ], - [ - -73.62993958928071, - 45.48579333809689 - ], - [ - -73.62992048914239, - 45.48578523781324 - ], - [ - -73.62979128987403, - 45.485936238461996 - ] - ] - ] - }, - "id": 229689, - "properties": { - "name": "03000242", - "address": "avenue de Westbury (MTL) 5208", - "function": "1000", - "height": 10, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62660348920917, - 45.48870263850049 - ], - [ - -73.62652648904127, - 45.48878443878542 - ], - [ - -73.62652838830782, - 45.488785339226645 - ], - [ - -73.62678528803647, - 45.488897438771886 - ], - [ - -73.6267853878244, - 45.48889743866113 - ], - [ - -73.62686068926659, - 45.48881583895576 - ], - [ - -73.62660628806377, - 45.48869963981275 - ], - [ - -73.62660348920917, - 45.48870263850049 - ] - ] - ] - }, - "id": 229693, - "properties": { - "name": "03074755", - "address": "rue Fulton (MTL) 4822", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6307046227829, - 45.482140011890344 - ], - [ - -73.6304506005272, - 45.48242062245682 - ], - [ - -73.630659280697, - 45.482514021970836 - ], - [ - -73.63066459002304, - 45.48250933759584 - ], - [ - -73.63072158929751, - 45.48254133840861 - ], - [ - -73.63097759045004, - 45.4822649380577 - ], - [ - -73.630723803527, - 45.48214860417185 - ], - [ - -73.6307046227829, - 45.482140011890344 - ] - ] - ] - }, - "id": 229718, - "properties": { - "name": "03034796", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5415", - "function": "5010", - "height": 10, - "year_of_construction": 1963 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6304506005272, - 45.48242062245682 - ], - [ - -73.63037716520853, - 45.48250174287273 - ], - [ - -73.63057297180521, - 45.482590177485896 - ], - [ - -73.630659280697, - 45.482514021970836 - ], - [ - -73.6304506005272, - 45.48242062245682 - ] - ] - ] - }, - "id": 229719, - "properties": { - "name": "03034798", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5375", - "function": "5010", - "height": 10, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63098152388775, - 45.48331486175518 - ], - [ - -73.63088678956527, - 45.48341818811902 - ], - [ - -73.6308884890454, - 45.48341903742627 - ], - [ - -73.63087708929658, - 45.483430338160545 - ], - [ - -73.63090558975887, - 45.4834445383714 - ], - [ - -73.63090578931536, - 45.483444538142706 - ], - [ - -73.6309268898192, - 45.483430138014434 - ], - [ - -73.63096737554001, - 45.48345937800083 - ], - [ - -73.63106605773179, - 45.48334956364827 - ], - [ - -73.63098152388775, - 45.48331486175518 - ] - ] - ] - }, - "id": 229733, - "properties": { - "name": "03001384", - "address": "avenue Coolbrook (MTL) 5177", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62866713988284, - 45.48225468625535 - ], - [ - -73.62857186140384, - 45.482361122100734 - ], - [ - -73.62859598817556, - 45.482372937821104 - ], - [ - -73.62859618878026, - 45.48237283771229 - ], - [ - -73.62864342192944, - 45.48239550655116 - ], - [ - -73.62874013448437, - 45.4822874673037 - ], - [ - -73.62866713988284, - 45.48225468625535 - ] - ] - ] - }, - "id": 229736, - "properties": { - "name": "03001356", - "address": "avenue Coolbrook (MTL) 4955", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63106605773179, - 45.48334956364827 - ], - [ - -73.63096737554001, - 45.48345937800083 - ], - [ - -73.63099418943509, - 45.48347883792525 - ], - [ - -73.63103788363561, - 45.48350924310724 - ], - [ - -73.6311502997426, - 45.483384146134114 - ], - [ - -73.63106605773179, - 45.48334956364827 - ] - ] - ] - }, - "id": 229754, - "properties": { - "name": "03001386", - "address": "avenue Coolbrook (MTL) 5187", - "function": "1000", - "height": 8, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63179278954486, - 45.48688693835511 - ], - [ - -73.63176608929926, - 45.48691593879297 - ], - [ - -73.63178289003184, - 45.48692353840548 - ], - [ - -73.63175576846531, - 45.48695291096307 - ], - [ - -73.6319247660107, - 45.487028250759856 - ], - [ - -73.63197749023539, - 45.486971038851 - ], - [ - -73.63179278954486, - 45.48688693835511 - ] - ] - ] - }, - "id": 229804, - "properties": { - "name": "03000773", - "address": "avenue Lacombe (MTL) 5122", - "function": "1000", - "height": 9, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63196218930841, - 45.48671053857677 - ], - [ - -73.63190724044772, - 45.48677150900651 - ], - [ - -73.63208146771693, - 45.48684918033389 - ], - [ - -73.63213639094647, - 45.48678823864588 - ], - [ - -73.63196218930841, - 45.48671053857677 - ] - ] - ] - }, - "id": 229805, - "properties": { - "name": "03000777", - "address": "avenue Lacombe (MTL) 5138", - "function": "1000", - "height": 9, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62807873132289, - 45.48199043721618 - ], - [ - -73.6279832586053, - 45.482096123221154 - ], - [ - -73.6280143885372, - 45.48211183835174 - ], - [ - -73.62801758797059, - 45.48210853772842 - ], - [ - -73.62805882069173, - 45.482127549359724 - ], - [ - -73.6281520748126, - 45.48202337482389 - ], - [ - -73.62807873132289, - 45.48199043721618 - ] - ] - ] - }, - "id": 229837, - "properties": { - "name": "03001340", - "address": "avenue Coolbrook (MTL) 4923", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6278342446334, - 45.489647418321205 - ], - [ - -73.62771345112829, - 45.48978288027859 - ], - [ - -73.62781208966412, - 45.489826539327616 - ], - [ - -73.62793318893088, - 45.48969113901383 - ], - [ - -73.6278342446334, - 45.489647418321205 - ] - ] - ] - }, - "id": 229868, - "properties": { - "name": "03007281", - "address": "avenue Victoria (MTL+WMT) 5260", - "function": "1000", - "height": 13, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63124268978115, - 45.485657338441456 - ], - [ - -73.6311246901439, - 45.485783938308835 - ], - [ - -73.63114958957686, - 45.485795438549594 - ], - [ - -73.63114199011666, - 45.485803438806485 - ], - [ - -73.63114239052564, - 45.4858034383468 - ], - [ - -73.63119812478233, - 45.48582845485169 - ], - [ - -73.63130620775961, - 45.485709124466766 - ], - [ - -73.63126398996374, - 45.4856900386646 - ], - [ - -73.63127888947038, - 45.48567403847783 - ], - [ - -73.63124268978115, - 45.485657338441456 - ] - ] - ] - }, - "id": 229888, - "properties": { - "name": "03000729", - "address": "avenue Trans Island (MTL) 5241", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63200738902914, - 45.48331033788165 - ], - [ - -73.63199079030268, - 45.48332853845822 - ], - [ - -73.63195608940141, - 45.48331273765538 - ], - [ - -73.63187808921428, - 45.48339753746952 - ], - [ - -73.63192558939728, - 45.4834191374212 - ], - [ - -73.63192578895371, - 45.483419137190715 - ], - [ - -73.63193558936739, - 45.48340833761379 - ], - [ - -73.6319661152253, - 45.4834220538029 - ], - [ - -73.63203327029807, - 45.48334771098167 - ], - [ - -73.63203288996812, - 45.483347537750944 - ], - [ - -73.632049689524, - 45.48332933783602 - ], - [ - -73.63204388910037, - 45.483326938352214 - ], - [ - -73.63200738902914, - 45.48331033788165 - ] - ] - ] - }, - "id": 229893, - "properties": { - "name": "03001960", - "address": "avenue Coolbrook (MTL) 5224", - "function": "1000", - "height": 11, - "year_of_construction": 1910 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62648238876469, - 45.48842643910105 - ], - [ - -73.62665678946458, - 45.488504338949824 - ], - [ - -73.62670697152735, - 45.488448636849185 - ], - [ - -73.62653289923232, - 45.48837052074957 - ], - [ - -73.62648238876469, - 45.48842643910105 - ] - ] - ] - }, - "id": 229904, - "properties": { - "name": "03074852", - "address": "avenue Dornal (MTL) 4841", - "function": "1000", - "height": 10, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63149348962762, - 45.48594183775077 - ], - [ - -73.6315974898174, - 45.485836138159584 - ], - [ - -73.63154378944662, - 45.485810038792394 - ], - [ - -73.6315105530951, - 45.4857947499865 - ], - [ - -73.63140345489867, - 45.48591165434535 - ], - [ - -73.63144268976703, - 45.485930238714204 - ], - [ - -73.63145148961948, - 45.48592133811001 - ], - [ - -73.63149348962762, - 45.48594183775077 - ] - ] - ] - }, - "id": 229905, - "properties": { - "name": "03000735", - "address": "avenue Trans Island (MTL) 5257", - "function": "1000", - "height": 10, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62844707457292, - 45.48215585722852 - ], - [ - -73.628352264122, - 45.482261771355184 - ], - [ - -73.62842508861347, - 45.48229463828135 - ], - [ - -73.62842068888436, - 45.482299437610045 - ], - [ - -73.62842082974166, - 45.482299502240615 - ], - [ - -73.6285200714798, - 45.482188639315325 - ], - [ - -73.62844707457292, - 45.48215585722852 - ] - ] - ] - }, - "id": 229914, - "properties": { - "name": "03001350", - "address": "avenue Coolbrook (MTL) 4943", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62982848960357, - 45.489129339046656 - ], - [ - -73.6297766866601, - 45.48918788336586 - ], - [ - -73.62995387892616, - 45.48926669644063 - ], - [ - -73.63000648948248, - 45.48920723957935 - ], - [ - -73.62982848960357, - 45.489129339046656 - ] - ] - ] - }, - "id": 229954, - "properties": { - "name": "03074173", - "address": "avenue Lacombe (MTL) 4876", - "function": "1000", - "height": 8, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63090057021543, - 45.483281628745104 - ], - [ - -73.6308045802258, - 45.48338632424672 - ], - [ - -73.63083358975726, - 45.48340493853877 - ], - [ - -73.63083408934185, - 45.483405237615386 - ], - [ - -73.63084308845647, - 45.483396337725694 - ], - [ - -73.63088678956527, - 45.48341818811902 - ], - [ - -73.63098152388775, - 45.48331486175518 - ], - [ - -73.63090057021543, - 45.483281628745104 - ] - ] - ] - }, - "id": 229985, - "properties": { - "name": "03001381", - "address": "avenue Coolbrook (MTL) 5173", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63060878959013, - 45.483312238074504 - ], - [ - -73.63071038956743, - 45.48320053731171 - ], - [ - -73.63064007261377, - 45.48316887837332 - ], - [ - -73.63053844956376, - 45.48328059439796 - ], - [ - -73.63060878959013, - 45.483312238074504 - ] - ] - ] - }, - "id": 230083, - "properties": { - "name": "03001375", - "address": "avenue Coolbrook (MTL) 5159", - "function": "1000", - "height": 8, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6281520748126, - 45.48202337482389 - ], - [ - -73.62805882069173, - 45.482127549359724 - ], - [ - -73.62813135671422, - 45.48216084422442 - ], - [ - -73.62822507137757, - 45.482056157100324 - ], - [ - -73.6281520748126, - 45.48202337482389 - ] - ] - ] - }, - "id": 230088, - "properties": { - "name": "03001342", - "address": "avenue Coolbrook (MTL) 4927", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63012587784075, - 45.488809491632104 - ], - [ - -73.63006829222395, - 45.48887274256705 - ], - [ - -73.63023965683308, - 45.48894891179374 - ], - [ - -73.63029698966878, - 45.48888593911384 - ], - [ - -73.63020827164338, - 45.48884597195973 - ], - [ - -73.63012587784075, - 45.488809491632104 - ] - ] - ] - }, - "id": 230125, - "properties": { - "name": "03074181", - "address": "avenue Lacombe (MTL) 4896", - "function": "1000", - "height": 9, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63230128955638, - 45.48709523892191 - ], - [ - -73.63223539033356, - 45.487167869791065 - ], - [ - -73.63242014393272, - 45.48725040017493 - ], - [ - -73.63242888994434, - 45.48724033875894 - ], - [ - -73.63242899077451, - 45.48724023875916 - ], - [ - -73.63248548970863, - 45.4871780379962 - ], - [ - -73.63230128955638, - 45.48709523892191 - ] - ] - ] - }, - "id": 230127, - "properties": { - "name": "03000759", - "address": "avenue Lacombe (MTL) 5123", - "function": "1000", - "height": 10, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62960628921275, - 45.48949273928377 - ], - [ - -73.6296986890479, - 45.48953683930957 - ], - [ - -73.6297512895257, - 45.48948223904551 - ], - [ - -73.62965888973895, - 45.489438139061775 - ], - [ - -73.62960628921275, - 45.48949273928377 - ] - ] - ] - }, - "id": 230163, - "properties": { - "name": "03074167", - "address": "avenue Lacombe (MTL) 4850", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62962638910588, - 45.489379539324304 - ], - [ - -73.62978318892277, - 45.48945053904768 - ], - [ - -73.62984998992717, - 45.48937753966083 - ], - [ - -73.62982398975981, - 45.48936583882965 - ], - [ - -73.6298340894615, - 45.48935493922136 - ], - [ - -73.62970318887358, - 45.489295638746334 - ], - [ - -73.62962638910588, - 45.489379539324304 - ] - ] - ] - }, - "id": 230164, - "properties": { - "name": "03074169", - "address": "avenue Lacombe (MTL) 4862", - "function": "1000", - "height": 8, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6301314894064, - 45.485633937788286 - ], - [ - -73.63022010398711, - 45.48567452963544 - ], - [ - -73.63031283833033, - 45.48557159758033 - ], - [ - -73.63022608964238, - 45.48553183783436 - ], - [ - -73.6301314894064, - 45.485633937788286 - ] - ] - ] - }, - "id": 230167, - "properties": { - "name": "03000685", - "address": "avenue Mountain Sights (MTL) 5204", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6299691893043, - 45.48897263923272 - ], - [ - -73.6299171404476, - 45.48903037943517 - ], - [ - -73.63009296075356, - 45.489108545968094 - ], - [ - -73.63014488955139, - 45.48905093900021 - ], - [ - -73.6299691893043, - 45.48897263923272 - ] - ] - ] - }, - "id": 230177, - "properties": { - "name": "03074177", - "address": "avenue Lacombe (MTL) 4886", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62820798807459, - 45.48707253865586 - ], - [ - -73.62816298874698, - 45.48712323877116 - ], - [ - -73.62820118897662, - 45.48713923925367 - ], - [ - -73.62818961079962, - 45.48715140376448 - ], - [ - -73.6283063526672, - 45.48720312540326 - ], - [ - -73.62836218885478, - 45.48714003837631 - ], - [ - -73.62820798807459, - 45.48707253865586 - ] - ] - ] - }, - "id": 230206, - "properties": { - "name": "03074784", - "address": "rue Fulton (MTL) 4938", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62704278885157, - 45.4883511390213 - ], - [ - -73.62696991403729, - 45.48843223494212 - ], - [ - -73.62713071668333, - 45.48850296301514 - ], - [ - -73.62720308859116, - 45.488422438954686 - ], - [ - -73.62704278885157, - 45.4883511390213 - ] - ] - ] - }, - "id": 230207, - "properties": { - "name": "03074761", - "address": "rue Fulton (MTL) 4844", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62727078805295, - 45.48809473877639 - ], - [ - -73.62743138852225, - 45.48816513911181 - ], - [ - -73.62750230888653, - 45.48808520947456 - ], - [ - -73.62734182074055, - 45.48801463364272 - ], - [ - -73.62727078805295, - 45.48809473877639 - ] - ] - ] - }, - "id": 230213, - "properties": { - "name": "03074767", - "address": "rue Fulton (MTL) 4872", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62741248826724, - 45.48793493830083 - ], - [ - -73.62734182074055, - 45.48801463364272 - ], - [ - -73.62750230888653, - 45.48808520947456 - ], - [ - -73.6275730886856, - 45.488005439221766 - ], - [ - -73.62741248826724, - 45.48793493830083 - ] - ] - ] - }, - "id": 230214, - "properties": { - "name": "03074769", - "address": "rue Fulton (MTL) 4882", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62761958935265, - 45.487955639314684 - ], - [ - -73.62764508868518, - 45.487927339473615 - ], - [ - -73.62765438959961, - 45.48793143957452 - ], - [ - -73.6276570889448, - 45.48792803874081 - ], - [ - -73.62767788813655, - 45.487905439267834 - ], - [ - -73.62767028946399, - 45.48790223891155 - ], - [ - -73.6276923596675, - 45.48787767095272 - ], - [ - -73.6275318770102, - 45.48780710347787 - ], - [ - -73.62746148924693, - 45.48788533903363 - ], - [ - -73.62761958935265, - 45.487955639314684 - ] - ] - ] - }, - "id": 230215, - "properties": { - "name": "03074771", - "address": "rue Fulton (MTL) 4892", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62791118903225, - 45.48942203880371 - ], - [ - -73.62807508850771, - 45.489496438835474 - ], - [ - -73.62815068922168, - 45.48941413877287 - ], - [ - -73.6279866888178, - 45.48933973896161 - ], - [ - -73.62791118903225, - 45.48942203880371 - ] - ] - ] - }, - "id": 230220, - "properties": { - "name": "03074596", - "address": "rue Jean-Brillant (MTL) 4827", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62759868910166, - 45.48717933881285 - ], - [ - -73.62754434837403, - 45.48723940211441 - ], - [ - -73.62771752248776, - 45.487316128330654 - ], - [ - -73.627771388505, - 45.48725663958008 - ], - [ - -73.62759868910166, - 45.48717933881285 - ] - ] - ] - }, - "id": 230237, - "properties": { - "name": "03074831", - "address": "avenue Dornal (MTL) 4915", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62932788988755, - 45.485727539084245 - ], - [ - -73.629332989404, - 45.485729937698856 - ], - [ - -73.62936878927101, - 45.48568843855611 - ], - [ - -73.62938248960918, - 45.4856943386262 - ], - [ - -73.6293825889341, - 45.485694138747895 - ], - [ - -73.62946698977323, - 45.485602637663895 - ], - [ - -73.62947908883015, - 45.485608138206096 - ], - [ - -73.629479289218, - 45.48560793911301 - ], - [ - -73.62952298979424, - 45.485560938305206 - ], - [ - -73.62941488878263, - 45.48551133804103 - ], - [ - -73.62941088907964, - 45.48550933861543 - ], - [ - -73.62923938828398, - 45.485687438633235 - ], - [ - -73.62932788988755, - 45.485727539084245 - ] - ] - ] - }, - "id": 230245, - "properties": { - "name": "03000234", - "address": "avenue de Westbury (MTL) 5178", - "function": "1000", - "height": 8, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62781418881801, - 45.489523239610456 - ], - [ - -73.62783918923371, - 45.48953313962741 - ], - [ - -73.62781688900048, - 45.48956033901268 - ], - [ - -73.627959088905, - 45.48962253908921 - ], - [ - -73.62796128884544, - 45.48962003865413 - ], - [ - -73.628031088855, - 45.489545439748106 - ], - [ - -73.62788578812223, - 45.489478239191925 - ], - [ - -73.62786058870327, - 45.48950533924939 - ], - [ - -73.62784328975866, - 45.48949703954136 - ], - [ - -73.62783818973497, - 45.489494539179866 - ], - [ - -73.62781418881801, - 45.489523239610456 - ] - ] - ] - }, - "id": 230309, - "properties": { - "name": "03074598", - "address": "rue Jean-Brillant (MTL) 4819", - "function": "1000", - "height": 9, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62972399039117, - 45.48924743920185 - ], - [ - -73.62990199049666, - 45.48932533899562 - ], - [ - -73.62995387892616, - 45.48926669644063 - ], - [ - -73.6297766866601, - 45.48918788336586 - ], - [ - -73.62972399039117, - 45.48924743920185 - ] - ] - ] - }, - "id": 230310, - "properties": { - "name": "03074171", - "address": "avenue Lacombe (MTL) 4872", - "function": "1000", - "height": 8, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62867688925496, - 45.48911163829234 - ], - [ - -73.62884538839037, - 45.489186739319805 - ], - [ - -73.62890261563415, - 45.489123240152125 - ], - [ - -73.62873376819014, - 45.48904850673774 - ], - [ - -73.62867688925496, - 45.48911163829234 - ] - ] - ] - }, - "id": 230381, - "properties": { - "name": "03074306", - "address": "avenue Isabella (CSL+MTL) 4850", - "function": "1000", - "height": 9, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63129449003048, - 45.48298553752031 - ], - [ - -73.63129388915435, - 45.48298623829147 - ], - [ - -73.63125527346742, - 45.48301084217783 - ], - [ - -73.63118818284379, - 45.48308511338419 - ], - [ - -73.63127368267693, - 45.48311999038548 - ], - [ - -73.63136421315629, - 45.4830197694006 - ], - [ - -73.63129449003048, - 45.48298553752031 - ] - ] - ] - }, - "id": 230424, - "properties": { - "name": "03001972", - "address": "avenue Coolbrook (MTL) 5162", - "function": "1000", - "height": 9, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6285200714798, - 45.482188639315325 - ], - [ - -73.62842082974166, - 45.482299502240615 - ], - [ - -73.6284460878986, - 45.48231103776837 - ], - [ - -73.6284470878525, - 45.48231143797547 - ], - [ - -73.6284547876854, - 45.48230373832882 - ], - [ - -73.62850018932306, - 45.48232601965329 - ], - [ - -73.6285936049988, - 45.48222166280986 - ], - [ - -73.6285200714798, - 45.482188639315325 - ] - ] - ] - }, - "id": 230540, - "properties": { - "name": "03001352", - "address": "avenue Coolbrook (MTL) 4947", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6285936049988, - 45.48222166280986 - ], - [ - -73.62850018932306, - 45.48232601965329 - ], - [ - -73.62857186140384, - 45.482361122100734 - ], - [ - -73.62866713988284, - 45.48225468625535 - ], - [ - -73.6285936049988, - 45.48222166280986 - ] - ] - ] - }, - "id": 230541, - "properties": { - "name": "03001354", - "address": "avenue Coolbrook (MTL) 4951", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62916618944597, - 45.48611533877839 - ], - [ - -73.62916388931752, - 45.486118139000226 - ], - [ - -73.62925878967883, - 45.48615453839871 - ], - [ - -73.62934808853768, - 45.48603903837608 - ], - [ - -73.62932628996315, - 45.48603073858369 - ], - [ - -73.62925478890602, - 45.486002738022485 - ], - [ - -73.62916618944597, - 45.48611533877839 - ] - ] - ] - }, - "id": 230546, - "properties": { - "name": "03000377", - "address": "avenue de Westbury (MTL) 5179", - "function": "1000", - "height": 9, - "year_of_construction": 1919 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6322166769485, - 45.48386283361111 - ], - [ - -73.6321382946279, - 45.48394903599747 - ], - [ - -73.63215038953746, - 45.48395553869185 - ], - [ - -73.63213188972598, - 45.48397263827473 - ], - [ - -73.63220182332296, - 45.48400642217085 - ], - [ - -73.63229893257311, - 45.483899625768665 - ], - [ - -73.6322166769485, - 45.48386283361111 - ] - ] - ] - }, - "id": 230565, - "properties": { - "name": "03001412", - "address": "avenue Coolbrook (MTL) 5255", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6277968882828, - 45.488258339011466 - ], - [ - -73.62774307281609, - 45.48831965979256 - ], - [ - -73.62791305907423, - 45.48839490001855 - ], - [ - -73.62796778806698, - 45.48833253881317 - ], - [ - -73.6277968882828, - 45.488258339011466 - ] - ] - ] - }, - "id": 230597, - "properties": { - "name": "03074719", - "address": "rue Fulton (MTL) 4869", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63107948934939, - 45.4879872382709 - ], - [ - -73.63110408970164, - 45.48795873892366 - ], - [ - -73.63111088982029, - 45.48796173930251 - ], - [ - -73.63115276776628, - 45.4879130554717 - ], - [ - -73.63101457523456, - 45.4878518634829 - ], - [ - -73.63094678967776, - 45.487930838774155 - ], - [ - -73.63107948934939, - 45.4879872382709 - ] - ] - ] - }, - "id": 230606, - "properties": { - "name": "05091949", - "address": "avenue Lacombe (MTL) 4962", - "function": "1000", - "height": 9, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62670509527193, - 45.48447679498296 - ], - [ - -73.62665212937412, - 45.4845342567081 - ], - [ - -73.62676668785174, - 45.484589138125266 - ], - [ - -73.62682138815276, - 45.48453273804005 - ], - [ - -73.62670509527193, - 45.48447679498296 - ] - ] - ] - }, - "id": 230641, - "properties": { - "name": "03034895", - "address": "chemin Circle (MTL) 5050", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63145339036478, - 45.48802773897219 - ], - [ - -73.6316020899418, - 45.4880962394672 - ], - [ - -73.63167608998386, - 45.488016839097355 - ], - [ - -73.6315273905286, - 45.487948339597466 - ], - [ - -73.63145339036478, - 45.48802773897219 - ] - ] - ] - }, - "id": 230663, - "properties": { - "name": "03073755", - "address": "avenue Lacombe (MTL) 4977", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6317537899357, - 45.48636103786313 - ], - [ - -73.63183476669458, - 45.48639602762305 - ], - [ - -73.63193534695881, - 45.4862834883519 - ], - [ - -73.63185269011842, - 45.486247739332306 - ], - [ - -73.6317537899357, - 45.48636103786313 - ] - ] - ] - }, - "id": 230706, - "properties": { - "name": "03000660", - "address": "avenue Mountain Sights (MTL) 5312", - "function": "1000", - "height": 9, - "year_of_construction": 1935 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63233409127118, - 45.486455728212114 - ], - [ - -73.63223024126185, - 45.48657192948939 - ], - [ - -73.6322965902575, - 45.48660483831232 - ], - [ - -73.6324089905124, - 45.486492838343025 - ], - [ - -73.63233409127118, - 45.486455728212114 - ] - ] - ] - }, - "id": 230712, - "properties": { - "name": "03000650", - "address": "avenue Mountain Sights (MTL) 5342", - "function": "1000", - "height": 9, - "year_of_construction": 1935 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63214638937568, - 45.486530338468675 - ], - [ - -73.63223024126185, - 45.48657192948939 - ], - [ - -73.63233409127118, - 45.486455728212114 - ], - [ - -73.63228749062152, - 45.48643263905499 - ], - [ - -73.6322863903143, - 45.486432038332374 - ], - [ - -73.63227959022853, - 45.48643883824379 - ], - [ - -73.63225189095533, - 45.4864250387868 - ], - [ - -73.63214638937568, - 45.486530338468675 - ] - ] - ] - }, - "id": 230713, - "properties": { - "name": "03000652", - "address": "avenue Mountain Sights (MTL) 5338", - "function": "1000", - "height": 9, - "year_of_construction": 1935 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63052530369002, - 45.48492880374017 - ], - [ - -73.63042616725882, - 45.485038556024215 - ], - [ - -73.63050359019154, - 45.48507413749323 - ], - [ - -73.63061528971323, - 45.48495373819656 - ], - [ - -73.63057318863119, - 45.484934437839726 - ], - [ - -73.63056258919659, - 45.484946237939155 - ], - [ - -73.63052530369002, - 45.48492880374017 - ] - ] - ] - }, - "id": 230724, - "properties": { - "name": "03001203", - "address": "avenue Trans Island (MTL) 5188", - "function": "1000", - "height": 10, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62883948930713, - 45.48189033759281 - ], - [ - -73.62883618910706, - 45.48189373823592 - ], - [ - -73.62885038789123, - 45.48190043777514 - ], - [ - -73.62877738873098, - 45.48197663721688 - ], - [ - -73.62885025788098, - 45.48201119103556 - ], - [ - -73.62899196680549, - 45.48185486182709 - ], - [ - -73.62891008926454, - 45.481816138477264 - ], - [ - -73.62883948930713, - 45.48189033759281 - ] - ] - ] - }, - "id": 230725, - "properties": { - "name": "03001999", - "address": "avenue Coolbrook (MTL) 4958", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63173943047593, - 45.48618834790665 - ], - [ - -73.6316386011795, - 45.48630116534653 - ], - [ - -73.63171988989707, - 45.486338338754635 - ], - [ - -73.6318230894066, - 45.486226538033804 - ], - [ - -73.63173943047593, - 45.48618834790665 - ] - ] - ] - }, - "id": 230727, - "properties": { - "name": "03000662", - "address": "avenue Mountain Sights (MTL) 5304", - "function": "1000", - "height": 8, - "year_of_construction": 1935 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62658608825915, - 45.488311638915 - ], - [ - -73.62653289923232, - 45.48837052074957 - ], - [ - -73.62670697152735, - 45.488448636849185 - ], - [ - -73.62676038745663, - 45.488389438836826 - ], - [ - -73.62658608825915, - 45.488311638915 - ] - ] - ] - }, - "id": 230748, - "properties": { - "name": "03074850", - "address": "avenue Dornal (MTL) 4845", - "function": "1000", - "height": 10, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62691948808528, - 45.487941739271704 - ], - [ - -73.6268664421522, - 45.4879996573718 - ], - [ - -73.62702513877936, - 45.488070873854454 - ], - [ - -73.62707778888954, - 45.48801333855611 - ], - [ - -73.62691948808528, - 45.487941739271704 - ] - ] - ] - }, - "id": 230809, - "properties": { - "name": "03074842", - "address": "avenue Dornal (MTL) 4869", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62764468901153, - 45.48842553851952 - ], - [ - -73.62758918349243, - 45.48848810830074 - ], - [ - -73.62776154686392, - 45.48856440071374 - ], - [ - -73.62781748868406, - 45.48850133904574 - ], - [ - -73.62764468901153, - 45.48842553851952 - ] - ] - ] - }, - "id": 230810, - "properties": { - "name": "03074723", - "address": "rue Fulton (MTL) 4857", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6311502997426, - 45.483384146134114 - ], - [ - -73.63103788363561, - 45.48350924310724 - ], - [ - -73.63106478918739, - 45.48352793804044 - ], - [ - -73.63106509003552, - 45.483528038478006 - ], - [ - -73.63107708975579, - 45.48351123807591 - ], - [ - -73.6311170889282, - 45.483525337753214 - ], - [ - -73.63113198886866, - 45.483504238149955 - ], - [ - -73.63114831201068, - 45.483509915437025 - ], - [ - -73.63123172746651, - 45.48341757278882 - ], - [ - -73.6311502997426, - 45.483384146134114 - ] - ] - ] - }, - "id": 230836, - "properties": { - "name": "03001388", - "address": "avenue Coolbrook (MTL) 5191", - "function": "1000", - "height": 8, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63076688997111, - 45.485186237941576 - ], - [ - -73.63084933345857, - 45.485224181822474 - ], - [ - -73.63094032227859, - 45.48512344867329 - ], - [ - -73.63091388983622, - 45.48510883847488 - ], - [ - -73.63092108916263, - 45.48510263838291 - ], - [ - -73.63086759004698, - 45.48507793862432 - ], - [ - -73.63076688997111, - 45.485186237941576 - ] - ] - ] - }, - "id": 230852, - "properties": { - "name": "03001197", - "address": "avenue Trans Island (MTL) 5204", - "function": "1000", - "height": 8, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63131498118584, - 45.483451749557666 - ], - [ - -73.63118808702326, - 45.48359222189676 - ], - [ - -73.63117729028811, - 45.48360813817957 - ], - [ - -73.6312251892869, - 45.4836241382202 - ], - [ - -73.63122609020077, - 45.483624838165476 - ], - [ - -73.63134424077903, - 45.48354981266265 - ], - [ - -73.63138082361635, - 45.48350958075634 - ], - [ - -73.63139728876631, - 45.483485538620386 - ], - [ - -73.63131498118584, - 45.483451749557666 - ] - ] - ] - }, - "id": 230866, - "properties": { - "name": "03001392", - "address": "avenue Coolbrook (MTL) 5203", - "function": "1000", - "height": 8, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63091919028841, - 45.48286903773986 - ], - [ - -73.63094878844181, - 45.48283813818081 - ], - [ - -73.63087153582597, - 45.48280143289635 - ], - [ - -73.63077434190497, - 45.48290902906589 - ], - [ - -73.63085770138888, - 45.4829429198988 - ], - [ - -73.63092941623772, - 45.48286352975725 - ], - [ - -73.63091919028841, - 45.48286903773986 - ], - [ - -73.63091408937572, - 45.48287423839939 - ], - [ - -73.63091168937672, - 45.48287303805535 - ], - [ - -73.63091919028841, - 45.48286903773986 - ] - ] - ] - }, - "id": 230869, - "properties": { - "name": "03001982", - "address": "avenue Coolbrook (MTL) 5142", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63080159039333, - 45.48274993741491 - ], - [ - -73.63078569010099, - 45.48276933741349 - ], - [ - -73.63078381431731, - 45.482768576491395 - ], - [ - -73.63070113338945, - 45.482859831867984 - ], - [ - -73.63070168926971, - 45.48286013807956 - ], - [ - -73.63069716010611, - 45.48286421776641 - ], - [ - -73.63068630183031, - 45.48287620084661 - ], - [ - -73.63072408999271, - 45.48288863847681 - ], - [ - -73.63077434190497, - 45.48290902906589 - ], - [ - -73.63087153582597, - 45.48280143289635 - ], - [ - -73.63086439004454, - 45.482798037863994 - ], - [ - -73.63088328934099, - 45.482778338368824 - ], - [ - -73.63080178889938, - 45.48275003707053 - ], - [ - -73.63080159039333, - 45.48274993741491 - ] - ] - ] - }, - "id": 230874, - "properties": { - "name": "03001984", - "address": "avenue Coolbrook (MTL) 5138", - "function": "1000", - "height": 9, - "year_of_construction": 1955 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63150048971318, - 45.48363473855531 - ], - [ - -73.63150038888774, - 45.483634838554295 - ], - [ - -73.63151418942799, - 45.48364543725283 - ], - [ - -73.63151288963044, - 45.48364703777618 - ], - [ - -73.63147008903266, - 45.483697938259084 - ], - [ - -73.63153296954353, - 45.48372401810145 - ], - [ - -73.63164867778117, - 45.48359676711881 - ], - [ - -73.63156468134983, - 45.48356188956935 - ], - [ - -73.63152485769675, - 45.483605685957606 - ], - [ - -73.63150048971318, - 45.48363473855531 - ] - ] - ] - }, - "id": 230887, - "properties": { - "name": "03001396", - "address": "avenue Coolbrook (MTL) 5219", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63069793672041, - 45.48273371845034 - ], - [ - -73.63064482481307, - 45.48279251488424 - ], - [ - -73.63062428884555, - 45.48281753790329 - ], - [ - -73.63070113338945, - 45.482859831867984 - ], - [ - -73.63078381431731, - 45.482768576491395 - ], - [ - -73.63069793672041, - 45.48273371845034 - ] - ] - ] - }, - "id": 230903, - "properties": { - "name": "03001986", - "address": "avenue Coolbrook (MTL) 5134", - "function": "1000", - "height": 9, - "year_of_construction": 1914 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62899428902203, - 45.48692883888921 - ], - [ - -73.62893836409832, - 45.48699132163133 - ], - [ - -73.62905590529614, - 45.48704334845067 - ], - [ - -73.62907048858943, - 45.48702793921188 - ], - [ - -73.62910188842272, - 45.487043438664465 - ], - [ - -73.62910598823838, - 45.4870455387699 - ], - [ - -73.62914908878392, - 45.486997338401025 - ], - [ - -73.62899428902203, - 45.48692883888921 - ] - ] - ] - }, - "id": 230922, - "properties": { - "name": "03074696", - "address": "rue Fulton (MTL) 4971", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63196990815831, - 45.48375245678384 - ], - [ - -73.6318441190574, - 45.48389079503214 - ], - [ - -73.6318419904351, - 45.48389353842072 - ], - [ - -73.63184209021415, - 45.48389353830554 - ], - [ - -73.631870090325, - 45.483914038675714 - ], - [ - -73.6319543902424, - 45.483857237512545 - ], - [ - -73.63197519417962, - 45.48387256125573 - ], - [ - -73.63205130036614, - 45.48378886318407 - ], - [ - -73.63196990815831, - 45.48375245678384 - ] - ] - ] - }, - "id": 230949, - "properties": { - "name": "03001406", - "address": "avenue Coolbrook (MTL) 5241", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63213441887248, - 45.48382604139692 - ], - [ - -73.6320389707222, - 45.483931012652015 - ], - [ - -73.63210069029132, - 45.48396423830193 - ], - [ - -73.6321250905222, - 45.483941937986785 - ], - [ - -73.6321382946279, - 45.48394903599747 - ], - [ - -73.6322166769485, - 45.48386283361111 - ], - [ - -73.63213441887248, - 45.48382604139692 - ] - ] - ] - }, - "id": 230950, - "properties": { - "name": "03001410", - "address": "avenue Coolbrook (MTL) 5251", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62681278864555, - 45.48805823930737 - ], - [ - -73.6269710885867, - 45.488129938621995 - ], - [ - -73.62702513877936, - 45.488070873854454 - ], - [ - -73.6268664421522, - 45.4879996573718 - ], - [ - -73.62681278864555, - 45.48805823930737 - ] - ] - ] - }, - "id": 230954, - "properties": { - "name": "03074844", - "address": "avenue Dornal (MTL) 4865", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62675468874951, - 45.488127939244166 - ], - [ - -73.6267011983627, - 45.48818577407316 - ], - [ - -73.62686322873446, - 45.48825848622326 - ], - [ - -73.6268667881237, - 45.488254639029705 - ], - [ - -73.62687818876073, - 45.48826003893799 - ], - [ - -73.62690168900227, - 45.48823343859361 - ], - [ - -73.62690498863725, - 45.48823013969336 - ], - [ - -73.62689138855927, - 45.488224039451644 - ], - [ - -73.62691318785008, - 45.48820053916255 - ], - [ - -73.62675468874951, - 45.488127939244166 - ] - ] - ] - }, - "id": 230974, - "properties": { - "name": "03074846", - "address": "avenue Dornal (MTL) 4857", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63240403715615, - 45.48576276311601 - ], - [ - -73.63230217093663, - 45.485875477070074 - ], - [ - -73.63238429025412, - 45.485911238987526 - ], - [ - -73.63247829019693, - 45.48580453875636 - ], - [ - -73.63243269044153, - 45.48578473833179 - ], - [ - -73.63243869088997, - 45.48577793843775 - ], - [ - -73.63240403715615, - 45.48576276311601 - ] - ] - ] - }, - "id": 231084, - "properties": { - "name": "03001170", - "address": "avenue Trans Island (MTL) 5318", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63222309051626, - 45.48584103794863 - ], - [ - -73.63230217093663, - 45.485875477070074 - ], - [ - -73.63240403715615, - 45.48576276311601 - ], - [ - -73.63232319065476, - 45.48572743886215 - ], - [ - -73.63222309051626, - 45.48584103794863 - ] - ] - ] - }, - "id": 231100, - "properties": { - "name": "03001172", - "address": "avenue Trans Island (MTL) 5314", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63212209080672, - 45.485799838389276 - ], - [ - -73.63214299030824, - 45.48581193783813 - ], - [ - -73.6321665907077, - 45.48582473783762 - ], - [ - -73.63228938995849, - 45.485712138338585 - ], - [ - -73.6322082554081, - 45.48566845746719 - ], - [ - -73.63210088445385, - 45.48578726147321 - ], - [ - -73.63212209080672, - 45.485799838389276 - ] - ] - ] - }, - "id": 231101, - "properties": { - "name": "03001174", - "address": "avenue Trans Island (MTL) 5306", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63043948960932, - 45.48546713837693 - ], - [ - -73.63053238912727, - 45.48536403768 - ], - [ - -73.63045433936558, - 45.48532919302222 - ], - [ - -73.63035617823857, - 45.48543786610839 - ], - [ - -73.63038339017403, - 45.48545043829393 - ], - [ - -73.63038448997902, - 45.48545083836988 - ], - [ - -73.63038978912306, - 45.485444938329735 - ], - [ - -73.63043948960932, - 45.48546713837693 - ] - ] - ] - }, - "id": 231120, - "properties": { - "name": "03000715", - "address": "avenue Trans Island (MTL) 5197", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63058768945415, - 45.48538813803741 - ], - [ - -73.63048368946197, - 45.48549493902861 - ], - [ - -73.6305649066624, - 45.48553410380486 - ], - [ - -73.63066368130877, - 45.48542475225529 - ], - [ - -73.63058768945415, - 45.48538813803741 - ] - ] - ] - }, - "id": 231121, - "properties": { - "name": "03000717", - "address": "avenue Trans Island (MTL) 5205", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63025078911429, - 45.484802238794394 - ], - [ - -73.63014008856413, - 45.484912237978335 - ], - [ - -73.63022499487668, - 45.48495454465901 - ], - [ - -73.6303419481434, - 45.48482506828891 - ], - [ - -73.63029568971223, - 45.484802438643364 - ], - [ - -73.6302808897284, - 45.48481723819612 - ], - [ - -73.63025078911429, - 45.484802238794394 - ] - ] - ] - }, - "id": 231141, - "properties": { - "name": "03001209", - "address": "avenue Trans Island (MTL) 5174", - "function": "1000", - "height": 12, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63047509477866, - 45.48606099604089 - ], - [ - -73.63037238155324, - 45.48617500051431 - ], - [ - -73.63045528932435, - 45.48621183913241 - ], - [ - -73.63055778858887, - 45.48609773854622 - ], - [ - -73.63047509477866, - 45.48606099604089 - ] - ] - ] - }, - "id": 231155, - "properties": { - "name": "03000251", - "address": "avenue de Westbury (MTL) 5236", - "function": "1000", - "height": 11, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63013388919428, - 45.48534053846785 - ], - [ - -73.63024418862904, - 45.48538973871436 - ], - [ - -73.6303451887841, - 45.48527783833559 - ], - [ - -73.63023468968517, - 45.48522853763049 - ], - [ - -73.63013388919428, - 45.48534053846785 - ] - ] - ] - }, - "id": 231168, - "properties": { - "name": "03000711", - "address": "avenue Trans Island (MTL) 5185", - "function": "1000", - "height": 8, - "year_of_construction": 1963 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63014246478114, - 45.4847391885671 - ], - [ - -73.63003199584033, - 45.484861487379874 - ], - [ - -73.6301084898133, - 45.484897738760914 - ], - [ - -73.63022308869031, - 45.48477793763874 - ], - [ - -73.6301849897793, - 45.48475993825227 - ], - [ - -73.63014246478114, - 45.4847391885671 - ] - ] - ] - }, - "id": 231173, - "properties": { - "name": "03001211", - "address": "avenue Trans Island (MTL) 5168", - "function": "1000", - "height": 9, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6269747699459, - 45.48422982699805 - ], - [ - -73.62690668870479, - 45.48430303855566 - ], - [ - -73.62704408799804, - 45.48436603882598 - ], - [ - -73.62711114628232, - 45.484293631888264 - ], - [ - -73.6269747699459, - 45.48422982699805 - ] - ] - ] - }, - "id": 231187, - "properties": { - "name": "05213718", - "address": "rue Globert (MTL) 5194", - "function": "1000", - "height": 10, - "year_of_construction": 1993 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62948868908549, - 45.48461733832786 - ], - [ - -73.62956359080174, - 45.484650710572986 - ], - [ - -73.62967497870982, - 45.484530029088795 - ], - [ - -73.62966618920213, - 45.48452673843101 - ], - [ - -73.62967009009336, - 45.48452193782283 - ], - [ - -73.629642388851, - 45.484509938322816 - ], - [ - -73.62963448951254, - 45.48451883776789 - ], - [ - -73.6295937887693, - 45.4845007385537 - ], - [ - -73.62948868908549, - 45.48461733832786 - ] - ] - ] - }, - "id": 231195, - "properties": { - "name": "03001221", - "address": "avenue Trans Island (MTL) 5134", - "function": "1000", - "height": 10, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63264999083471, - 45.48670013876126 - ], - [ - -73.63268389057174, - 45.48671373925174 - ], - [ - -73.63264359058383, - 45.48676173793904 - ], - [ - -73.63272769006072, - 45.48679623842045 - ], - [ - -73.63273359136184, - 45.48679893919917 - ], - [ - -73.63277658970296, - 45.48674783827499 - ], - [ - -73.63274719027115, - 45.48673633912124 - ], - [ - -73.63278389094336, - 45.48669353849127 - ], - [ - -73.632690190328, - 45.48665403796273 - ], - [ - -73.63268579024798, - 45.48665213900017 - ], - [ - -73.63264999083471, - 45.48670013876126 - ] - ] - ] - }, - "id": 231211, - "properties": { - "name": "03000646", - "address": "avenue Lacombe (MTL) 5207", - "function": "1000", - "height": 8, - "year_of_construction": 1910 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63160268978926, - 45.48556133810849 - ], - [ - -73.63168410421342, - 45.48559857529107 - ], - [ - -73.63179804546463, - 45.4854724294474 - ], - [ - -73.63175828954401, - 45.48545413825004 - ], - [ - -73.63174368934375, - 45.48547003827187 - ], - [ - -73.6317039899434, - 45.48545183877476 - ], - [ - -73.63160268978926, - 45.48556133810849 - ] - ] - ] - }, - "id": 231216, - "properties": { - "name": "03001181", - "address": "avenue Trans Island (MTL) 5252", - "function": "1000", - "height": 9, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63158906489016, - 45.48538682687407 - ], - [ - -73.63147629596132, - 45.485511673583915 - ], - [ - -73.63156408903384, - 45.4855496386845 - ], - [ - -73.63167428920083, - 45.48542373843075 - ], - [ - -73.63158906489016, - 45.48538682687407 - ] - ] - ] - }, - "id": 231217, - "properties": { - "name": "03001183", - "address": "avenue Trans Island (MTL) 5244", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62899196680549, - 45.48185486182709 - ], - [ - -73.62885025788098, - 45.48201119103556 - ], - [ - -73.62892458824538, - 45.48204643783986 - ], - [ - -73.62907188922094, - 45.48189273787205 - ], - [ - -73.62899196680549, - 45.48185486182709 - ] - ] - ] - }, - "id": 231226, - "properties": { - "name": "03001997", - "address": "avenue Coolbrook (MTL) 4962", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63121191381295, - 45.48293267014579 - ], - [ - -73.63110489695396, - 45.48305113992295 - ], - [ - -73.63118818284379, - 45.48308511338419 - ], - [ - -73.63125527346742, - 45.48301084217783 - ], - [ - -73.6312464893893, - 45.48301643851745 - ], - [ - -73.63124608946181, - 45.483016637843 - ], - [ - -73.63127918891821, - 45.48295003726964 - ], - [ - -73.63125568853872, - 45.48293673755068 - ], - [ - -73.63124099024341, - 45.48294983820589 - ], - [ - -73.63121191381295, - 45.48293267014579 - ] - ] - ] - }, - "id": 231253, - "properties": { - "name": "03001974", - "address": "avenue Coolbrook (MTL) 5158", - "function": "1000", - "height": 9, - "year_of_construction": 1933 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63103378385404, - 45.48287416414544 - ], - [ - -73.63093879236835, - 45.482979321142984 - ], - [ - -73.63099448887601, - 45.48300253811005 - ], - [ - -73.63100218939907, - 45.482993037699174 - ], - [ - -73.63103008450082, - 45.48300443195344 - ], - [ - -73.63111156127835, - 45.48291423504272 - ], - [ - -73.63108558920784, - 45.48289913753308 - ], - [ - -73.6310855889762, - 45.4828990376504 - ], - [ - -73.63106549024371, - 45.4829084380131 - ], - [ - -73.63103378385404, - 45.48287416414544 - ] - ] - ] - }, - "id": 231254, - "properties": { - "name": "03001978", - "address": "avenue Coolbrook (MTL) 5150", - "function": "1000", - "height": 8, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6315418898329, - 45.48625693775307 - ], - [ - -73.6316386011795, - 45.48630116534653 - ], - [ - -73.63173943047593, - 45.48618834790665 - ], - [ - -73.63170698939551, - 45.48617353875943 - ], - [ - -73.63171568980918, - 45.486164238718324 - ], - [ - -73.63171068958539, - 45.4861622387275 - ], - [ - -73.63168198914688, - 45.48614853836923 - ], - [ - -73.63167218983845, - 45.486158938386374 - ], - [ - -73.63164428977535, - 45.486146138741596 - ], - [ - -73.6315418898329, - 45.48625693775307 - ] - ] - ] - }, - "id": 231278, - "properties": { - "name": "03000664", - "address": "avenue Mountain Sights (MTL) 5300", - "function": "1000", - "height": 8, - "year_of_construction": 1935 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63173958901741, - 45.48364943829065 - ], - [ - -73.63165858957713, - 45.48374083818195 - ], - [ - -73.63169178989044, - 45.483754338097405 - ], - [ - -73.63168498994436, - 45.48376273790314 - ], - [ - -73.6317261451193, - 45.4837792638191 - ], - [ - -73.63181395068902, - 45.48368269900762 - ], - [ - -73.63173958901741, - 45.48364943829065 - ] - ] - ] - }, - "id": 231286, - "properties": { - "name": "03001400", - "address": "avenue Coolbrook (MTL) 5229", - "function": "1000", - "height": 8, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63181395068902, - 45.48368269900762 - ], - [ - -73.6317261451193, - 45.4837792638191 - ], - [ - -73.63176318889246, - 45.48379413784587 - ], - [ - -73.63176318993884, - 45.4837940379617 - ], - [ - -73.6318019936099, - 45.483809868282016 - ], - [ - -73.63182338997161, - 45.483786336907635 - ], - [ - -73.63182728958645, - 45.48378163790926 - ], - [ - -73.63182756104258, - 45.48378175007677 - ], - [ - -73.63188765168464, - 45.48371566528927 - ], - [ - -73.63181395068902, - 45.48368269900762 - ] - ] - ] - }, - "id": 231310, - "properties": { - "name": "03001402", - "address": "avenue Coolbrook (MTL) 5233", - "function": "1000", - "height": 8, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63240639071577, - 45.485942838457 - ], - [ - -73.63248621258717, - 45.48597858226739 - ], - [ - -73.63260551454155, - 45.48584657681092 - ], - [ - -73.63257099058937, - 45.48583113863434 - ], - [ - -73.63256359008007, - 45.48583933852065 - ], - [ - -73.63251838950487, - 45.48581903825265 - ], - [ - -73.63240639071577, - 45.485942838457 - ] - ] - ] - }, - "id": 231314, - "properties": { - "name": "03001168", - "address": "avenue Trans Island (MTL) 5324", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63211018912057, - 45.48562168085486 - ], - [ - -73.63210040905274, - 45.48563257760241 - ], - [ - -73.63200168931672, - 45.48574413854893 - ], - [ - -73.63203498940513, - 45.48575873875624 - ], - [ - -73.63203758981534, - 45.48576023849314 - ], - [ - -73.63207568924163, - 45.48578393868195 - ], - [ - -73.63207638993339, - 45.485784338303205 - ], - [ - -73.63208449097586, - 45.48577753779861 - ], - [ - -73.63210088445385, - 45.48578726147321 - ], - [ - -73.6322082554081, - 45.48566845746719 - ], - [ - -73.6321921894624, - 45.48565983843961 - ], - [ - -73.63219369013252, - 45.48565823857648 - ], - [ - -73.63211018912057, - 45.48562168085486 - ] - ] - ] - }, - "id": 231315, - "properties": { - "name": "03001177", - "address": "avenue Trans Island (MTL) 5302", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62874013448437, - 45.4822874673037 - ], - [ - -73.62864342192944, - 45.48239550655116 - ], - [ - -73.62867258866106, - 45.48240953830007 - ], - [ - -73.62867468874079, - 45.48240713784352 - ], - [ - -73.62871853859777, - 45.4824259195262 - ], - [ - -73.62881313172888, - 45.48232024830221 - ], - [ - -73.62874013448437, - 45.4822874673037 - ] - ] - ] - }, - "id": 231334, - "properties": { - "name": "03001358", - "address": "avenue Coolbrook (MTL) 4959", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62976958819075, - 45.48473883802134 - ], - [ - -73.62984161375553, - 45.4847730007163 - ], - [ - -73.62994593389563, - 45.48465749302079 - ], - [ - -73.62992348945436, - 45.48464683827796 - ], - [ - -73.6299191889426, - 45.48464473842924 - ], - [ - -73.62991339010217, - 45.48465083878254 - ], - [ - -73.62987248918257, - 45.48463143871826 - ], - [ - -73.62976958819075, - 45.48473883802134 - ] - ] - ] - }, - "id": 231347, - "properties": { - "name": "03001217", - "address": "avenue Trans Island (MTL) 5152", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63010708268982, - 45.48547847580393 - ], - [ - -73.63001193388659, - 45.48558406948671 - ], - [ - -73.63008778997884, - 45.48561843822544 - ], - [ - -73.6301838890454, - 45.485513338312394 - ], - [ - -73.63010708268982, - 45.48547847580393 - ] - ] - ] - }, - "id": 231350, - "properties": { - "name": "03000687", - "address": "avenue Mountain Sights (MTL) 5196", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62918168908874, - 45.48196793720532 - ], - [ - -73.62917818907975, - 45.48197233781378 - ], - [ - -73.6291563887861, - 45.4819967375088 - ], - [ - -73.62914424226483, - 45.48199138545728 - ], - [ - -73.62904194642327, - 45.4821051777801 - ], - [ - -73.62912488833503, - 45.482142038047826 - ], - [ - -73.62926018917926, - 45.481990637914464 - ], - [ - -73.62922138840511, - 45.4819735379388 - ], - [ - -73.62921398951357, - 45.48198243769245 - ], - [ - -73.62918168908874, - 45.48196793720532 - ] - ] - ] - }, - "id": 231353, - "properties": { - "name": "03001993", - "address": "avenue Coolbrook (MTL) 4974", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62991029009599, - 45.48523893851418 - ], - [ - -73.62993838950075, - 45.48525033819731 - ], - [ - -73.6299441895735, - 45.48525253802178 - ], - [ - -73.62995398945357, - 45.48525733834979 - ], - [ - -73.6299869999926, - 45.485273771571265 - ], - [ - -73.63009435384387, - 45.48515492186926 - ], - [ - -73.63003849028817, - 45.48512713884334 - ], - [ - -73.63002898888949, - 45.48513863799406 - ], - [ - -73.63000168974466, - 45.48512753887068 - ], - [ - -73.62991029009599, - 45.48523893851418 - ] - ] - ] - }, - "id": 231363, - "properties": { - "name": "03000707", - "address": "avenue Trans Island (MTL) 5173", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63278239075797, - 45.48364933766287 - ], - [ - -73.63276649073659, - 45.48366703722432 - ], - [ - -73.63275069004554, - 45.483660040386816 - ], - [ - -73.63267710754897, - 45.483741499877105 - ], - [ - -73.63276287203229, - 45.48377658871593 - ], - [ - -73.63283368575051, - 45.483698193667756 - ], - [ - -73.63279888993462, - 45.483681937910134 - ], - [ - -73.6328150904616, - 45.48366473830935 - ], - [ - -73.63281499021355, - 45.483664538660044 - ], - [ - -73.63278249053872, - 45.48364933844674 - ], - [ - -73.63278239075797, - 45.48364933766287 - ] - ] - ] - }, - "id": 231498, - "properties": { - "name": "03001942", - "address": "avenue Coolbrook (MTL) 5272", - "function": "1000", - "height": 9, "year_of_construction": 1924 } }, @@ -31280,35 +1102,43 @@ "coordinates": [ [ [ - -73.63164339026189, - 45.487066538076014 + -73.59948638076516, + 45.51618444534066 ], [ - -73.6315878568329, - 45.48712728496041 + -73.59930227494544, + 45.51619761723985 ], [ - -73.63176497510952, - 45.48720678102191 + -73.59933120751522, + 45.51632084422144 ], [ - -73.63182008976042, - 45.48714643856627 + -73.59946698099732, + 45.516231944151485 ], [ - -73.63164339026189, - 45.487066538076014 + -73.5994681812906, + 45.51623104506486 + ], + [ + -73.59948638094119, + 45.51618454522288 + ], + [ + -73.59948638076516, + 45.51618444534066 ] ] ] }, - "id": 231556, + "id": 152087, "properties": { - "name": "03000769", - "address": "avenue Lacombe (MTL) 5106", + "name": "03034144", + "address": "chemin de la C\u00f4te-Sainte-Catherine (MTL+OUT) 239", "function": "1000", - "height": 8, - "year_of_construction": 1937 + "height": 11, + "year_of_construction": 1924 } }, { @@ -31318,407 +1148,43 @@ "coordinates": [ [ [ - -73.63168949075522, - 45.48700443877301 + -73.59876437024086, + 45.5173161585694 ], [ - -73.63187059079794, - 45.48708703814914 + -73.59862897653963, + 45.517467046600885 ], [ - -73.6319247660107, - 45.487028250759856 + -73.59874888085012, + 45.517520845279364 ], [ - -73.63175576846531, - 45.48695291096307 + -73.5987859812906, + 45.51747994512579 ], [ - -73.63172988976622, - 45.48698093861108 + -73.5987976741419, + 45.51748518378521 ], [ - -73.63171679013907, - 45.486975039030995 + -73.5988963295066, + 45.517375238635545 ], [ - -73.63168949075522, - 45.48700443877301 + -73.59876437024086, + 45.5173161585694 ] ] ] }, - "id": 231557, + "id": 152332, "properties": { - "name": "03000771", - "address": "avenue Lacombe (MTL) 5118", + "name": "05243527", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 133", "function": "1000", - "height": 9, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62888064639435, - 45.485843035891584 - ], - [ - -73.62877736155981, - 45.485958376751 - ], - [ - -73.62881398921758, - 45.485976738200705 - ], - [ - -73.62880008919863, - 45.48599043873163 - ], - [ - -73.62883858826449, - 45.486009838285035 - ], - [ - -73.62896488898585, - 45.485885238069045 - ], - [ - -73.62888064639435, - 45.485843035891584 - ] - ] - ] - }, - "id": 231558, - "properties": { - "name": "03000383", - "address": "avenue de Westbury (MTL) 5145", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62877438904421, - 45.48584293886786 - ], - [ - -73.62869788837531, - 45.4859185383566 - ], - [ - -73.62877736155981, - 45.485958376751 - ], - [ - -73.62888064639435, - 45.485843035891584 - ], - [ - -73.62881018967722, - 45.48580773882179 - ], - [ - -73.62877438904421, - 45.48584293886786 - ] - ] - ] - }, - "id": 231559, - "properties": { - "name": "03000385", - "address": "avenue de Westbury (MTL) 5141", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63261469041164, - 45.48356093811512 - ], - [ - -73.63259619055103, - 45.483579537818215 - ], - [ - -73.63259364176224, - 45.48357819460679 - ], - [ - -73.63250733199247, - 45.483673745057324 - ], - [ - -73.6325895556323, - 45.48371057213795 - ], - [ - -73.6326910944597, - 45.48359816241291 - ], - [ - -73.63261469041164, - 45.48356093811512 - ] - ] - ] - }, - "id": 231565, - "properties": { - "name": "03001946", - "address": "avenue Coolbrook (MTL) 5260", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.632793789785, - 45.48378923880957 - ], - [ - -73.63278358980149, - 45.483801437284974 - ], - [ - -73.63281938982301, - 45.483816037961866 - ], - [ - -73.63292629075598, - 45.48370303869446 - ], - [ - -73.63288668977196, - 45.48368443725692 - ], - [ - -73.63286139077053, - 45.48371113722978 - ], - [ - -73.63283368575051, - 45.483698193667756 - ], - [ - -73.63276287203229, - 45.48377658871593 - ], - [ - -73.632793789785, - 45.48378923880957 - ] - ] - ] - }, - "id": 231577, - "properties": { - "name": "03001940", - "address": "avenue Coolbrook (MTL) 5278", - "function": "1000", - "height": 8, - "year_of_construction": 1922 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6325212670027, - 45.48353046436276 - ], - [ - -73.6324251071805, - 45.48363691791866 - ], - [ - -73.63250733199247, - 45.483673745057324 - ], - [ - -73.63259364176224, - 45.48357819460679 - ], - [ - -73.63258879009759, - 45.48357563747619 - ], - [ - -73.63259519047534, - 45.48356983773616 - ], - [ - -73.6325212670027, - 45.48353046436276 - ] - ] - ] - }, - "id": 231588, - "properties": { - "name": "03001948", - "address": "avenue Coolbrook (MTL) 5256", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63208369020766, - 45.48346643870474 - ], - [ - -73.63215958976377, - 45.483498737283476 - ], - [ - -73.63223938999134, - 45.483405938260404 - ], - [ - -73.632163985961, - 45.48337380743212 - ], - [ - -73.63215242878682, - 45.48338660132096 - ], - [ - -73.63208369020766, - 45.48346643870474 - ] - ] - ] - }, - "id": 231597, - "properties": { - "name": "03001956", - "address": "avenue Coolbrook (MTL) 5234", - "function": "1000", - "height": 10, - "year_of_construction": 1910 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63069848950258, - 45.486326838576936 - ], - [ - -73.63080598917543, - 45.48637413830201 - ], - [ - -73.6308911898285, - 45.486278338496646 - ], - [ - -73.63078359048167, - 45.486231038065256 - ], - [ - -73.63069848950258, - 45.486326838576936 - ] - ] - ] - }, - "id": 231607, - "properties": { - "name": "03000257", - "address": "avenue de Westbury (MTL) 5262", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62777628790495, - 45.48223513825893 - ], - [ - -73.627742138727, - 45.48227190008951 - ], - [ - -73.62748521031124, - 45.4825656045697 - ], - [ - -73.6277788057241, - 45.482697051832126 - ], - [ - -73.62793554961463, - 45.48252367393982 - ], - [ - -73.62799073088861, - 45.48254888790996 - ], - [ - -73.62813018806715, - 45.48240203769197 - ], - [ - -73.62777628790495, - 45.48223513825893 - ] - ] - ] - }, - "id": 231773, - "properties": { - "name": "03037514", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 4944", - "function": "6731", "height": 13, - "year_of_construction": 1954 + "year_of_construction": 1900 } }, { @@ -31728,47 +1194,43 @@ "coordinates": [ [ [ - -73.62626798779571, - 45.48797113938472 + -73.59942904623966, + 45.517613830619574 ], [ - -73.62639328825917, - 45.48802573841508 + -73.59928547130642, + 45.517773836531255 ], [ - -73.62645961073497, - 45.48795036053076 + -73.59933488210771, + 45.51779384472789 ], [ - -73.6263557823899, - 45.48790435834339 + -73.59937828114455, + 45.51775004501814 ], [ - -73.62634138893077, - 45.48792213811642 + -73.59939756919003, + 45.517759434272755 ], [ - -73.62631908829663, - 45.48791313912818 + -73.59949979313926, + 45.51764551270432 ], [ - -73.62631898745438, - 45.48791323912256 - ], - [ - -73.62626798779571, - 45.48797113938472 + -73.59942904623966, + 45.517613830619574 ] ] ] }, - "id": 231844, + "id": 152787, "properties": { - "name": "03074911", - "address": "avenue Dornal (MTL) 4862", + "name": "05006766", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 179", "function": "1000", - "height": 8, - "year_of_construction": 1941 + "height": 12, + "year_of_construction": 1912 } }, { @@ -31778,55 +1240,47 @@ "coordinates": [ [ [ - -73.63023728934806, - 45.4893810382577 + -73.59958073943591, + 45.51768176334471 ], [ - -73.63017938949255, - 45.48944913886725 + -73.59948975997297, + 45.517783153906095 ], [ - -73.63018488959216, - 45.48945143980246 + -73.59951108098167, + 45.51779344481105 ], [ - -73.63027048997871, - 45.48948883966787 + -73.59945128217556, + 45.51785434502855 ], [ - -73.63026268878491, - 45.489497838919476 + -73.59945008162647, + 45.517855845208636 ], [ - -73.63026719007793, - 45.48949973965867 + -73.59950652417008, + 45.51787910823184 ], [ - -73.63036339061168, - 45.489541838955304 + -73.59965411768128, + 45.517714623630766 ], [ - -73.63043608905106, - 45.489459538893264 - ], - [ - -73.63024239011861, - 45.48937493958883 - ], - [ - -73.63023728934806, - 45.4893810382577 + -73.59958073943591, + 45.51768176334471 ] ] ] }, - "id": 231845, + "id": 152853, "properties": { - "name": "03073780", - "address": "avenue Lacombe (MTL) 4857", + "name": "03117541", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 189", "function": "1000", - "height": 10, - "year_of_construction": 1936 + "height": 11, + "year_of_construction": 1913 } }, { @@ -31836,87 +1290,231 @@ "coordinates": [ [ [ - -73.62638828754035, - 45.482068338284 + -73.5988800805024, + 45.51763194582124 ], [ - -73.62639158862238, - 45.48206983827499 + -73.59882688110709, + 45.517684245620444 ], [ - -73.62654928812665, - 45.482143337706574 + -73.59879461758896, + 45.517668066494885 ], [ - -73.6268159881118, - 45.48186083834964 + -73.59871471529257, + 45.51775788660249 ], [ - -73.62642148735543, - 45.48167653804513 + -73.59879370046444, + 45.51779349880788 ], [ - -73.62635598793742, - 45.481746038182166 + -73.5989206187427, + 45.51765228222093 ], [ - -73.62638508772211, - 45.481759137449885 - ], - [ - -73.62624638830675, - 45.48191153766943 - ], - [ - -73.62621828840646, - 45.48189883859345 - ], - [ - -73.62621579517477, - 45.4818976409531 - ], - [ - -73.62615656328632, - 45.48196258442338 - ], - [ - -73.62631348834076, - 45.48203553793052 - ], - [ - -73.62647988773668, - 45.481858237905264 - ], - [ - -73.62657438794875, - 45.481902137525495 - ], - [ - -73.62648228692237, - 45.48200033811699 - ], - [ - -73.62645588784744, - 45.48198803854788 - ], - [ - -73.62645578851664, - 45.48198823752392 - ], - [ - -73.62638828754035, - 45.482068338284 + -73.5988800805024, + 45.51763194582124 ] ] ] }, - "id": 231861, + "id": 154748, "properties": { - "name": "03037502", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 4710", + "name": "05159439", + "address": "avenue Querbes (OUT) 156", + "function": "1000", + "height": 12, + "year_of_construction": 1908 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.59928426436657, + 45.51754899253712 + ], + [ + -73.59918590199756, + 45.517658611121824 + ], + [ + -73.59920078163034, + 45.51766504466092 + ], + [ + -73.5991563812419, + 45.51771594491769 + ], + [ + -73.5991528814507, + 45.517720144813495 + ], + [ + -73.59921272893406, + 45.51774437955447 + ], + [ + -73.59935830069942, + 45.51758214848965 + ], + [ + -73.59928426436657, + 45.51754899253712 + ] + ] + ] + }, + "id": 158149, + "properties": { + "name": "03030777", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 169", + "function": "1000", + "height": 12, + "year_of_construction": 1913 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.59824914453397, + 45.51706708867892 + ], + [ + -73.59819623531936, + 45.517129506651784 + ], + [ + -73.59847183620802, + 45.517251627075616 + ], + [ + -73.5985246992989, + 45.51718929270141 + ], + [ + -73.59824914453397, + 45.51706708867892 + ] + ] + ] + }, + "id": 159418, + "properties": { + "name": "03033691", + "address": "avenue Laurier Ouest (MTL+OUT) 1145", + "function": "1000", + "height": 13, + "year_of_construction": 1944 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.59864818182047, + 45.517594745337256 + ], + [ + -73.59864808087474, + 45.51759484440692 + ], + [ + -73.59856158101081, + 45.517688844467926 + ], + [ + -73.59863852023182, + 45.51772353171024 + ], + [ + -73.59872079487437, + 45.51763104607609 + ], + [ + -73.59864818182047, + 45.517594745337256 + ] + ] + ] + }, + "id": 161976, + "properties": { + "name": "03108653", + "address": "avenue Querbes (OUT) 146", + "function": "1000", + "height": 11, + "year_of_construction": 1908 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.59753788094328, + 45.51704694519489 + ], + [ + -73.59751369605782, + 45.51708263374029 + ], + [ + -73.59774478074362, + 45.51718509909345 + ], + [ + -73.597764480755, + 45.51716434449966 + ], + [ + -73.59775698154334, + 45.51716074435512 + ], + [ + -73.59779124795502, + 45.51712464309978 + ], + [ + -73.59764027559552, + 45.51705768190339 + ], + [ + -73.59762558077307, + 45.51707724530833 + ], + [ + -73.59759508028942, + 45.51706614483768 + ], + [ + -73.59753788094328, + 45.51704694519489 + ] + ] + ] + }, + "id": 162849, + "properties": { + "name": "03038298", + "address": "avenue Laurier Ouest (MTL+OUT) 1120", "function": "1000", "height": 18, - "year_of_construction": 1932 + "year_of_construction": 1909 } }, { @@ -31926,35 +1524,43 @@ "coordinates": [ [ [ - -73.63050659015344, - 45.487095738665225 + -73.59900139448642, + 45.517685640431 ], [ - -73.63043709902159, - 45.48717284843326 + -73.59887251920655, + 45.5178290364157 ], [ - -73.63057757380524, - 45.48723502385009 + -73.59896118896978, + 45.517869016047875 ], [ - -73.63064678924529, - 45.487158239157075 + -73.59904472327607, + 45.5177760692728 ], [ - -73.63050659015344, - 45.487095738665225 + -73.59900798186615, + 45.51776624516723 + ], + [ + -73.5990418902101, + 45.517703583247574 + ], + [ + -73.59900139448642, + 45.517685640431 ] ] ] }, - "id": 231881, + "id": 163603, "properties": { - "name": "03074342", - "address": "avenue Isabella (CSL+MTL) 4996", + "name": "03033753", + "address": "avenue Querbes (OUT) 168", "function": "1000", - "height": 8, - "year_of_construction": 1944 + "height": 12, + "year_of_construction": 1908 } }, { @@ -31964,2410 +1570,70 @@ "coordinates": [ [ [ - -73.62728768791428, - 45.48676963868251 + -73.59751369605782, + 45.51708263374029 ], [ - -73.62745868824514, - 45.48684703810482 + -73.5974823806528, + 45.5171288448072 ], [ - -73.62751585706212, - 45.48678464918081 + -73.5975414802387, + 45.51714844508381 ], [ - -73.62734372861854, - 45.48670843259841 + -73.59754587971968, + 45.51715004574339 ], [ - -73.62728768791428, - 45.48676963868251 + -73.59754868041345, + 45.51714714496396 + ], + [ + -73.59757368156768, + 45.51715864517463 + ], + [ + -73.5975578814865, + 45.51717564496786 + ], + [ + -73.5974585801389, + 45.517129944925124 + ], + [ + -73.59745245787515, + 45.51713653518464 + ], + [ + -73.59771510938184, + 45.51725299858295 + ], + [ + -73.5977174805998, + 45.517250444605565 + ], + [ + -73.59769348066526, + 45.517239145134646 + ], + [ + -73.59774478074362, + 45.51718509909345 + ], + [ + -73.59751369605782, + 45.51708263374029 ] ] ] }, - "id": 231903, + "id": 163631, "properties": { - "name": "03074934", - "address": "avenue Dornal (MTL) 4942", + "name": "03038296", + "address": "avenue Laurier Ouest (MTL+OUT) 1114", "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63103018920495, - 45.48557023794965 - ], - [ - -73.63090938954882, - 45.48568493854587 - ], - [ - -73.63099396796159, - 45.48572907891115 - ], - [ - -73.63110307375963, - 45.48560828799324 - ], - [ - -73.63103018920495, - 45.48557023794965 - ] - ] - ] - }, - "id": 231925, - "properties": { - "name": "03000725", - "address": "avenue Trans Island (MTL) 5229", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63107629026257, - 45.4857579379189 - ], - [ - -73.63118748953384, - 45.48565233841788 - ], - [ - -73.63110307375963, - 45.48560828799324 - ], - [ - -73.63099396796159, - 45.48572907891115 - ], - [ - -73.63102878940163, - 45.48574723835757 - ], - [ - -73.63103838964686, - 45.48573813800081 - ], - [ - -73.63107629026257, - 45.4857579379189 - ] - ] - ] - }, - "id": 231926, - "properties": { - "name": "03000727", - "address": "avenue Trans Island (MTL) 5233", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63198788978315, - 45.48343183786948 - ], - [ - -73.63197678947344, - 45.48344363778219 - ], - [ - -73.63202538974403, - 45.483465737635555 - ], - [ - -73.63210418953217, - 45.48337993796765 - ], - [ - -73.63203327029807, - 45.48334771098167 - ], - [ - -73.6319661152253, - 45.4834220538029 - ], - [ - -73.63198788978315, - 45.48343183786948 - ] - ] - ] - }, - "id": 231941, - "properties": { - "name": "03001958", - "address": "avenue Coolbrook (MTL) 5226", - "function": "1000", - "height": 11, - "year_of_construction": 1910 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62973078960981, - 45.487990538983716 - ], - [ - -73.62985718869524, - 45.48804853888221 - ], - [ - -73.62989751122863, - 45.48800502509388 - ], - [ - -73.62976979404584, - 45.48794849618489 - ], - [ - -73.62973078960981, - 45.487990538983716 - ] - ] - ] - }, - "id": 231996, - "properties": { - "name": "03074326", - "address": "avenue Isabella (CSL+MTL) 4920", - "function": "1000", - "height": 9, - "year_of_construction": 1984 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63231902005693, - 45.48616339204827 - ], - [ - -73.63221714696704, - 45.48627737740874 - ], - [ - -73.63224099017596, - 45.486288338725636 - ], - [ - -73.63224569003422, - 45.48629043892385 - ], - [ - -73.63229468988709, - 45.486311638343174 - ], - [ - -73.63240868938732, - 45.48618083873564 - ], - [ - -73.63237049000273, - 45.48616433844234 - ], - [ - -73.63235659002268, - 45.486180438394705 - ], - [ - -73.63231902005693, - 45.48616339204827 - ] - ] - ] - }, - "id": 232050, - "properties": { - "name": "03000745", - "address": "avenue Trans Island (MTL) 5331", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63252695226872, - 45.486239933942805 - ], - [ - -73.63241331153272, - 45.48636708707572 - ], - [ - -73.63251979029367, - 45.486405538186844 - ], - [ - -73.63256579052663, - 45.48634223914472 - ], - [ - -73.63256589007361, - 45.48634213824646 - ], - [ - -73.63253939042104, - 45.48632983930947 - ], - [ - -73.63259449003722, - 45.486271438355665 - ], - [ - -73.63252695226872, - 45.486239933942805 - ] - ] - ] - }, - "id": 232051, - "properties": { - "name": "03000749", - "address": "avenue Trans Island (MTL) 5341", - "function": "1000", - "height": 10, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62809178838947, - 45.485874738448416 - ], - [ - -73.6282559892654, - 45.48594883827994 - ], - [ - -73.62831010578171, - 45.4858895037532 - ], - [ - -73.62814433924142, - 45.4858171208615 - ], - [ - -73.62809178838947, - 45.485874738448416 - ] - ] - ] - }, - "id": 232081, - "properties": { - "name": "03074954", - "address": "avenue Dornal (MTL) 5014", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62673188861724, - 45.483926137673684 - ], - [ - -73.62674758720597, - 45.48393353858779 - ], - [ - -73.62672458791273, - 45.48395743792632 - ], - [ - -73.62690158867423, - 45.48404163800029 - ], - [ - -73.62695022115827, - 45.483991025201085 - ], - [ - -73.62677361166334, - 45.483908989797534 - ], - [ - -73.62677088819117, - 45.48391183813395 - ], - [ - -73.6267535878896, - 45.483903238605464 - ], - [ - -73.62675078806933, - 45.48390683839775 - ], - [ - -73.62673188861724, - 45.483926137673684 - ] - ] - ] - }, - "id": 232102, - "properties": { - "name": "03035325", - "address": "rue Byron (MTL) 5211", - "function": "1000", - "height": 9, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62817868887703, - 45.48653463922719 - ], - [ - -73.62812913681536, - 45.48659542271589 - ], - [ - -73.62830905451531, - 45.4866751324668 - ], - [ - -73.62833118785186, - 45.48665503834164 - ], - [ - -73.62833838884788, - 45.48665893918148 - ], - [ - -73.62833948946339, - 45.48665743880176 - ], - [ - -73.6283620895912, - 45.4866288388035 - ], - [ - -73.62837458821029, - 45.486613638959575 - ], - [ - -73.62817868887703, - 45.48653463922719 - ] - ] - ] - }, - "id": 232108, - "properties": { - "name": "03074815", - "address": "avenue Dornal (MTL) 4973", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.628259689033, - 45.486726238859305 - ], - [ - -73.62826548813959, - 45.486728538652436 - ], - [ - -73.62827398943048, - 45.48673323889893 - ], - [ - -73.62830588934719, - 45.486704338717985 - ], - [ - -73.62828778928764, - 45.48669443824753 - ], - [ - -73.62830905451531, - 45.4866751324668 - ], - [ - -73.62812913681536, - 45.48659542271589 - ], - [ - -73.62808118825001, - 45.4866542391212 - ], - [ - -73.628259689033, - 45.486726238859305 - ] - ] - ] - }, - "id": 232109, - "properties": { - "name": "03074817", - "address": "avenue Dornal (MTL) 4967", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63139218934188, - 45.482203138267586 - ], - [ - -73.63147068269612, - 45.482237819820654 - ], - [ - -73.63155896631534, - 45.48214028819357 - ], - [ - -73.63147968932535, - 45.48210523776566 - ], - [ - -73.63139218934188, - 45.482203138267586 - ] - ] - ] - }, - "id": 232128, - "properties": { - "name": "03034371", - "address": "avenue Earnscliffe (MTL) 5132", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62780958819982, - 45.48721923884976 - ], - [ - -73.62786694443534, - 45.48715996571019 - ], - [ - -73.62768753035122, - 45.487080475168916 - ], - [ - -73.62763448912183, - 45.4871352387701 - ], - [ - -73.62780958819982, - 45.48721923884976 - ] - ] - ] - }, - "id": 232135, - "properties": { - "name": "03074828", - "address": "avenue Dornal (MTL) 4923", - "function": "1000", - "height": 10, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63193469013899, - 45.48243943803779 - ], - [ - -73.63200807104437, - 45.48247294362659 - ], - [ - -73.63212642051604, - 45.482342194975566 - ], - [ - -73.63205469033043, - 45.48230943802566 - ], - [ - -73.63193469013899, - 45.48243943803779 - ] - ] - ] - }, - "id": 232145, - "properties": { - "name": "03034359", - "address": "avenue Earnscliffe (MTL) 5162", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6276850759628, - 45.48412831902645 - ], - [ - -73.62763569918211, - 45.48418048700338 - ], - [ - -73.62778278981514, - 45.48424830503161 - ], - [ - -73.62782894717958, - 45.48419465224896 - ], - [ - -73.6276850759628, - 45.48412831902645 - ] - ] - ] - }, - "id": 232242, - "properties": { - "name": "03035389", - "address": "rue Globert (MTL) 5217", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62635358764747, - 45.4831529382012 - ], - [ - -73.62650968830543, - 45.48322403775227 - ], - [ - -73.62656080763587, - 45.48316847140257 - ], - [ - -73.62640506463987, - 45.48309710157098 - ], - [ - -73.62635358764747, - 45.4831529382012 - ] - ] - ] - }, - "id": 232261, - "properties": { - "name": "03035282", - "address": "rue Snowdon (MTL) 5247", - "function": "1000", - "height": 10, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62899910639067, - 45.48287409098527 - ], - [ - -73.62890780196163, - 45.48297603417741 - ], - [ - -73.62928177060822, - 45.483147410202875 - ], - [ - -73.62935654247386, - 45.48306458197829 - ], - [ - -73.62922813276363, - 45.483006076236755 - ], - [ - -73.62924560293943, - 45.48298654600149 - ], - [ - -73.62899910639067, - 45.48287409098527 - ] - ] - ] - }, - "id": 232278, - "properties": { - "name": "03034862", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5322", - "function": "5010", - "height": 14, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62905758912366, - 45.487387438553675 - ], - [ - -73.62921408959193, - 45.487456138515704 - ], - [ - -73.62926917384837, - 45.48739407502332 - ], - [ - -73.62914673600888, - 45.48733988173539 - ], - [ - -73.62913578944844, - 45.487352938274476 - ], - [ - -73.62910378935031, - 45.48733963873337 - ], - [ - -73.62910108961626, - 45.48733833880812 - ], - [ - -73.62905758912366, - 45.487387438553675 - ] - ] - ] - }, - "id": 232361, - "properties": { - "name": "03074664", - "address": "rue Jean-Brillant (MTL) 4952", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62901628955113, - 45.48743623884733 - ], - [ - -73.62897068879988, - 45.48748443928574 - ], - [ - -73.6290018891982, - 45.487499338792716 - ], - [ - -73.6289887192066, - 45.48751298362787 - ], - [ - -73.62911607093103, - 45.48756935095544 - ], - [ - -73.62917298958904, - 45.48750993818224 - ], - [ - -73.62901628955113, - 45.48743623884733 - ] - ] - ] - }, - "id": 232441, - "properties": { - "name": "03074661", - "address": "rue Jean-Brillant (MTL) 4942", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63280079015249, - 45.482645537650875 - ], - [ - -73.63280068956578, - 45.482645737533716 - ], - [ - -73.63269099010341, - 45.4827641381343 - ], - [ - -73.63269078973694, - 45.48276433723312 - ], - [ - -73.6327618825747, - 45.48279601560593 - ], - [ - -73.63285906663481, - 45.482688637316976 - ], - [ - -73.63282128906033, - 45.482672138473454 - ], - [ - -73.63283259031695, - 45.48265943749713 - ], - [ - -73.63280079015249, - 45.482645537650875 - ] - ] - ] - }, - "id": 232474, - "properties": { - "name": "03034348", - "address": "avenue Earnscliffe (MTL) 5204", - "function": "1000", - "height": 9, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63171718969356, - 45.48606293773677 - ], - [ - -73.63178429006703, - 45.486089838622505 - ], - [ - -73.63181888992177, - 45.486103838095005 - ], - [ - -73.63185948993255, - 45.48605273847776 - ], - [ - -73.63185679031568, - 45.48605203791457 - ], - [ - -73.63183588952873, - 45.486043238150295 - ], - [ - -73.6318489903127, - 45.48602723816646 - ], - [ - -73.63187459046249, - 45.48603903888826 - ], - [ - -73.63192248963568, - 45.48598563891344 - ], - [ - -73.63190468981956, - 45.485977938791336 - ], - [ - -73.63191649004432, - 45.48596543800249 - ], - [ - -73.63191119071607, - 45.4859635382487 - ], - [ - -73.63187369046054, - 45.48594773886109 - ], - [ - -73.63186658953698, - 45.48595663843638 - ], - [ - -73.6318237105739, - 45.48593945048035 - ], - [ - -73.6317537890491, - 45.48601768546941 - ], - [ - -73.63171718969356, - 45.48606293773677 - ] - ] - ] - }, - "id": 232488, - "properties": { - "name": "03000737", - "address": "avenue Trans Island (MTL) 5303", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6319859902893, - 45.486015338759785 - ], - [ - -73.63187788970791, - 45.48613333892975 - ], - [ - -73.63193148911446, - 45.48615763856324 - ], - [ - -73.63194708982122, - 45.486140638651776 - ], - [ - -73.63200001592492, - 45.48616474916334 - ], - [ - -73.63209098766983, - 45.4860629623143 - ], - [ - -73.6319859902893, - 45.486015338759785 - ] - ] - ] - }, - "id": 232489, - "properties": { - "name": "03000739", - "address": "avenue Trans Island (MTL) 5313", - "function": "1000", - "height": 10, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63213549000375, - 45.486239838542794 - ], - [ - -73.63221714696704, - 45.48627737740874 - ], - [ - -73.63231902005693, - 45.48616339204827 - ], - [ - -73.6322787902382, - 45.48614513847692 - ], - [ - -73.63229558996856, - 45.48612723908314 - ], - [ - -73.63225669017301, - 45.48610933850278 - ], - [ - -73.63213549000375, - 45.486239838542794 - ] - ] - ] - }, - "id": 232490, - "properties": { - "name": "03000743", - "address": "avenue Trans Island (MTL) 5327", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62921448986683, - 45.48721323911298 - ], - [ - -73.62936668840808, - 45.487283339394985 - ], - [ - -73.62942547218032, - 45.48722021251704 - ], - [ - -73.62930353784309, - 45.48716624288663 - ], - [ - -73.62928818929903, - 45.48718153874055 - ], - [ - -73.62926128912997, - 45.48716793922112 - ], - [ - -73.62925809001734, - 45.48716643919906 - ], - [ - -73.62921448986683, - 45.48721323911298 - ] - ] - ] - }, - "id": 232541, - "properties": { - "name": "03074668", - "address": "rue Jean-Brillant (MTL) 4966", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62988353733867, - 45.483044071265006 - ], - [ - -73.62981896161982, - 45.48311579764088 - ], - [ - -73.63013265821749, - 45.48325574653752 - ], - [ - -73.63022758958034, - 45.48329353807612 - ], - [ - -73.63022988934445, - 45.48329453878287 - ], - [ - -73.63029047067278, - 45.4832259733941 - ], - [ - -73.62988353733867, - 45.483044071265006 - ] - ] - ] - }, - "id": 232542, - "properties": { - "name": "03034806", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5343", - "function": "5010", - "height": 11, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62773693992986, - 45.48407352519461 - ], - [ - -73.6276850759628, - 45.48412831902645 - ], - [ - -73.62782894717958, - 45.48419465224896 - ], - [ - -73.62787448780851, - 45.48414153824556 - ], - [ - -73.627887288238, - 45.484146837506884 - ], - [ - -73.62788970330281, - 45.4841439588945 - ], - [ - -73.62773693992986, - 45.48407352519461 - ] - ] - ] - }, - "id": 232670, - "properties": { - "name": "03035391", - "address": "rue Globert (MTL) 5221", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6278298199549, - 45.48395893925518 - ], - [ - -73.6277980889054, - 45.48398443860931 - ], - [ - -73.62779758858, - 45.48398493858375 - ], - [ - -73.62781368794633, - 45.48399243878582 - ], - [ - -73.62778880124004, - 45.48401873224156 - ], - [ - -73.62793724262899, - 45.48408717305497 - ], - [ - -73.62796128948796, - 45.48405833844248 - ], - [ - -73.62798451293789, - 45.48403026151803 - ], - [ - -73.6278298199549, - 45.48395893925518 - ] - ] - ] - }, - "id": 232671, - "properties": { - "name": "03035395", - "address": "rue Globert (MTL) 5229", - "function": "1000", - "height": 8, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62789212017735, - 45.483908957747445 - ], - [ - -73.6278298199549, - 45.48395893925518 - ], - [ - -73.62798451293789, - 45.48403026151803 - ], - [ - -73.62803159363132, - 45.48397326378828 - ], - [ - -73.62789212017735, - 45.483908957747445 - ] - ] - ] - }, - "id": 232672, - "properties": { - "name": "03035397", - "address": "rue Globert (MTL) 5233", - "function": "1000", - "height": 8, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62792868236548, - 45.48384711086579 - ], - [ - -73.62790148873702, - 45.48387313787631 - ], - [ - -73.6279211876185, - 45.48388563807791 - ], - [ - -73.62789212017735, - 45.483908957747445 - ], - [ - -73.62803159363132, - 45.48397326378828 - ], - [ - -73.62803268820424, - 45.48397193888759 - ], - [ - -73.62804468841423, - 45.483976937579875 - ], - [ - -73.6280451882848, - 45.48397623783902 - ], - [ - -73.6280781878006, - 45.48392063893693 - ], - [ - -73.6281029892843, - 45.483927938573224 - ], - [ - -73.62810330069395, - 45.48392762057824 - ], - [ - -73.62792868236548, - 45.48384711086579 - ] - ] - ] - }, - "id": 232673, - "properties": { - "name": "03035399", - "address": "rue Globert (MTL) 5237", - "function": "1000", - "height": 8, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63098438937936, - 45.48527723762886 - ], - [ - -73.63106767120703, - 45.48531469447341 - ], - [ - -73.6311671386249, - 45.4852045732208 - ], - [ - -73.63108428979503, - 45.48516733821313 - ], - [ - -73.63098438937936, - 45.48527723762886 - ] - ] - ] - }, - "id": 232678, - "properties": { - "name": "03001193", - "address": "avenue Trans Island (MTL) 5216", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63095808941907, - 45.48510893808414 - ], - [ - -73.63094138926058, - 45.485124038649055 - ], - [ - -73.63094032227859, - 45.48512344867329 - ], - [ - -73.63084933345857, - 45.485224181822474 - ], - [ - -73.63092658927152, - 45.48525973799939 - ], - [ - -73.63102388959317, - 45.48515503822729 - ], - [ - -73.63098909015537, - 45.48513903838277 - ], - [ - -73.63099738977098, - 45.485130138385955 - ], - [ - -73.63099268959259, - 45.485127838370516 - ], - [ - -73.63095808941907, - 45.48510893808414 - ] - ] - ] - }, - "id": 232679, - "properties": { - "name": "03001195", - "address": "avenue Trans Island (MTL) 5208", - "function": "1000", - "height": 8, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62987928985113, - 45.48774613863306 - ], - [ - -73.62980318920728, - 45.48782593886124 - ], - [ - -73.62998378922008, - 45.48791033877666 - ], - [ - -73.62998698968771, - 45.48790683923448 - ], - [ - -73.6300467896081, - 45.487843339251114 - ], - [ - -73.63002518973174, - 45.48783333866026 - ], - [ - -73.63003988940154, - 45.48781793816582 - ], - [ - -73.62988268965606, - 45.487742538084305 - ], - [ - -73.62987928985113, - 45.48774613863306 - ] - ] - ] - }, - "id": 232681, - "properties": { - "name": "03074331", - "address": "avenue Isabella (CSL+MTL) 4942", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63037068931712, - 45.48724653882676 - ], - [ - -73.63051088991071, - 45.48730903858216 - ], - [ - -73.63057757380524, - 45.48723502385009 - ], - [ - -73.63043709902159, - 45.48717284843326 - ], - [ - -73.63037068931712, - 45.48724653882676 - ] - ] - ] - }, - "id": 232698, - "properties": { - "name": "03074340", - "address": "avenue Isabella (CSL+MTL) 4992", - "function": "1000", - "height": 8, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62716028890735, - 45.48684813914807 - ], - [ - -73.62719938874986, - 45.48686503791079 - ], - [ - -73.6271896448235, - 45.48687602507965 - ], - [ - -73.62736470471843, - 45.48695350650611 - ], - [ - -73.62742018784074, - 45.48689063809326 - ], - [ - -73.62724998757099, - 45.486816339491014 - ], - [ - -73.62723448812842, - 45.48683413860897 - ], - [ - -73.62718958877095, - 45.486814738445744 - ], - [ - -73.62716028890735, - 45.48684813914807 - ] - ] - ] - }, - "id": 232718, - "properties": { - "name": "03074933", - "address": "avenue Dornal (MTL) 4924", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62927088913735, - 45.48976303965561 - ], - [ - -73.6292160497817, - 45.48982410941662 - ], - [ - -73.62938682458464, - 45.48990006821378 - ], - [ - -73.6294417903511, - 45.48983893973837 - ], - [ - -73.62927088913735, - 45.48976303965561 - ] - ] - ] - }, - "id": 232763, - "properties": { - "name": "03074161", - "address": "avenue Lacombe (MTL) 4832", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63133808985714, - 45.482467838139335 - ], - [ - -73.63123378996241, - 45.48257973784351 - ], - [ - -73.63131509059785, - 45.482617303883146 - ], - [ - -73.63141730426982, - 45.482504402277016 - ], - [ - -73.63133808985714, - 45.482467838139335 - ] - ] - ] - }, - "id": 232778, - "properties": { - "name": "03109399", - "address": "avenue Earnscliffe (MTL) 5137", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63034278961253, - 45.48500023766683 - ], - [ - -73.63042616725882, - 45.485038556024215 - ], - [ - -73.63052530369002, - 45.48492880374017 - ], - [ - -73.63048238985014, - 45.484908738509496 - ], - [ - -73.63049198970424, - 45.48489893811751 - ], - [ - -73.63045348963607, - 45.48488123892801 - ], - [ - -73.63034278961253, - 45.48500023766683 - ] - ] - ] - }, - "id": 232793, - "properties": { - "name": "03001205", - "address": "avenue Trans Island (MTL) 5184", - "function": "1000", - "height": 10, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62858618927845, - 45.48790903930691 - ], - [ - -73.62874298941747, - 45.48797973902765 - ], - [ - -73.62879924982097, - 45.487917987588304 - ], - [ - -73.62867615941374, - 45.4878634813905 - ], - [ - -73.628661488773, - 45.48787943868105 - ], - [ - -73.62863148992801, - 45.48786583890579 - ], - [ - -73.62862728923236, - 45.48786383878009 - ], - [ - -73.62858618927845, - 45.48790903930691 - ] - ] - ] - }, - "id": 232799, - "properties": { - "name": "03074652", - "address": "rue Jean-Brillant (MTL) 4902", - "function": "1000", - "height": 10, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62869788853929, - 45.48778483919815 - ], - [ - -73.62865668913858, - 45.48783013884601 - ], - [ - -73.62869228868912, - 45.487845938726366 - ], - [ - -73.62867615941374, - 45.4878634813905 - ], - [ - -73.62879924982097, - 45.487917987588304 - ], - [ - -73.62885569003478, - 45.48785603885154 - ], - [ - -73.62869788853929, - 45.48778483919815 - ] - ] - ] - }, - "id": 232801, - "properties": { - "name": "03074654", - "address": "rue Jean-Brillant (MTL) 4906", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63092178945614, - 45.485830738072096 - ], - [ - -73.63091578893047, - 45.48583813808373 - ], - [ - -73.63091262876084, - 45.48583686842355 - ], - [ - -73.63081903760616, - 45.4859407503797 - ], - [ - -73.6308953896684, - 45.48597563812294 - ], - [ - -73.63098978952843, - 45.48587353777227 - ], - [ - -73.63094158951128, - 45.485851537811534 - ], - [ - -73.63094948998874, - 45.48584313859119 - ], - [ - -73.63092708908339, - 45.4858333388515 - ], - [ - -73.63092178945614, - 45.485830738072096 - ] - ] - ] - }, - "id": 232890, - "properties": { - "name": "03000670", - "address": "avenue Mountain Sights (MTL) 5238", - "function": "1000", - "height": 10, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62941288902218, - 45.489595639012 - ], - [ - -73.62935873433757, - 45.489655548167015 - ], - [ - -73.62953613879742, - 45.489734455226966 - ], - [ - -73.62959008934598, - 45.48967483956985 - ], - [ - -73.62941288902218, - 45.489595639012 - ] - ] - ] - }, - "id": 232918, - "properties": { - "name": "03074165", - "address": "avenue Lacombe (MTL) 4844", - "function": "1000", - "height": 9, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.628743289159, - 45.487733938659986 - ], - [ - -73.62889798861839, - 45.48780193830133 - ], - [ - -73.62895217785935, - 45.48774091619715 - ], - [ - -73.62883510784802, - 45.48768909930983 - ], - [ - -73.62882268857491, - 45.487703239093605 - ], - [ - -73.62878528854857, - 45.487686639520994 - ], - [ - -73.628743289159, - 45.487733938659986 - ] - ] - ] - }, - "id": 232927, - "properties": { - "name": "03074655", - "address": "rue Jean-Brillant (MTL) 4918", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62885408888395, - 45.487608838662986 - ], - [ - -73.6288116890486, - 45.48765663859368 - ], - [ - -73.6288160888535, - 45.48765843962224 - ], - [ - -73.62884938879047, - 45.487672839188065 - ], - [ - -73.62883510784802, - 45.48768909930983 - ], - [ - -73.62895217785935, - 45.48774091619715 - ], - [ - -73.62900898921443, - 45.48767693871161 - ], - [ - -73.62885408888395, - 45.487608838662986 - ] - ] - ] - }, - "id": 232928, - "properties": { - "name": "03074658", - "address": "rue Jean-Brillant (MTL) 4922", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62888438804525, - 45.48754323902533 - ], - [ - -73.62906058894177, - 45.48762713875488 - ], - [ - -73.62911607093103, - 45.48756935095544 - ], - [ - -73.6289887192066, - 45.48751298362787 - ], - [ - -73.62897418868765, - 45.48752803825614 - ], - [ - -73.62892278897208, - 45.4875034396088 - ], - [ - -73.62888438804525, - 45.48754323902533 - ] - ] - ] - }, - "id": 232929, - "properties": { - "name": "03074660", - "address": "rue Jean-Brillant (MTL) 4938", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62785984994912, - 45.48189213753535 - ], - [ - -73.62776243985607, - 45.48199988617476 - ], - [ - -73.6277935884856, - 45.48201373776269 - ], - [ - -73.62779628762043, - 45.48201093801989 - ], - [ - -73.62783653728225, - 45.48203142388038 - ], - [ - -73.627932811601, - 45.48192490384112 - ], - [ - -73.62785984994912, - 45.48189213753535 - ] - ] - ] - }, - "id": 232946, - "properties": { - "name": "03001334", - "address": "avenue Coolbrook (MTL) 4911", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6287886207359, - 45.48176982721478 - ], - [ - -73.62865116134569, - 45.48192410873554 - ], - [ - -73.62872638894376, - 45.48195463766316 - ], - [ - -73.62879298854376, - 45.4818734378234 - ], - [ - -73.62880738888539, - 45.481879338077 - ], - [ - -73.62880768858065, - 45.48187893820715 - ], - [ - -73.62887658825952, - 45.48180573715964 - ], - [ - -73.62883608895007, - 45.48178693825884 - ], - [ - -73.62883008945317, - 45.48179303788672 - ], - [ - -73.6288040883462, - 45.48177873805204 - ], - [ - -73.6287886207359, - 45.48176982721478 - ] - ] - ] - }, - "id": 232954, - "properties": { - "name": "03002001", - "address": "avenue Coolbrook (MTL) 4950", - "function": "1000", - "height": 14, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62929908940092, - 45.486589039150175 - ], - [ - -73.62924388497296, - 45.48665078155681 - ], - [ - -73.62936270888706, - 45.48670337621459 - ], - [ - -73.62937718905071, - 45.48668713919434 - ], - [ - -73.62940858895277, - 45.486701038637634 - ], - [ - -73.62944928860033, - 45.48665543872739 - ], - [ - -73.62929908940092, - 45.486589039150175 - ] - ] - ] - }, - "id": 233099, - "properties": { - "name": "03074687", - "address": "rue Fulton (MTL) 4995", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63046378935842, - 45.48788123945516 - ], - [ - -73.6305979893383, - 45.48794273902291 - ], - [ - -73.63067118938729, - 45.487863738848255 - ], - [ - -73.63053698951572, - 45.48780223936554 - ], - [ - -73.63046378935842, - 45.48788123945516 - ] - ] - ] - }, - "id": 233282, - "properties": { - "name": "03074215", - "address": "avenue Isabella (CSL+MTL) 4957", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62659738894915, - 45.48571333887851 - ], - [ - -73.62699918861166, - 45.485892538102824 - ], - [ - -73.62708578894159, - 45.48579653800623 - ], - [ - -73.62679948818013, - 45.48566883779328 - ], - [ - -73.6268290877378, - 45.485636338489456 - ], - [ - -73.62711958763514, - 45.48576263829488 - ], - [ - -73.62712438808376, - 45.485757239275884 - ], - [ - -73.62720308871464, - 45.48566983780904 - ], - [ - -73.6267990887016, - 45.48548963840923 - ], - [ - -73.62659738894915, - 45.48571333887851 - ] - ] - ] - }, - "id": 233319, - "properties": { - "name": "03075066", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4986", - "function": "1000", - "height": 18, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63010319001653, - 45.48694783857608 - ], - [ - -73.63004666790894, - 45.487011015422055 - ], - [ - -73.63022029225739, - 45.48708875865953 - ], - [ - -73.63027738972681, - 45.48702493858246 - ], - [ - -73.63010319001653, - 45.48694783857608 - ] - ] - ] - }, - "id": 233345, - "properties": { - "name": "03074555", - "address": "rue Jean-Brillant (MTL) 4993", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62803348804795, - 45.48669623890907 - ], - [ - -73.62797978499323, - 45.48675615323358 - ], - [ - -73.62815863627918, - 45.48683539199493 - ], - [ - -73.62817998859695, - 45.48681213851753 - ], - [ - -73.62819008877504, - 45.48681673799295 - ], - [ - -73.62821358807409, - 45.486787438735426 - ], - [ - -73.62822088955276, - 45.48677923834365 - ], - [ - -73.62803348804795, - 45.48669623890907 - ] - ] - ] - }, - "id": 233370, - "properties": { - "name": "03074819", - "address": "avenue Dornal (MTL) 4961", - "function": "1000", - "height": 9, + "height": 13, "year_of_construction": 1937 } }, @@ -34378,47 +1644,51 @@ "coordinates": [ [ [ - -73.62797858842997, - 45.487057638900886 + -73.59863208204267, + 45.51725693286003 ], [ - -73.62797868972008, - 45.487057738670295 + -73.59849538891179, + 45.517409267001256 ], [ - -73.62801828881021, - 45.48702603862347 + -73.59849778051868, + 45.51741034564801 ], [ - -73.62800128934332, - 45.48701633844016 + -73.59853238120805, + 45.517372345219286 ], [ - -73.62801872288789, - 45.48700192946958 + -73.59857718123409, + 45.51739254488906 ], [ - -73.6278351228974, - 45.48692058476785 + -73.59855598062737, + 45.51741584476719 ], [ - -73.6277871885747, - 45.48697633885531 + -73.59857468682364, + 45.517424222342264 ], [ - -73.62797858842997, - 45.487057638900886 + -73.59869822674787, + 45.517286546183335 + ], + [ + -73.59863208204267, + 45.51725693286003 ] ] ] }, - "id": 233371, + "id": 164683, "properties": { - "name": "03074824", - "address": "avenue Dornal (MTL) 4941", + "name": "03030763", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 129", "function": "1000", "height": 9, - "year_of_construction": 1938 + "year_of_construction": 1906 } }, { @@ -34428,415 +1698,51 @@ "coordinates": [ [ [ - -73.62832178827719, - 45.48637133830869 + -73.59949979313926, + 45.51764551270432 ], [ - -73.62827018586677, - 45.4864310119542 + -73.59939756919003, + 45.517759434272755 ], [ - -73.6284445647766, - 45.48650826933474 + -73.5994047817117, + 45.51776294547448 ], [ - -73.62845358842502, - 45.486501338473275 + -73.59937498185727, + 45.51779324474958 ], [ - -73.6284343887126, - 45.48648883870783 + -73.59942978155719, + 45.51781984495024 ], [ - -73.62843518894407, - 45.48648913835655 + -73.59947358122285, + 45.51777534477955 ], [ - -73.62847888800385, - 45.48643853857389 + -73.59948975997297, + 45.517783153906095 ], [ - -73.62832178827719, - 45.48637133830869 + -73.59958073943591, + 45.51768176334471 + ], + [ + -73.59949979313926, + 45.51764551270432 ] ] ] }, - "id": 233410, + "id": 165330, "properties": { - "name": "03074811", - "address": "avenue Dornal (MTL) 4985", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62963718870421, - 45.486740238565034 - ], - [ - -73.62959188973493, - 45.48679013872356 - ], - [ - -73.62962708975373, - 45.48680593876877 - ], - [ - -73.62961582985658, - 45.48681838291567 - ], - [ - -73.6297361028162, - 45.48687161802912 - ], - [ - -73.62979218954486, - 45.48680983839065 - ], - [ - -73.62963718870421, - 45.486740238565034 - ] - ] - ] - }, - "id": 233417, - "properties": { - "name": "03074677", - "address": "rue Jean-Brillant (MTL) 4994", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62979278920027, - 45.48656793846038 - ], - [ - -73.62974969012019, - 45.486615838525644 - ], - [ - -73.62978288953795, - 45.48663063926734 - ], - [ - -73.62977083598697, - 45.486643950883185 - ], - [ - -73.62989091407123, - 45.486697099671446 - ], - [ - -73.62994578957819, - 45.48663613839296 - ], - [ - -73.62979278920027, - 45.48656793846038 - ] - ] - ] - }, - "id": 233418, - "properties": { - "name": "03074682", - "address": "rue Jean-Brillant (MTL) 5006", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63070818986958, - 45.48759943884594 - ], - [ - -73.63066998964733, - 45.487643638877685 - ], - [ - -73.63064241573112, - 45.48767640500261 - ], - [ - -73.6307872871537, - 45.48774055568778 - ], - [ - -73.63085498979494, - 45.4876622383707 - ], - [ - -73.63070818986958, - 45.48759943884594 - ] - ] - ] - }, - "id": 233428, - "properties": { - "name": "03074211", - "address": "avenue Isabella (CSL+MTL) 4969", - "function": "1000", - "height": 8, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63003648978508, - 45.4828742384064 - ], - [ - -73.62988353733867, - 45.483044071265006 - ], - [ - -73.63029047067278, - 45.4832259733941 - ], - [ - -73.63044388947678, - 45.483052338512366 - ], - [ - -73.63004208924141, - 45.48287663732125 - ], - [ - -73.63003648978508, - 45.4828742384064 - ] - ] - ] - }, - "id": 233578, - "properties": { - "name": "03034804", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5345", - "function": "5010", - "height": 11, - "year_of_construction": 1955 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62790308871307, - 45.48609513859253 - ], - [ - -73.62782571359523, - 45.486181838971724 - ], - [ - -73.62797850474256, - 45.48624954146366 - ], - [ - -73.62805598799953, - 45.486162639295266 - ], - [ - -73.62790308871307, - 45.48609513859253 - ] - ] - ] - }, - "id": 233595, - "properties": { - "name": "03074948", - "address": "avenue Dornal (MTL) 4992", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62673458763635, - 45.487449438350126 - ], - [ - -73.62668528875352, - 45.487504938827605 - ], - [ - -73.62670688874401, - 45.487514739384814 - ], - [ - -73.62668965668583, - 45.48753364625891 - ], - [ - -73.62679289555378, - 45.48757938694501 - ], - [ - -73.62685958893623, - 45.48750443853704 - ], - [ - -73.62673458763635, - 45.487449438350126 - ] - ] - ] - }, - "id": 233621, - "properties": { - "name": "03074921", - "address": "avenue Dornal (MTL) 4890", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62720998925766, - 45.4851487383007 - ], - [ - -73.62711044743295, - 45.485257031303405 - ], - [ - -73.62744586906152, - 45.4854057701415 - ], - [ - -73.62744788781171, - 45.485403538070685 - ], - [ - -73.62726298850696, - 45.48532083780843 - ], - [ - -73.62732708828825, - 45.485249938594805 - ], - [ - -73.6272617883236, - 45.48522073847374 - ], - [ - -73.62729118826623, - 45.48518843813601 - ], - [ - -73.62729438897198, - 45.4851850385502 - ], - [ - -73.6272153882049, - 45.48515123835922 - ], - [ - -73.62720998925766, - 45.4851487383007 - ] - ] - ] - }, - "id": 233625, - "properties": { - "name": "03034835", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5120", - "function": "5010", - "height": 10, - "year_of_construction": 1958 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6275674877542, - 45.4846592381676 - ], - [ - -73.62749378844816, - 45.484740437978665 - ], - [ - -73.62787988868591, - 45.48490763871215 - ], - [ - -73.6278826878824, - 45.4849043385423 - ], - [ - -73.6279539885881, - 45.484827238168805 - ], - [ - -73.62757058840552, - 45.484655737902756 - ], - [ - -73.6275674877542, - 45.4846592381676 - ] - ] - ] - }, - "id": 233626, - "properties": { - "name": "03034841", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5174", + "name": "03030788", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 187", "function": "1000", "height": 17, - "year_of_construction": 1929 + "year_of_construction": 1913 } }, { @@ -34846,1298 +1752,34 @@ "coordinates": [ [ [ - -73.63023880535032, - 45.48813757335747 + -73.59760126630559, + 45.51780793961683 ], [ - -73.63019898887265, - 45.48818243915634 + -73.5978811791052, + 45.517932359559744 ], [ - -73.63017108947179, - 45.488213538121535 + -73.5979349807543, + 45.5178709451989 ], [ - -73.63032149011265, - 45.488279538571824 + -73.59765262983896, + 45.51774878967079 ], [ - -73.63038852083308, - 45.48820386875109 - ], - [ - -73.63023880535032, - 45.48813757335747 + -73.59760126630559, + 45.51780793961683 ] ] ] }, - "id": 233705, + "id": 166231, "properties": { - "name": "03074221", - "address": "avenue Isabella (CSL+MTL) 4931", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62995328890631, - 45.488449338683516 - ], - [ - -73.62996338998275, - 45.488454138665375 - ], - [ - -73.62994148908501, - 45.48847633847452 - ], - [ - -73.63009248997635, - 45.488550038518525 - ], - [ - -73.63016849017112, - 45.488473038541514 - ], - [ - -73.63000728957819, - 45.48839443884926 - ], - [ - -73.62995328890631, - 45.488449338683516 - ] - ] - ] - }, - "id": 233706, - "properties": { - "name": "03074224", - "address": "avenue Isabella (CSL+MTL) 4903", - "function": "1000", - "height": 10, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62743298836645, - 45.48660693842842 - ], - [ - -73.62760508851578, - 45.48668373890918 - ], - [ - -73.6276608230498, - 45.486621969707144 - ], - [ - -73.62748835294587, - 45.48654557915227 - ], - [ - -73.62743298836645, - 45.48660693842842 - ] - ] - ] - }, - "id": 233714, - "properties": { - "name": "03074938", - "address": "avenue Dornal (MTL) 4956", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62657068822263, - 45.48763723880002 - ], - [ - -73.6265221886148, - 45.487695039224924 - ], - [ - -73.62653348775271, - 45.487699739200686 - ], - [ - -73.62651869330608, - 45.48771721889242 - ], - [ - -73.62662470226766, - 45.487764186749864 - ], - [ - -73.6266897885716, - 45.48768663967106 - ], - [ - -73.62657068822263, - 45.48763723880002 - ] - ] - ] - }, - "id": 233715, - "properties": { - "name": "03074917", - "address": "avenue Dornal (MTL) 4878", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62802098956753, - 45.4887762389123 - ], - [ - -73.62804498970438, - 45.48874963867469 - ], - [ - -73.62805638867609, - 45.48875533901519 - ], - [ - -73.62810938840617, - 45.4886998392067 - ], - [ - -73.62792568853708, - 45.48861303902333 - ], - [ - -73.62792328905937, - 45.48861553968163 - ], - [ - -73.62788908953125, - 45.48864753868897 - ], - [ - -73.62786138843609, - 45.48863293911194 - ], - [ - -73.62783048932383, - 45.48866823863987 - ], - [ - -73.62786548915183, - 45.488680639830484 - ], - [ - -73.62785198869155, - 45.48869943921661 - ], - [ - -73.62802098956753, - 45.4887762389123 - ] - ] - ] - }, - "id": 233729, - "properties": { - "name": "03074642", - "address": "rue Jean-Brillant (MTL) 4862", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62795878860283, - 45.48855483863513 - ], - [ - -73.62812948869276, - 45.48864203848271 - ], - [ - -73.62818028839155, - 45.48859243959522 - ], - [ - -73.62821118954672, - 45.48856153841471 - ], - [ - -73.62805168924999, - 45.48848413894874 - ], - [ - -73.62799748883019, - 45.48853983894387 - ], - [ - -73.62798238940296, - 45.488532138787455 - ], - [ - -73.62795878860283, - 45.48855483863513 - ] - ] - ] - }, - "id": 233730, - "properties": { - "name": "03074643", - "address": "rue Jean-Brillant (MTL) 4872", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62811668826345, - 45.48841203882937 - ], - [ - -73.62811288915545, - 45.4884156388731 - ], - [ - -73.62813108950535, - 45.48842383854776 - ], - [ - -73.62810988822605, - 45.48844683898343 - ], - [ - -73.6282541885302, - 45.48851283909615 - ], - [ - -73.62833128920587, - 45.48842923963836 - ], - [ - -73.628190389482, - 45.48836493831359 - ], - [ - -73.62816308910196, - 45.48839443888926 - ], - [ - -73.62814178916533, - 45.48838463917212 - ], - [ - -73.62811668826345, - 45.48841203882937 - ] - ] - ] - }, - "id": 233731, - "properties": { - "name": "03074645", - "address": "rue Jean-Brillant (MTL) 4878", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62762408956492, - 45.4889666395277 - ], - [ - -73.62778598916134, - 45.48904053920095 - ], - [ - -73.62786068986873, - 45.4889597385732 - ], - [ - -73.62769868933732, - 45.488885838217755 - ], - [ - -73.62762408956492, - 45.4889666395277 - ] - ] - ] - }, - "id": 233732, - "properties": { - "name": "03074635", - "address": "rue Jean-Brillant (MTL) 4842", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62772168951957, - 45.4888214393581 - ], - [ - -73.62790028931974, - 45.48890383993364 - ], - [ - -73.62797738856878, - 45.488820839119356 - ], - [ - -73.62797158858041, - 45.4888182396649 - ], - [ - -73.62781778876226, - 45.4887471387065 - ], - [ - -73.62776348883436, - 45.4888054392528 - ], - [ - -73.62774478962235, - 45.488796738864096 - ], - [ - -73.62772168951957, - 45.4888214393581 - ] - ] - ] - }, - "id": 233733, - "properties": { - "name": "03074637", - "address": "rue Jean-Brillant (MTL) 4854", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62894588885257, - 45.48881353919646 - ], - [ - -73.62888952324867, - 45.48887492008069 - ], - [ - -73.62905896331236, - 45.48894991625227 - ], - [ - -73.62911408977858, - 45.4888899386451 - ], - [ - -73.62894588885257, - 45.48881353919646 - ] - ] - ] - }, - "id": 233734, - "properties": { - "name": "03074313", - "address": "avenue Isabella (CSL+MTL) 4868", - "function": "1000", - "height": 8, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63225148952262, - 45.48256813756643 - ], - [ - -73.63233162719402, - 45.482603160363226 - ], - [ - -73.63246036828214, - 45.48246092898702 - ], - [ - -73.63241259045473, - 45.48244013853795 - ], - [ - -73.63238819002659, - 45.482468037765415 - ], - [ - -73.63235319033998, - 45.48245283762473 - ], - [ - -73.63235308952028, - 45.48245293852434 - ], - [ - -73.63225148952262, - 45.48256813756643 - ] - ] - ] - }, - "id": 233792, - "properties": { - "name": "03034356", - "address": "avenue Earnscliffe (MTL) 5182", - "function": "1000", - "height": 10, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63062708996897, - 45.48482553802775 - ], - [ - -73.63069048890138, - 45.48485193808111 - ], - [ - -73.63079938977772, - 45.48473093890476 - ], - [ - -73.63066279001937, - 45.48467013786531 - ], - [ - -73.6306603889031, - 45.48466903830038 - ], - [ - -73.63058819027913, - 45.48475003862552 - ], - [ - -73.63067918995891, - 45.4847902377627 - ], - [ - -73.63065488966664, - 45.484817438213184 - ], - [ - -73.63063968979701, - 45.48481083812984 - ], - [ - -73.63062708996897, - 45.48482553802775 - ] - ] - ] - }, - "id": 233829, - "properties": { - "name": "03037128", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5207", + "name": "03033682", + "address": "avenue Laurier Ouest (MTL+OUT) 1075", "function": "5010", - "height": 9, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62903458875195, - 45.48688043836028 - ], - [ - -73.62919029015139, - 45.48695053852381 - ], - [ - -73.62923568938822, - 45.4869006384125 - ], - [ - -73.62923138918704, - 45.48689873830414 - ], - [ - -73.62919938932393, - 45.4868854387885 - ], - [ - -73.62920978645194, - 45.48687327731044 - ], - [ - -73.62908949093361, - 45.48682003177005 - ], - [ - -73.62903458875195, - 45.48688043836028 - ] - ] - ] - }, - "id": 233946, - "properties": { - "name": "03074694", - "address": "rue Fulton (MTL) 4979", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62747588940485, - 45.48590943802098 - ], - [ - -73.6277463888679, - 45.486032637879255 - ], - [ - -73.62778578957438, - 45.48598983852985 - ], - [ - -73.6277867889037, - 45.4859882383857 - ], - [ - -73.62782860609715, - 45.48589397322949 - ], - [ - -73.62758822139718, - 45.48578737988085 - ], - [ - -73.62747588940485, - 45.48590943802098 - ] - ] - ] - }, - "id": 234030, - "properties": { - "name": "03074958", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5055", - "function": "5010", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63029578998231, - 45.48469943764377 - ], - [ - -73.63049438936679, - 45.48478803834308 - ], - [ - -73.63061818992881, - 45.48465323757277 - ], - [ - -73.63036786038856, - 45.484539402362984 - ], - [ - -73.63024642842966, - 45.48467744680875 - ], - [ - -73.63029578998231, - 45.48469943764377 - ] - ] - ] - }, - "id": 234048, - "properties": { - "name": "03037115", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5193", - "function": "1000", - "height": 5, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62661981976562, - 45.48406433526166 - ], - [ - -73.6265507878429, - 45.48414213777855 - ], - [ - -73.62669018904073, - 45.48420373789742 - ], - [ - -73.62669228793897, - 45.48420473799816 - ], - [ - -73.62676873863761, - 45.484133501439864 - ], - [ - -73.62661981976562, - 45.48406433526166 - ] - ] - ] - }, - "id": 234061, - "properties": { - "name": "03035321", - "address": "rue Byron (MTL) 5195", - "function": "1000", - "height": 10, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62919018868791, - 45.486710838618876 - ], - [ - -73.62934208880986, - 45.48677803907432 - ], - [ - -73.6293830885099, - 45.48673213830004 - ], - [ - -73.62937868958525, - 45.48673013932595 - ], - [ - -73.62934998961084, - 45.48671763877693 - ], - [ - -73.62936270888706, - 45.48670337621459 - ], - [ - -73.62924388497296, - 45.48665078155681 - ], - [ - -73.62919018868791, - 45.486710838618876 - ] - ] - ] - }, - "id": 234062, - "properties": { - "name": "03074690", - "address": "rue Fulton (MTL) 4991", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62981038978954, - 45.48790473915787 - ], - [ - -73.62976979404584, - 45.48794849618489 - ], - [ - -73.62989751122863, - 45.48800502509388 - ], - [ - -73.62993678981198, - 45.48796263818538 - ], - [ - -73.62981038978954, - 45.48790473915787 - ] - ] - ] - }, - "id": 234137, - "properties": { - "name": "03074329", - "address": "avenue Isabella (CSL+MTL) 4930", - "function": "1000", - "height": 9, - "year_of_construction": 1984 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62753523067487, - 45.48428403294189 - ], - [ - -73.62748877074185, - 45.48433754466689 - ], - [ - -73.62763879154767, - 45.48440671477665 - ], - [ - -73.62765888780793, - 45.48438383802607 - ], - [ - -73.62765168790403, - 45.48438083788663 - ], - [ - -73.62767820955925, - 45.484349955219216 - ], - [ - -73.62753523067487, - 45.48428403294189 - ] - ] - ] - }, - "id": 234237, - "properties": { - "name": "03035382", - "address": "rue Globert (MTL) 5205", - "function": "1000", - "height": 10, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62694988856688, - 45.48710633915915 - ], - [ - -73.62689788802501, - 45.487161138155074 - ], - [ - -73.62709348949119, - 45.48725143796966 - ], - [ - -73.62709678860847, - 45.48724793929815 - ], - [ - -73.62714838914822, - 45.48719223901231 - ], - [ - -73.62695318873551, - 45.48710273880792 - ], - [ - -73.62694988856688, - 45.48710633915915 - ] - ] - ] - }, - "id": 234363, - "properties": { - "name": "03074927", - "address": "avenue Dornal (MTL) 4906", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6288842893144, - 45.48705173801172 - ], - [ - -73.62903738983147, - 45.48711943872799 - ], - [ - -73.62908208956472, - 45.487069538569564 - ], - [ - -73.62904578874885, - 45.48705403924942 - ], - [ - -73.62905590529614, - 45.48704334845067 - ], - [ - -73.62893836409832, - 45.48699132163133 - ], - [ - -73.6288842893144, - 45.48705173801172 - ] - ] - ] - }, - "id": 234368, - "properties": { - "name": "03074697", - "address": "rue Fulton (MTL) 4967", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63271592957314, - 45.48556667836918 - ], - [ - -73.63256747297702, - 45.48573094397036 - ], - [ - -73.63274189061669, - 45.48581003853977 - ], - [ - -73.63279040001417, - 45.48576034305532 - ], - [ - -73.63287946863481, - 45.48566179182981 - ], - [ - -73.63270569036419, - 45.48558083854367 - ], - [ - -73.6327179901556, - 45.48556763791044 - ], - [ - -73.63271592957314, - 45.48556667836918 - ] - ] - ] - }, - "id": 234404, - "properties": { - "name": "03037150", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5333", - "function": "5010", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6306783898123, - 45.48694773898751 - ], - [ - -73.63078059044445, - 45.486993337786046 - ], - [ - -73.63078248971837, - 45.486994238156825 - ], - [ - -73.63081839004451, - 45.48694153897358 - ], - [ - -73.63083503625187, - 45.486916703061915 - ], - [ - -73.63083386322083, - 45.486916184294635 - ], - [ - -73.6308349018774, - 45.48691502410359 - ], - [ - -73.63082278225473, - 45.4869096596065 - ], - [ - -73.63081459024062, - 45.48690713862212 - ], - [ - -73.63081513321731, - 45.48690627414835 - ], - [ - -73.63081118896274, - 45.48690452846529 - ], - [ - -73.63081015030795, - 45.486905689555925 - ], - [ - -73.63073876190106, - 45.48687409311528 - ], - [ - -73.6306783898123, - 45.48694773898751 - ] - ] - ] - }, - "id": 234415, - "properties": { - "name": "03034750", - "address": "avenue Isabella (CSL+MTL) 5022", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6276071892821, - 45.483514838693765 - ], - [ - -73.62755148889359, - 45.48357623892836 - ], - [ - -73.62755608834429, - 45.48357823774999 - ], - [ - -73.62771518890438, - 45.48365273821662 - ], - [ - -73.62777568909911, - 45.48358863839418 - ], - [ - -73.62761038881854, - 45.48351153808252 - ], - [ - -73.6276071892821, - 45.483514838693765 - ] - ] - ] - }, - "id": 234422, - "properties": { - "name": "03035354", - "address": "rue Globert (MTL) 5256", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62750948868465, - 45.48360583767234 - ], - [ - -73.62746488818557, - 45.4836594382028 - ], - [ - -73.62754038737855, - 45.483690538101726 - ], - [ - -73.62753187693902, - 45.48370082924734 - ], - [ - -73.62762401782608, - 45.48374393695483 - ], - [ - -73.62768098833416, - 45.48367733865472 - ], - [ - -73.6276645885344, - 45.48367043806694 - ], - [ - -73.62750948868465, - 45.48360583767234 - ] - ] - ] - }, - "id": 234423, - "properties": { - "name": "03035355", - "address": "rue Globert (MTL) 5248", - "function": "1000", - "height": 8, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63130549056326, - 45.486992839095365 - ], - [ - -73.63149388997542, - 45.4870277388532 - ], - [ - -73.63152408979536, - 45.486946738662496 - ], - [ - -73.63151818993562, - 45.486945738528185 - ], - [ - -73.63133568958764, - 45.48691193883778 - ], - [ - -73.63130549056326, - 45.486992839095365 - ] - ] - ] - }, - "id": 234441, - "properties": { - "name": "03034752", - "address": "avenue Isabella (CSL+MTL) 5151", - "function": "1000", - "height": 9, - "year_of_construction": 1953 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.630238589209, - 45.483639837688386 - ], - [ - -73.63013458905137, - 45.483753237867404 - ], - [ - -73.63023728978294, - 45.483799838136584 - ], - [ - -73.63038408983142, - 45.483639837271326 - ], - [ - -73.63009298921473, - 45.483507737897234 - ], - [ - -73.62994638929054, - 45.48366763828147 - ], - [ - -73.63004718928046, - 45.483713338338724 - ], - [ - -73.63015108894263, - 45.48360013811888 - ], - [ - -73.630238589209, - 45.483639837688386 - ] - ] - ] - }, - "id": 234501, - "properties": { - "name": "03037536", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5136", - "function": "1000", - "height": 11, + "height": 13, "year_of_construction": 1927 } }, @@ -36148,4257 +1790,51 @@ "coordinates": [ [ [ - -73.63129458968548, - 45.48420913849924 + -73.59811168101037, + 45.51776044518184 ], [ - -73.63154719030018, - 45.48432353867195 + -73.59797342366342, + 45.5179120394594 ], [ - -73.63169568959636, - 45.48416143843703 + -73.59795577830684, + 45.51793231540891 ], [ - -73.63144319023327, - 45.484046938590026 + -73.5979604808567, + 45.517934444898856 ], [ - -73.63129458968548, - 45.48420913849924 - ] - ] - ] - }, - "id": 234502, - "properties": { - "name": "03037540", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5180", - "function": "5812", - "height": 9, - "year_of_construction": 1974 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62851278813454, - 45.48639543831608 - ], - [ - -73.62853698884564, - 45.48636813855804 - ], - [ - -73.62854858942555, - 45.48637323842775 - ], - [ - -73.62855798839101, - 45.486362038266776 - ], - [ - -73.62856138888083, - 45.48635873830422 - ], - [ - -73.62855148900292, - 45.486354438284515 - ], - [ - -73.62856782560243, - 45.48633597845705 - ], - [ - -73.62841569686921, - 45.486268579257725 - ], - [ - -73.62836188825997, - 45.48632953860617 - ], - [ - -73.62851278813454, - 45.48639543831608 - ] - ] - ] - }, - "id": 234591, - "properties": { - "name": "03074809", - "address": "avenue Dornal (MTL) 4993", - "function": "1000", - "height": 11, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63255519048352, - 45.48189623818568 - ], - [ - -73.6326372212783, - 45.48193428745881 - ], - [ - -73.6327224926089, - 45.48184061066813 - ], - [ - -73.63264229037603, - 45.481803337699574 - ], - [ - -73.63255519048352, - 45.48189623818568 - ] - ] - ] - }, - "id": 234610, - "properties": { - "name": "03033615", - "address": "avenue Clanranald (CSL+MTL) 5177", - "function": "1000", - "height": 9, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63235669004041, - 45.48208893744259 - ], - [ - -73.63233339044525, - 45.48211873766006 - ], - [ - -73.63240448909372, - 45.48214513775243 - ], - [ - -73.6324095892302, - 45.48214733736438 - ], - [ - -73.63248978912728, - 45.482053037636824 - ], - [ - -73.63241459011502, - 45.48202143763805 - ], - [ - -73.63241039065863, - 45.482019838079694 - ], - [ - -73.63235669004041, - 45.48208893744259 - ] - ] - ] - }, - "id": 234611, - "properties": { - "name": "03033615", - "address": "avenue Clanranald (CSL+MTL) 5177", - "function": "1000", - "height": 9, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6327224926089, - 45.48184061066813 - ], - [ - -73.6326372212783, - 45.48193428745881 - ], - [ - -73.63266859016598, - 45.48194883754242 - ], - [ - -73.63265778995749, - 45.481960237643996 - ], - [ - -73.63269779027132, - 45.481978937685675 - ], - [ - -73.63280508985146, - 45.48186493830243 - ], - [ - -73.63275999016365, - 45.48184433834977 - ], - [ - -73.63275479060209, - 45.481841737537295 - ], - [ - -73.63274579007687, - 45.48185143754528 - ], - [ - -73.6327224926089, - 45.48184061066813 - ] - ] - ] - }, - "id": 234612, - "properties": { - "name": "03033616", - "address": "avenue Clanranald (CSL+MTL) 5181", - "function": "1000", - "height": 9, - "year_of_construction": 1919 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6273721886152, - 45.48325873836144 - ], - [ - -73.62730372773568, - 45.483331330597416 - ], - [ - -73.62741224163756, - 45.48338177107457 - ], - [ - -73.62742768838059, - 45.48336543872996 - ], - [ - -73.62750418786888, - 45.483401237435835 - ], - [ - -73.6275571879489, - 45.483345037750304 - ], - [ - -73.6273721886152, - 45.48325873836144 - ] - ] - ] - }, - "id": 234651, - "properties": { - "name": "03035344", - "address": "rue Byron (MTL) 5271", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62698508752095, - 45.48538933831736 - ], - [ - -73.62689888814062, - 45.485484239187095 - ], - [ - -73.62690398836297, - 45.48548643814365 - ], - [ - -73.62723668831157, - 45.48563393792642 - ], - [ - -73.62723978903877, - 45.48563043857089 - ], - [ - -73.62732448839289, - 45.48553763845905 - ], - [ - -73.62698828825647, - 45.48538593874023 - ], - [ - -73.62698508752095, - 45.48538933831736 - ] - ] - ] - }, - "id": 234740, - "properties": { - "name": "03034831", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5000", - "function": "1000", - "height": 15, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6262013881793, - 45.48331753808037 - ], - [ - -73.62615266083304, - 45.48337096809041 - ], - [ - -73.62632547876407, - 45.483450162440995 - ], - [ - -73.62632918821504, - 45.483446037942336 - ], - [ - -73.62634748807797, - 45.483426338063175 - ], - [ - -73.62633298775945, - 45.48341983831397 - ], - [ - -73.62636078869461, - 45.483389437749814 - ], - [ - -73.6262013881793, - 45.48331753808037 - ] - ] - ] - }, - "id": 234760, - "properties": { - "name": "03035276", - "address": "rue Snowdon (MTL) 5227", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62633318790004, - 45.4831814382026 - ], - [ - -73.62628121965471, - 45.483236751632134 - ], - [ - -73.62644150232794, - 45.48331020154977 - ], - [ - -73.6264627881539, - 45.48328723820304 - ], - [ - -73.62646608774786, - 45.483284038295736 - ], - [ - -73.62645048810076, - 45.48327673801535 - ], - [ - -73.62647718814603, - 45.48324833899922 - ], - [ - -73.62633318790004, - 45.4831814382026 - ] - ] - ] - }, - "id": 234761, - "properties": { - "name": "03035280", - "address": "rue Snowdon (MTL) 5239", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62866778870709, - 45.4891782389042 - ], - [ - -73.62860489891143, - 45.48924910776398 - ], - [ - -73.62873320628886, - 45.489306162807075 - ], - [ - -73.62879658854861, - 45.48923473901736 - ], - [ - -73.62866778870709, - 45.4891782389042 - ] - ] - ] - }, - "id": 234767, - "properties": { - "name": "03074305", - "address": "avenue Isabella (CSL+MTL) 4840", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62878878898623, - 45.488987438795036 - ], - [ - -73.62873376819014, - 45.48904850673774 - ], - [ - -73.62890261563415, - 45.489123240152125 - ], - [ - -73.62895728917864, - 45.48906253965786 - ], - [ - -73.62878878898623, - 45.488987438795036 - ] - ] - ] - }, - "id": 234768, - "properties": { - "name": "03074308", - "address": "avenue Isabella (CSL+MTL) 4854", - "function": "1000", - "height": 9, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62883348932426, - 45.48893593882447 - ], - [ - -73.629001589398, - 45.4890123394507 - ], - [ - -73.62905896331236, - 45.48894991625227 - ], - [ - -73.62888952324867, - 45.48887492008069 - ], - [ - -73.62883348932426, - 45.48893593882447 - ] - ] - ] - }, - "id": 234769, - "properties": { - "name": "03074311", - "address": "avenue Isabella (CSL+MTL) 4864", - "function": "1000", - "height": 8, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62702458794696, - 45.48535043814763 - ], - [ - -73.62702238790635, - 45.48535283868374 - ], - [ - -73.6273591879978, - 45.4855017391131 - ], - [ - -73.62736258843071, - 45.485497838088705 - ], - [ - -73.62744586906152, - 45.4854057701415 - ], - [ - -73.62711044743295, - 45.485257031303405 - ], - [ - -73.62702458794696, - 45.48535043814763 - ] - ] - ] - }, - "id": 234776, - "properties": { - "name": "03034833", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5006", - "function": "1000", - "height": 10, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63241635487259, - 45.48294294316842 - ], - [ - -73.6322941642947, - 45.48307791323487 - ], - [ - -73.63239389040424, - 45.48312243817028 - ], - [ - -73.6325157901559, - 45.48298733785788 - ], - [ - -73.63241635487259, - 45.48294294316842 - ] - ] - ] - }, - "id": 234790, - "properties": { - "name": "03034245", - "address": "avenue Earnscliffe (MTL) 5197", - "function": "1000", - "height": 8, - "year_of_construction": 1958 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63115328982798, - 45.486092838777935 - ], - [ - -73.63129029035821, - 45.48615373773818 - ], - [ - -73.63135241085739, - 45.48608449966646 - ], - [ - -73.63124717594218, - 45.48603735262453 - ], - [ - -73.63123328960442, - 45.48605173911826 - ], - [ - -73.63120338985031, - 45.48603713837174 - ], - [ - -73.63120358999961, - 45.48603683849316 - ], - [ - -73.63115328982798, - 45.486092838777935 - ] - ] - ] - }, - "id": 234791, - "properties": { - "name": "03034742", - "address": "avenue Isabella (CSL+MTL) 5202", - "function": "1000", - "height": 9, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63242929034972, - 45.483139037993645 - ], - [ - -73.63253101481332, - 45.48318520811074 - ], - [ - -73.63265375624935, - 45.483049631557144 - ], - [ - -73.63255318944593, - 45.48300393802329 - ], - [ - -73.63242929034972, - 45.483139037993645 - ] - ] - ] - }, - "id": 234807, - "properties": { - "name": "03034247", - "address": "avenue Earnscliffe (MTL) 5207", - "function": "1000", - "height": 9, - "year_of_construction": 1955 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6273661878308, - 45.48378383776597 - ], - [ - -73.6273425879263, - 45.48380843797965 - ], - [ - -73.62732878878751, - 45.483801538943716 - ], - [ - -73.62730664907997, - 45.48382414706231 - ], - [ - -73.62747644520992, - 45.483903587791325 - ], - [ - -73.62752088827578, - 45.48385723839551 - ], - [ - -73.6273661878308, - 45.48378383776597 - ] - ] - ] - }, - "id": 234819, - "properties": { - "name": "03035359", - "address": "rue Globert (MTL) 5236", - "function": "1000", - "height": 8, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6272815879345, - 45.48384973782279 - ], - [ - -73.62727738830452, - 45.483853737819665 - ], - [ - -73.62729538840685, - 45.483862338288695 - ], - [ - -73.62727838903629, - 45.48388003831062 - ], - [ - -73.6274299881949, - 45.48395203875752 - ], - [ - -73.62747644520992, - 45.483903587791325 - ], - [ - -73.62730664907997, - 45.48382414706231 - ], - [ - -73.6272815879345, - 45.48384973782279 - ] - ] - ] - }, - "id": 234820, - "properties": { - "name": "03035362", - "address": "rue Globert (MTL) 5232", - "function": "1000", - "height": 8, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63243259027583, - 45.48755013874381 - ], - [ - -73.63268279080236, - 45.48766313896149 - ], - [ - -73.6327885907361, - 45.487547139293326 - ], - [ - -73.63253839074684, - 45.48743423918735 - ], - [ - -73.63243259027583, - 45.48755013874381 - ] - ] - ] - }, - "id": 234835, - "properties": { - "name": "03000793", - "address": "boulevard \u00c9douard-Montpetit (MTL) 5100", - "function": "1000", - "height": 13, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6321911908923, - 45.48303193781833 - ], - [ - -73.6322941642947, - 45.48307791323487 - ], - [ - -73.63241635487259, - 45.48294294316842 - ], - [ - -73.63231308965717, - 45.48289683862108 - ], - [ - -73.6321911908923, - 45.48303193781833 - ] - ] - ] - }, - "id": 234837, - "properties": { - "name": "03034243", - "address": "avenue Earnscliffe (MTL) 5191", - "function": "1000", - "height": 8, - "year_of_construction": 1958 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62798644177585, - 45.483791757809584 - ], - [ - -73.62792868236548, - 45.48384711086579 - ], - [ - -73.62810330069395, - 45.48392762057824 - ], - [ - -73.62815758457268, - 45.483870664208595 - ], - [ - -73.62798644177585, - 45.483791757809584 - ] - ] - ] - }, - "id": 234858, - "properties": { - "name": "03035401", - "address": "rue Globert (MTL) 5241", - "function": "1000", - "height": 8, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62804420235034, - 45.48373640382248 - ], - [ - -73.62798644177585, - 45.483791757809584 - ], - [ - -73.62815758457268, - 45.483870664208595 - ], - [ - -73.6282118696233, - 45.48381370871109 - ], - [ - -73.62804420235034, - 45.48373640382248 - ] - ] - ] - }, - "id": 234859, - "properties": { - "name": "03035402", - "address": "rue Globert (MTL) 5245", - "function": "1000", - "height": 9, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63153289045023, - 45.48255433759437 - ], - [ - -73.63142388939221, - 45.48266993765327 - ], - [ - -73.63146779018251, - 45.48269033794471 - ], - [ - -73.63149189033555, - 45.4827019380201 - ], - [ - -73.63149709014861, - 45.48270463787248 - ], - [ - -73.63150288966555, - 45.48269843755294 - ], - [ - -73.63150942323814, - 45.4827014976075 - ], - [ - -73.63161005965196, - 45.482590339749194 - ], - [ - -73.63153289045023, - 45.48255433759437 - ] - ] - ] - }, - "id": 234869, - "properties": { - "name": "03034227", - "address": "avenue Earnscliffe (MTL) 5147", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6315846899676, - 45.48273673799923 - ], - [ - -73.63168829055768, - 45.482626837342885 - ], - [ - -73.63161005965196, - 45.482590339749194 - ], - [ - -73.63150942323814, - 45.4827014976075 - ], - [ - -73.6315846899676, - 45.48273673799923 - ] - ] - ] - }, - "id": 234870, - "properties": { - "name": "03034229", - "address": "avenue Earnscliffe (MTL) 5151", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62842808843278, - 45.48756303935648 - ], - [ - -73.62862958931667, - 45.4876496387346 - ], - [ - -73.62866188961291, - 45.48760483863511 - ], - [ - -73.62867610203935, - 45.48758544354966 - ], - [ - -73.62848292055142, - 45.487499937206195 - ], - [ - -73.62842808843278, - 45.48756303935648 - ] - ] - ] - }, - "id": 234882, - "properties": { - "name": "03074709", - "address": "rue Fulton (MTL) 4915", - "function": "1000", - "height": 10, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62863778969155, - 45.48886193922754 - ], - [ - -73.62863878867957, - 45.488860739508354 - ], - [ - -73.62864808865544, - 45.488839039159636 - ], - [ - -73.6286902885663, - 45.48884793968762 - ], - [ - -73.6287038889808, - 45.488815838574595 - ], - [ - -73.62870358939006, - 45.48881573902931 - ], - [ - -73.62870758975149, - 45.48877973890338 - ], - [ - -73.62870748973427, - 45.488779638233375 - ], - [ - -73.62854478970254, - 45.48870893881438 - ], - [ - -73.62854368964834, - 45.488710138646496 - ], - [ - -73.628466389452, - 45.48878703911843 - ], - [ - -73.62863778969155, - 45.48886193922754 - ] - ] - ] - }, - "id": 234898, - "properties": { - "name": "03122368", - "address": "rue Jean-Brillant (MTL) 4867", - "function": "1000", - "height": 10, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63113469016567, - 45.48740543909983 - ], - [ - -73.63120998999499, - 45.48731843833317 - ], - [ - -73.63104188985352, - 45.48724663824597 - ], - [ - -73.63101898940272, - 45.487273238758846 - ], - [ - -73.63100888960793, - 45.487268939182094 - ], - [ - -73.63096178998398, - 45.48732703863898 - ], - [ - -73.63105238950419, - 45.48736323810546 - ], - [ - -73.63103659011804, - 45.48738253902438 - ], - [ - -73.63109019025059, - 45.487404038726694 - ], - [ - -73.63110098937914, - 45.48739103796008 - ], - [ - -73.63113469016567, - 45.48740543909983 - ] - ] - ] - }, - "id": 234954, - "properties": { - "name": "03074207", - "address": "avenue Isabella (CSL+MTL) 4989", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63080798917967, - 45.48750133860909 - ], - [ - -73.63076198968471, - 45.487551838424565 - ], - [ - -73.63092388957018, - 45.48762473843917 - ], - [ - -73.63099598936728, - 45.487545538647424 - ], - [ - -73.63083399006203, - 45.48747273873075 - ], - [ - -73.63080798917967, - 45.48750133860909 - ] - ] - ] - }, - "id": 234955, - "properties": { - "name": "03074209", - "address": "avenue Isabella (CSL+MTL) 4977", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62748877074185, - 45.48433754466689 - ], - [ - -73.62744230944577, - 45.484391058173706 - ], - [ - -73.6275818245581, - 45.484455383608555 - ], - [ - -73.62758228896949, - 45.48445483868292 - ], - [ - -73.62759278885142, - 45.4844593378837 - ], - [ - -73.62762188766594, - 45.484425938180834 - ], - [ - -73.62763879154767, - 45.48440671477665 - ], - [ - -73.62748877074185, - 45.48433754466689 - ] - ] - ] - }, - "id": 234972, - "properties": { - "name": "03035380", - "address": "rue Globert (MTL) 5201", - "function": "1000", - "height": 10, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6264328877954, - 45.48595663875222 - ], - [ - -73.62679418791537, - 45.48612203938096 - ], - [ - -73.62696828858526, - 45.48593383848804 - ], - [ - -73.62658358791836, - 45.48575773907498 - ], - [ - -73.62650258780775, - 45.4858453379268 - ], - [ - -73.62660448852975, - 45.48589193873163 - ], - [ - -73.62660658793668, - 45.485893138598904 - ], - [ - -73.62658348879583, - 45.48590653860915 - ], - [ - -73.62657458826277, - 45.48591023874029 - ], - [ - -73.62657498755411, - 45.48590973888335 - ], - [ - -73.62650558796423, - 45.485878038604824 - ], - [ - -73.6264328877954, - 45.48595663875222 - ] - ] - ] - }, - "id": 234983, - "properties": { - "name": "03075064", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4976", - "function": "1000", - "height": 18, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62719738844413, - 45.4834473375699 - ], - [ - -73.6271570115047, - 45.483490031640386 - ], - [ - -73.62732153322128, - 45.48356651078258 - ], - [ - -73.6273615886787, - 45.48352423814104 - ], - [ - -73.62719738844413, - 45.4834473375699 - ] - ] - ] - }, - "id": 234996, - "properties": { - "name": "03035341", - "address": "rue Byron (MTL) 5257", - "function": "1000", - "height": 8, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6291505894083, - 45.488584938849485 - ], - [ - -73.62932018974742, - 45.488661438997845 - ], - [ - -73.62937698372471, - 45.488599149469486 - ], - [ - -73.62920645192285, - 45.488523670883055 - ], - [ - -73.6291505894083, - 45.488584938849485 - ] - ] - ] - }, - "id": 235065, - "properties": { - "name": "03116502", - "address": "avenue Isabella (CSL+MTL) 4890", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62741538832164, - 45.4834838380324 - ], - [ - -73.62744708926049, - 45.483450138516446 - ], - [ - -73.62746388777906, - 45.48345803842007 - ], - [ - -73.62748568890991, - 45.48343513819739 - ], - [ - -73.62739978750034, - 45.48339493801937 - ], - [ - -73.62741224163756, - 45.48338177107457 - ], - [ - -73.62730372773568, - 45.483331330597416 - ], - [ - -73.62723798874448, - 45.48340103845164 - ], - [ - -73.62741538832164, - 45.4834838380324 - ] - ] - ] - }, - "id": 235168, - "properties": { - "name": "03035342", - "address": "rue Byron (MTL) 5267", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62665368758887, - 45.48333603772551 - ], - [ - -73.62660742741197, - 45.483386237445 - ], - [ - -73.62676680816365, - 45.483459274874484 - ], - [ - -73.62681328775132, - 45.483408838187955 - ], - [ - -73.62665368758887, - 45.48333603772551 - ] - ] - ] - }, - "id": 235183, - "properties": { - "name": "03035303", - "address": "rue Byron (MTL) 5246", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62953208969827, - 45.48811363929456 - ], - [ - -73.62970478862427, - 45.488196138234194 - ], - [ - -73.62978359025026, - 45.4881145389162 - ], - [ - -73.6297368900189, - 45.488092238902816 - ], - [ - -73.62974888991836, - 45.48807993878135 - ], - [ - -73.62974378911792, - 45.4880776382709 - ], - [ - -73.62969578918383, - 45.48805423920565 - ], - [ - -73.62968328916268, - 45.488067139186555 - ], - [ - -73.6296107895702, - 45.4880322390759 - ], - [ - -73.62953208969827, - 45.48811363929456 - ] - ] - ] - }, - "id": 235304, - "properties": { - "name": "03074325", - "address": "avenue Isabella (CSL+MTL) 4914", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62917298901957, - 45.483972237904354 - ], - [ - -73.62917138898788, - 45.48397403850636 - ], - [ - -73.62910553061838, - 45.48405016526578 - ], - [ - -73.62942471361703, - 45.484192995689305 - ], - [ - -73.6294957889904, - 45.48411153844349 - ], - [ - -73.62917298901957, - 45.483972237904354 - ] - ] - ] - }, - "id": 235438, - "properties": { - "name": "03034819", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5295", - "function": "5010", - "height": 13, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6289260896668, - 45.48625853884787 - ], - [ - -73.62908668939616, - 45.486329438993465 - ], - [ - -73.62914848885232, - 45.48626063891058 - ], - [ - -73.6289878885554, - 45.48618943830312 - ], - [ - -73.6289260896668, - 45.48625853884787 - ] - ] - ] - }, - "id": 235445, - "properties": { - "name": "03074801", - "address": "rue Fulton (MTL) 5002", - "function": "1000", - "height": 8, - "year_of_construction": 1959 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63060969024734, - 45.48770373924399 - ], - [ - -73.63056879002012, - 45.487751038697134 - ], - [ - -73.63072168955628, - 45.48781643827191 - ], - [ - -73.6307872871537, - 45.48774055568778 - ], - [ - -73.63064241573112, - 45.48767640500261 - ], - [ - -73.63061978946126, - 45.48770333896257 - ], - [ - -73.63061268876311, - 45.487700338898094 - ], - [ - -73.63060969024734, - 45.48770373924399 - ] - ] - ] - }, - "id": 235446, - "properties": { - "name": "03074213", - "address": "avenue Isabella (CSL+MTL) 4965", - "function": "1000", - "height": 8, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6263547881179, - 45.48440293851384 - ], - [ - -73.62647208802325, - 45.48446093876148 - ], - [ - -73.62652418803599, - 45.48440863869591 - ], - [ - -73.62646548819092, - 45.484379638668955 - ], - [ - -73.62648778776551, - 45.48435733828601 - ], - [ - -73.62642928755211, - 45.48432833801913 - ], - [ - -73.6263547881179, - 45.48440293851384 - ] - ] - ] - }, - "id": 235601, - "properties": { - "name": "03034899", - "address": "chemin Circle (MTL) 5020", - "function": "1000", - "height": 8, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63130919021665, - 45.48674283788884 - ], - [ - -73.63126679016294, - 45.48680203888475 - ], - [ - -73.63147428952233, - 45.486875238457564 - ], - [ - -73.63153838993618, - 45.48678523857226 - ], - [ - -73.63153598964284, - 45.48678453855671 - ], - [ - -73.63133299001916, - 45.48671033869189 - ], - [ - -73.63130919021665, - 45.48674283788884 - ] - ] - ] - }, - "id": 235635, - "properties": { - "name": "03034754", - "address": "avenue Isabella (CSL+MTL) 5157", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63191678971012, - 45.482725237348305 - ], - [ - -73.63180619013099, - 45.482844137551716 - ], - [ - -73.63185418964345, - 45.48286613829049 - ], - [ - -73.63184808988001, - 45.482871937642734 - ], - [ - -73.63188168205362, - 45.48288801241314 - ], - [ - -73.63199599194559, - 45.4827617498059 - ], - [ - -73.63191678971012, - 45.482725237348305 - ] - ] - ] - }, - "id": 235655, - "properties": { - "name": "03034235", - "address": "avenue Earnscliffe (MTL) 5167", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62719169494076, - 45.481871651602 - ], - [ - -73.62713531319395, - 45.48194410612521 - ], - [ - -73.62713586252865, - 45.48194435837066 - ], - [ - -73.62724708847198, - 45.48198703842126 - ], - [ - -73.62729943230993, - 45.48192107803692 - ], - [ - -73.62719169494076, - 45.481871651602 - ] - ] - ] - }, - "id": 235734, - "properties": { - "name": "03076897", - "address": "rue Snowdon (MTL) 5332", - "function": "1000", - "height": 10, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6312752899344, - 45.487518638362 - ], - [ - -73.63122223752563, - 45.48757663318396 - ], - [ - -73.63139697904421, - 45.48765527768679 - ], - [ - -73.63144979027007, - 45.48759813881529 - ], - [ - -73.6312752899344, - 45.487518638362 - ] - ] - ] - }, - "id": 235801, - "properties": { - "name": "03074203", - "address": "avenue Lacombe (MTL) 4996", - "function": "1000", - "height": 8, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62782578828981, - 45.48443483822698 - ], - [ - -73.62776088888569, - 45.48450783796609 - ], - [ - -73.62775978867063, - 45.48450893790879 - ], - [ - -73.62776788880448, - 45.48451233836579 - ], - [ - -73.62764368880215, - 45.48465213784121 - ], - [ - -73.62794068839705, - 45.48478263779696 - ], - [ - -73.62817648897041, - 45.484517138398544 - ], - [ - -73.62787168794092, - 45.484383138383365 - ], - [ - -73.62782578828981, - 45.48443483822698 - ] - ] - ] - }, - "id": 235903, - "properties": { - "name": "03034843", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5204", - "function": "6000", - "height": 17, - "year_of_construction": 1967 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62970611001765, - 45.48324114306158 - ], - [ - -73.62964934143749, - 45.48330419765298 - ], - [ - -73.62999826604184, - 45.483461581039904 - ], - [ - -73.63004921643298, - 45.48339625628989 - ], - [ - -73.62970611001765, - 45.48324114306158 - ] - ] - ] - }, - "id": 236003, - "properties": { - "name": "03034812", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5327", - "function": "1000", - "height": 13, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6293693891511, - 45.48703973909862 - ], - [ - -73.6295243894346, - 45.48710943916752 - ], - [ - -73.62958173113547, - 45.487046333639 - ], - [ - -73.62946019656707, - 45.48699254009044 - ], - [ - -73.6294467882516, - 45.4870070383035 - ], - [ - -73.62941728906382, - 45.48699363883191 - ], - [ - -73.62941308968462, - 45.4869916387333 - ], - [ - -73.6293693891511, - 45.48703973909862 - ] - ] - ] - }, - "id": 236024, - "properties": { - "name": "03074671", - "address": "rue Jean-Brillant (MTL) 4978", - "function": "1000", - "height": 10, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62947998961594, - 45.48691373795924 - ], - [ - -73.62943438914327, - 45.486963938044184 - ], - [ - -73.6294713895142, - 45.48698043797651 - ], - [ - -73.62946019656707, - 45.48699254009044 - ], - [ - -73.62958173113547, - 45.487046333639 - ], - [ - -73.6296377902557, - 45.48698463869505 - ], - [ - -73.62947998961594, - 45.48691373795924 - ] - ] - ] - }, - "id": 236025, - "properties": { - "name": "03074674", - "address": "rue Jean-Brillant (MTL) 4982", - "function": "1000", - "height": 10, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62681448795918, - 45.483866238621005 - ], - [ - -73.62677361166334, - 45.483908989797534 - ], - [ - -73.62695022115827, - 45.483991025201085 - ], - [ - -73.62698998880025, - 45.48394963846157 - ], - [ - -73.62681448795918, - 45.483866238621005 - ] - ] - ] - }, - "id": 236038, - "properties": { - "name": "03035327", - "address": "rue Byron (MTL) 5215", - "function": "1000", - "height": 9, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62698898877237, - 45.48421453810205 - ], - [ - -73.6269747699459, - 45.48422982699805 - ], - [ - -73.62711114628232, - 45.484293631888264 - ], - [ - -73.62717698824432, - 45.48422253824027 - ], - [ - -73.62703968810384, - 45.48415973868366 - ], - [ - -73.62698898877237, - 45.48421453810205 - ] - ] - ] - }, - "id": 236049, - "properties": { - "name": "03035372", - "address": "rue Globert (MTL) 5198", - "function": "1000", - "height": 10, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62735428869041, - 45.484492438528505 - ], - [ - -73.62735018909625, - 45.484497138496366 - ], - [ - -73.62749508862055, - 45.48455973842685 - ], - [ - -73.62750078791872, - 45.48456213825399 - ], - [ - -73.62751788886216, - 45.4845423378468 - ], - [ - -73.62751038810032, - 45.4845392381515 - ], - [ - -73.62753601370687, - 45.484509163680194 - ], - [ - -73.62739586847472, - 45.484444547342584 - ], - [ - -73.62735428869041, - 45.484492438528505 - ] - ] - ] - }, - "id": 236050, - "properties": { - "name": "03035376", - "address": "rue Globert (MTL) 5193", - "function": "1000", - "height": 13, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62635858747026, - 45.48714373909052 - ], - [ - -73.62628578848961, - 45.48722473822474 - ], - [ - -73.6262885877174, - 45.48722593912355 - ], - [ - -73.62637828828727, - 45.48726143871244 - ], - [ - -73.62646098874433, - 45.48729583917049 - ], - [ - -73.6264759877211, - 45.48730233924673 - ], - [ - -73.62656608869943, - 45.48734343888397 - ], - [ - -73.62656788781062, - 45.487341339350166 - ], - [ - -73.6266371882387, - 45.48726573849157 - ], - [ - -73.62654583678123, - 45.48722433614736 - ], - [ - -73.62636011895749, - 45.48714209877731 - ], - [ - -73.62635858747026, - 45.48714373909052 - ] - ] - ] - }, - "id": 236084, - "properties": { - "name": "03074972", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4897", - "function": "1000", - "height": 16, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62959568984284, - 45.488325138843955 - ], - [ - -73.62962239016642, - 45.48829483954364 - ], - [ - -73.62963078890263, - 45.48829873894171 - ], - [ - -73.62967908955103, - 45.48824403919649 - ], - [ - -73.62951218909438, - 45.48817133836184 - ], - [ - -73.62943748966433, - 45.48825623887597 - ], - [ - -73.62959568984284, - 45.488325138843955 - ] - ] - ] - }, - "id": 236119, - "properties": { - "name": "03074323", - "address": "avenue Isabella (CSL+MTL) 4902", - "function": "1000", - "height": 8, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62952528930273, - 45.48686573921947 - ], - [ - -73.62967888919933, - 45.48693463890617 - ], - [ - -73.6297361028162, - 45.48687161802912 - ], - [ - -73.62961582985658, - 45.48681838291567 - ], - [ - -73.62960428922364, - 45.486831137826755 - ], - [ - -73.62957038905185, - 45.486815939196866 - ], - [ - -73.62952528930273, - 45.48686573921947 - ] - ] - ] - }, - "id": 236132, - "properties": { - "name": "03074676", - "address": "rue Jean-Brillant (MTL) 4990", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62665978834809, - 45.48401943811478 - ], - [ - -73.62661981976562, - 45.48406433526166 - ], - [ - -73.62676873863761, - 45.484133501439864 - ], - [ - -73.62679058821709, - 45.48411313886515 - ], - [ - -73.62679048821356, - 45.484113039093224 - ], - [ - -73.62683488792672, - 45.484062438240755 - ], - [ - -73.62668078826513, - 45.48399553830739 - ], - [ - -73.62665978834809, - 45.48401943811478 - ] - ] - ] - }, - "id": 236182, - "properties": { - "name": "03035322", - "address": "rue Byron (MTL) 5199", - "function": "1000", - "height": 10, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62981098852784, - 45.48191163846088 - ], - [ - -73.6297915887919, - 45.48193403788995 - ], - [ - -73.62985878901989, - 45.481961836959655 - ], - [ - -73.62995278942604, - 45.48184943730423 - ], - [ - -73.62987685574517, - 45.48181803173623 - ], - [ - -73.62979723017725, - 45.48190627661243 - ], - [ - -73.62981098852784, - 45.48191163846088 - ] - ] - ] - }, - "id": 236183, - "properties": { - "name": "03034215", - "address": "avenue Earnscliffe (MTL) 4999", - "function": "1000", - "height": 16, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6292621892536, - 45.488462538906994 - ], - [ - -73.62920645192285, - 45.488523670883055 - ], - [ - -73.62937698372471, - 45.488599149469486 - ], - [ - -73.62943178937573, - 45.48853903889151 - ], - [ - -73.6292621892536, - 45.488462538906994 - ] - ] - ] - }, - "id": 236221, - "properties": { - "name": "03074320", - "address": "avenue Isabella (CSL+MTL) 4896", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63187469039724, - 45.484530838339424 - ], - [ - -73.63197312743303, - 45.48457512396035 - ], - [ - -73.63208245108427, - 45.48445415366109 - ], - [ - -73.63204628935652, - 45.484438137715 - ], - [ - -73.63213298959283, - 45.484341337287724 - ], - [ - -73.63199169036407, - 45.484278737278 - ], - [ - -73.63193309051455, - 45.48434413830841 - ], - [ - -73.63191239025225, - 45.48433493789234 - ], - [ - -73.63189779027208, - 45.484351338251216 - ], - [ - -73.63186350184914, - 45.4843360381611 - ], - [ - -73.63174163415421, - 45.48447088935073 - ], - [ - -73.63187469039724, - 45.484530838339424 - ] - ] - ] - }, - "id": 236417, - "properties": { - "name": "03037542", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5210", - "function": "1000", - "height": 16, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62764079336607, - 45.48238775253703 - ], - [ - -73.62763639735702, - 45.482385734594295 - ], - [ - -73.62759988851356, - 45.48242503748493 - ], - [ - -73.62757558806813, - 45.482413837243236 - ], - [ - -73.62758828891018, - 45.48240013819217 - ], - [ - -73.62758788829778, - 45.482400037856834 - ], - [ - -73.62746222341494, - 45.48236090255215 - ], - [ - -73.62733395729484, - 45.48250481318027 - ], - [ - -73.62735448862198, - 45.48251403801329 - ], - [ - -73.62735908778453, - 45.4825091377207 - ], - [ - -73.62748521031124, - 45.4825656045697 - ], - [ - -73.62764079336607, - 45.48238775253703 - ] - ] - ] - }, - "id": 236512, - "properties": { - "name": "03109916", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 4914", - "function": "1000", - "height": 13, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62738658831366, - 45.482318638350485 - ], - [ - -73.62736138890223, - 45.482346137863864 - ], - [ - -73.62736030176814, - 45.48234564775982 - ], - [ - -73.62725078717347, - 45.48246744255564 - ], - [ - -73.62733395729484, - 45.48250481318027 - ], - [ - -73.62746222341494, - 45.48236090255215 - ], - [ - -73.62746008823218, - 45.482360238148445 - ], - [ - -73.62746988872208, - 45.48234463737172 - ], - [ - -73.62738668808994, - 45.482318638239214 - ], - [ - -73.62738658831366, - 45.482318638350485 - ] - ] - ] - }, - "id": 236911, - "properties": { - "name": "03108877", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 4906", - "function": "1000", - "height": 13, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62728238801414, - 45.48231053800963 - ], - [ - -73.62717188745542, - 45.48243193789675 - ], - [ - -73.62725078717347, - 45.48246744255564 - ], - [ - -73.62736030176814, - 45.48234564775982 - ], - [ - -73.62728238801414, - 45.48231053800963 - ] - ] - ] - }, - "id": 237045, - "properties": { - "name": "03108876", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 4902", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62775208853758, - 45.48626433912186 - ], - [ - -73.6279049893775, - 45.486331838223315 - ], - [ - -73.62797850474256, - 45.48624954146366 - ], - [ - -73.62782571359523, - 45.486181838971724 - ], - [ - -73.62775208853758, - 45.48626433912186 - ] - ] - ] - }, - "id": 237623, - "properties": { - "name": "03116930", - "address": "avenue Dornal (MTL) 4980", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63025888890446, - 45.48677363815627 - ], - [ - -73.63020194983665, - 45.48683670217592 - ], - [ - -73.63037536128043, - 45.48691435003912 - ], - [ - -73.6304323896746, - 45.48685123903989 - ], - [ - -73.63025888890446, - 45.48677363815627 - ] - ] - ] - }, - "id": 237690, - "properties": { - "name": "03074551", - "address": "rue Jean-Brillant (MTL) 5007", - "function": "1000", - "height": 9, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63005458977436, - 45.48583433827782 - ], - [ - -73.62999728881299, - 45.485904937927735 - ], - [ - -73.62998532558122, - 45.48590014006581 - ], - [ - -73.62990818809887, - 45.48598575727396 - ], - [ - -73.63000988933747, - 45.48602883866892 - ], - [ - -73.63014558859811, - 45.485870238369564 - ], - [ - -73.63013018973193, - 45.48586453829228 - ], - [ - -73.63009848910436, - 45.48585213853115 - ], - [ - -73.63005458977436, - 45.48583433827782 - ] - ] - ] - }, - "id": 237722, - "properties": { - "name": "03121017", - "address": "avenue de Westbury (MTL) 5212", - "function": "1000", - "height": 10, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63236385194081, - 45.48345120574868 - ], - [ - -73.6322620626463, - 45.483563891728515 - ], - [ - -73.63234428596675, - 45.48360071898677 - ], - [ - -73.63242421638272, - 45.48351223174896 - ], - [ - -73.63240978991065, - 45.48350643726529 - ], - [ - -73.6324290903931, - 45.483482837117826 - ], - [ - -73.63242899038076, - 45.483482737350826 - ], - [ - -73.63236385194081, - 45.48345120574868 - ] - ] - ] - }, - "id": 238078, - "properties": { - "name": "03001952", - "address": "avenue Coolbrook (MTL) 5248", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62981896161982, - 45.48311579764088 - ], - [ - -73.62970611001765, - 45.48324114306158 - ], - [ - -73.63004921643298, - 45.48339625628989 - ], - [ - -73.63008588936944, - 45.483349238053606 - ], - [ - -73.63008588913955, - 45.48334913817092 - ], - [ - -73.63004358923344, - 45.48333233761305 - ], - [ - -73.63011178928798, - 45.48324743863315 - ], - [ - -73.63013265821749, - 45.48325574653752 - ], - [ - -73.62981896161982, - 45.48311579764088 - ] - ] - ] - }, - "id": 238427, - "properties": { - "name": "03115627", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5337", - "function": "1000", - "height": 11, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62931938974317, - 45.489169438655466 - ], - [ - -73.62947108941962, - 45.489235539526426 - ], - [ - -73.62953776139422, - 45.489159764442554 - ], - [ - -73.6293994036951, - 45.489098524808284 - ], - [ - -73.62937769015413, - 45.48912173932021 - ], - [ - -73.62936628933346, - 45.48911643954523 - ], - [ - -73.62936358911587, - 45.48911943908855 - ], - [ - -73.62931938974317, - 45.489169438655466 - ] - ] - ] - }, - "id": 238451, - "properties": { - "name": "03116754", - "address": "avenue Isabella (CSL+MTL) 4865", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6325902904428, - 45.485508138119584 - ], - [ - -73.6325871895874, - 45.48551143875459 - ], - [ - -73.63255840511697, - 45.485542583437336 - ], - [ - -73.63244028395371, - 45.48567328450567 - ], - [ - -73.63256747297702, - 45.48573094397036 - ], - [ - -73.63271592957314, - 45.48556667836918 - ], - [ - -73.6325902904428, - 45.485508138119584 - ] - ] - ] - }, - "id": 238589, - "properties": { - "name": "03104727", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5323", - "function": "5010", - "height": 9, - "year_of_construction": 1987 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63139738962496, - 45.48546583893846 - ], - [ - -73.63143008976702, - 45.48548003778176 - ], - [ - -73.63142278938638, - 45.48548843814513 - ], - [ - -73.63142348879269, - 45.48548883867174 - ], - [ - -73.63147629596132, - 45.485511673583915 - ], - [ - -73.63158906489016, - 45.48538682687407 - ], - [ - -73.6315002896475, - 45.48534833831207 - ], - [ - -73.63139738962496, - 45.48546583893846 - ] - ] - ] - }, - "id": 240346, - "properties": { - "name": "03001184", - "address": "avenue Trans Island (MTL) 5240", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63042898898524, - 45.486530138346474 - ], - [ - -73.63032438924633, - 45.4866447388196 - ], - [ - -73.63038888881906, - 45.48667383911333 - ], - [ - -73.6303782898369, - 45.48668543852591 - ], - [ - -73.63039756725983, - 45.4866937005016 - ], - [ - -73.63051087658906, - 45.48656703837646 - ], - [ - -73.63042898898524, - 45.486530138346474 - ] - ] - ] - }, - "id": 240580, - "properties": { - "name": "03000373", - "address": "avenue de Westbury (MTL) 5253", - "function": "1000", - "height": 8, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63164867778117, - 45.48359676711881 - ], - [ - -73.63153296954353, - 45.48372401810145 - ], - [ - -73.63160968927365, - 45.48375583738144 - ], - [ - -73.63171869046451, - 45.48362583782689 - ], - [ - -73.63164867778117, - 45.48359676711881 - ] - ] - ] - }, - "id": 241149, - "properties": { - "name": "03001398", - "address": "avenue Coolbrook (MTL) 5225", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62811878848375, - 45.48524263835249 - ], - [ - -73.62848248902627, - 45.48540473843307 - ], - [ - -73.628713388038, - 45.485148438095436 - ], - [ - -73.62834978954395, - 45.48498633772827 - ], - [ - -73.62811878848375, - 45.48524263835249 - ] - ] - ] - }, - "id": 241395, - "properties": { - "name": "03034827", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5185", - "function": "6000", - "height": 23, - "year_of_construction": 1965 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62952268849183, - 45.48561813915625 - ], - [ - -73.6294165895516, - 45.48577083819436 - ], - [ - -73.62950948992294, - 45.485802737723404 - ], - [ - -73.6295112891253, - 45.4858035383461 - ], - [ - -73.62966368962933, - 45.48562023870043 - ], - [ - -73.62955508813862, - 45.48557563868178 - ], - [ - -73.6295527898038, - 45.48557473874299 - ], - [ - -73.62952268849183, - 45.48561813915625 - ] - ] - ] - }, - "id": 241430, - "properties": { - "name": "03000236", - "address": "avenue de Westbury (MTL) 5186", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62962278872436, - 45.4888166397059 - ], - [ - -73.62957009587168, - 45.488897134874705 - ], - [ - -73.62970814078636, - 45.488958236083356 - ], - [ - -73.62977368887404, - 45.48887633868591 - ], - [ - -73.62962278872436, - 45.4888166397059 - ] - ] - ] - }, - "id": 241695, - "properties": { - "name": "03074226", - "address": "avenue Isabella (CSL+MTL) 4881", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62676328804847, - 45.487335038815544 - ], - [ - -73.62674708844254, - 45.48735393825418 - ], - [ - -73.62671108775709, - 45.487395638351245 - ], - [ - -73.62688308936136, - 45.48746893871896 - ], - [ - -73.62690658792467, - 45.487441738174695 - ], - [ - -73.6269403885289, - 45.487401939135715 - ], - [ - -73.62676778802768, - 45.487329639246624 - ], - [ - -73.62676328804847, - 45.487335038815544 - ] - ] - ] - }, - "id": 242216, - "properties": { - "name": "03074923", - "address": "avenue Dornal (MTL) 4896", - "function": "5010", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63245258996163, - 45.4834939382705 - ], - [ - -73.63243418956304, - 45.483516238000284 - ], - [ - -73.63242421638272, - 45.48351223174896 - ], - [ - -73.63234428596675, - 45.48360071898677 - ], - [ - -73.6324251071805, - 45.48363691791866 - ], - [ - -73.6325212670027, - 45.48353046436276 - ], - [ - -73.63245268973998, - 45.483493938154794 - ], - [ - -73.63245258996163, - 45.4834939382705 - ] - ] - ] - }, - "id": 243027, - "properties": { - "name": "05003087", - "address": "avenue Coolbrook (MTL) 5250", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63285906663481, - 45.482688637316976 - ], - [ - -73.6327618825747, - 45.48279601560593 - ], - [ - -73.63283874676607, - 45.48283021669102 - ], - [ - -73.63289803452201, - 45.482764710895815 - ], - [ - -73.63285878934211, - 45.48274753798774 - ], - [ - -73.6328963909299, - 45.482704937809245 - ], - [ - -73.63285906663481, - 45.482688637316976 - ] - ] - ] - }, - "id": 243675, - "properties": { - "name": "05191078", - "address": "avenue Earnscliffe (MTL) 5208", - "function": "1000", - "height": 10, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62829936003918, - 45.48208952007935 - ], - [ - -73.62820528053938, - 45.4821946162036 - ], - [ - -73.62827959386912, - 45.4822286279563 - ], - [ - -73.62837408031103, - 45.4821230759918 - ], - [ - -73.62829936003918, - 45.48208952007935 - ] - ] - ] - }, - "id": 244328, - "properties": { - "name": "03001346", - "address": "avenue Coolbrook (MTL) 4933", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62895967453143, - 45.4823860587972 - ], - [ - -73.62886713471144, - 45.48248950610392 - ], - [ - -73.62888728884941, - 45.48249813808822 - ], - [ - -73.62893588879422, - 45.482518738316095 - ], - [ - -73.62893598834302, - 45.48251863832076 - ], - [ - -73.6290395883917, - 45.48240473844593 - ], - [ - -73.62900568951754, - 45.48238943795259 - ], - [ - -73.62899458865145, - 45.48240173789292 - ], - [ - -73.62895967453143, - 45.4823860587972 - ] - ] - ] - }, - "id": 245620, - "properties": { - "name": "03001364", - "address": "avenue Coolbrook (MTL) 4971", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62727688843323, - 45.48775133919698 - ], - [ - -73.62730188853509, - 45.48772343861941 - ], - [ - -73.6273226890748, - 45.487732638853906 - ], - [ - -73.62734178872222, - 45.487711438795984 - ], - [ - -73.62734228885951, - 45.48771083894124 - ], - [ - -73.62732948775214, - 45.48770443911167 - ], - [ - -73.6273510922538, - 45.487683230860824 - ], - [ - -73.62720890255696, - 45.48761968832514 - ], - [ - -73.62714378939485, - 45.487692338770586 - ], - [ - -73.62727688843323, - 45.48775133919698 - ] - ] - ] - }, - "id": 246222, - "properties": { - "name": "03074837", - "address": "avenue Dornal (MTL) 4889", - "function": "1000", - "height": 10, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63212642051604, - 45.482342194975566 - ], - [ - -73.63200807104437, - 45.48247294362659 - ], - [ - -73.63209080138576, - 45.482510718926534 - ], - [ - -73.63211886089084, - 45.482479719158945 - ], - [ - -73.6321026749838, - 45.48247246891918 - ], - [ - -73.63215262624925, - 45.48241728474498 - ], - [ - -73.63214729038116, - 45.4824149369197 - ], - [ - -73.63218448993359, - 45.48237313740171 - ], - [ - -73.63218739027813, - 45.48237003767359 - ], - [ - -73.63212642051604, - 45.482342194975566 - ] - ] - ] - }, - "id": 247381, - "properties": { - "name": "05084154", - "address": "avenue Earnscliffe (MTL) 5168", - "function": "1000", - "height": 9, - "year_of_construction": 2003 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6293139897477, - 45.48708463844247 - ], - [ - -73.62930109021457, - 45.4870984386818 - ], - [ - -73.62926988945104, - 45.48712973823598 - ], - [ - -73.6293170892304, - 45.487152738858356 - ], - [ - -73.62930353784309, - 45.48716624288663 - ], - [ - -73.62942547218032, - 45.48722021251704 - ], - [ - -73.62948038907079, - 45.4871612391801 - ], - [ - -73.6293139897477, - 45.48708463844247 - ] - ] - ] - }, - "id": 247384, - "properties": { - "name": "03074669", - "address": "rue Jean-Brillant (MTL) 4970", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62842928894743, - 45.484859937877104 - ], - [ - -73.6283975885967, - 45.48489623821182 - ], - [ - -73.6290344887828, - 45.48517193793845 - ], - [ - -73.62916918840871, - 45.48501783823486 - ], - [ - -73.62916748901932, - 45.485017038393686 - ], - [ - -73.62911998977847, - 45.484996537811874 - ], - [ - -73.6293023891854, - 45.48478763828057 - ], - [ - -73.62871458968642, - 45.48453353860914 - ], - [ - -73.62842928894743, - 45.484859937877104 - ] - ] - ] - }, - "id": 247623, - "properties": { - "name": "05005050", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5225", - "function": "5010", - "height": 14, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62656088896044, - 45.48343673890213 - ], - [ - -73.62672048800702, - 45.483509538594305 - ], - [ - -73.62676680816365, - 45.483459274874484 - ], - [ - -73.62660742741197, - 45.483386237445 - ], - [ - -73.62656088896044, - 45.48343673890213 - ] - ] - ] - }, - "id": 248678, - "properties": { - "name": "05075103", - "address": "rue Byron (MTL) 5242", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62947582691463, - 45.4844439174614 - ], - [ - -73.62936761180272, - 45.48456371870977 - ], - [ - -73.62944328948561, - 45.48459803859312 - ], - [ - -73.62955268871404, - 45.48447863816202 - ], - [ - -73.62947582691463, - 45.4844439174614 - ] - ] - ] - }, - "id": 248775, - "properties": { - "name": "05099035", - "address": "avenue Trans Island (MTL) 5126", - "function": "1000", - "height": 13, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6307397888721, - 45.48590453862795 - ], - [ - -73.63081903760616, - 45.4859407503797 - ], - [ - -73.63091262876084, - 45.48583686842355 - ], - [ - -73.63089438863983, - 45.48582953848512 - ], - [ - -73.6309079899531, - 45.48581303772071 - ], - [ - -73.63088269060718, - 45.48580283906277 - ], - [ - -73.63087778906866, - 45.48580033860794 - ], - [ - -73.63086239002787, - 45.485817239160255 - ], - [ - -73.63083298939472, - 45.485803738255996 - ], - [ - -73.6307397888721, - 45.48590453862795 - ] - ] - ] - }, - "id": 248878, - "properties": { - "name": "03000672", - "address": "avenue Mountain Sights (MTL) 5234", - "function": "1000", - "height": 10, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6308551890936, - 45.48247713796624 - ], - [ - -73.6308483894204, - 45.4824845379943 - ], - [ - -73.63093058891154, - 45.48252043766281 - ], - [ - -73.6309343897217, - 45.48252223839811 - ], - [ - -73.63108499007825, - 45.482361138026455 - ], - [ - -73.63100288946742, - 45.48232313811297 - ], - [ - -73.63099758935206, - 45.482320738001825 - ], - [ - -73.6308551890936, - 45.48247713796624 - ] - ] - ] - }, - "id": 249410, - "properties": { - "name": "05085830", - "address": "avenue Earnscliffe (MTL) 5121", - "function": "1000", - "height": 10, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62625768861292, - 45.485379638942 - ], - [ - -73.62623148847729, - 45.485401538655864 - ], - [ - -73.62617769334763, - 45.48544687474334 - ], - [ - -73.62628432754249, - 45.485513480483505 - ], - [ - -73.6262967878247, - 45.48550273874339 - ], - [ - -73.62633118829461, - 45.485522738473286 - ], - [ - -73.62637208808965, - 45.485487538049014 - ], - [ - -73.62633058865543, - 45.48546393870011 - ], - [ - -73.62635908786565, - 45.48544043829402 - ], - [ - -73.62625768861292, - 45.485379638942 - ] - ] - ] - }, - "id": 249953, - "properties": { - "name": "03074495", - "address": "chemin Circle (MTL) 4390", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62983478989352, - 45.48724643922856 - ], - [ - -73.63000838921761, - 45.487324238603804 - ], - [ - -73.63006205499984, - 45.487264949666525 - ], - [ - -73.62988844185277, - 45.48718721157726 - ], - [ - -73.62983478989352, - 45.48724643922856 - ] - ] - ] - }, - "id": 250712, - "properties": { - "name": "05075951", - "address": "rue Jean-Brillant (MTL) 4977", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62848948818116, - 45.48374263825461 - ], - [ - -73.62838468881677, - 45.48385723813214 - ], - [ - -73.62838908876378, - 45.48385923804421 - ], - [ - -73.6284334883638, - 45.483880238234526 - ], - [ - -73.62838039634275, - 45.4839357833366 - ], - [ - -73.6285811574577, - 45.48402568972139 - ], - [ - -73.62867128823842, - 45.48391573770005 - ], - [ - -73.62865868853842, - 45.48390983810282 - ], - [ - -73.62871738912497, - 45.48384563812885 - ], - [ - -73.62849468854292, - 45.48374503769389 - ], - [ - -73.62848948818116, - 45.48374263825461 - ] - ] - ] - }, - "id": 250797, - "properties": { - "name": "05025526", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5276", - "function": "1000", - "height": 14, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63264589054296, - 45.484169837746144 - ], - [ - -73.63259988970032, - 45.48421463870722 - ], - [ - -73.63267199006057, - 45.48425133799997 - ], - [ - -73.63263899008389, - 45.48428363760949 - ], - [ - -73.63258618971004, - 45.484335938578766 - ], - [ - -73.63275319106182, - 45.48441933762377 - ], - [ - -73.63276859036078, - 45.48440403853825 + -73.598003681069, + 45.51795534533985 ], [ - -73.63295809035732, - 45.4841944383113 + -73.59806838110701, + 45.517889145210304 ], [ - -73.63271206911813, - 45.48408441136384 + -73.59811103176123, + 45.5179097887282 ], [ - -73.63263815483282, - 45.48416592969845 + -73.59820437934434, + 45.517802522170335 ], [ - -73.63264589054296, - 45.484169837746144 + -73.59811168101037, + 45.51776044518184 ] ] ] }, - "id": 250934, + "id": 168283, "properties": { - "name": "05002887", - "address": "avenue Coolbrook (MTL) 5285", + "name": "03117601", + "address": "avenue Querbes (OUT) 125", "function": "1000", "height": 12, - "year_of_construction": 1996 + "year_of_construction": 1909 } }, { @@ -40408,2331 +1844,35 @@ "coordinates": [ [ [ - -73.63265375624935, - 45.483049631557144 + -73.59934018173915, + 45.516590245237886 ], [ - -73.63253101481332, - 45.48318520811074 + -73.5994095518746, + 45.516618593770545 ], [ - -73.63262979028468, - 45.48323003809041 + -73.59950548893313, + 45.51651472707033 ], [ - -73.63275369061394, - 45.48309503778627 + -73.59942858096747, + 45.51648334459383 ], [ - -73.63265375624935, - 45.483049631557144 + -73.59934018173915, + 45.516590245237886 ] ] ] }, - "id": 251127, + "id": 168992, "properties": { - "name": "03034249", - "address": "avenue Earnscliffe (MTL) 5213", - "function": "1000", - "height": 9, - "year_of_construction": 1958 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62930558894925, - 45.48971433944511 - ], - [ - -73.62948268970202, - 45.48979353848097 - ], - [ - -73.62953613879742, - 45.489734455226966 - ], - [ - -73.62935873433757, - 45.489655548167015 - ], - [ - -73.62930558894925, - 45.48971433944511 - ] - ] - ] - }, - "id": 251496, - "properties": { - "name": "05024078", - "address": "avenue Lacombe (MTL) 4838", - "function": "1000", - "height": 9, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63117128976847, - 45.48355313746619 - ], - [ - -73.63115918958675, - 45.48357073795676 - ], - [ - -73.63119458877625, - 45.48358263826512 - ], - [ - -73.63118808702326, - 45.48359222189676 - ], - [ - -73.63131498118584, - 45.483451749557666 - ], - [ - -73.63123172746651, - 45.48341757278882 - ], - [ - -73.63114831201068, - 45.483509915437025 - ], - [ - -73.63115958970468, - 45.48351383841588 - ], - [ - -73.63113968963174, - 45.483542237917405 - ], - [ - -73.63117128976847, - 45.48355313746619 - ] - ] - ] - }, - "id": 251513, - "properties": { - "name": "05025851", - "address": "avenue Coolbrook (MTL) 5193", - "function": "1000", - "height": 8, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63188765168464, - 45.48371566528927 - ], - [ - -73.63182756104258, - 45.48378175007677 - ], - [ - -73.63186118935235, - 45.4837955382996 - ], - [ - -73.63181688937377, - 45.483849037598254 - ], - [ - -73.6318206908798, - 45.483850537754215 - ], - [ - -73.63186279074463, - 45.48386673858583 - ], - [ - -73.6318441190574, - 45.48389079503214 - ], - [ - -73.63196990815831, - 45.48375245678384 - ], - [ - -73.63188765168464, - 45.48371566528927 - ] - ] - ] - }, - "id": 251792, - "properties": { - "name": "03001404", - "address": "avenue Coolbrook (MTL) 5237", - "function": "1000", - "height": 9, - "year_of_construction": 1922 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63137409733339, - 45.485297617921226 - ], - [ - -73.63126789045086, - 45.485415199621954 - ], - [ - -73.63134839000887, - 45.48545363849072 - ], - [ - -73.6314595903817, - 45.48533853814359 - ], - [ - -73.63141718984448, - 45.485318337697876 - ], - [ - -73.63137409733339, - 45.485297617921226 - ] - ] - ] - }, - "id": 252038, - "properties": { - "name": "03001186", - "address": "avenue Trans Island (MTL) 5232", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63262990259878, - 45.48404766079442 - ], - [ - -73.63252141675248, - 45.48416775870337 - ], - [ - -73.63254158930076, - 45.484178838500526 - ], - [ - -73.6325223905011, - 45.48419623860583 - ], - [ - -73.6325564899893, - 45.48421493833674 - ], - [ - -73.63255659104816, - 45.48421493821946 - ], - [ - -73.63261758988223, - 45.48415553785638 - ], - [ - -73.63263815483282, - 45.48416592969845 - ], - [ - -73.63271206911813, - 45.48408441136384 - ], - [ - -73.63262990259878, - 45.48404766079442 - ] - ] - ] - }, - "id": 252253, - "properties": { - "name": "05095701", - "address": "avenue Coolbrook (MTL) 5275", - "function": "1000", - "height": 12, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63081961663825, - 45.483248395677315 - ], - [ - -73.63072127362298, - 45.48335565566686 - ], - [ - -73.63075698962383, - 45.483371337802815 - ], - [ - -73.63075738896744, - 45.483371437228605 - ], - [ - -73.63076829015363, - 45.48336303818154 - ], - [ - -73.6308045802258, - 45.48338632424672 - ], - [ - -73.63090057021543, - 45.483281628745104 - ], - [ - -73.63081961663825, - 45.483248395677315 - ] - ] - ] - }, - "id": 252427, - "properties": { - "name": "03001380", - "address": "avenue Coolbrook (MTL) 5169", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62760498906337, - 45.487725838653404 - ], - [ - -73.6275318770102, - 45.48780710347787 - ], - [ - -73.6276923596675, - 45.48787767095272 - ], - [ - -73.627764889419, - 45.48779693848663 - ], - [ - -73.62760498906337, - 45.487725838653404 - ] - ] - ] - }, - "id": 252465, - "properties": { - "name": "03074773", - "address": "rue Fulton (MTL) 4896", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63120308989143, - 45.482562337685344 - ], - [ - -73.63130248923278, - 45.48245263746781 - ], - [ - -73.63122503559785, - 45.48241792761065 - ], - [ - -73.6311015329321, - 45.482554343974336 - ], - [ - -73.63110328982563, - 45.48255513832201 - ], - [ - -73.63112738925993, - 45.48252843831047 - ], - [ - -73.63120308989143, - 45.482562337685344 - ] - ] - ] - }, - "id": 253248, - "properties": { - "name": "03034221", - "address": "avenue Earnscliffe (MTL) 5131", - "function": "1000", - "height": 10, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63072298650121, - 45.48574006871925 - ], - [ - -73.63062138319893, - 45.48585284386309 - ], - [ - -73.63069898998145, - 45.485888838013665 - ], - [ - -73.63079568913618, - 45.485785738161645 - ], - [ - -73.63074698920015, - 45.48576323837655 - ], - [ - -73.63075508925684, - 45.48575483804124 - ], - [ - -73.63072298650121, - 45.48574006871925 - ] - ] - ] - }, - "id": 253434, - "properties": { - "name": "03000674", - "address": "avenue Mountain Sights (MTL) 5230", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62810358839069, - 45.48689573801133 - ], - [ - -73.62811798890907, - 45.4868797387999 - ], - [ - -73.62813668791485, - 45.48688803869929 - ], - [ - -73.62813698937356, - 45.48688783859534 - ], - [ - -73.62815608828566, - 45.4868671387132 - ], - [ - -73.62813728904469, - 45.48685863826379 - ], - [ - -73.62815863627918, - 45.48683539199493 - ], - [ - -73.62797978499323, - 45.48675615323358 - ], - [ - -73.6279253889186, - 45.4868168394762 - ], - [ - -73.62810358839069, - 45.48689573801133 - ] - ] - ] - }, - "id": 253536, - "properties": { - "name": "03074821", - "address": "avenue Dornal (MTL) 4957", - "function": "1000", - "height": 9, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6296045386369, - 45.48750834164282 - ], - [ - -73.62954808963643, - 45.48756873852962 - ], - [ - -73.62974178897524, - 45.48765833857997 - ], - [ - -73.62980014324769, - 45.48759593277754 - ], - [ - -73.6296045386369, - 45.48750834164282 - ] - ] - ] - }, - "id": 253540, - "properties": { - "name": "03074567", - "address": "rue Jean-Brillant (MTL) 4939", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6291027896508, - 45.4893884387832 - ], - [ - -73.62910218890569, - 45.489389238524865 - ], - [ - -73.62911208935958, - 45.48939353939378 - ], - [ - -73.6290897403213, - 45.48941812323287 - ], - [ - -73.62923292650004, - 45.48948150030792 - ], - [ - -73.62930188973944, - 45.489405439321466 - ], - [ - -73.6291493887967, - 45.489337039128905 - ], - [ - -73.6291027896508, - 45.4893884387832 - ] - ] - ] - }, - "id": 253571, - "properties": { - "name": "03074235", - "address": "avenue Isabella (CSL+MTL) 4845", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63193534695881, - 45.4862834883519 - ], - [ - -73.63183476669458, - 45.48639602762305 - ], - [ - -73.63191649012353, - 45.486431338607886 - ], - [ - -73.63201539010038, - 45.48631803903798 - ], - [ - -73.63193534695881, - 45.4862834883519 - ] - ] - ] - }, - "id": 253577, - "properties": { - "name": "03000658", - "address": "avenue Mountain Sights (MTL) 5316", - "function": "1000", - "height": 9, - "year_of_construction": 1935 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6290430895061, - 45.485910538005214 - ], - [ - -73.62891828991303, - 45.48604373823995 - ], - [ - -73.62896378927094, - 45.4860648386575 - ], - [ - -73.62897008914995, - 45.48605843903938 - ], - [ - -73.62900351219474, - 45.48607504664712 - ], - [ - -73.62911923028635, - 45.48594583480467 - ], - [ - -73.6290430895061, - 45.485910538005214 - ] - ] - ] - }, - "id": 253581, - "properties": { - "name": "03000381", - "address": "avenue de Westbury (MTL) 5157", - "function": "1000", - "height": 8, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63010238943933, - 45.48829053878775 - ], - [ - -73.63008188903031, - 45.48831363867457 - ], - [ - -73.63005609030715, - 45.4883431388927 - ], - [ - -73.6301318903588, - 45.48837543890453 - ], - [ - -73.63013178929249, - 45.48837543901966 - ], - [ - -73.63019748911033, - 45.488404938476556 - ], - [ - -73.6302661898227, - 45.48832933881345 - ], - [ - -73.63012478954657, - 45.488265738724515 - ], - [ - -73.63010238943933, - 45.48829053878775 - ] - ] - ] - }, - "id": 253597, - "properties": { - "name": "03074223", - "address": "avenue Isabella (CSL+MTL) 4917", - "function": "1000", - "height": 8, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62929378846796, - 45.484530238933154 - ], - [ - -73.62936761180272, - 45.48456371870977 - ], - [ - -73.62947582691463, - 45.4844439174614 - ], - [ - -73.62940308832825, - 45.484410937739476 - ], - [ - -73.62929378846796, - 45.484530238933154 - ] - ] - ] - }, - "id": 253622, - "properties": { - "name": "05099039", - "address": "avenue Trans Island (MTL) 5122", - "function": "1000", - "height": 13, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62986088937605, - 45.48427023836062 - ], - [ - -73.62983778932174, - 45.48429653832892 - ], - [ - -73.62983657796089, - 45.48429601239596 - ], - [ - -73.6296821767859, - 45.484476981285376 - ], - [ - -73.62973209129417, - 45.48450040069266 - ], - [ - -73.62979013094821, - 45.484526342113384 - ], - [ - -73.6298326677548, - 45.48448051949926 - ], - [ - -73.6299485909798, - 45.48434873928595 - ], - [ - -73.62994638967834, - 45.484347738461715 - ], - [ - -73.62997094451093, - 45.484321021987334 - ], - [ - -73.62987747926634, - 45.48427783579703 - ], - [ - -73.62986098938524, - 45.484270338129846 - ], - [ - -73.62986088937605, - 45.48427023836062 - ] - ] - ] - }, - "id": 253670, - "properties": { - "name": "03037108", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5155", - "function": "5010", - "height": 8, - "year_of_construction": 1958 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62954588926203, - 45.48582523848914 - ], - [ - -73.62963746072444, - 45.48586609918693 - ], - [ - -73.62976205975986, - 45.48572780346227 - ], - [ - -73.62967058971223, - 45.485687038131914 - ], - [ - -73.62954588926203, - 45.48582523848914 - ] - ] - ] - }, - "id": 253909, - "properties": { - "name": "03000238", - "address": "avenue de Westbury (MTL) 5196", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62967497870982, - 45.484530029088795 - ], - [ - -73.62956359080174, - 45.484650710572986 - ], - [ - -73.62963928910884, - 45.484684438203836 - ], - [ - -73.62974188900661, - 45.48457063785364 - ], - [ - -73.62970268906216, - 45.484553237953925 - ], - [ - -73.62971128908922, - 45.48454363852807 - ], - [ - -73.62971088950789, - 45.484543438316145 - ], - [ - -73.62967497870982, - 45.484530029088795 - ] - ] - ] - }, - "id": 253953, - "properties": { - "name": "05169088", - "address": "avenue Trans Island (MTL) 5140", - "function": "1000", - "height": 10, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63136421315629, - 45.4830197694006 - ], - [ - -73.63127368267693, - 45.48311999038548 - ], - [ - -73.63133999041433, - 45.48314703823202 - ], - [ - -73.63133999018223, - 45.48314693834935 - ], - [ - -73.63143279017086, - 45.48305343835322 - ], - [ - -73.63136421315629, - 45.4830197694006 - ] - ] - ] - }, - "id": 254019, - "properties": { - "name": "03001970", - "address": "avenue Coolbrook (MTL) 5186", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.627932811601, - 45.48192490384112 - ], - [ - -73.62783653728225, - 45.48203142388038 - ], - [ - -73.62786308780967, - 45.48204493775359 - ], - [ - -73.62786378842527, - 45.48204533740104 - ], - [ - -73.6278742879738, - 45.48203743759277 - ], - [ - -73.62791166450118, - 45.48206181757949 - ], - [ - -73.62800577077907, - 45.48195767010289 - ], - [ - -73.627932811601, - 45.48192490384112 - ] - ] - ] - }, - "id": 254118, - "properties": { - "name": "03001336", - "address": "avenue Coolbrook (MTL) 4915", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62966728901436, - 45.48876643901134 - ], - [ - -73.62982778989767, - 45.48883423912844 - ], - [ - -73.6299061901016, - 45.48874243864311 - ], - [ - -73.62974568915818, - 45.48867453965214 - ], - [ - -73.62966728901436, - 45.48876643901134 - ] - ] - ] - }, - "id": 254153, - "properties": { - "name": "03074225", - "address": "avenue Isabella (CSL+MTL) 4891", - "function": "1000", - "height": 10, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62709258886622, - 45.48830383903255 - ], - [ - -73.62724518838704, - 45.4883706383487 - ], - [ - -73.62731460038572, - 45.48829216106216 - ], - [ - -73.62716216420304, - 45.48822511959752 - ], - [ - -73.62709258886622, - 45.48830383903255 - ] - ] - ] - }, - "id": 254282, - "properties": { - "name": "03074763", - "address": "rue Fulton (MTL) 4852", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63142268997167, - 45.48349483810482 - ], - [ - -73.63139539047052, - 45.48353453743553 - ], - [ - -73.63136969003025, - 45.48352583758688 - ], - [ - -73.63138082361635, - 45.48350958075634 - ], - [ - -73.63134424077903, - 45.48354981266265 - ], - [ - -73.63135468924077, - 45.48354313818595 - ], - [ - -73.6313824896719, - 45.48356483750175 - ], - [ - -73.63138269027799, - 45.48356473828794 - ], - [ - -73.63144598930116, - 45.483580537853335 - ], - [ - -73.63147958972293, - 45.48351423810051 - ], - [ - -73.63147938993174, - 45.4835141375477 - ], - [ - -73.63142268997167, - 45.48349483810482 - ] - ] - ] - }, - "id": 254524, - "properties": { - "name": "03001394", - "address": "avenue Coolbrook (MTL) 5207", - "function": "1000", - "height": 8, - "year_of_construction": 1910 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63069898983126, - 45.48558783864169 - ], - [ - -73.63078366797298, - 45.48562435015518 - ], - [ - -73.63087820735034, - 45.4855196869693 - ], - [ - -73.63079099013757, - 45.4854821391104 - ], - [ - -73.63069898983126, - 45.48558783864169 - ] - ] - ] - }, - "id": 254568, - "properties": { - "name": "03000721", - "address": "avenue Trans Island (MTL) 5217", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62825208795935, - 45.48702013882378 - ], - [ - -73.62840948924082, - 45.487089238412594 - ], - [ - -73.62846268417086, - 45.48702927766901 - ], - [ - -73.62833990842674, - 45.4869748832273 - ], - [ - -73.62832948850686, - 45.48698723901821 - ], - [ - -73.62829798900708, - 45.48697393868815 - ], - [ - -73.62829458862713, - 45.486972238199456 - ], - [ - -73.62825208795935, - 45.48702013882378 - ] - ] - ] - }, - "id": 254765, - "properties": { - "name": "03074786", - "address": "rue Fulton (MTL) 4952", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6327721903396, - 45.48608353848885 - ], - [ - -73.6328262904715, - 45.48602463826809 - ], - [ - -73.63284809042243, - 45.4860349386483 - ], - [ - -73.63289849036843, - 45.48597803855443 - ], - [ - -73.63287158995722, - 45.485966638206214 - ], - [ - -73.6328868906135, - 45.48594893843472 - ], - [ - -73.63283348956787, - 45.48592693812432 - ], - [ - -73.63282209045921, - 45.48594073791908 - ], - [ - -73.63280425177435, - 45.48593341951697 - ], - [ - -73.63269874191843, - 45.48605016666758 - ], - [ - -73.6327721903396, - 45.48608353848885 - ] - ] - ] - }, - "id": 254792, - "properties": { - "name": "03001163", - "address": "avenue Trans Island (MTL) 5340", - "function": "1000", - "height": 11, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63172159007829, - 45.485351438858316 - ], - [ - -73.63175066187374, - 45.48536492011764 - ], - [ - -73.63188019021892, - 45.48521794996736 - ], - [ - -73.63174879987524, - 45.48515883322813 - ], - [ - -73.63164782303606, - 45.48527341816438 - ], - [ - -73.63170188930651, - 45.48521463818635 - ], - [ - -73.63172118965647, - 45.485223538805045 - ], - [ - -73.63164879052535, - 45.48530103872302 - ], - [ - -73.63164688990705, - 45.485302837906005 - ], - [ - -73.63172338947501, - 45.485341337811455 - ], - [ - -73.63171579003965, - 45.485348738809705 - ], - [ - -73.63172159007829, - 45.485351438858316 - ] - ] - ] - }, - "id": 254807, - "properties": { - "name": "03037136", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5271", - "function": "5010", - "height": 25, - "year_of_construction": 1954 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62910038911306, - 45.48863893863544 - ], - [ - -73.62904460246321, - 45.48870103522075 - ], - [ - -73.62921563915528, - 45.48877673843669 - ], - [ - -73.62927138927031, - 45.48871493875904 - ], - [ - -73.62910038911306, - 45.48863893863544 - ] - ] - ] - }, - "id": 254835, - "properties": { - "name": "03074316", - "address": "avenue Isabella (CSL+MTL) 4884", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62793554961463, - 45.48252367393982 - ], - [ - -73.6277788057241, - 45.482697051832126 - ], - [ - -73.62792554503827, - 45.482762748249264 - ], - [ - -73.62800284563663, - 45.48267633848411 - ], - [ - -73.62800238850889, - 45.482676137430744 - ], - [ - -73.62801228849452, - 45.482665537843346 - ], - [ - -73.62798538838467, - 45.48265313840784 - ], - [ - -73.62800638935222, - 45.48263073839385 - ], - [ - -73.6280532880246, - 45.48258143813161 - ], - [ - -73.62798868905077, - 45.48255103813131 - ], - [ - -73.62799073088861, - 45.48254888790996 - ], - [ - -73.62793554961463, - 45.48252367393982 - ] - ] - ] - }, - "id": 254922, - "properties": { - "name": "03037517", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 4956", - "function": "5010", - "height": 12, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6315098901833, - 45.485051338472395 - ], - [ - -73.63150708944538, - 45.48505443806717 - ], - [ - -73.63136628989731, - 45.48520453872808 - ], - [ - -73.63155709056576, - 45.485293138442024 - ], - [ - -73.63154378948774, - 45.485307138267416 - ], - [ - -73.63159518962351, - 45.4853306379322 - ], - [ - -73.63164782303606, - 45.48527341816438 - ], - [ - -73.63174879987524, - 45.48515883322813 - ], - [ - -73.6315098901833, - 45.485051338472395 - ] - ] - ] - }, - "id": 254930, - "properties": { - "name": "03037134", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5253", - "function": "6000", - "height": 25, - "year_of_construction": 1954 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62945049013653, - 45.48642433896005 - ], - [ - -73.62943508969205, - 45.48644423850587 - ], - [ - -73.62940629929551, - 45.486487728280764 - ], - [ - -73.62950875847488, - 45.486533079570464 - ], - [ - -73.62951928995481, - 45.4865176379731 - ], - [ - -73.62955768924627, - 45.48653063859181 - ], - [ - -73.62956338965203, - 45.48653283854818 - ], - [ - -73.629602289347, - 45.48648343877498 - ], - [ - -73.62945049013653, - 45.48642433896005 - ] - ] - ] - }, - "id": 255005, - "properties": { - "name": "03074683", - "address": "rue Fulton (MTL) 5009", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62994738933304, - 45.487122137877144 - ], - [ - -73.62988844185277, - 45.48718721157726 - ], - [ - -73.63006205499984, - 45.487264949666525 - ], - [ - -73.63012098948303, - 45.48719983899883 - ], - [ - -73.62994738933304, - 45.487122137877144 - ] - ] - ] - }, - "id": 255095, - "properties": { - "name": "03074559", - "address": "rue Jean-Brillant (MTL) 4981", - "function": "1000", - "height": 10, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62678538882011, - 45.488645839165905 - ], - [ - -73.62693898818011, - 45.48871553977902 - ], - [ - -73.62697858936464, - 45.48867203952589 - ], - [ - -73.62701218825677, - 45.48863553953214 - ], - [ - -73.62685938792957, - 45.48856553848052 - ], - [ - -73.62678538882011, - 45.488645839165905 - ] - ] - ] - }, - "id": 255216, - "properties": { - "name": "03074757", - "address": "rue Fulton (MTL) 4832", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62895828763969, - 45.482068037509144 - ], - [ - -73.62904194642327, - 45.4821051777801 - ], - [ - -73.62914424226483, - 45.48199138545728 - ], - [ - -73.62913618812314, - 45.48198783746959 - ], - [ - -73.62916478848253, - 45.481956137732745 - ], - [ - -73.62908918883983, - 45.48192243845502 - ], - [ - -73.62895828763969, - 45.482068037509144 - ] - ] - ] - }, - "id": 255242, - "properties": { - "name": "03001995", - "address": "avenue Coolbrook (MTL) 4970", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62906668906426, - 45.48610643839206 - ], - [ - -73.62907198840206, - 45.486108938474985 - ], - [ - -73.62919368861814, - 45.48598043877502 - ], - [ - -73.62911923028635, - 45.48594583480467 - ], - [ - -73.62900351219474, - 45.48607504664712 - ], - [ - -73.62906668906426, - 45.48610643839206 - ] - ] - ] - }, - "id": 255251, - "properties": { - "name": "03000379", - "address": "avenue de Westbury (MTL) 5171", - "function": "1000", - "height": 8, - "year_of_construction": 1920 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63155896631534, - 45.48214028819357 - ], - [ - -73.63147068269612, - 45.482237819820654 - ], - [ - -73.6315460888579, - 45.48227113800802 - ], - [ - -73.63163349018271, - 45.48217323750306 - ], - [ - -73.63155896631534, - 45.48214028819357 - ] - ] - ] - }, - "id": 255348, - "properties": { - "name": "03034369", - "address": "avenue Earnscliffe (MTL) 5136", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63210009002965, - 45.48621033844684 - ], - [ - -73.63219289007534, - 45.486109238684996 - ], - [ - -73.63209098766983, - 45.4860629623143 - ], - [ - -73.63200001592492, - 45.48616474916334 - ], - [ - -73.63210009002965, - 45.48621033844684 - ] - ] - ] - }, - "id": 255561, - "properties": { - "name": "03000741", - "address": "avenue Trans Island (MTL) 5317", - "function": "1000", - "height": 10, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62767038826746, - 45.486315038698045 - ], - [ - -73.6276174970363, - 45.486375867092136 - ], - [ - -73.62780236397414, - 45.486457771337825 - ], - [ - -73.62785678892016, - 45.48639523863398 - ], - [ - -73.62767038826746, - 45.486315038698045 - ] - ] - ] - }, - "id": 255570, - "properties": { - "name": "03074944", - "address": "avenue Dornal (MTL) 4972", - "function": "1000", - "height": 9, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62920998938438, - 45.4855189379395 - ], - [ - -73.62918618895002, - 45.485546438957 - ], - [ - -73.62916501183074, - 45.48553736996182 - ], - [ - -73.62908970469474, - 45.48562095360061 - ], - [ - -73.62919528868372, - 45.48566523802897 - ], - [ - -73.62928298946174, - 45.48556163761837 - ], - [ - -73.62926618933685, - 45.48555453884989 - ], - [ - -73.62925708866844, - 45.48554893860869 - ], - [ - -73.6292100891663, - 45.48551893782662 - ], - [ - -73.62920998938438, - 45.4855189379395 - ] - ] - ] - }, - "id": 255601, - "properties": { - "name": "03117788", - "address": "avenue de Westbury (MTL) 5164", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63087820735034, - 45.4855196869693 - ], - [ - -73.63078366797298, - 45.48562435015518 - ], - [ - -73.63079199019514, - 45.485627938210584 - ], - [ - -73.6307875891312, - 45.48563273852897 - ], - [ - -73.63086388987044, - 45.48566553871124 - ], - [ - -73.63096008868214, - 45.48555493817312 - ], - [ - -73.63087820735034, - 45.4855196869693 - ] - ] - ] - }, - "id": 255713, - "properties": { - "name": "03000723", - "address": "avenue Trans Island (MTL) 5221", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63182898966153, - 45.48545113847662 - ], - [ - -73.631805890615, - 45.48547603867592 - ], - [ - -73.63179804546463, - 45.4854724294474 - ], - [ - -73.63168410421342, - 45.48559857529107 - ], - [ - -73.63178218995213, - 45.48564343827457 - ], - [ - -73.63189519002694, - 45.4855213382285 - ], - [ - -73.63185359025482, - 45.485502338315186 - ], - [ - -73.63187939024563, - 45.48547433771811 - ], - [ - -73.6318792902307, - 45.485474237950655 - ], - [ - -73.63182898966153, - 45.48545113847662 - ] - ] - ] - }, - "id": 255793, - "properties": { - "name": "03001178", - "address": "avenue Trans Island (MTL) 5256", - "function": "1000", - "height": 9, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62836118912219, - 45.48689813846542 - ], - [ - -73.62832118833934, - 45.486943238686344 - ], - [ - -73.62832568913474, - 45.48694503872073 - ], - [ - -73.62835488942726, - 45.486957638847294 - ], - [ - -73.62834078876543, - 45.486973838417086 - ], - [ - -73.62833990842674, - 45.4869748832273 - ], - [ - -73.62846268417086, - 45.48702927766901 - ], - [ - -73.62851798824968, - 45.48696693893422 - ], - [ - -73.62836118912219, - 45.48689813846542 - ] - ] - ] - }, - "id": 255819, - "properties": { - "name": "03074788", - "address": "rue Fulton (MTL) 4956", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62778018890353, - 45.48755203827803 - ], - [ - -73.62793308950964, - 45.48762013932372 - ], - [ - -73.62798763239964, - 45.48755954650546 - ], - [ - -73.62786845184635, - 45.487506743859925 - ], - [ - -73.62785518838271, - 45.487521039257395 - ], - [ - -73.62782518818854, - 45.48750723860549 - ], - [ - -73.62782188908335, - 45.48750563877231 - ], - [ - -73.62778018890353, - 45.48755203827803 - ] - ] - ] - }, - "id": 255864, - "properties": { - "name": "03074775", - "address": "rue Fulton (MTL) 4902", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6283363889159, - 45.48817643849903 - ], - [ - -73.62849568879442, - 45.48824973900063 - ], - [ - -73.62858078932132, - 45.48815813884256 - ], - [ - -73.62842148831388, - 45.48808483935963 - ], - [ - -73.6283363889159, - 45.48817643849903 - ] - ] - ] - }, - "id": 255866, - "properties": { - "name": "03074649", - "address": "rue Jean-Brillant (MTL) 4894", - "function": "1000", - "height": 11, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63185268957682, - 45.486832038025334 - ], - [ - -73.6320268901624, - 45.48690973916086 - ], - [ - -73.63208146771693, - 45.48684918033389 - ], - [ - -73.63190724044772, - 45.48677150900651 - ], - [ - -73.63185268957682, - 45.486832038025334 - ] - ] - ] - }, - "id": 255952, - "properties": { - "name": "03000775", - "address": "avenue Lacombe (MTL) 5134", - "function": "1000", - "height": 9, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.632287690913, - 45.4834143381886 - ], - [ - -73.63218028907545, - 45.483527337443725 - ], - [ - -73.63218178971775, - 45.48352793770438 - ], - [ - -73.6322620626463, - 45.483563891728515 - ], - [ - -73.63236385194081, - 45.48345120574868 - ], - [ - -73.632287690913, - 45.4834143381886 - ] - ] - ] - }, - "id": 255969, - "properties": { - "name": "03001954", - "address": "avenue Coolbrook (MTL) 5244", - "function": "1000", - "height": 10, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62903989789439, - 45.484126028976185 - ], - [ - -73.62883718835609, - 45.48436033838249 - ], - [ - -73.62919488920701, - 45.48451223873142 - ], - [ - -73.62935110591256, - 45.484330118442536 - ], - [ - -73.62935097785788, - 45.4843300609974 - ], - [ - -73.62935706915914, - 45.484323178374765 - ], - [ - -73.62936328884332, - 45.48431593836747 - ], - [ - -73.62936342457334, - 45.4843159958039 - ], - [ - -73.62939219043412, - 45.48428348957356 - ], - [ - -73.62903989789439, - 45.484126028976185 - ] - ] - ] - }, - "id": 256086, - "properties": { - "name": "03034823", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5267", + "name": "03030255", + "address": "avenue Bloomfield (OUT) 134", "function": "1000", "height": 17, - "year_of_construction": 1929 + "year_of_construction": 1901 } }, { @@ -42742,2565 +1882,47 @@ "coordinates": [ [ [ - -73.63082338915333, - 45.488730838478624 + -73.59913587168991, + 45.517482523293054 ], [ - -73.63076802910051, - 45.48879240630696 + -73.59900074046807, + 45.51763311908468 ], [ - -73.6309358958597, - 45.48886655294242 + -73.59905508135799, + 45.51765374491995 ], [ - -73.63099088945397, - 45.48880533909307 + -73.59905598089004, + 45.51765284519883 ], [ - -73.63082338915333, - 45.488730838478624 + -73.59910418113658, + 45.517608245069376 + ], + [ + -73.59911982696184, + 45.5176165829175 + ], + [ + -73.5992102306759, + 45.517515833834594 + ], + [ + -73.59913587168991, + 45.517482523293054 ] ] ] }, - "id": 256096, + "id": 169158, "properties": { - "name": "03073768", - "address": "avenue Lacombe (MTL) 4907", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6299545897584, - 45.486391337920466 - ], - [ - -73.63009088944213, - 45.4864592390141 - ], - [ - -73.63014248981787, - 45.486407838631294 - ], - [ - -73.63013198972638, - 45.48640293833538 - ], - [ - -73.63015388938837, - 45.48638113801456 - ], - [ - -73.63002798951146, - 45.48631843796432 - ], - [ - -73.6299545897584, - 45.486391337920466 - ] - ] - ] - }, - "id": 256123, - "properties": { - "name": "03000222", - "address": "rue Jean-Brillant (MTL) 5022", - "function": "1000", - "height": 9, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.630484989321, - 45.4862247386939 - ], - [ - -73.63057228868271, - 45.48626310464755 - ], - [ - -73.6306744989198, - 45.486149657576185 - ], - [ - -73.63058628905414, - 45.48611083831861 - ], - [ - -73.630484989321, - 45.4862247386939 - ] - ] - ] - }, - "id": 256124, - "properties": { - "name": "03000253", - "address": "avenue de Westbury (MTL) 5242", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62788648938063, - 45.48686083870068 - ], - [ - -73.6278351228974, - 45.48692058476785 - ], - [ - -73.62801872288789, - 45.48700192946958 - ], - [ - -73.62804048894688, - 45.48698393875309 - ], - [ - -73.6280511890007, - 45.486990738590976 - ], - [ - -73.62808358871565, - 45.486963238973 - ], - [ - -73.62805748893379, - 45.486948138229224 - ], - [ - -73.62806878868105, - 45.48693843872113 - ], - [ - -73.62806518896757, - 45.48693683833198 - ], - [ - -73.62788648938063, - 45.48686083870068 - ] - ] - ] - }, - "id": 256196, - "properties": { - "name": "03074822", - "address": "avenue Dornal (MTL) 4945", - "function": "1000", - "height": 9, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62659028831041, - 45.48216153846393 - ], - [ - -73.62697098806237, - 45.48233503825652 - ], - [ - -73.62723988867224, - 45.48204303849282 - ], - [ - -73.62688268846762, - 45.48188033774105 - ], - [ - -73.62680088733913, - 45.48196913814933 - ], - [ - -73.62680458797712, - 45.481970837450795 - ], - [ - -73.62687288885436, - 45.482002938321465 - ], - [ - -73.62686608804165, - 45.482010037565615 - ], - [ - -73.62684138739705, - 45.48203753821153 - ], - [ - -73.62676888755756, - 45.48200513783416 - ], - [ - -73.6266858876461, - 45.48209743809188 - ], - [ - -73.62665988809646, - 45.48208593719074 - ], - [ - -73.62665978726723, - 45.482086038085356 - ], - [ - -73.62659028831041, - 45.48216153846393 - ] - ] - ] - }, - "id": 256227, - "properties": { - "name": "03037505", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 4800", - "function": "1000", - "height": 20, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63269508990761, - 45.48258703819298 - ], - [ - -73.63268009002776, - 45.48260553756337 - ], - [ - -73.63265452185725, - 45.48259532520687 - ], - [ - -73.6325573988069, - 45.48270263396457 - ], - [ - -73.63263919047436, - 45.48273803795992 - ], - [ - -73.6327502894679, - 45.482610937866255 - ], - [ - -73.63269508990761, - 45.48258703819298 - ] - ] - ] - }, - "id": 256279, - "properties": { - "name": "03034350", - "address": "avenue Earnscliffe (MTL) 5198", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63012918868137, - 45.48747993902781 - ], - [ - -73.63029058928403, - 45.487554238869826 - ], - [ - -73.63036398929275, - 45.487475438424305 - ], - [ - -73.6302025888191, - 45.48740113868481 - ], - [ - -73.63012918868137, - 45.48747993902781 - ] - ] - ] - }, - "id": 256370, - "properties": { - "name": "03074336", - "address": "avenue Isabella (CSL+MTL) 4962", - "function": "1000", - "height": 9, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62756508928196, - 45.4864361388164 - ], - [ - -73.62775138912242, - 45.48651633903521 - ], - [ - -73.62780236397414, - 45.486457771337825 - ], - [ - -73.6276174970363, - 45.486375867092136 - ], - [ - -73.62756508928196, - 45.4864361388164 - ] - ] - ] - }, - "id": 256429, - "properties": { - "name": "03074942", - "address": "avenue Dornal (MTL) 4968", - "function": "1000", - "height": 9, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63271398950563, - 45.4859101383274 - ], - [ - -73.63261879051261, - 45.48601383825671 - ], - [ - -73.63269874191843, - 45.48605016666758 - ], - [ - -73.63280425177435, - 45.48593341951697 - ], - [ - -73.63277139024356, - 45.48591993843293 - ], - [ - -73.6327608901607, - 45.48593143807029 - ], - [ - -73.63271398950563, - 45.4859101383274 - ] - ] - ] - }, - "id": 256522, - "properties": { - "name": "03001165", - "address": "avenue Trans Island (MTL) 5334", - "function": "1000", - "height": 11, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63219309015805, - 45.482401137870546 - ], - [ - -73.6321713894994, - 45.48242553802389 - ], - [ - -73.63215262624925, - 45.48241728474498 - ], - [ - -73.6321026749838, - 45.48247246891918 - ], - [ - -73.63211886089084, - 45.482479719158945 - ], - [ - -73.63209080138576, - 45.482510718926534 - ], - [ - -73.63217318992618, - 45.482548337088645 - ], - [ - -73.63226619049581, - 45.48244753751868 - ], - [ - -73.63223008945768, - 45.48243123720339 - ], - [ - -73.63223978917902, - 45.48242123767857 - ], - [ - -73.63219309015805, - 45.482401137870546 - ] - ] - ] - }, - "id": 256618, - "properties": { - "name": "05084152", - "address": "avenue Earnscliffe (MTL) 5172", - "function": "1000", - "height": 8, - "year_of_construction": 1910 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62894288910839, - 45.489588538939074 - ], - [ - -73.62894028923057, - 45.489591238710354 - ], - [ - -73.62894538931164, - 45.48959373902254 - ], - [ - -73.62891939289999, - 45.48961953633683 - ], - [ - -73.62906291236696, - 45.48968306082126 - ], - [ - -73.6291340897265, - 45.48961163973922 - ], - [ - -73.62899048850609, - 45.48954083928625 - ], - [ - -73.62894288910839, - 45.489588538939074 - ] - ] - ] - }, - "id": 256639, - "properties": { - "name": "03074238", - "address": "avenue Isabella (CSL+MTL) 4833", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62759912287596, - 45.48339768141561 - ], - [ - -73.62755534819512, - 45.483444691486305 - ], - [ - -73.62781098864089, - 45.48356243857067 - ], - [ - -73.62782668754339, - 45.48354563797039 - ], - [ - -73.62787398834202, - 45.48349443776416 - ], - [ - -73.62769278775008, - 45.483411738528616 - ], - [ - -73.62767438843186, - 45.48343193814924 - ], - [ - -73.62759912287596, - 45.48339768141561 - ] - ] - ] - }, - "id": 256652, - "properties": { - "name": "03035351", - "address": "rue Globert (MTL) 5264", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62796810123905, - 45.485962899110234 - ], - [ - -73.62791428878032, - 45.48602393834169 - ], - [ - -73.62810998834755, - 45.48610943834545 - ], - [ - -73.62816386717539, - 45.48604838904997 - ], - [ - -73.62796810123905, - 45.485962899110234 - ] - ] - ] - }, - "id": 256823, - "properties": { - "name": "03074950", - "address": "avenue Dornal (MTL) 5002", - "function": "1000", - "height": 10, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62660048821765, - 45.48760003945077 - ], - [ - -73.62672548866344, - 45.48765513876695 - ], - [ - -73.62679289555378, - 45.48757938694501 - ], - [ - -73.62668965668583, - 45.48753364625891 - ], - [ - -73.62667228837225, - 45.48755283943233 - ], - [ - -73.62665098840122, - 45.48754333818456 - ], - [ - -73.62660048821765, - 45.48760003945077 - ] - ] - ] - }, - "id": 256837, - "properties": { - "name": "03074919", - "address": "avenue Dornal (MTL) 4886", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63144218974485, - 45.48308313866513 - ], - [ - -73.63145118894072, - 45.483086437944266 - ], - [ - -73.63139578967787, - 45.483159838263084 - ], - [ - -73.63148978954999, - 45.483195038267354 - ], - [ - -73.63155188953394, - 45.48311243825589 - ], - [ - -73.63144888998148, - 45.48307423777318 - ], - [ - -73.63144218974485, - 45.48308313866513 - ] - ] - ] - }, - "id": 257014, - "properties": { - "name": "03001968", - "address": "avenue Coolbrook (MTL) 5190", - "function": "1000", - "height": 9, - "year_of_construction": 1910 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63132939025353, - 45.48749103819731 - ], - [ - -73.63146818970031, - 45.48755323873747 - ], - [ - -73.63154709022037, - 45.48746613912279 - ], - [ - -73.631408389407, - 45.4874039385641 - ], - [ - -73.63132939025353, - 45.48749103819731 - ] - ] - ] - }, - "id": 257027, - "properties": { - "name": "03074205", - "address": "avenue Lacombe (MTL) 5012", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62839148953681, - 45.48656833882221 - ], - [ - -73.62839208869543, - 45.486568538814346 - ], - [ - -73.62840608833345, - 45.48655803807425 - ], - [ - -73.62841978815268, - 45.48656703912822 - ], - [ - -73.62845278799176, - 45.48654203850049 - ], - [ - -73.62842428900734, - 45.486523838768804 - ], - [ - -73.6284445647766, - 45.48650826933474 - ], - [ - -73.62827018586677, - 45.4864310119542 - ], - [ - -73.62821628921839, - 45.48649333819694 - ], - [ - -73.62839148953681, - 45.48656833882221 - ] - ] - ] - }, - "id": 257033, - "properties": { - "name": "03074813", - "address": "avenue Dornal (MTL) 4981", - "function": "1000", - "height": 9, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62744230944577, - 45.484391058173706 - ], - [ - -73.62739586847472, - 45.484444547342584 - ], - [ - -73.62753601370687, - 45.484509163680194 - ], - [ - -73.6275818245581, - 45.484455383608555 - ], - [ - -73.62744230944577, - 45.484391058173706 - ] - ] - ] - }, - "id": 257131, - "properties": { - "name": "03035378", - "address": "rue Globert (MTL) 5197", - "function": "1000", - "height": 13, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6301044896233, - 45.48753903843186 - ], - [ - -73.63003350918133, - 45.48761931710135 - ], - [ - -73.63018078469176, - 45.48768450334161 - ], - [ - -73.63025228968151, - 45.487603738966556 - ], - [ - -73.6301044896233, - 45.48753903843186 - ] - ] - ] - }, - "id": 257542, - "properties": { - "name": "03074334", - "address": "avenue Isabella (CSL+MTL) 4954", - "function": "1000", - "height": 8, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63215628967296, - 45.48300043768737 - ], - [ - -73.63226658928599, - 45.4828836377371 - ], - [ - -73.63218899022664, - 45.48284741876225 - ], - [ - -73.63207624995911, - 45.48297194754156 - ], - [ - -73.63210428970902, - 45.48298493769381 - ], - [ - -73.63210988996634, - 45.482987637055025 - ], - [ - -73.6321156896826, - 45.482981538387094 - ], - [ - -73.63215628967296, - 45.48300043768737 - ] - ] - ] - }, - "id": 257668, - "properties": { - "name": "03034241", - "address": "avenue Earnscliffe (MTL) 5181", - "function": "1000", - "height": 10, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62663218820192, - 45.483080938023434 - ], - [ - -73.62665708835273, - 45.48305373775529 - ], - [ - -73.62666798791044, - 45.48305863793049 - ], - [ - -73.62669226189966, - 45.48303230940024 - ], - [ - -73.62653196944451, - 45.482958854442664 - ], - [ - -73.62648228778556, - 45.4830131378083 - ], - [ - -73.62663218820192, - 45.483080938023434 - ] - ] - ] - }, - "id": 257758, - "properties": { - "name": "03035287", - "address": "rue Snowdon (MTL) 5259", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63176198932709, - 45.48236533795645 - ], - [ - -73.63183495121066, - 45.48239697155973 - ], - [ - -73.631959301327, - 45.48225953839337 - ], - [ - -73.6318835891416, - 45.482226738243774 - ], - [ - -73.63176198932709, - 45.48236533795645 - ] - ] - ] - }, - "id": 257840, - "properties": { - "name": "03034363", - "address": "avenue Earnscliffe (MTL) 5152", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6313938892884, - 45.482647737860226 - ], - [ - -73.63149428931956, - 45.4825399377019 - ], - [ - -73.63141730426982, - 45.482504402277016 - ], - [ - -73.63131509059785, - 45.482617303883146 - ], - [ - -73.63132209018158, - 45.48262053798298 - ], - [ - -73.6313158899153, - 45.48262713828594 - ], - [ - -73.6313367898213, - 45.48263613791754 - ], - [ - -73.63134178983513, - 45.48263873812378 - ], - [ - -73.63135148986375, - 45.48262823745993 - ], - [ - -73.6313938892884, - 45.482647737860226 - ] - ] - ] - }, - "id": 257884, - "properties": { - "name": "03034225", - "address": "avenue Earnscliffe (MTL) 5141", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62839508954357, - 45.4868392387535 - ], - [ - -73.62856158852931, - 45.486913839463774 - ], - [ - -73.62861585168494, - 45.4868540304185 - ], - [ - -73.6284487464285, - 45.48677999557145 - ], - [ - -73.62839508954357, - 45.4868392387535 - ] - ] - ] - }, - "id": 257906, - "properties": { - "name": "03074790", - "address": "rue Fulton (MTL) 4964", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62774228939905, - 45.48702393872509 - ], - [ - -73.62768753035122, - 45.487080475168916 - ], - [ - -73.62786694443534, - 45.48715996571019 - ], - [ - -73.6278903877205, - 45.48713573901401 - ], - [ - -73.62791538808737, - 45.48714833945551 - ], - [ - -73.62794278921731, - 45.4871200383141 - ], - [ - -73.62774228939905, - 45.48702393872509 - ] - ] - ] - }, - "id": 257951, - "properties": { - "name": "03074826", - "address": "avenue Dornal (MTL) 4927", - "function": "1000", - "height": 10, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62680858839907, - 45.48831753896956 - ], - [ - -73.62686322873446, - 45.48825848622326 - ], - [ - -73.6267011983627, - 45.48818577407316 - ], - [ - -73.6266475891804, - 45.488243738586 - ], - [ - -73.62680858839907, - 45.48831753896956 - ] - ] - ] - }, - "id": 258018, - "properties": { - "name": "03074848", - "address": "avenue Dornal (MTL) 4853", - "function": "1000", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62763569918211, - 45.48418048700338 - ], - [ - -73.62762968835597, - 45.484186837635356 - ], - [ - -73.627622387797, - 45.48418343807473 - ], - [ - -73.6275816777094, - 45.48423051311329 - ], - [ - -73.62773647613258, - 45.48430188508242 - ], - [ - -73.62778278981514, - 45.48424830503161 - ], - [ - -73.62763569918211, - 45.48418048700338 - ] - ] - ] - }, - "id": 258049, - "properties": { - "name": "03035386", - "address": "rue Globert (MTL) 5213", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63071279015136, - 45.48885383899236 - ], - [ - -73.63088038917803, - 45.4889283387544 - ], - [ - -73.6309358958597, - 45.48886655294242 - ], - [ - -73.63076802910051, - 45.48879240630696 - ], - [ - -73.63071279015136, - 45.48885383899236 - ] - ] - ] - }, - "id": 258080, - "properties": { - "name": "03073771", - "address": "avenue Lacombe (MTL) 4903", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.631031689575, - 45.486247739227096 - ], - [ - -73.63096492275335, - 45.48632385367268 - ], - [ - -73.63106971048451, - 45.48637056326046 - ], - [ - -73.6310879905415, - 45.48634593869814 - ], - [ - -73.63110089016442, - 45.48635063818614 - ], - [ - -73.63110339012758, - 45.48634743906436 - ], - [ - -73.63112358958638, - 45.486325239177525 - ], - [ - -73.63110949059426, - 45.486319139108836 - ], - [ - -73.63113318969893, - 45.48629233789071 - ], - [ - -73.63103659046025, - 45.48624993822751 - ], - [ - -73.631031689575, - 45.486247739227096 - ] - ] - ] - }, - "id": 258089, - "properties": { - "name": "03034744", - "address": "avenue Isabella (CSL+MTL) 5172", - "function": "1000", - "height": 8, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63083038919774, - 45.48474843870488 - ], - [ - -73.63082808897403, - 45.48475113817821 - ], - [ - -73.63070458983739, - 45.48489943831982 - ], - [ - -73.63089249998188, - 45.48498531232301 - ], - [ - -73.63102710067048, - 45.484832297550795 - ], - [ - -73.63083038919774, - 45.48474843870488 - ] - ] - ] - }, - "id": 258142, - "properties": { - "name": "03037130", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5219", - "function": "1000", - "height": 20, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63026758944437, - 45.4881051388954 - ], - [ - -73.63023880535032, - 45.48813757335747 - ], - [ - -73.63038852083308, - 45.48820386875109 - ], - [ - -73.6304572905598, - 45.48812623883994 - ], - [ - -73.63030718999109, - 45.48806043888994 - ], - [ - -73.63026758944437, - 45.4881051388954 - ] - ] - ] - }, - "id": 258180, - "properties": { - "name": "03074219", - "address": "avenue Isabella (CSL+MTL) 4935", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62896580843174, - 45.485366509121945 - ], - [ - -73.62884021038202, - 45.485505910124516 - ], - [ - -73.62892868941702, - 45.48554533872655 - ], - [ - -73.62905428989627, - 45.485405938524764 - ], - [ - -73.62896580843174, - 45.485366509121945 - ] - ] - ] - }, - "id": 258191, - "properties": { - "name": "03000228", - "address": "avenue de Westbury (MTL) 5154", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6291610886547, - 45.48214963771713 - ], - [ - -73.62915918875164, - 45.48215173830751 - ], - [ - -73.62924248851216, - 45.482185037392235 - ], - [ - -73.62924510715136, - 45.48218622222675 - ], - [ - -73.62926944972175, - 45.482159246977346 - ], - [ - -73.629361189287, - 45.48204763773697 - ], - [ - -73.62932438899854, - 45.48203273835524 - ], - [ - -73.62933218908155, - 45.48202363747448 - ], - [ - -73.62933188929719, - 45.482023438047946 - ], - [ - -73.6292965894572, - 45.48200683804805 - ], - [ - -73.62929038949561, - 45.482004138327405 - ], - [ - -73.6291610886547, - 45.48214963771713 - ] - ] - ] - }, - "id": 258224, - "properties": { - "name": "03001991", - "address": "avenue Coolbrook (MTL) 4982", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62883918834979, - 45.486361738538434 - ], - [ - -73.62883598844465, - 45.48636603891159 - ], - [ - -73.62875858920472, - 45.48646863842213 - ], - [ - -73.6287553892854, - 45.48647293789312 - ], - [ - -73.62888418842287, - 45.48652113865685 - ], - [ - -73.62888658890006, - 45.48652193861079 - ], - [ - -73.62901579006422, - 45.48633313827402 - ], - [ - -73.62889698912487, - 45.4862929386029 - ], - [ - -73.62889278944803, - 45.486291338016834 - ], - [ - -73.62883918834979, - 45.486361738538434 - ] - ] - ] - }, - "id": 258404, - "properties": { - "name": "03074798", - "address": "rue Fulton (MTL) 4994", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6268003875269, - 45.48316163862325 - ], - [ - -73.6269843886493, - 45.48324713828621 - ], - [ - -73.62703757627165, - 45.48319054989817 - ], - [ - -73.626852799351, - 45.483105876340666 - ], - [ - -73.6268003875269, - 45.48316163862325 - ] - ] - ] - }, - "id": 258434, - "properties": { - "name": "03035297", - "address": "rue Byron (MTL) 5268", - "function": "1000", - "height": 10, - "year_of_construction": 1934 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62836968894646, - 45.48837383889341 - ], - [ - -73.62839258901137, - 45.48834913939111 - ], - [ - -73.62841128945391, - 45.48835783967308 - ], - [ - -73.62846768805349, - 45.48829633930269 - ], - [ - -73.62832038878769, - 45.48822953836425 - ], - [ - -73.62831408945512, - 45.4882267388223 - ], - [ - -73.62830278922723, - 45.48823913878954 - ], - [ - -73.62824408925272, - 45.48821223903574 - ], - [ - -73.62817638909351, - 45.48828563893863 - ], - [ - -73.62836968894646, - 45.48837383889341 - ] - ] - ] - }, - "id": 258447, - "properties": { - "name": "03074647", - "address": "rue Jean-Brillant (MTL) 4886", - "function": "1000", - "height": 8, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63274479040476, - 45.48317313769742 - ], - [ - -73.63281226861595, - 45.48320530345466 - ], - [ - -73.6328640792249, - 45.4831482424346 - ], - [ - -73.63279879015101, - 45.48312113849796 - ], - [ - -73.63279629032178, - 45.48311993740976 - ], - [ - -73.63274479040476, - 45.48317313769742 - ] - ] - ] - }, - "id": 258463, - "properties": { - "name": "03034251", - "address": "avenue Earnscliffe (MTL) 5219", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62910553061838, - 45.48405016526578 - ], - [ - -73.62903989789439, - 45.484126028976185 - ], - [ - -73.62939219043412, - 45.48428348957356 - ], - [ - -73.62941895305357, - 45.484253246918925 - ], - [ - -73.62938498908001, - 45.48423853781578 - ], - [ - -73.62942471361703, - 45.484192995689305 - ], - [ - -73.62910553061838, - 45.48405016526578 - ] - ] - ] - }, - "id": 258561, - "properties": { - "name": "03034821", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5285", - "function": "6000", - "height": 13, - "year_of_construction": 1961 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63246269090406, - 45.48266163794623 - ], - [ - -73.6325573988069, - 45.48270263396457 - ], - [ - -73.63265452185725, - 45.48259532520687 - ], - [ - -73.63260949045169, - 45.48257733827222 - ], - [ - -73.63259228931285, - 45.48259703788224 - ], - [ - -73.63253919005278, - 45.48257413812448 - ], - [ - -73.63246269090406, - 45.48266163794623 - ] - ] - ] - }, - "id": 258629, - "properties": { - "name": "03034352", - "address": "avenue Earnscliffe (MTL) 5194", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63263615382866, - 45.4824241084534 - ], - [ - -73.63259807513658, - 45.48246618179212 - ], - [ - -73.63267678973259, - 45.482503637384504 - ], - [ - -73.63271658943864, - 45.482462337687906 - ], - [ - -73.63263615382866, - 45.4824241084534 - ] - ] - ] - }, - "id": 258630, - "properties": { - "name": "03034352", - "address": "avenue Earnscliffe (MTL) 5194", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63080529029823, - 45.48679293904605 - ], - [ - -73.63073876190106, - 45.48687409311528 - ], - [ - -73.63081015030795, - 45.486905689555925 - ], - [ - -73.63081118896274, - 45.48690452846529 - ], - [ - -73.63081513321731, - 45.48690627414835 - ], - [ - -73.63087139014856, - 45.486816838824936 - ], - [ - -73.63086748960889, - 45.48681573828314 - ], - [ - -73.63080958903156, - 45.486794738314146 - ], - [ - -73.63080529029823, - 45.48679293904605 - ] - ] - ] - }, - "id": 258680, - "properties": { - "name": "03034748", - "address": "avenue Isabella (CSL+MTL) 5032", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63143078997483, - 45.48575803809122 - ], - [ - -73.63132819005557, - 45.48586853839995 - ], - [ - -73.63137199025878, - 45.48588863828395 - ], - [ - -73.6313666894323, - 45.48589433860535 - ], - [ - -73.63137128944064, - 45.48589643805463 - ], - [ - -73.63140345489867, - 45.48591165434535 - ], - [ - -73.6315105530951, - 45.4857947499865 - ], - [ - -73.63143078997483, - 45.48575803809122 - ] - ] - ] - }, - "id": 258818, - "properties": { - "name": "03000733", - "address": "avenue Trans Island (MTL) 5253", - "function": "1000", - "height": 10, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62754658860683, - 45.48648103838732 - ], - [ - -73.62748835294587, - 45.48654557915227 - ], - [ - -73.6276608230498, - 45.486621969707144 - ], - [ - -73.6277186885264, - 45.486557838698886 - ], - [ - -73.62754658860683, - 45.48648103838732 - ] - ] - ] - }, - "id": 258843, - "properties": { - "name": "03074940", - "address": "avenue Dornal (MTL) 4960", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62837408031103, - 45.4821230759918 - ], - [ - -73.62827959386912, - 45.4822286279563 - ], - [ - -73.628352264122, - 45.482261771355184 - ], - [ - -73.62844707457292, - 45.48215585722852 - ], - [ - -73.62837408031103, - 45.4821230759918 - ] - ] - ] - }, - "id": 258922, - "properties": { - "name": "03001348", - "address": "avenue Coolbrook (MTL) 4939", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6303499896271, - 45.48800723887768 - ], - [ - -73.63048409035127, - 45.488068338259865 - ], - [ - -73.6305561898015, - 45.48799013848078 - ], - [ - -73.63042198939912, - 45.4879290392962 - ], - [ - -73.6303499896271, - 45.48800723887768 - ] - ] - ] - }, - "id": 258972, - "properties": { - "name": "03074217", - "address": "avenue Isabella (CSL+MTL) 4949", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63111850472278, - 45.48591565135989 - ], - [ - -73.63101276131667, - 45.48603302261448 - ], - [ - -73.63109478922588, - 45.48606933896803 - ], - [ - -73.63119339015591, - 45.48595903873247 - ], - [ - -73.63115398923439, - 45.48594163866598 - ], - [ - -73.63116068949978, - 45.48593423873836 - ], - [ - -73.63111850472278, - 45.48591565135989 - ] - ] - ] - }, - "id": 259122, - "properties": { - "name": "03000666", - "address": "avenue Mountain Sights (MTL) 5252", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62890780196163, - 45.48297603417741 - ], - [ - -73.62875864653356, - 45.48314257050338 - ], - [ - -73.62890454527651, - 45.483207762691336 - ], - [ - -73.62905361334145, - 45.48304285499742 - ], - [ - -73.62890780196163, - 45.48297603417741 - ] - ] - ] - }, - "id": 259140, - "properties": { - "name": "03037528", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5022", - "function": "1000", - "height": 14, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63034639043053, - 45.48849013880504 - ], - [ - -73.63035028908087, - 45.48849203842929 - ], - [ - -73.63055169050718, - 45.48858603844521 - ], - [ - -73.63061708974244, - 45.48851683844862 - ], - [ - -73.630393389909, - 45.48841233940991 - ], - [ - -73.63039108970311, - 45.488411238824995 - ], - [ - -73.63036099013141, - 45.48844633926033 - ], - [ - -73.63039579017044, - 45.48846123877519 - ], - [ - -73.63037898912802, - 45.488480239294624 - ], - [ - -73.63036318888827, - 45.488473339315526 - ], - [ - -73.6303626893624, - 45.48847363863433 - ], - [ - -73.63034639043053, - 45.48849013880504 - ] - ] - ] - }, - "id": 259165, - "properties": { - "name": "03074185", - "address": "avenue Lacombe (MTL) 4912", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63172679062502, - 45.487725438524365 - ], - [ - -73.63167299034073, - 45.487784639309304 - ], - [ - -73.6318259905878, - 45.48785313905739 - ], - [ - -73.63188449069014, - 45.48778833933445 - ], - [ - -73.63173149077865, - 45.487719938646556 - ], - [ - -73.63172679062502, - 45.487725438524365 - ] - ] - ] - }, - "id": 259264, - "properties": { - "name": "03073751", - "address": "avenue Lacombe (MTL) 5001", - "function": "1000", - "height": 10, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63051748974162, - 45.48839693899859 - ], - [ - -73.63067728940092, - 45.48846523904179 - ], - [ - -73.63074868861958, - 45.4883823220576 - ], - [ - -73.63059060202671, - 45.48831232034656 - ], - [ - -73.63051748974162, - 45.48839693899859 - ] - ] - ] - }, - "id": 259366, - "properties": { - "name": "03074187", - "address": "avenue Lacombe (MTL) 4922", - "function": "1000", - "height": 8, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62662538814493, - 45.48444343788762 - ], - [ - -73.6265728880827, - 45.484496438522605 - ], - [ - -73.62657798842889, - 45.48449873827672 - ], - [ - -73.62665212937412, - 45.4845342567081 - ], - [ - -73.62670509527193, - 45.48447679498296 - ], - [ - -73.62662868862871, - 45.48444003820942 - ], - [ - -73.62662538814493, - 45.48444343788762 - ] - ] - ] - }, - "id": 259436, - "properties": { - "name": "03034897", - "address": "chemin Circle (MTL) 5040", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6288863966865, - 45.48235315133095 - ], - [ - -73.62879281163181, - 45.48245769667029 - ], - [ - -73.62886713471144, - 45.48248950610392 - ], - [ - -73.62895967453143, - 45.4823860587972 - ], - [ - -73.6288863966865, - 45.48235315133095 - ] - ] - ] - }, - "id": 259508, - "properties": { - "name": "03001362", - "address": "avenue Coolbrook (MTL) 4967", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63246036828214, - 45.48246092898702 - ], - [ - -73.63233162719402, - 45.482603160363226 - ], - [ - -73.63241028982195, - 45.48263753782387 - ], - [ - -73.63250989051664, - 45.48252463736944 - ], - [ - -73.63246818996166, - 45.4825065376334 - ], - [ - -73.632495090206, - 45.48247603853254 - ], - [ - -73.63246036828214, - 45.48246092898702 - ] - ] - ] - }, - "id": 259558, - "properties": { - "name": "03034353", - "address": "avenue Earnscliffe (MTL) 5186", - "function": "1000", - "height": 10, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62727338899133, - 45.48754773861992 - ], - [ - -73.62720890255696, - 45.48761968832514 - ], - [ - -73.6273510922538, - 45.487683230860824 - ], - [ - -73.62740048831297, - 45.4876347388871 - ], - [ - -73.62739178896555, - 45.48763073887718 - ], - [ - -73.62741138868834, - 45.48760893895233 - ], - [ - -73.62727338899133, - 45.48754773861992 - ] - ] - ] - }, - "id": 259676, - "properties": { - "name": "03074834", - "address": "avenue Dornal (MTL) 4891", - "function": "1000", - "height": 10, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62833698922108, - 45.489547739317494 - ], - [ - -73.62827442921856, - 45.48961941208186 - ], - [ - -73.62840357205047, - 45.4896768228921 - ], - [ - -73.62846718850328, - 45.489603939477426 - ], - [ - -73.62833698922108, - 45.489547739317494 - ] - ] - ] - }, - "id": 259684, - "properties": { - "name": "03074297", - "address": "avenue Isabella (CSL+MTL) 4816", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62983798961116, - 45.48652373795575 - ], - [ - -73.62997248909015, - 45.48659033825858 - ], - [ - -73.6300229887954, - 45.48653973914626 - ], - [ - -73.63001408963227, - 45.48653563877994 - ], - [ - -73.63003628910214, - 45.486513438609386 - ], - [ - -73.62991058954799, - 45.48645113863452 - ], - [ - -73.62983798961116, - 45.48652373795575 - ] - ] - ] - }, - "id": 259725, - "properties": { - "name": "05165809", - "address": "rue Jean-Brillant (MTL) 5012", + "name": "03030773", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 157", "function": "1000", "height": 12, - "year_of_construction": 1944 + "year_of_construction": 1912 } }, { @@ -45310,43 +1932,55 @@ "coordinates": [ [ [ - -73.6305579897103, - 45.48901953900014 + -73.59903888191745, + 45.51790404520585 ], [ - -73.63050306179149, - 45.48907735384756 + -73.59915978144646, + 45.517771644816 ], [ - -73.63068796086385, - 45.489159221853534 + -73.59913638144086, + 45.51776114508697 ], [ - -73.63071418928325, - 45.48913073963024 + -73.59914129093308, + 45.51775573188254 ], [ - -73.6307291891114, - 45.48913773855916 + -73.59909832540048, + 45.51773669433801 ], [ - -73.63075399061417, - 45.48911183871633 + -73.59909828197098, + 45.51773674566664 ], [ - -73.6305579897103, - 45.48901953900014 + -73.59907268112792, + 45.51778354520162 + ], + [ + -73.59904472327607, + 45.5177760692728 + ], + [ + -73.59896118896978, + 45.517869016047875 + ], + [ + -73.59903888191745, + 45.51790404520585 ] ] ] }, - "id": 259831, + "id": 169288, "properties": { - "name": "03073772", - "address": "avenue Lacombe (MTL) 4891", + "name": "03033757", + "address": "avenue Querbes (OUT) 174", "function": "1000", - "height": 10, - "year_of_construction": 1939 + "height": 11, + "year_of_construction": 1906 } }, { @@ -45356,35 +1990,59 @@ "coordinates": [ [ [ - -73.63180304017621, - 45.48267602737756 + -73.59814433778156, + 45.517190804328074 ], [ - -73.63169856477158, - 45.48279142810718 + -73.59814228143723, + 45.51719334544604 ], [ - -73.63177448940303, - 45.482825638190434 + -73.59809638030795, + 45.517254545264144 ], [ - -73.63187938964239, - 45.48271033768439 + -73.59808508613631, + 45.51725032750988 ], [ - -73.63180304017621, - 45.48267602737756 + -73.59808397987698, + 45.517251594535985 + ], + [ + -73.59836451413312, + 45.51737590119279 + ], + [ + -73.59838935144585, + 45.51735272689494 + ], + [ + -73.5984082254467, + 45.51733109735696 + ], + [ + -73.59829678064395, + 45.51727254527867 + ], + [ + -73.59830703310524, + 45.51726289555975 + ], + [ + -73.59814433778156, + 45.517190804328074 ] ] ] }, - "id": 259904, + "id": 171750, "properties": { - "name": "03034233", - "address": "avenue Earnscliffe (MTL) 5161", + "name": "03033687", + "address": "avenue Laurier Ouest (MTL+OUT) 1127", "function": "1000", - "height": 10, - "year_of_construction": 1931 + "height": 13, + "year_of_construction": 1909 } }, { @@ -45394,35 +2052,55 @@ "coordinates": [ [ [ - -73.62858108882051, - 45.48738843844617 + -73.5992102306759, + 45.517515833834594 ], [ - -73.62877808831028, - 45.48747653907532 + -73.59911982696184, + 45.5176165829175 ], [ - -73.62884074523737, - 45.48740717400289 + -73.5991375816225, + 45.51762604463423 ], [ - -73.62864318961218, - 45.4873197300946 + -73.59909828099937, + 45.51766254478809 ], [ - -73.62858108882051, - 45.48738843844617 + -73.5990966816156, + 45.517664344957545 + ], + [ + -73.5991430818847, + 45.51768444493345 + ], + [ + -73.59917118120484, + 45.517652244930986 + ], + [ + -73.59918590199756, + 45.517658611121824 + ], + [ + -73.59928426436657, + 45.51754899253712 + ], + [ + -73.5992102306759, + 45.517515833834594 ] ] ] }, - "id": 260031, + "id": 172152, "properties": { - "name": "03074705", - "address": "rue Fulton (MTL) 4927", + "name": "03030775", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 163", "function": "1000", - "height": 9, - "year_of_construction": 1941 + "height": 12, + "year_of_construction": 1913 } }, { @@ -45432,35 +2110,47 @@ "coordinates": [ [ [ - -73.63031283833033, - 45.48557159758033 + -73.59957608174008, + 45.51723774450074 ], [ - -73.63022010398711, - 45.48567452963544 + -73.59957348210223, + 45.51724064515462 ], [ - -73.63030439021364, - 45.485713138591514 + -73.59955212600308, + 45.517263330762425 ], [ - -73.63039889025666, - 45.485610938727284 + -73.5994641351714, + 45.51736139289409 ], [ - -73.63031283833033, - 45.48557159758033 + -73.59946448103503, + 45.51736154556591 + ], + [ + -73.59953833684675, + 45.51739693406539 + ], + [ + -73.59965115004263, + 45.517271208911005 + ], + [ + -73.59957608174008, + 45.51723774450074 ] ] ] }, - "id": 260087, + "id": 172153, "properties": { - "name": "03000683", - "address": "avenue Mountain Sights (MTL) 5208", + "name": "03030779", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 178", "function": "1000", - "height": 9, - "year_of_construction": 1931 + "height": 16, + "year_of_construction": 1916 } }, { @@ -45470,138 +2160,42 @@ "coordinates": [ [ [ - -73.62645628758195, - 45.48304153875158 + -73.59808397987698, + 45.517251594535985 ], [ - -73.62640506463987, - 45.48309710157098 + -73.59797381497064, + 45.51737783867921 ], [ - -73.62656080763587, - 45.48316847140257 + -73.59817206775926, + 45.517465685507 ], [ - -73.62661228850688, - 45.48311273815716 + -73.59817468149045, + 45.51746274528002 ], [ - -73.62645628758195, - 45.48304153875158 + -73.59824118003354, + 45.51749194553585 + ], + [ + -73.59836451413312, + 45.51737590119279 + ], + [ + -73.59808397987698, + 45.517251594535985 ] ] ] }, - "id": 260126, + "id": 172387, "properties": { - "name": "03035284", - "address": "rue Snowdon (MTL) 5251", - "function": "1000", - "height": 10, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63099288956738, - 45.482829638057275 - ], - [ - -73.63098658902595, - 45.482832738054555 - ], - [ - -73.63092941623772, - 45.48286352975725 - ], - [ - -73.63085770138888, - 45.4829429198988 - ], - [ - -73.63087028905804, - 45.48294803730173 - ], - [ - -73.63085538862074, - 45.482966138585276 - ], - [ - -73.63085568946343, - 45.482966238123616 - ], - [ - -73.63088878981317, - 45.48297993725484 - ], - [ - -73.63090188887823, - 45.48296393737296 - ], - [ - -73.63093879236835, - 45.482979321142984 - ], - [ - -73.63103378385404, - 45.48287416414544 - ], - [ - -73.63099288956738, - 45.482829638057275 - ] - ] - ] - }, - "id": 260171, - "properties": { - "name": "03001980", - "address": "avenue Coolbrook (MTL) 5146", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63009435384387, - 45.48515492186926 - ], - [ - -73.6299869999926, - 45.485273771571265 - ], - [ - -73.63009098939739, - 45.485325538308835 - ], - [ - -73.63020648954638, - 45.48521063764727 - ], - [ - -73.63009435384387, - 45.48515492186926 - ] - ] - ] - }, - "id": 260476, - "properties": { - "name": "03000709", - "address": "avenue Trans Island (MTL) 5179", - "function": "1000", - "height": 9, + "name": "03033685", + "address": "avenue Laurier Ouest (MTL+OUT) 1115", + "function": "6241", + "height": 11, "year_of_construction": 1963 } }, @@ -45612,531 +2206,47 @@ "coordinates": [ [ [ - -73.62854008974267, - 45.489322139276844 + -73.59906151407003, + 45.51744921180192 ], [ - -73.62866888978509, - 45.48937863953233 + -73.59896755111595, + 45.51755392855115 ], [ - -73.62873320628886, - 45.489306162807075 + -73.59898528043955, + 45.51756064579883 ], [ - -73.62860489891143, - 45.48924910776398 + -73.59894634008023, + 45.51761138737058 ], [ - -73.62854008974267, - 45.489322139276844 + -73.59896354878694, + 45.51761901841104 + ], + [ + -73.59900074046807, + 45.51763311908468 + ], + [ + -73.59913587168991, + 45.517482523293054 + ], + [ + -73.59906151407003, + 45.51744921180192 ] ] ] }, - "id": 260517, + "id": 172656, "properties": { - "name": "03074302", - "address": "avenue Isabella (CSL+MTL) 4836", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63051946593092, - 45.48565867102333 - ], - [ - -73.63042259631901, - 45.48576619358126 - ], - [ - -73.63050268942204, - 45.48580093874024 - ], - [ - -73.63059298909262, - 45.48569803803659 - ], - [ - -73.63054558982468, - 45.48567753793566 - ], - [ - -73.6305503899385, - 45.48567213877297 - ], - [ - -73.63051946593092, - 45.48565867102333 - ] - ] - ] - }, - "id": 260577, - "properties": { - "name": "03000679", - "address": "avenue Mountain Sights (MTL) 5218", - "function": "1000", - "height": 10, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62778669246691, - 45.481859282317046 - ], - [ - -73.62765432601812, - 45.48200434250946 - ], - [ - -73.62765599893805, - 45.48200706537521 - ], - [ - -73.62769068805036, - 45.481968137934295 - ], - [ - -73.62776243985607, - 45.48199988617476 - ], - [ - -73.62785984994912, - 45.48189213753535 - ], - [ - -73.62778669246691, - 45.481859282317046 - ] - ] - ] - }, - "id": 260594, - "properties": { - "name": "03001332", - "address": "avenue Coolbrook (MTL) 4907", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63205130036614, - 45.48378886318407 - ], - [ - -73.63197519417962, - 45.48387256125573 - ], - [ - -73.6319915900201, - 45.48388463714461 - ], - [ - -73.63195689028677, - 45.48390783837821 - ], - [ - -73.63201388924992, - 45.48395083735928 - ], - [ - -73.63201508975163, - 45.483951637734855 - ], - [ - -73.6320380895072, - 45.48393053765198 - ], - [ - -73.6320389707222, - 45.483931012652015 - ], - [ - -73.63213441887248, - 45.48382604139692 - ], - [ - -73.63205130036614, - 45.48378886318407 - ] - ] - ] - }, - "id": 260732, - "properties": { - "name": "03001408", - "address": "avenue Coolbrook (MTL) 5245", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63028568989623, - 45.486136538330484 - ], - [ - -73.63037238155324, - 45.48617500051431 - ], - [ - -73.63047509477866, - 45.48606099604089 - ], - [ - -73.63038808935401, - 45.48602233812601 - ], - [ - -73.63028568989623, - 45.486136538330484 - ] - ] - ] - }, - "id": 260777, - "properties": { - "name": "03000249", - "address": "avenue de Westbury (MTL) 5232", - "function": "1000", - "height": 11, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63196499065907, - 45.48291353752473 - ], - [ - -73.63207319018144, - 45.482797338583495 - ], - [ - -73.63199599194559, - 45.4827617498059 - ], - [ - -73.63188168205362, - 45.48288801241314 - ], - [ - -73.63191328927245, - 45.482903138328304 - ], - [ - -73.63192168911661, - 45.48289353806457 - ], - [ - -73.63196499065907, - 45.48291353752473 - ] - ] - ] - }, - "id": 260790, - "properties": { - "name": "03034237", - "address": "avenue Earnscliffe (MTL) 5171", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63056669013123, - 45.48313583803202 - ], - [ - -73.63049338972439, - 45.483216437347174 - ], - [ - -73.63051238976121, - 45.48322473831879 - ], - [ - -73.63046728879478, - 45.48327573824144 - ], - [ - -73.63051628943248, - 45.483297037416946 - ], - [ - -73.63051808885558, - 45.48329463817026 - ], - [ - -73.63053298934874, - 45.48327813865818 - ], - [ - -73.63053844956376, - 45.48328059439796 - ], - [ - -73.63064007261377, - 45.48316887837332 - ], - [ - -73.63056669013123, - 45.48313583803202 - ] - ] - ] - }, - "id": 260865, - "properties": { - "name": "05227269", - "address": "avenue Coolbrook (MTL) 5153", - "function": "1000", - "height": 8, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6323808897528, - 45.48432453808077 - ], - [ - -73.63221109014385, - 45.48451123865615 - ], - [ - -73.63218989017162, - 45.48450173832039 - ], - [ - -73.63208245108427, - 45.48445415366109 - ], - [ - -73.63197312743303, - 45.48457512396035 - ], - [ - -73.63210290694158, - 45.48463350983572 - ], - [ - -73.6323833779238, - 45.48432565820514 - ], - [ - -73.6323808897528, - 45.48432453808077 - ] - ] - ] - }, - "id": 260922, - "properties": { - "name": "03037544", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5220", - "function": "5010", - "height": 16, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62986308930113, - 45.48909033910886 - ], - [ - -73.6300387897679, - 45.489168639037715 - ], - [ - -73.63009296075356, - 45.489108545968094 - ], - [ - -73.6299171404476, - 45.48903037943517 - ], - [ - -73.62986308930113, - 45.48909033910886 - ] - ] - ] - }, - "id": 261174, - "properties": { - "name": "03074175", - "address": "avenue Lacombe (MTL) 4882", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63254680137345, - 45.484010492821774 - ], - [ - -73.63247204939206, - 45.484093247510856 - ], - [ - -73.63248838973419, - 45.48409903796652 - ], - [ - -73.63245228933235, - 45.484149538708905 - ], - [ - -73.63250169064291, - 45.48416703831413 - ], - [ - -73.63250328980595, - 45.484167638456206 - ], - [ - -73.63251008995208, - 45.48416153770917 - ], - [ - -73.63252141675248, - 45.48416775870337 - ], - [ - -73.63262990259878, - 45.48404766079442 - ], - [ - -73.63254680137345, - 45.484010492821774 - ] - ] - ] - }, - "id": 261181, - "properties": { - "name": "03001421", - "address": "avenue Coolbrook (MTL) 5273", - "function": "1000", - "height": 10, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63030638940484, - 45.484991138560375 - ], - [ - -73.63040848971198, - 45.48487183832816 - ], - [ - -73.63036888928498, - 45.48485513829558 - ], - [ - -73.63037898960891, - 45.484843238900716 - ], - [ - -73.63037868852457, - 45.484843038578695 - ], - [ - -73.6303419481434, - 45.48482506828891 - ], - [ - -73.63022499487668, - 45.48495454465901 - ], - [ - -73.63025608940043, - 45.48497003874895 - ], - [ - -73.63025618999819, - 45.484969837968556 - ], - [ - -73.63030638940484, - 45.484991138560375 - ] - ] - ] - }, - "id": 261182, - "properties": { - "name": "03119755", - "address": "avenue Trans Island (MTL) 5178", + "name": "03030772", + "address": "avenue de l' \u00c9p\u00e9e (OUT) 151", "function": "1000", "height": 12, - "year_of_construction": 1932 + "year_of_construction": 1912 } }, { @@ -46146,4594 +2256,62 @@ "coordinates": [ [ [ - -73.62831638916536, - 45.48391043819986 + -73.59797807864481, + 45.51694937034552 ], [ - -73.62831638939213, - 45.48391053808253 + -73.59769790121501, + 45.5168246610962 ], [ - -73.628266193015, - 45.48396591790609 + -73.59758318548657, + 45.51695728413781 ], [ - -73.62853243273973, - 45.48408517940158 + -73.59759528124444, + 45.516961745113974 ], [ - -73.6285811574577, - 45.48402568972139 + -73.59755248406316, + 45.51701874340593 ], [ - -73.62838039634275, - 45.4839357833366 + -73.59759517571753, + 45.51703767918635 ], [ - -73.6283771879975, - 45.483939138869694 + -73.59764218092869, + 45.517055145422674 ], [ - -73.62831638916536, - 45.48391043819986 + -73.59764027559552, + 45.51705768190339 + ], + [ + -73.59779124795502, + 45.51712464309978 + ], + [ + -73.59779248088121, + 45.51712334447357 + ], + [ + -73.59781743644446, + 45.51713510382418 + ], + [ + -73.59797807864481, + 45.51694937034552 ] ] ] }, - "id": 261630, + "id": 177822, "properties": { - "name": "03034854", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5256", - "function": "1000", - "height": 14, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63128679000755, - 45.48821543859752 - ], - [ - -73.63144348912505, - 45.48828763926556 - ], - [ - -73.6314964600897, - 45.48823074135361 - ], - [ - -73.6313377561374, - 45.488160642402406 - ], - [ - -73.63128679000755, - 45.48821543859752 - ] - ] - ] - }, - "id": 261699, - "properties": { - "name": "05021887", - "address": "avenue Lacombe (MTL) 4943", - "function": "1000", - "height": 10, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63013118974831, - 45.48607383861429 - ], - [ - -73.6301936891443, - 45.48610463840916 - ], - [ - -73.63019458939267, - 45.48610503781451 - ], - [ - -73.63023348996117, - 45.486105238227566 - ], - [ - -73.6302329902683, - 45.48611433893885 - ], - [ - -73.63023418904922, - 45.48611493866914 - ], - [ - -73.63033178894987, - 45.48601413819317 - ], - [ - -73.63023618973713, - 45.48596833799201 - ], - [ - -73.63013118974831, - 45.48607383861429 - ] - ] - ] - }, - "id": 261702, - "properties": { - "name": "03000247", - "address": "avenue de Westbury (MTL) 5222", - "function": "1000", - "height": 9, - "year_of_construction": 1950 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6275816777094, - 45.48423051311329 - ], - [ - -73.62753523067487, - 45.48428403294189 - ], - [ - -73.62767820955925, - 45.484349955219216 - ], - [ - -73.62768208950074, - 45.48434543815372 - ], - [ - -73.62769438850266, - 45.484350738896815 - ], - [ - -73.62771278773045, - 45.48432923809876 - ], - [ - -73.62773647613258, - 45.48430188508242 - ], - [ - -73.6275816777094, - 45.48423051311329 - ] - ] - ] - }, - "id": 261747, - "properties": { - "name": "03035385", - "address": "rue Globert (MTL) 5207", - "function": "1000", - "height": 10, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62990580403317, - 45.48539879406311 - ], - [ - -73.62981776361843, - 45.48549649954994 - ], - [ - -73.629896889262, - 45.485532538413636 - ], - [ - -73.62998628909858, - 45.48543523804988 - ], - [ - -73.62990580403317, - 45.48539879406311 - ] - ] - ] - }, - "id": 261769, - "properties": { - "name": "03000691", - "address": "avenue Mountain Sights (MTL) 5184", - "function": "1000", - "height": 9, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63037716520853, - 45.48250174287273 - ], - [ - -73.63032480825467, - 45.482559579962086 - ], - [ - -73.63048687303379, - 45.482632776520866 - ], - [ - -73.63053668836133, - 45.482575037646285 - ], - [ - -73.63057268947442, - 45.48259033798127 - ], - [ - -73.63057278925116, - 45.48259033786723 - ], - [ - -73.63057297180521, - 45.482590177485896 - ], - [ - -73.63037716520853, - 45.48250174287273 - ] - ] - ] - }, - "id": 261792, - "properties": { - "name": "03034800", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5369", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62724508808384, - 45.48180303822496 - ], - [ - -73.62719169494076, - 45.481871651602 - ], - [ - -73.62729943230993, - 45.48192107803692 - ], - [ - -73.62735818823882, - 45.481847037955205 - ], - [ - -73.62729438805225, - 45.48182203754687 - ], - [ - -73.62724508808384, - 45.48180303822496 - ] - ] - ] - }, - "id": 261793, - "properties": { - "name": "03076899", - "address": "rue Snowdon (MTL) 5336", - "function": "1000", - "height": 10, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62973748938252, - 45.48545993822541 - ], - [ - -73.62981776361843, - 45.48549649954994 - ], - [ - -73.62990580403317, - 45.48539879406311 - ], - [ - -73.62982698857202, - 45.4853629384208 - ], - [ - -73.62973748938252, - 45.48545993822541 - ] - ] - ] - }, - "id": 261820, - "properties": { - "name": "03000693", - "address": "avenue Mountain Sights (MTL) 5180", - "function": "1000", - "height": 9, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63093238930514, - 45.485997438578 - ], - [ - -73.63101276131667, - 45.48603302261448 - ], - [ - -73.63111850472278, - 45.48591565135989 - ], - [ - -73.63103749008957, - 45.48587983867358 - ], - [ - -73.63093238930514, - 45.485997438578 - ] - ] - ] - }, - "id": 261867, - "properties": { - "name": "03000668", - "address": "avenue Mountain Sights (MTL) 5246", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62784698917585, - 45.48820523885174 - ], - [ - -73.62801638889863, - 45.488289338561415 - ], - [ - -73.6280921887769, - 45.48821373944674 - ], - [ - -73.62792288895295, - 45.488129638836625 - ], - [ - -73.62784698917585, - 45.48820523885174 - ] - ] - ] - }, - "id": 261909, - "properties": { - "name": "05010708", - "address": "rue Fulton (MTL) 4877", - "function": "1000", - "height": 9, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6323833779238, - 45.48432565820514 - ], - [ - -73.63210290694158, - 45.48463350983572 - ], - [ - -73.63242839032182, - 45.48477993834747 - ], - [ - -73.63270849020766, - 45.48447193788212 - ], - [ - -73.6323833779238, - 45.48432565820514 - ] - ] - ] - }, - "id": 261991, - "properties": { - "name": "03037546", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5250", - "function": "6000", - "height": 9, - "year_of_construction": 1960 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6323394902597, - 45.4863253387922 - ], - [ - -73.63237249074082, - 45.48634073830987 - ], - [ - -73.63236448957905, - 45.48634923852731 - ], - [ - -73.63236498943381, - 45.48634963837949 - ], - [ - -73.632386291046, - 45.486357437853215 - ], - [ - -73.63241331153272, - 45.48636708707572 - ], - [ - -73.63252695226872, - 45.486239933942805 - ], - [ - -73.6324527896437, - 45.48620533810269 - ], - [ - -73.6323394902597, - 45.4863253387922 - ] - ] - ] - }, - "id": 262062, - "properties": { - "name": "03000747", - "address": "avenue Trans Island (MTL) 5337", - "function": "1000", - "height": 10, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63043928907145, - 45.4827977376258 - ], - [ - -73.63044208975435, - 45.48279463715617 - ], - [ - -73.63050758939907, - 45.482720237724266 - ], - [ - -73.63059238937639, - 45.48275713799222 - ], - [ - -73.63059689014109, - 45.48275903782144 - ], - [ - -73.63064428477419, - 45.48270386893068 - ], - [ - -73.63051860325915, - 45.482647106317984 - ], - [ - -73.6304863895149, - 45.48263333767755 - ], - [ - -73.63048687303379, - 45.482632776520866 - ], - [ - -73.63032480825467, - 45.482559579962086 - ], - [ - -73.63020778876532, - 45.482688837779165 - ], - [ - -73.63020448928933, - 45.48269253720951 - ], - [ - -73.63043928907145, - 45.4827977376258 - ] - ] - ] - }, - "id": 262415, - "properties": { - "name": "03034802", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5353", - "function": "6111", - "height": 8, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6274003882551, - 45.48225283788175 - ], - [ - -73.6273985878321, - 45.482254837549036 - ], - [ - -73.62756798793049, - 45.48232633835998 - ], - [ - -73.62755138798443, - 45.48234563790835 - ], - [ - -73.62761108862873, - 45.48237043848568 - ], - [ - -73.627611288407, - 45.48237053814547 - ], - [ - -73.62763788811853, - 45.48234743816155 - ], - [ - -73.62756948850004, - 45.48230823807161 - ], - [ - -73.62759708799547, - 45.48228433791665 - ], - [ - -73.6275719885723, - 45.48227163762247 - ], - [ - -73.62759338904382, - 45.482250537514936 - ], - [ - -73.62759548894012, - 45.48224803809525 - ], - [ - -73.62745148846804, - 45.482190137162085 - ], - [ - -73.62744808908128, - 45.48218873809428 - ], - [ - -73.6274003882551, - 45.48225283788175 - ] - ] - ] - }, - "id": 262647, - "properties": { - "name": "03076941", - "address": "rue Snowdon (MTL) 5319", - "function": "1000", - "height": 9, - "year_of_construction": 1921 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.627095388732, - 45.486326237813365 - ], - [ - -73.62697105024527, - 45.486462709936696 - ], - [ - -73.62701143899251, - 45.48648061965877 - ], - [ - -73.6270278659746, - 45.4864622904291 - ], - [ - -73.62702895700875, - 45.48646277423273 - ], - [ - -73.62704668770726, - 45.48644393873693 - ], - [ - -73.62726588787939, - 45.48654593880887 - ], - [ - -73.62735778904266, - 45.48644833808423 - ], - [ - -73.62709808814904, - 45.48632743880356 - ], - [ - -73.627095388732, - 45.486326237813365 - ] - ] - ] - }, - "id": 262682, - "properties": { - "name": "03074964", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4961", - "function": "1000", - "height": 14, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63068778993262, - 45.48711033845915 - ], - [ - -73.63073108974099, - 45.48706643852855 - ], - [ - -73.63074578931584, - 45.487073838232845 - ], - [ - -73.6307769903186, - 45.48703913865764 - ], - [ - -73.63061148924585, - 45.48696543808307 - ], - [ - -73.63060868964536, - 45.48696853855333 - ], - [ - -73.63058718974669, - 45.48699173866208 - ], - [ - -73.63055179012959, - 45.48697553871001 - ], - [ - -73.63054818965144, - 45.48697363875135 - ], - [ - -73.6305026899363, - 45.487019438001546 - ], - [ - -73.63068778993262, - 45.48711033845915 - ] - ] - ] - }, - "id": 262689, - "properties": { - "name": "03074344", - "address": "avenue Isabella (CSL+MTL) 5012", - "function": "1000", - "height": 9, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62898398926576, - 45.48557673851088 - ], - [ - -73.62908970469474, - 45.48562095360061 - ], - [ - -73.62916501183074, - 45.48553736996182 - ], - [ - -73.62914298829955, - 45.48552793838188 - ], - [ - -73.62916278960934, - 45.48550483854288 - ], - [ - -73.62907568852677, - 45.4854683384634 - ], - [ - -73.62898398926576, - 45.48557673851088 - ] - ] - ] - }, - "id": 262794, - "properties": { - "name": "03000230", - "address": "avenue de Westbury (MTL) 5162", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63103748996026, - 45.48848953885799 - ], - [ - -73.63117958997451, - 45.488555738464456 - ], - [ - -73.63125118990648, - 45.48847963906649 - ], - [ - -73.63110909022974, - 45.48841353853085 - ], - [ - -73.63103748996026, - 45.48848953885799 - ] - ] - ] - }, - "id": 262967, - "properties": { - "name": "03073763", - "address": "avenue Lacombe (MTL) 4929", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6323046906942, - 45.48540533792529 - ], - [ - -73.63226290440957, - 45.48545152232163 - ], - [ - -73.63217032400856, - 45.48555467714618 - ], - [ - -73.63227578932816, - 45.48560193825511 - ], - [ - -73.63229628950225, - 45.48561123781809 - ], - [ - -73.63239829007348, - 45.48565873858586 - ], - [ - -73.63254099058754, - 45.48550713801523 - ], - [ - -73.63245028924722, - 45.485464837980025 - ], - [ - -73.63246308984259, - 45.48545133894424 - ], - [ - -73.63243379007956, - 45.48543783833412 - ], - [ - -73.63242899084453, - 45.48543533782709 - ], - [ - -73.63241249013403, - 45.48545353834446 - ], - [ - -73.6323046906942, - 45.48540533792529 - ] - ] - ] - }, - "id": 263025, - "properties": { - "name": "03117410", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5305", - "function": "5010", - "height": 10, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62898108963518, - 45.4884665388278 - ], - [ - -73.6290378896088, - 45.48840903843708 - ], - [ - -73.62905098938099, - 45.488415538519696 - ], - [ - -73.62905098915495, - 45.48841543953696 - ], - [ - -73.62908178926551, - 45.488384238585546 - ], - [ - -73.6289122891141, - 45.48830123838208 - ], - [ - -73.62882458888213, - 45.4883898389322 - ], - [ - -73.62898108963518, - 45.4884665388278 - ] - ] - ] - }, - "id": 263026, - "properties": { - "name": "03074581", - "address": "rue Jean-Brillant (MTL) 4895", - "function": "1000", - "height": 11, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62640438796501, - 45.48782113903486 - ], - [ - -73.62635668872649, - 45.48787543810249 - ], - [ - -73.62635658894037, - 45.487875438212896 - ], - [ - -73.6263736880836, - 45.48788223922665 - ], - [ - -73.6263557823899, - 45.48790435834339 - ], - [ - -73.62645961073497, - 45.48795036053076 - ], - [ - -73.62652658893471, - 45.48787423860813 - ], - [ - -73.62640438796501, - 45.48782113903486 - ] - ] - ] - }, - "id": 263039, - "properties": { - "name": "03074913", - "address": "avenue Dornal (MTL) 4866", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62704498826481, - 45.48410353829299 - ], - [ - -73.6272129882072, - 45.48418383896094 - ], - [ - -73.62725924607317, - 45.4841359714072 - ], - [ - -73.62709011416757, - 45.48405684186615 - ], - [ - -73.62704498826481, - 45.48410353829299 - ] - ] - ] - }, - "id": 263080, - "properties": { - "name": "03035370", - "address": "rue Globert (MTL) 5208", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62820068890818, - 45.48575533809868 - ], - [ - -73.62814433924142, - 45.4858171208615 - ], - [ - -73.62831010578171, - 45.4858895037532 - ], - [ - -73.62836488830003, - 45.48582943777689 - ], - [ - -73.62820068890818, - 45.48575533809868 - ] - ] - ] - }, - "id": 263163, - "properties": { - "name": "03000218", - "address": "avenue Dornal (MTL) 5018", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62939148987448, - 45.48774753898748 - ], - [ - -73.62956088901828, - 45.48782093814951 - ], - [ - -73.62961340799453, - 45.48776100194027 - ], - [ - -73.62944500421492, - 45.487686464322486 - ], - [ - -73.62939148987448, - 45.48774753898748 - ] - ] - ] - }, - "id": 263345, - "properties": { - "name": "03074571", - "address": "rue Jean-Brillant (MTL) 4927", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62725568886238, - 45.48451053814145 - ], - [ - -73.6269798879674, - 45.48478263819091 - ], - [ - -73.62697768855297, - 45.48478473907694 - ], - [ - -73.62710308824535, - 45.48484363851312 - ], - [ - -73.62735254082786, - 45.48457911275799 - ], - [ - -73.62736747847735, - 45.48456264691548 - ], - [ - -73.6272555875781, - 45.48451043837138 - ], - [ - -73.62725568886238, - 45.48451053814145 - ] - ] - ] - }, - "id": 263550, - "properties": { - "name": "03034893", - "address": "chemin Circle (MTL) 5060", - "function": "1000", - "height": 10, - "year_of_construction": 1973 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62996928958125, - 45.489682638726 - ], - [ - -73.63012158979865, - 45.48975303840467 - ], - [ - -73.63019338912632, - 45.48967613949622 - ], - [ - -73.63004109030442, - 45.48960573901088 - ], - [ - -73.62996928958125, - 45.489682638726 - ] - ] - ] - }, - "id": 263570, - "properties": { - "name": "03073784", - "address": "avenue Lacombe (MTL) 4849", - "function": "1000", - "height": 10, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63031738911252, - 45.4885560387872 - ], - [ - -73.63025698895827, - 45.48862573952423 - ], - [ - -73.630262490256, - 45.48862803865496 - ], - [ - -73.6304458888138, - 45.488708539205454 - ], - [ - -73.63051008987364, - 45.48863613898965 - ], - [ - -73.63032018880953, - 45.48855293922471 - ], - [ - -73.63031738911252, - 45.4885560387872 - ] - ] - ] - }, - "id": 263636, - "properties": { - "name": "03074183", - "address": "avenue Lacombe (MTL) 4902", - "function": "1000", - "height": 10, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6303807896732, - 45.485285838729745 - ], - [ - -73.63027408915976, - 45.48539993766601 - ], - [ - -73.63035617823857, - 45.48543786610839 - ], - [ - -73.63045433936558, - 45.48532919302222 - ], - [ - -73.63044929006094, - 45.48532693837551 - ], - [ - -73.63045529011214, - 45.48532043823429 - ], - [ - -73.63045428962968, - 45.485319838279764 - ], - [ - -73.6303807896732, - 45.485285838729745 - ] - ] - ] - }, - "id": 263658, - "properties": { - "name": "03000713", - "address": "avenue Trans Island (MTL) 5193", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62690518809875, - 45.48305013745518 - ], - [ - -73.626852799351, - 45.483105876340666 - ], - [ - -73.62703757627165, - 45.48319054989817 - ], - [ - -73.62708918773876, - 45.48313563785251 - ], - [ - -73.62690518809875, - 45.48305013745518 - ] - ] - ] - }, - "id": 263679, - "properties": { - "name": "03035295", - "address": "rue Byron (MTL) 5274", - "function": "1000", - "height": 10, - "year_of_construction": 1934 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62637778820252, - 45.48336143822169 - ], - [ - -73.62640868813577, - 45.48332853804311 - ], - [ - -73.62641968817331, - 45.483333737779425 - ], - [ - -73.62644150232794, - 45.48331020154977 - ], - [ - -73.62628121965471, - 45.483236751632134 - ], - [ - -73.62622908795532, - 45.48329223798857 - ], - [ - -73.62637778820252, - 45.48336143822169 - ] - ] - ] - }, - "id": 263683, - "properties": { - "name": "03035278", - "address": "rue Snowdon (MTL) 5235", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62945488929749, - 45.489018938999344 - ], - [ - -73.62941218987272, - 45.48906743866053 - ], - [ - -73.62942398997825, - 45.48907223946419 - ], - [ - -73.6293994036951, - 45.489098524808284 - ], - [ - -73.62953776139422, - 45.489159764442554 - ], - [ - -73.62960438980834, - 45.48908403975952 - ], - [ - -73.62945488929749, - 45.489018938999344 - ] - ] - ] - }, - "id": 263851, - "properties": { - "name": "03074229", - "address": "avenue Isabella (CSL+MTL) 4869", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62767458900613, - 45.485693639109215 - ], - [ - -73.62758822139718, - 45.48578737988085 - ], - [ - -73.62782860609715, - 45.48589397322949 - ], - [ - -73.62783638892874, - 45.485876338337555 - ], - [ - -73.62783648765999, - 45.4858764390098 - ], - [ - -73.62788208883204, - 45.485842138030414 - ], - [ - -73.62788598892273, - 45.48583913807689 - ], - [ - -73.6278806896626, - 45.48583663793878 - ], - [ - -73.62791258916866, - 45.48580203823937 - ], - [ - -73.62767458900613, - 45.485693639109215 - ] - ] - ] - }, - "id": 263969, - "properties": { - "name": "03074956", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5071", - "function": "5010", - "height": 9, - "year_of_construction": 1968 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62655148846405, - 45.48524633817482 - ], - [ - -73.62644427653909, - 45.485291941421266 - ], - [ - -73.62649373124208, - 45.48535311578888 - ], - [ - -73.62649578887806, - 45.4853522379601 - ], - [ - -73.62652718780988, - 45.48538863794938 - ], - [ - -73.62652998826108, - 45.48539213794784 - ], - [ - -73.6266374876987, - 45.48534633813657 - ], - [ - -73.62655148846405, - 45.48524633817482 - ] - ] - ] - }, - "id": 264017, - "properties": { - "name": "03074491", - "address": "chemin Circle (MTL) 4382", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62850458913107, - 45.4867183392177 - ], - [ - -73.6284487464285, - 45.48677999557145 - ], - [ - -73.62861585168494, - 45.4868540304185 - ], - [ - -73.62867118919333, - 45.486793038639114 - ], - [ - -73.62850458913107, - 45.4867183392177 - ] - ] - ] - }, - "id": 264021, - "properties": { - "name": "03074792", - "address": "rue Fulton (MTL) 4968", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63078288958002, - 45.483970538287856 - ], - [ - -73.63073068963097, - 45.48403803791727 - ], - [ - -73.63072898963675, - 45.484039738772545 - ], - [ - -73.63102398925164, - 45.484173837798565 - ], - [ - -73.63102748913334, - 45.48416993744991 - ], - [ - -73.63129418956756, - 45.48387663858045 - ], - [ - -73.63062628910365, - 45.48357623837295 - ], - [ - -73.63062308996864, - 45.48357963805126 - ], - [ - -73.6304082888655, - 45.48381563780901 - ], - [ - -73.63072388877734, - 45.48395983826489 - ], - [ - -73.63072968862394, - 45.48396253746492 - ], - [ - -73.63073678982984, - 45.4839532375253 - ], - [ - -73.63078288958002, - 45.483970538287856 - ] - ] - ] - }, - "id": 264039, - "properties": { - "name": "03037538", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5160", - "function": "6000", - "height": 65, - "year_of_construction": 1973 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63074231963652, - 45.485005509490186 - ], - [ - -73.6306336939908, - 45.48512576591849 - ], - [ - -73.63070998993145, - 45.485159038631124 - ], - [ - -73.63079079011611, - 45.485067338215124 - ], - [ - -73.63082488948632, - 45.485082138527396 - ], - [ - -73.63085098927293, - 45.485052537890866 - ], - [ - -73.63074231963652, - 45.485005509490186 - ] - ] - ] - }, - "id": 264083, - "properties": { - "name": "03001199", - "address": "avenue Trans Island (MTL) 5200", - "function": "1000", - "height": 9, - "year_of_construction": 1923 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62993048957745, - 45.48972223916733 - ], - [ - -73.62987638971899, - 45.489781881249996 - ], - [ - -73.63005371379049, - 45.48986039346357 - ], - [ - -73.63010718951608, - 45.48980143949046 - ], - [ - -73.62993048957745, - 45.48972223916733 - ] - ] - ] - }, - "id": 264129, - "properties": { - "name": "03073786", - "address": "avenue Lacombe (MTL) 4841", - "function": "1000", - "height": 9, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62959667238876, - 45.48336269704149 - ], - [ - -73.6295365516039, - 45.48342947264384 - ], - [ - -73.62974328570702, - 45.48352229652064 - ], - [ - -73.62976358988111, - 45.48350133853222 - ], - [ - -73.62977438942426, - 45.48350653817307 - ], - [ - -73.62977718844085, - 45.48350323795617 - ], - [ - -73.629791088236, - 45.48348423810567 - ], - [ - -73.62980738883897, - 45.483462338020004 - ], - [ - -73.62986690355062, - 45.48348432920453 - ], - [ - -73.62959667238876, - 45.48336269704149 - ] - ] - ] - }, - "id": 264130, - "properties": { - "name": "03034815", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5317", - "function": "1000", - "height": 12, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62706108832026, - 45.48523123904157 - ], - [ - -73.62706118851146, - 45.48522743798046 - ], - [ - -73.62706468766159, - 45.485161038948014 - ], - [ - -73.62697059822071, - 45.48515965612775 - ], - [ - -73.6269698252465, - 45.48523013022926 - ], - [ - -73.62706108832026, - 45.48523123904157 - ] - ] - ] - }, - "id": 264202, - "properties": { - "name": "03034990", - "address": "chemin Circle (MTL) 4374", - "function": "1000", - "height": 9, - "year_of_construction": 1953 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6311671386249, - 45.4852045732208 - ], - [ - -73.63106767120703, - 45.48531469447341 - ], - [ - -73.63114958931587, - 45.48535153822791 - ], - [ - -73.63124948954099, - 45.48524163866936 - ], - [ - -73.6311671386249, - 45.4852045732208 - ] - ] - ] - }, - "id": 264337, - "properties": { - "name": "03001190", - "address": "avenue Trans Island (MTL) 5220", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63153258997411, - 45.48718773816048 - ], - [ - -73.63170939076001, - 45.48726763870364 - ], - [ - -73.63176497510952, - 45.48720678102191 - ], - [ - -73.6315878568329, - 45.48712728496041 - ], - [ - -73.63153258997411, - 45.48718773816048 - ] - ] - ] - }, - "id": 264392, - "properties": { - "name": "03000767", - "address": "avenue Lacombe (MTL) 5102", - "function": "1000", - "height": 8, - "year_of_construction": 1937 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62905361334145, - 45.48304285499742 - ], - [ - -73.62890454527651, - 45.483207762691336 - ], - [ - -73.62913458930986, - 45.48331043807922 - ], - [ - -73.62928177060822, - 45.483147410202875 - ], - [ - -73.62905361334145, - 45.48304285499742 - ] - ] - ] - }, - "id": 264445, - "properties": { - "name": "03037532", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5316", - "function": "1000", - "height": 14, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62773758845992, - 45.481817838115525 - ], - [ - -73.62758368845186, - 45.48198223751188 - ], - [ - -73.62765128856489, - 45.48201253720703 - ], - [ - -73.62765548856007, - 45.48200763824801 - ], - [ - -73.62765599893805, - 45.48200706537521 - ], - [ - -73.62765432601812, - 45.48200434250946 - ], - [ - -73.62778669246691, - 45.481859282317046 - ], - [ - -73.6277560890958, - 45.48184553809862 - ], - [ - -73.6277685887068, - 45.4818317375685 - ], - [ - -73.62773758845992, - 45.481817838115525 - ] - ] - ] - }, - "id": 264479, - "properties": { - "name": "03001330", - "address": "avenue Coolbrook (MTL) 4903", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62996248897876, - 45.48769963896346 - ], - [ - -73.63011018927729, - 45.48776423901098 - ], - [ - -73.63018078469176, - 45.48768450334161 - ], - [ - -73.63003350918133, - 45.48761931710135 - ], - [ - -73.62996248897876, - 45.48769963896346 - ] - ] - ] - }, - "id": 264623, - "properties": { - "name": "03074332", - "address": "avenue Isabella (CSL+MTL) 4950", - "function": "1000", - "height": 8, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62644468821001, - 45.484936738434385 - ], - [ - -73.6264733874606, - 45.485021638633505 - ], - [ - -73.62667138768748, - 45.484988338192686 - ], - [ - -73.62667558866983, - 45.484987738735676 - ], - [ - -73.626647288704, - 45.48490303790997 - ], - [ - -73.62644468821001, - 45.484936738434385 - ] - ] - ] - }, - "id": 264695, - "properties": { - "name": "03034982", - "address": "chemin Circle (MTL) 4371", - "function": "1000", - "height": 8, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62624958845946, - 45.48867883875131 - ], - [ - -73.62619504394806, - 45.4887394496262 - ], - [ - -73.62636441960652, - 45.488815458594246 - ], - [ - -73.62641928827038, - 45.48875453953342 - ], - [ - -73.62624958845946, - 45.48867883875131 - ] - ] - ] - }, - "id": 264699, - "properties": { - "name": "03074859", - "address": "avenue Dornal (MTL) 4819", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63100698936505, - 45.48190813768933 - ], - [ - -73.63095288928356, - 45.481967837954485 - ], - [ - -73.63095008889887, - 45.481971037419854 - ], - [ - -73.63119358910315, - 45.482076137239595 - ], - [ - -73.6313927781092, - 45.48186154774421 - ], - [ - -73.63116689145258, - 45.48175922574386 - ], - [ - -73.63111099028681, - 45.48181823797132 - ], - [ - -73.63109528915793, - 45.48181083765703 - ], - [ - -73.63100698936505, - 45.48190813768933 - ] - ] - ] - }, - "id": 264771, - "properties": { - "name": "03034792", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5469", - "function": "1000", - "height": 82, - "year_of_construction": 1966 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.628266193015, - 45.48396591790609 - ], - [ - -73.62821379283504, - 45.484023729765525 - ], - [ - -73.62848370664007, - 45.48414466906191 - ], - [ - -73.62853243273973, - 45.48408517940158 - ], - [ - -73.628266193015, - 45.48396591790609 - ] - ] - ] - }, - "id": 264774, - "properties": { - "name": "03034852", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5250", - "function": "1000", - "height": 12, - "year_of_construction": 1933 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62658268845976, - 45.482903437898536 - ], - [ - -73.62653196944451, - 45.482958854442664 - ], - [ - -73.62669226189966, - 45.48303230940024 - ], - [ - -73.6267436884822, - 45.482976438478005 - ], - [ - -73.62658268845976, - 45.482903437898536 - ] - ] - ] - }, - "id": 264816, - "properties": { - "name": "03035289", - "address": "rue Snowdon (MTL) 5263", - "function": "1000", - "height": 9, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62723258920843, - 45.48814543903739 - ], - [ - -73.62716216420304, - 45.48822511959752 - ], - [ - -73.62731460038572, - 45.48829216106216 - ], - [ - -73.62738528825493, - 45.488212238957225 - ], - [ - -73.62723258920843, - 45.48814543903739 - ] - ] - ] - }, - "id": 264993, - "properties": { - "name": "03074765", - "address": "rue Fulton (MTL) 4856", - "function": "1000", - "height": 9, - "year_of_construction": 1949 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62875028828293, - 45.48546583879048 - ], - [ - -73.62884021038202, - 45.485505910124516 - ], - [ - -73.62896580843174, - 45.485366509121945 - ], - [ - -73.62887588902436, - 45.48532643788276 - ], - [ - -73.62875028828293, - 45.48546583879048 - ] - ] - ] - }, - "id": 265042, - "properties": { - "name": "03000226", - "address": "avenue de Westbury (MTL) 5150", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6306466892969, - 45.48555993845784 - ], - [ - -73.63074169034145, - 45.48546233864683 - ], - [ - -73.63066368130877, - 45.48542475225529 - ], - [ - -73.6305649066624, - 45.48553410380486 - ], - [ - -73.6305933891239, - 45.48554783888862 - ], - [ - -73.63059408957145, - 45.485548138636375 - ], - [ - -73.63060308964911, - 45.48553893821927 - ], - [ - -73.6306466892969, - 45.48555993845784 - ] - ] - ] - }, - "id": 265057, - "properties": { - "name": "05230738", - "address": "avenue Trans Island (MTL) 5209", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63114628873291, - 45.48238263788474 - ], - [ - -73.6310473897259, - 45.48249193786186 - ], - [ - -73.63107998944382, - 45.48250663814246 - ], - [ - -73.63105528900756, - 45.482533437816734 - ], - [ - -73.6311015329321, - 45.482554343974336 - ], - [ - -73.63122503559785, - 45.48241792761065 - ], - [ - -73.63114628873291, - 45.48238263788474 - ] - ] - ] - }, - "id": 265124, - "properties": { - "name": "03107814", - "address": "avenue Earnscliffe (MTL) 5125", - "function": "1000", - "height": 10, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6275305878151, - 45.482081737950786 - ], - [ - -73.62746168853991, - 45.48215433798476 - ], - [ - -73.6276214880605, - 45.48222863715466 - ], - [ - -73.62762478790424, - 45.482225037681175 - ], - [ - -73.62767518814509, - 45.4821725374035 - ], - [ - -73.62765548819006, - 45.48216323791104 - ], - [ - -73.6276726875328, - 45.48214543772114 - ], - [ - -73.62753378810353, - 45.48207823757409 - ], - [ - -73.6275305878151, - 45.482081737950786 - ] - ] - ] - }, - "id": 265185, - "properties": { - "name": "03076939", - "address": "rue Snowdon (MTL) 5327", - "function": "6541", - "height": 9, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6270278659746, - 45.4864622904291 - ], - [ - -73.62701143899251, - 45.48648061965877 - ], - [ - -73.62697105024527, - 45.486462709936696 - ], - [ - -73.6268801881088, - 45.486562439130864 - ], - [ - -73.62688018833302, - 45.4865625390135 - ], - [ - -73.62691468858289, - 45.48657873930409 - ], - [ - -73.62687998832804, - 45.48661533858895 - ], - [ - -73.6268492890206, - 45.48660093915781 - ], - [ - -73.62675470013804, - 45.486705913090155 - ], - [ - -73.62681534745462, - 45.486732806055336 - ], - [ - -73.62679733669327, - 45.48675290160923 - ], - [ - -73.6268039021298, - 45.486755813420835 - ], - [ - -73.62682108914335, - 45.48673633877427 - ], - [ - -73.62702008789498, - 45.48682313904846 - ], - [ - -73.62711298933841, - 45.48671883896115 - ], - [ - -73.62695088925271, - 45.4866474382986 - ], - [ - -73.62698298876546, - 45.48661143848137 - ], - [ - -73.62714838910556, - 45.4866844389505 - ], - [ - -73.62724078890379, - 45.48658083939514 - ], - [ - -73.6272364887919, - 45.48657893831161 - ], - [ - -73.62701618829443, - 45.48647633831038 - ], - [ - -73.62702895700875, - 45.48646277423273 - ], - [ - -73.6270278659746, - 45.4864622904291 - ] - ] - ] - }, - "id": 265189, - "properties": { - "name": "03074967", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4959", + "name": "03038300", + "address": "avenue Laurier Ouest (MTL+OUT) 1134", "function": "1000", "height": 18, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62801528847555, - 45.488024939070094 - ], - [ - -73.62822208932423, - 45.48811943926347 - ], - [ - -73.62829928929635, - 45.48803583881015 - ], - [ - -73.62809248862513, - 45.48794133875495 - ], - [ - -73.62801528847555, - 45.488024939070094 - ] - ] - ] - }, - "id": 265326, - "properties": { - "name": "03074715", - "address": "rue Fulton (MTL) 4895", - "function": "1000", - "height": 10, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6298198895537, - 45.48366183773508 - ], - [ - -73.62982468888227, - 45.48366393792081 - ], - [ - -73.62988668933754, - 45.48359463776302 - ], - [ - -73.6298232895682, - 45.483566538348924 - ], - [ - -73.62982288871414, - 45.48356633813878 - ], - [ - -73.62981128949194, - 45.483578338173665 - ], - [ - -73.62977069000087, - 45.48355893862657 - ], - [ - -73.6297816893747, - 45.48354753857497 - ], - [ - -73.62973878841112, - 45.48352693763692 - ], - [ - -73.62974328570702, - 45.48352229652064 - ], - [ - -73.6295365516039, - 45.48342947264384 - ], - [ - -73.6294705893058, - 45.48350273822764 - ], - [ - -73.62946798913966, - 45.483505737662966 - ], - [ - -73.6298198895537, - 45.48366183773508 - ] - ] - ] - }, - "id": 265388, - "properties": { - "name": "03034818", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5305", - "function": "1000", - "height": 12, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62720648903132, - 45.487122038549586 - ], - [ - -73.62726518896613, - 45.48705533868768 - ], - [ - -73.62710208799261, - 45.486984239007654 - ], - [ - -73.62706188792343, - 45.48702993920575 - ], - [ - -73.62707118797209, - 45.48703373880725 - ], - [ - -73.62703168792639, - 45.48707843848694 - ], - [ - -73.62712758912231, - 45.48712003874536 - ], - [ - -73.62714818813737, - 45.48709663872566 - ], - [ - -73.62720648903132, - 45.487122038549586 - ] - ] - ] - }, - "id": 265418, - "properties": { - "name": "03074929", - "address": "avenue Dornal (MTL) 4912", - "function": "6999", - "height": 14, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62768788932061, - 45.48838253970948 - ], - [ - -73.62785878933593, - 45.488456738772584 - ], - [ - -73.62791305907423, - 45.48839490001855 - ], - [ - -73.62774307281609, - 45.48831965979256 - ], - [ - -73.62768788932061, - 45.48838253970948 - ] - ] - ] - }, - "id": 265460, - "properties": { - "name": "03074721", - "address": "rue Fulton (MTL) 4865", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63001038999873, - 45.48893633937328 - ], - [ - -73.63018108987089, - 45.4890132392182 - ], - [ - -73.63023965683308, - 45.48894891179374 - ], - [ - -73.63006829222395, - 45.48887274256705 - ], - [ - -73.63001038999873, - 45.48893633937328 - ] - ] - ] - }, - "id": 265493, - "properties": { - "name": "05255151", - "address": "avenue Lacombe (MTL) 4890", - "function": "1000", - "height": 9, - "year_of_construction": 1943 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62972093535072, - 45.48424580008849 - ], - [ - -73.62959114232252, - 45.484395975167345 - ], - [ - -73.62960568871496, - 45.4844005379806 - ], - [ - -73.62959598859877, - 45.484415737489726 - ], - [ - -73.62959378962191, - 45.48441853850609 - ], - [ - -73.62969268933936, - 45.4844579385036 - ], - [ - -73.6296786883799, - 45.48447533852726 - ], - [ - -73.6296821767859, - 45.484476981285376 - ], - [ - -73.62983657796089, - 45.48429601239596 - ], - [ - -73.62972093535072, - 45.48424580008849 - ] - ] - ] - }, - "id": 265504, - "properties": { - "name": "03037095", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5145", - "function": "5010", - "height": 8, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63161408921906, - 45.48223933738814 - ], - [ - -73.63157528942834, - 45.48228403787005 - ], - [ - -73.63165624431234, - 45.48231878394821 - ], - [ - -73.63174988268122, - 45.48221533491127 - ], - [ - -73.6316873897958, - 45.482190238266796 - ], - [ - -73.6316932892444, - 45.482183038092344 - ], - [ - -73.63167108991242, - 45.48217353790879 - ], - [ - -73.63161408921906, - 45.48223933738814 - ] - ] - ] - }, - "id": 265550, - "properties": { - "name": "03034367", - "address": "avenue Earnscliffe (MTL) 5142", - "function": "1000", - "height": 11, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6271896448235, - 45.48687602507965 - ], - [ - -73.62713448831478, - 45.486938039063546 - ], - [ - -73.62731048857621, - 45.48701493912512 - ], - [ - -73.62736470471843, - 45.48695350650611 - ], - [ - -73.6271896448235, - 45.48687602507965 - ] - ] - ] - }, - "id": 265656, - "properties": { - "name": "03074931", - "address": "avenue Dornal (MTL) 4920", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63217108978102, - 45.48723873867325 - ], - [ - -73.63225329065385, - 45.487275738769725 - ], - [ - -73.63235589043713, - 45.48732163804232 - ], - [ - -73.63241249013338, - 45.4872592392335 - ], - [ - -73.63242014393272, - 45.48725040017493 - ], - [ - -73.63223539033356, - 45.487167869791065 - ], - [ - -73.63217108978102, - 45.48723873867325 - ] - ] - ] - }, - "id": 265704, - "properties": { - "name": "03000761", - "address": "avenue Lacombe (MTL) 5119", - "function": "1000", - "height": 10, - "year_of_construction": 1895 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62962098977012, - 45.48749073909148 - ], - [ - -73.6296045386369, - 45.48750834164282 - ], - [ - -73.62980014324769, - 45.48759593277754 - ], - [ - -73.62986278914798, - 45.48752893825182 - ], - [ - -73.62966898899917, - 45.48743933941892 - ], - [ - -73.62962098977012, - 45.48749073909148 - ] - ] - ] - }, - "id": 265767, - "properties": { - "name": "05276132", - "address": "rue Jean-Brillant (MTL) 4945", - "function": "1000", - "height": 10, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6264330891674, - 45.487787338763496 - ], - [ - -73.62656078834806, - 45.48784033863071 - ], - [ - -73.62662470226766, - 45.487764186749864 - ], - [ - -73.62651869330608, - 45.48771721889242 - ], - [ - -73.62650208830115, - 45.487736838620584 - ], - [ - -73.62648238905821, - 45.487728638545434 - ], - [ - -73.6264330891674, - 45.487787338763496 - ] - ] - ] - }, - "id": 265891, - "properties": { - "name": "03074915", - "address": "avenue Dornal (MTL) 4874", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63214648971358, - 45.48727793831895 - ], - [ - -73.63208401835448, - 45.48734717811354 - ], - [ - -73.63226647357169, - 45.487428682877386 - ], - [ - -73.6322709907286, - 45.4874237383938 - ], - [ - -73.63227159050297, - 45.487424738327675 - ], - [ - -73.6322733898721, - 45.48742283846949 - ], - [ - -73.63233008965152, - 45.48735993837272 - ], - [ - -73.63214648971358, - 45.48727793831895 - ] - ] - ] - }, - "id": 266103, - "properties": { - "name": "03000763", - "address": "avenue Lacombe (MTL) 5107", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6304884886461, - 45.48671863848167 - ], - [ - -73.6305929896859, - 45.48660403887245 - ], - [ - -73.63051087658906, - 45.48656703837646 - ], - [ - -73.63039756725983, - 45.4866937005016 - ], - [ - -73.63041188895325, - 45.48669983909688 - ], - [ - -73.63042198993114, - 45.48668863888151 - ], - [ - -73.6304884886461, - 45.48671863848167 - ] - ] - ] - }, - "id": 266176, - "properties": { - "name": "03000371", - "address": "avenue de Westbury (MTL) 5259", - "function": "1000", - "height": 8, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62950798881216, - 45.48415333776605 - ], - [ - -73.62950468920712, - 45.48415703807526 - ], - [ - -73.62942008885695, - 45.48425373874777 - ], - [ - -73.62941895305357, - 45.484253246918925 - ], - [ - -73.62936342457334, - 45.4843159958039 - ], - [ - -73.6294362888302, - 45.484346938157515 - ], - [ - -73.62943598889761, - 45.48434723814615 - ], - [ - -73.62959114232252, - 45.484395975167345 - ], - [ - -73.62972093535072, - 45.48424580008849 - ], - [ - -73.62950798881216, - 45.48415333776605 - ] - ] - ] - }, - "id": 266237, - "properties": { - "name": "03037093", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5139", - "function": "5010", - "height": 17, - "year_of_construction": 1963 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62968198945906, - 45.4866912387995 - ], - [ - -73.62983489002208, - 45.486759338209744 - ], - [ - -73.62989091407123, - 45.486697099671446 - ], - [ - -73.62977083598697, - 45.486643950883185 - ], - [ - -73.62975608869347, - 45.48666023864824 - ], - [ - -73.62972759010992, - 45.486647438316496 - ], - [ - -73.62972328968439, - 45.486645439243794 - ], - [ - -73.62968198945906, - 45.4866912387995 - ] - ] - ] - }, - "id": 266430, - "properties": { - "name": "03074679", - "address": "rue Jean-Brillant (MTL) 5002", - "function": "1000", - "height": 9, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63139188951341, - 45.48810243932489 - ], - [ - -73.6313377561374, - 45.488160642402406 - ], - [ - -73.6314964600897, - 45.48823074135361 - ], - [ - -73.63154868951503, - 45.48817463883417 - ], - [ - -73.63139188951341, - 45.48810243932489 - ] - ] - ] - }, - "id": 266520, - "properties": { - "name": "03073757", - "address": "avenue Lacombe (MTL) 4949", - "function": "1000", - "height": 10, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62987248852282, - 45.482474937261784 - ], - [ - -73.62987408849189, - 45.482473137549405 - ], - [ - -73.62992798902579, - 45.48242163832851 - ], - [ - -73.62994068863256, - 45.48242823775416 - ], - [ - -73.62994388856154, - 45.48242463742764 - ], - [ - -73.6300326890262, - 45.482328637934245 - ], - [ - -73.62956348883851, - 45.48211393770828 - ], - [ - -73.6295601891269, - 45.48211753813752 - ], - [ - -73.62946918852643, - 45.48221823785954 - ], - [ - -73.62948578905132, - 45.48222573816008 - ], - [ - -73.62943748886217, - 45.48227903861976 - ], - [ - -73.62944358908268, - 45.482281737545485 - ], - [ - -73.62987248852282, - 45.482474937261784 - ] - ] - ] - }, - "id": 266599, - "properties": { - "name": "03001988", - "address": "avenue Coolbrook (MTL) 5020", - "function": "6812", - "height": 9, - "year_of_construction": 1915 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62821379283504, - 45.484023729765525 - ], - [ - -73.62810899087657, - 45.48413935431216 - ], - [ - -73.62838625413333, - 45.4842636483187 - ], - [ - -73.62848370664007, - 45.48414466906191 - ], - [ - -73.62821379283504, - 45.484023729765525 - ] - ] - ] - }, - "id": 266620, - "properties": { - "name": "03034849", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5240", - "function": "1000", - "height": 17, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62861188803457, - 45.486048838424345 - ], - [ - -73.62856181530269, - 45.4861064156414 - ], - [ - -73.62874441100338, - 45.4861873139951 - ], - [ - -73.6287958884563, - 45.486128137888485 - ], - [ - -73.62861188803457, - 45.486048838424345 - ] - ] - ] - }, - "id": 266634, - "properties": { - "name": "03074802", - "address": "avenue Dornal (MTL) 5011", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63034179005042, - 45.485731138732866 - ], - [ - -73.63042259631901, - 45.48576619358126 - ], - [ - -73.63051946593092, - 45.48565867102333 - ], - [ - -73.63043688979296, - 45.48562273911432 - ], - [ - -73.63034179005042, - 45.485731138732866 - ] - ] - ] - }, - "id": 266690, - "properties": { - "name": "03000680", - "address": "avenue Mountain Sights (MTL) 5214", - "function": "1000", - "height": 10, - "year_of_construction": 1933 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62891939289999, - 45.48961953633683 - ], - [ - -73.62884958988933, - 45.489689539378176 - ], - [ - -73.62898828974117, - 45.489757939354895 - ], - [ - -73.62906291236696, - 45.48968306082126 - ], - [ - -73.62891939289999, - 45.48961953633683 - ] - ] - ] - }, - "id": 266722, - "properties": { - "name": "03074239", - "address": "avenue Isabella (CSL+MTL) 4829", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62914628925114, - 45.48675753896613 - ], - [ - -73.62908949093361, - 45.48682003177005 - ], - [ - -73.62920978645194, - 45.48687327731044 - ], - [ - -73.62922238957441, - 45.48685853887708 - ], - [ - -73.62925708896431, - 45.48687473823411 - ], - [ - -73.62930048824255, - 45.48682693879987 - ], - [ - -73.62914628925114, - 45.48675753896613 - ] - ] - ] - }, - "id": 266723, - "properties": { - "name": "03074692", - "address": "rue Fulton (MTL) 4983", - "function": "1000", - "height": 9, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63023288929335, - 45.48736403859856 - ], - [ - -73.63039138954535, - 45.48743723929542 - ], - [ - -73.63046309008016, - 45.48736053826484 - ], - [ - -73.63030458995291, - 45.48728733856619 - ], - [ - -73.63023288929335, - 45.48736403859856 - ] - ] - ] - }, - "id": 266865, - "properties": { - "name": "03074338", - "address": "avenue Isabella (CSL+MTL) 4972", - "function": "1000", - "height": 9, - "year_of_construction": 1948 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63260551454155, - 45.48584657681092 - ], - [ - -73.63248621258717, - 45.48597858226739 - ], - [ - -73.632562489818, - 45.48601273920789 - ], - [ - -73.63267298925412, - 45.48589063860275 - ], - [ - -73.63263309039553, - 45.485872738410364 - ], - [ - -73.63264199004617, - 45.48586283786963 - ], - [ - -73.63263629016458, - 45.48586033841733 - ], - [ - -73.63260551454155, - 45.48584657681092 - ] - ] - ] - }, - "id": 266870, - "properties": { - "name": "03001167", - "address": "avenue Trans Island (MTL) 5328", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62800577077907, - 45.48195767010289 - ], - [ - -73.62791166450118, - 45.48206181757949 - ], - [ - -73.6279136885948, - 45.48206313808728 - ], - [ - -73.62790350329917, - 45.48207084947936 - ], - [ - -73.62790046773036, - 45.482074209305935 - ], - [ - -73.62790448857481, - 45.4820766379887 - ], - [ - -73.62793838847887, - 45.48209373850157 - ], - [ - -73.62795198782021, - 45.482080337151956 - ], - [ - -73.6279832586053, - 45.482096123221154 - ], - [ - -73.62807873132289, - 45.48199043721618 - ], - [ - -73.62800577077907, - 45.48195767010289 - ] - ] - ] - }, - "id": 266887, - "properties": { - "name": "03001338", - "address": "avenue Coolbrook (MTL) 4919", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63188019021892, - 45.48521794996736 - ], - [ - -73.63175066187374, - 45.48536492011764 - ], - [ - -73.63194778979823, - 45.4854563382947 - ], - [ - -73.6319511906131, - 45.48545273768179 - ], - [ - -73.63200579016465, - 45.48539613817245 - ], - [ - -73.63200099037475, - 45.48539393819662 - ], - [ - -73.63195998946424, - 45.48537443821509 - ], - [ - -73.63196699041433, - 45.48536713777495 - ], - [ - -73.63198178939082, - 45.48535093874577 - ], - [ - -73.6320220902933, - 45.48536923823421 - ], - [ - -73.63202699009692, - 45.48537153797646 - ], - [ - -73.63208359018607, - 45.48530943805765 - ], - [ - -73.63188019021892, - 45.48521794996736 - ] - ] - ] - }, - "id": 266913, - "properties": { - "name": "03037138", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5289", - "function": "5010", - "height": 25, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62916838907469, - 45.487263038323874 - ], - [ - -73.6291272899437, - 45.48730933866067 - ], - [ - -73.62916068967691, - 45.487323238609434 - ], - [ - -73.62914673600888, - 45.48733988173539 - ], - [ - -73.62926917384837, - 45.48739407502332 - ], - [ - -73.62932458846923, - 45.48733163859355 - ], - [ - -73.62916838907469, - 45.487263038323874 - ] - ] - ] - }, - "id": 266962, - "properties": { - "name": "03074665", - "address": "rue Jean-Brillant (MTL) 4956", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63011308980626, - 45.48223363776954 - ], - [ - -73.6301754888298, - 45.482159938533734 - ], - [ - -73.63018258926826, - 45.482163138394554 - ], - [ - -73.63021348924828, - 45.48212983764782 - ], - [ - -73.63011438814475, - 45.48208413758919 - ], - [ - -73.63015308864203, - 45.48204253768644 - ], - [ - -73.63024548988568, - 45.48208513818133 - ], - [ - -73.63024928913335, - 45.48208683815857 - ], - [ - -73.6303476892565, - 45.48197883791252 - ], - [ - -73.63020408928142, - 45.48191413804943 - ], - [ - -73.63018718918771, - 45.481932638360774 - ], - [ - -73.63015408987367, - 45.48191793749334 - ], - [ - -73.630171150126, - 45.48189899248013 - ], - [ - -73.63003473342026, - 45.481837756724964 - ], - [ - -73.62993088982736, - 45.48194343769255 - ], - [ - -73.62993678838681, - 45.48194633748727 - ], - [ - -73.63002948952985, - 45.48199043786065 - ], - [ - -73.62999588923931, - 45.482025437842275 - ], - [ - -73.62999138884145, - 45.48203033812909 - ], - [ - -73.62989968919845, - 45.4819884376108 - ], - [ - -73.62979888888503, - 45.48209773777683 - ], - [ - -73.62994108989703, - 45.48216263770491 - ], - [ - -73.62996068940332, - 45.482141437519466 - ], - [ - -73.62999348910989, - 45.48215653831519 - ], - [ - -73.62997518872913, - 45.4821758383518 - ], - [ - -73.62997538956034, - 45.48217583812327 - ], - [ - -73.63011308980626, - 45.48223363776954 - ] - ] - ] - }, - "id": 266988, - "properties": { - "name": "03034868", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5420", - "function": "1000", - "height": 17, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62923668954679, - 45.48924563937714 - ], - [ - -73.62919628851186, - 45.48929123885305 - ], - [ - -73.6293696893185, - 45.48936713892228 - ], - [ - -73.62939508921365, - 45.48933853916168 - ], - [ - -73.62937359004299, - 45.48932913853305 - ], - [ - -73.62941988907038, - 45.48927753934209 - ], - [ - -73.62926818938413, - 45.48921033879254 - ], - [ - -73.62923668954679, - 45.48924563937714 - ] - ] - ] - }, - "id": 267110, - "properties": { - "name": "03074233", - "address": "avenue Isabella (CSL+MTL) 4857", - "function": "1000", - "height": 10, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62918268984055, - 45.488020038904494 - ], - [ - -73.62914997546531, - 45.488056548438905 - ], - [ - -73.62928249969855, - 45.48811520523329 - ], - [ - -73.62934708974512, - 45.488043039183204 - ], - [ - -73.62921458982258, - 45.487984339242914 - ], - [ - -73.62918268984055, - 45.488020038904494 - ] - ] - ] - }, - "id": 267113, - "properties": { - "name": "03074577", - "address": "rue Jean-Brillant (MTL) 4909", - "function": "1000", - "height": 10, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63076719020268, - 45.48800083924516 - ], - [ - -73.63079899067628, - 45.48801433831304 - ], - [ - -73.63077628891126, - 45.48804073878043 - ], - [ - -73.6309687890181, - 45.48811753871227 - ], - [ - -73.63096889054896, - 45.488117739261426 - ], - [ - -73.63103469050992, - 45.48805463951365 - ], - [ - -73.63085028994445, - 45.487959639135376 - ], - [ - -73.63082558926317, - 45.48798353853214 - ], - [ - -73.63079928938775, - 45.4879698388064 - ], - [ - -73.63079498963855, - 45.48796763910817 - ], - [ - -73.63076719020268, - 45.48800083924516 - ] - ] - ] - }, - "id": 267139, - "properties": { - "name": "03074193", - "address": "avenue Lacombe (MTL) 4944", - "function": "1000", - "height": 10, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63211019006603, - 45.48281063781977 - ], - [ - -73.63199399019572, - 45.48293383784736 - ], - [ - -73.63207624995911, - 45.48297194754156 - ], - [ - -73.63218899022664, - 45.48284741876225 - ], - [ - -73.63211019006603, - 45.48281063781977 - ] - ] - ] - }, - "id": 267146, - "properties": { - "name": "03034239", - "address": "avenue Earnscliffe (MTL) 5177", - "function": "1000", - "height": 10, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62873438844673, - 45.48721363902225 - ], - [ - -73.6289035889867, - 45.48728853853264 - ], - [ - -73.62894318967479, - 45.48724423852498 - ], - [ - -73.62889748952576, - 45.487224138058735 - ], - [ - -73.62891152722976, - 45.48720842260897 - ], - [ - -73.6287880746286, - 45.48715377925739 - ], - [ - -73.62873438844673, - 45.48721363902225 - ] - ] - ] - }, - "id": 267152, - "properties": { - "name": "03074701", - "address": "rue Fulton (MTL) 4945", - "function": "1000", - "height": 10, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62778880124004, - 45.48401873224156 - ], - [ - -73.62773693992986, - 45.48407352519461 - ], - [ - -73.62788970330281, - 45.4841439588945 - ], - [ - -73.62793724262899, - 45.48408717305497 - ], - [ - -73.62778880124004, - 45.48401873224156 - ] - ] - ] - }, - "id": 267173, - "properties": { - "name": "03035392", - "address": "rue Globert (MTL) 5225", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62887368972008, - 45.488598139176695 - ], - [ - -73.62889078879292, - 45.48857943909118 - ], - [ - -73.62891768936795, - 45.488591839200005 - ], - [ - -73.62894228859405, - 45.48856673903916 - ], - [ - -73.62894658929426, - 45.48856263898746 - ], - [ - -73.6289195891674, - 45.4885503388806 - ], - [ - -73.6289512891669, - 45.48851593889854 - ], - [ - -73.62878038979335, - 45.48843823837133 - ], - [ - -73.6287041888239, - 45.48852113883829 - ], - [ - -73.62887368972008, - 45.488598139176695 - ] - ] - ] - }, - "id": 267276, - "properties": { - "name": "03074583", - "address": "rue Jean-Brillant (MTL) 4885", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62999108992861, - 45.4870731383454 - ], - [ - -73.63016528987295, - 45.48715023852077 - ], - [ - -73.63022029225739, - 45.48708875865953 - ], - [ - -73.63004666790894, - 45.487011015422055 - ], - [ - -73.62999108992861, - 45.4870731383454 - ] - ] - ] - }, - "id": 267285, - "properties": { - "name": "03074557", - "address": "rue Jean-Brillant (MTL) 4989", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62857268908547, - 45.48668953860763 - ], - [ - -73.6287080885471, - 45.48674903870108 - ], - [ - -73.62878034000295, - 45.486667589610434 - ], - [ - -73.62864525072905, - 45.48660773921242 - ], - [ - -73.62857268908547, - 45.48668953860763 - ] - ] - ] - }, - "id": 267312, - "properties": { - "name": "03074796", - "address": "rue Fulton (MTL) 4980", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62873328924319, - 45.48243223782243 - ], - [ - -73.62879281163181, - 45.48245769667029 - ], - [ - -73.6288863966865, - 45.48235315133095 - ], - [ - -73.62881313172888, - 45.48232024830221 - ], - [ - -73.62871853859777, - 45.4824259195262 - ], - [ - -73.62873328924319, - 45.48243223782243 - ] - ] - ] - }, - "id": 267383, - "properties": { - "name": "03001360", - "address": "avenue Coolbrook (MTL) 4963", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6281488879549, - 45.48362163791097 - ], - [ - -73.62812238933171, - 45.483649437792465 - ], - [ - -73.62810218880763, - 45.48367013801631 - ], - [ - -73.62810948873101, - 45.48367383809595 - ], - [ - -73.62810196281379, - 45.4836810507056 - ], - [ - -73.6282661545646, - 45.48375675318732 - ], - [ - -73.62831858893604, - 45.48370173798495 - ], - [ - -73.6281488879549, - 45.48362163791097 - ] - ] - ] - }, - "id": 267384, - "properties": { - "name": "03035407", - "address": "rue Globert (MTL) 5253", - "function": "1000", - "height": 9, - "year_of_construction": 1932 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62667328831319, - 45.483299238371096 - ], - [ - -73.62685488803191, - 45.483383338943085 - ], - [ - -73.6269071156198, - 45.48332749585622 - ], - [ - -73.62672496992002, - 45.48324402766431 - ], - [ - -73.62667328831319, - 45.483299238371096 - ] - ] - ] - }, - "id": 267391, - "properties": { - "name": "03035301", - "address": "rue Byron (MTL) 5256", - "function": "1000", - "height": 11, "year_of_construction": 1934 } }, @@ -50744,3150 +2322,72 @@ "coordinates": [ [ [ - -73.62853748842251, - 45.48743713857422 + -73.59772488035486, + 45.51661464481436 ], [ - -73.62848292055142, - 45.487499937206195 + -73.59773118134159, + 45.51661744512799 ], [ - -73.62867610203935, - 45.48758544354966 + -73.59808958135272, + 45.51677954573898 ], [ - -73.62867888865844, - 45.487581638562574 + -73.59821808111738, + 45.51663904482281 ], [ - -73.62870808908382, - 45.48754243898158 + -73.59805028044306, + 45.5165631452124 ], [ - -73.62869398825903, - 45.487537238463794 + -73.59805018060617, + 45.5165631452981 ], [ - -73.62871258915375, - 45.48751243845531 + -73.59802868079841, + 45.516588044356176 ], [ - -73.62871248914082, - 45.487512338685136 + -73.5979721809319, + 45.516563844811984 ], [ - -73.62853748842251, - 45.48743713857422 + -73.59799278046431, + 45.516540145125084 + ], + [ + -73.59799268062746, + 45.51654014521073 + ], + [ + -73.59792728145693, + 45.51650794469266 + ], + [ + -73.59785468070747, + 45.516472445190175 + ], + [ + -73.59785218033208, + 45.51647504517328 + ], + [ + -73.59772488035486, + 45.51661464481436 ] ] ] }, - "id": 267397, + "id": 181644, "properties": { - "name": "03074707", - "address": "rue Fulton (MTL) 4919", + "name": "03038302", + "address": "avenue Laurier Ouest (MTL+OUT) 1160", "function": "1000", - "height": 10, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62871958836642, - 45.48652393921102 - ], - [ - -73.62864525072905, - 45.48660773921242 - ], - [ - -73.62878034000295, - 45.486667589610434 - ], - [ - -73.62885498886449, - 45.48658343913091 - ], - [ - -73.62871958836642, - 45.48652393921102 - ] - ] - ] - }, - "id": 267404, - "properties": { - "name": "03074795", - "address": "rue Fulton (MTL) 4976", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62708378890838, - 45.48775563859304 - ], - [ - -73.62703193328858, - 45.48781365083123 - ], - [ - -73.62719250440931, - 45.48788570905422 - ], - [ - -73.62724508871096, - 45.487826939161984 - ], - [ - -73.62708378890838, - 45.48775563859304 - ] - ] - ] - }, - "id": 267539, - "properties": { - "name": "03074839", - "address": "avenue Dornal (MTL) 4881", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62739208843342, - 45.48373683780782 - ], - [ - -73.62756678818727, - 45.483810838763326 - ], - [ - -73.62762401782608, - 45.48374393695483 - ], - [ - -73.62753187693902, - 45.48370082924734 - ], - [ - -73.62752078822989, - 45.48371423763862 - ], - [ - -73.62745228858691, - 45.483685838454434 - ], - [ - -73.62745198774432, - 45.4836857380073 - ], - [ - -73.62744148879786, - 45.48369803802212 - ], - [ - -73.62742958847704, - 45.48369303825493 - ], - [ - -73.62739208843342, - 45.48373683780782 - ] - ] - ] - }, - "id": 267579, - "properties": { - "name": "03035357", - "address": "rue Globert (MTL) 5244", - "function": "1000", - "height": 8, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6262380884128, - 45.48800583898356 - ], - [ - -73.62618758829237, - 45.4880629386941 - ], - [ - -73.62620158833782, - 45.48806773920087 - ], - [ - -73.62618598982053, - 45.48808845018241 - ], - [ - -73.62629215287393, - 45.48813548656346 - ], - [ - -73.62635978835898, - 45.48805903917013 - ], - [ - -73.6262380884128, - 45.48800583898356 - ] - ] - ] - }, - "id": 267608, - "properties": { - "name": "03074909", - "address": "avenue Dornal (MTL) 4854", - "function": "1000", - "height": 8, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6288430884702, - 45.48709273827132 - ], - [ - -73.6287880746286, - 45.48715377925739 - ], - [ - -73.62891152722976, - 45.48720842260897 - ], - [ - -73.62892258920463, - 45.48719603814556 - ], - [ - -73.62895448843481, - 45.48721003883146 - ], - [ - -73.62899798883218, - 45.4871620387352 - ], - [ - -73.6288430884702, - 45.48709273827132 - ] - ] - ] - }, - "id": 267611, - "properties": { - "name": "03074699", - "address": "rue Fulton (MTL) 4949", - "function": "1000", - "height": 10, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62640828856375, - 45.48600803818066 - ], - [ - -73.62622302512165, - 45.4862155837419 - ], - [ - -73.62621904548436, - 45.48622196804667 - ], - [ - -73.6260523677919, - 45.48640793877724 - ], - [ - -73.62640448787837, - 45.486563438953766 - ], - [ - -73.62676118839026, - 45.48616393863678 - ], - [ - -73.62640828856375, - 45.48600803818066 - ] - ] - ] - }, - "id": 267678, - "properties": { - "name": "03075063", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 4966", - "function": "6000", - "height": 19, - "year_of_construction": 1961 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63206289068121, - 45.48197523814344 - ], - [ - -73.6320609893752, - 45.48197723710111 - ], - [ - -73.63215748997463, - 45.48201963784345 - ], - [ - -73.63216518986455, - 45.48202313743629 - ], - [ - -73.63230278974224, - 45.4818678373994 - ], - [ - -73.63220978949205, - 45.481827237819566 - ], - [ - -73.6321912899595, - 45.48181953764658 - ], - [ - -73.63206289068121, - 45.48197523814344 - ] - ] - ] - }, - "id": 267784, - "properties": { - "name": "03033613", - "address": "avenue Clanranald (CSL+MTL) 5155", - "function": "1000", - "height": 8, - "year_of_construction": 9999 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62753388840086, - 45.4885504393603 - ], - [ - -73.62770668830535, - 45.48862623915236 - ], - [ - -73.62776154686392, - 45.48856440071374 - ], - [ - -73.62758918349243, - 45.48848810830074 - ], - [ - -73.62753388840086, - 45.4885504393603 - ] - ] - ] - }, - "id": 267795, - "properties": { - "name": "03074725", - "address": "rue Fulton (MTL) 4853", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62833418819925, - 45.48891993922432 - ], - [ - -73.62852958852679, - 45.48900923884953 - ], - [ - -73.62861898838763, - 45.48891243902979 - ], - [ - -73.62842338867662, - 45.488823138880285 - ], - [ - -73.62833418819925, - 45.48891993922432 - ] - ] - ] - }, - "id": 267813, - "properties": { - "name": "05142013", - "address": "rue Jean-Brillant (MTL) 4855", - "function": "1000", - "height": 11, - "year_of_construction": 1951 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63127618945242, - 45.48595293803319 - ], - [ - -73.63122678922291, - 45.48600803837085 - ], - [ - -73.63126109035196, - 45.486022938201565 - ], - [ - -73.63124717594218, - 45.48603735262453 - ], - [ - -73.63135241085739, - 45.48608449966646 - ], - [ - -73.63141509007544, - 45.48601463822392 - ], - [ - -73.63127618945242, - 45.48595293803319 - ] - ] - ] - }, - "id": 267823, - "properties": { - "name": "03034740", - "address": "avenue Isabella (CSL+MTL) 5206", - "function": "1000", - "height": 9, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62924560293943, - 45.48298654600149 - ], - [ - -73.62937407682425, - 45.483045156932945 - ], - [ - -73.62970338914712, - 45.48268033848191 - ], - [ - -73.62940788975764, - 45.48254833771827 - ], - [ - -73.6293521891129, - 45.482607238168455 - ], - [ - -73.6294205889644, - 45.48263913763428 - ], - [ - -73.6294051892012, - 45.48265553768576 - ], - [ - -73.62942028925607, - 45.48266243769783 - ], - [ - -73.62926738958107, - 45.482827937817255 - ], - [ - -73.62922298853054, - 45.482877137667096 - ], - [ - -73.62906388802833, - 45.482805937227475 - ], - [ - -73.62907548903401, - 45.48279303741841 - ], - [ - -73.62907279225718, - 45.482791816674585 - ], - [ - -73.62899910639067, - 45.48287409098527 - ], - [ - -73.62924560293943, - 45.48298654600149 - ] - ] - ] - }, - "id": 267852, - "properties": { - "name": "03034866", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5348", - "function": "5010", "height": 14, - "year_of_construction": 1927 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6267772882264, - 45.483188137742765 - ], - [ - -73.62672496992002, - 45.48324402766431 - ], - [ - -73.6269071156198, - 45.48332749585622 - ], - [ - -73.62695888751784, - 45.483272138268596 - ], - [ - -73.6267772882264, - 45.483188137742765 - ] - ] - ] - }, - "id": 268028, - "properties": { - "name": "03035299", - "address": "rue Byron (MTL) 5260", - "function": "1000", - "height": 11, - "year_of_construction": 1934 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63045278937574, - 45.489132438619336 - ], - [ - -73.63065329068901, - 45.48922173868123 - ], - [ - -73.63067888990957, - 45.489193339071946 - ], - [ - -73.6306629894144, - 45.48918633936706 - ], - [ - -73.63068796086385, - 45.489159221853534 - ], - [ - -73.63050306179149, - 45.48907735384756 - ], - [ - -73.63049018974405, - 45.489090939121844 - ], - [ - -73.63045278937574, - 45.489132438619336 - ] - ] - ] - }, - "id": 268170, - "properties": { - "name": "03073774", - "address": "avenue Lacombe (MTL) 4887", - "function": "1000", - "height": 10, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62822638859362, - 45.489060239108724 - ], - [ - -73.62822348979448, - 45.489063138965165 - ], - [ - -73.62824208878068, - 45.48907213903616 - ], - [ - -73.62819648844572, - 45.48911913875735 - ], - [ - -73.62837138876588, - 45.48920323895251 - ], - [ - -73.6284489890603, - 45.48912353969384 - ], - [ - -73.628372588967, - 45.489086739116914 - ], - [ - -73.62841468831255, - 45.48904343982606 - ], - [ - -73.62830058924611, - 45.488986539435274 - ], - [ - -73.62822638859362, - 45.489060239108724 - ] - ] - ] - }, - "id": 268171, - "properties": { - "name": "03074591", - "address": "rue Jean-Brillant (MTL) 4847", - "function": "1000", - "height": 10, - "year_of_construction": 1952 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6315364900423, - 45.483229337933885 - ], - [ - -73.6315352893334, - 45.48323063779483 - ], - [ - -73.63160760756683, - 45.48326340428641 - ], - [ - -73.6317105063981, - 45.48314949201372 - ], - [ - -73.6317075894451, - 45.483148237391894 - ], - [ - -73.63170278965782, - 45.48315363750505 - ], - [ - -73.63164588946323, - 45.483124037861245 - ], - [ - -73.6315364900423, - 45.483229337933885 - ] - ] - ] - }, - "id": 268189, - "properties": { - "name": "03001966", - "address": "avenue Coolbrook (MTL) 5200", - "function": "1000", - "height": 9, - "year_of_construction": 1915 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.631959301327, - 45.48225953839337 - ], - [ - -73.63183495121066, - 45.48239697155973 - ], - [ - -73.63190498983037, - 45.48242733790871 - ], - [ - -73.63202659047072, - 45.48228863726153 - ], - [ - -73.631959301327, - 45.48225953839337 - ] - ] - ] - }, - "id": 268194, - "properties": { - "name": "03034361", - "address": "avenue Earnscliffe (MTL) 5156", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62993218872455, - 45.48554793872359 - ], - [ - -73.63001193388659, - 45.48558406948671 - ], - [ - -73.63010708268982, - 45.48547847580393 - ], - [ - -73.63002838902221, - 45.48544283882493 - ], - [ - -73.62993218872455, - 45.48554793872359 - ] - ] - ] - }, - "id": 268198, - "properties": { - "name": "03000689", - "address": "avenue Mountain Sights (MTL) 5192", - "function": "1000", - "height": 9, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62713408881784, - 45.484011338098846 - ], - [ - -73.62709011416757, - 45.48405684186615 - ], - [ - -73.62725924607317, - 45.4841359714072 - ], - [ - -73.62730208861221, - 45.484091638637224 - ], - [ - -73.62713408881784, - 45.484011338098846 - ] - ] - ] - }, - "id": 268284, - "properties": { - "name": "03035367", - "address": "rue Globert (MTL) 5212", - "function": "1000", - "height": 9, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62866628886238, - 45.486233638800115 - ], - [ - -73.6286974892242, - 45.486197738494276 - ], - [ - -73.62870708897648, - 45.486186538094465 - ], - [ - -73.62871518868134, - 45.486176138447284 - ], - [ - -73.62874428847627, - 45.486187438311916 - ], - [ - -73.62874441100338, - 45.4861873139951 - ], - [ - -73.62856181530269, - 45.4861064156414 - ], - [ - -73.6285097890091, - 45.48616623924941 - ], - [ - -73.62866628886238, - 45.486233638800115 - ] - ] - ] - }, - "id": 268385, - "properties": { - "name": "03074805", - "address": "avenue Dornal (MTL) 5005", - "function": "1000", - "height": 10, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62964934143749, - 45.48330419765298 - ], - [ - -73.62959667238876, - 45.48336269704149 - ], - [ - -73.62986690355062, - 45.48348432920453 - ], - [ - -73.62995508942396, - 45.48351693832347 - ], - [ - -73.62999826604184, - 45.483461581039904 - ], - [ - -73.62964934143749, - 45.48330419765298 - ] - ] - ] - }, - "id": 268425, - "properties": { - "name": "03034814", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5323", - "function": "1000", - "height": 13, "year_of_construction": 1933 } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62626128806397, - 45.48349203757276 - ], - [ - -73.62628738768323, - 45.48346333781725 - ], - [ - -73.62630598851602, - 45.48347183789565 - ], - [ - -73.62632547876407, - 45.483450162440995 - ], - [ - -73.62615266083304, - 45.48337096809041 - ], - [ - -73.62610608743833, - 45.48342203810384 - ], - [ - -73.62626128806397, - 45.48349203757276 - ] - ] - ] - }, - "id": 268511, - "properties": { - "name": "03035274", - "address": "rue Snowdon (MTL) 5223", - "function": "1000", - "height": 9, - "year_of_construction": 1929 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63125088937414, - 45.485852138470314 - ], - [ - -73.63125568917388, - 45.485854338477495 - ], - [ - -73.63126468966094, - 45.48584423816235 - ], - [ - -73.63128598976465, - 45.48585373855251 - ], - [ - -73.63139728933105, - 45.48572973868365 - ], - [ - -73.63135828914739, - 45.48571243810883 - ], - [ - -73.6313453892606, - 45.48572683788018 - ], - [ - -73.63130620775961, - 45.485709124466766 - ], - [ - -73.63119812478233, - 45.48582845485169 - ], - [ - -73.63125088937414, - 45.485852138470314 - ] - ] - ] - }, - "id": 268541, - "properties": { - "name": "03000731", - "address": "avenue Trans Island (MTL) 5245", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63111156127835, - 45.48291423504272 - ], - [ - -73.63103008450082, - 45.48300443195344 - ], - [ - -73.63105188867968, - 45.48301333791508 - ], - [ - -73.63104188906641, - 45.48302543792349 - ], - [ - -73.63110489695396, - 45.48305113992295 - ], - [ - -73.63121191381295, - 45.48293267014579 - ], - [ - -73.63121168964642, - 45.482932538125894 - ], - [ - -73.63118399007283, - 45.48295633758377 - ], - [ - -73.63111156127835, - 45.48291423504272 - ] - ] - ] - }, - "id": 268542, - "properties": { - "name": "03001976", - "address": "avenue Coolbrook (MTL) 5154", - "function": "1000", - "height": 7, - "year_of_construction": 1947 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63097388945967, - 45.488554639136744 - ], - [ - -73.63091906354131, - 45.48861855322479 - ], - [ - -73.63109849674731, - 45.488697808286865 - ], - [ - -73.63115528979874, - 45.488631538758966 - ], - [ - -73.63097388945967, - 45.488554639136744 - ] - ] - ] - }, - "id": 268756, - "properties": { - "name": "03073764", - "address": "avenue Lacombe (MTL) 4921", - "function": "1000", - "height": 13, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6317105063981, - 45.48314949201372 - ], - [ - -73.63160760756683, - 45.48326340428641 - ], - [ - -73.63167278932326, - 45.483292937712186 - ], - [ - -73.63174219031221, - 45.48321723820267 - ], - [ - -73.63172888944077, - 45.48321133795235 - ], - [ - -73.63176488982687, - 45.483172237699186 - ], - [ - -73.63175199040921, - 45.48316733851741 - ], - [ - -73.6317105063981, - 45.48314949201372 - ] - ] - ] - }, - "id": 268893, - "properties": { - "name": "03001964", - "address": "avenue Coolbrook (MTL) 5202", - "function": "1000", - "height": 9, - "year_of_construction": 1915 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62973328904238, - 45.484726838413025 - ], - [ - -73.6297373895318, - 45.48472873783021 - ], - [ - -73.62983898924684, - 45.48461673822194 - ], - [ - -73.62980918954302, - 45.48460343817063 - ], - [ - -73.62983228885236, - 45.48457953810005 - ], - [ - -73.62979269011268, - 45.48456173825297 - ], - [ - -73.62965918875193, - 45.48470943853836 - ], - [ - -73.62969598903703, - 45.48472353784209 - ], - [ - -73.62969608904676, - 45.48472363761145 - ], - [ - -73.62970458954953, - 45.4847141381823 - ], - [ - -73.62973328904238, - 45.484726838413025 - ] - ] - ] - }, - "id": 268932, - "properties": { - "name": "03001219", - "address": "avenue Trans Island (MTL) 5146", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6271293875553, - 45.48485983887036 - ], - [ - -73.62712658892022, - 45.484862838472566 - ], - [ - -73.62723948783173, - 45.4849136386577 - ], - [ - -73.62724398805128, - 45.48491583826764 - ], - [ - -73.62749548848804, - 45.4846519389149 - ], - [ - -73.62737688832495, - 45.48459603871138 - ], - [ - -73.6271293875553, - 45.48485983887036 - ] - ] - ] - }, - "id": 268951, - "properties": { - "name": "03034891", - "address": "chemin Circle (MTL) 5080", - "function": "1000", - "height": 10, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62988758932099, - 45.48746863929064 - ], - [ - -73.62992938899967, - 45.4874223378847 - ], - [ - -73.62996188880159, - 45.48743753889961 - ], - [ - -73.62998968870687, - 45.48740723825759 - ], - [ - -73.62979788963153, - 45.48732043858393 - ], - [ - -73.6297964899139, - 45.4873220383004 - ], - [ - -73.62978318887771, - 45.48734313859813 - ], - [ - -73.62976428902364, - 45.4873372390856 - ], - [ - -73.62972898945411, - 45.48739693895092 - ], - [ - -73.62988758932099, - 45.48746863929064 - ] - ] - ] - }, - "id": 269045, - "properties": { - "name": "05075953", - "address": "rue Jean-Brillant (MTL) 4959", - "function": "1000", - "height": 9, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63026965151238, - 45.48449474166215 - ], - [ - -73.6301367414162, - 45.48464583245331 - ], - [ - -73.63023138845818, - 45.48469023817254 - ], - [ - -73.63023178932166, - 45.48469043838117 - ], - [ - -73.63024438978675, - 45.484676538489005 - ], - [ - -73.63024642842966, - 45.48467744680875 - ], - [ - -73.63036786038856, - 45.484539402362984 - ], - [ - -73.63026965151238, - 45.48449474166215 - ] - ] - ] - }, - "id": 269110, - "properties": { - "name": "03037113", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5175", - "function": "5010", - "height": 5, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62802528870627, - 45.48929263919086 - ], - [ - -73.62822078888196, - 45.48938273918916 - ], - [ - -73.62833228947244, - 45.48926293903733 - ], - [ - -73.62813678976075, - 45.4891729391103 - ], - [ - -73.62802528870627, - 45.48929263919086 - ] - ] - ] - }, - "id": 269145, - "properties": { - "name": "03074594", - "address": "rue Jean-Brillant (MTL) 4839", - "function": "1000", - "height": 8, - "year_of_construction": 2007 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62830578869432, - 45.48294023760432 - ], - [ - -73.62875864653356, - 45.48314257050338 - ], - [ - -73.62907279225718, - 45.482791816674585 - ], - [ - -73.6286215882085, - 45.482590338000506 - ], - [ - -73.62830578869432, - 45.48294023760432 - ] - ] - ] - }, - "id": 269314, - "properties": { - "name": "03037524", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5016", - "function": "5010", - "height": 14, - "year_of_construction": 1961 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62784085812882, - 45.48556333901661 - ], - [ - -73.6277542884704, - 45.48565463885998 - ], - [ - -73.62798328801193, - 45.48576203828257 - ], - [ - -73.6280734792862, - 45.485666888265136 - ], - [ - -73.62784085812882, - 45.48556333901661 - ] - ] - ] - }, - "id": 269379, - "properties": { - "name": "03034829", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5107", - "function": "5010", - "height": 16, - "year_of_construction": 1985 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63073908953669, - 45.483215337533906 - ], - [ - -73.63073678937293, - 45.48321803790592 - ], - [ - -73.63064688976068, - 45.48332173827409 - ], - [ - -73.63064688871235, - 45.48332183815825 - ], - [ - -73.63067528918982, - 45.483334337831614 - ], - [ - -73.63068288978869, - 45.48332583818626 - ], - [ - -73.63072588934585, - 45.48334473794803 - ], - [ - -73.63071758959582, - 45.4833540383597 - ], - [ - -73.63072127362298, - 45.48335565566686 - ], - [ - -73.63081961663825, - 45.483248395677315 - ], - [ - -73.63073908953669, - 45.483215337533906 - ] - ] - ] - }, - "id": 269399, - "properties": { - "name": "03001378", - "address": "avenue Coolbrook (MTL) 5165", - "function": "1000", - "height": 9, - "year_of_construction": 1925 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63174988268122, - 45.48221533491127 - ], - [ - -73.63165624431234, - 45.48231878394821 - ], - [ - -73.63173248980227, - 45.482351537740755 - ], - [ - -73.63181858975929, - 45.48225243820111 - ], - [ - -73.63180448938378, - 45.482246438098436 - ], - [ - -73.63181278913798, - 45.48223673717426 - ], - [ - -73.63181228955858, - 45.48223643810185 - ], - [ - -73.63177068922751, - 45.48222053811937 - ], - [ - -73.6317688898917, - 45.48222293738615 - ], - [ - -73.63174988268122, - 45.48221533491127 - ] - ] - ] - }, - "id": 269524, - "properties": { - "name": "03034365", - "address": "avenue Earnscliffe (MTL) 5146", - "function": "1000", - "height": 11, - "year_of_construction": 1928 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62898808959294, - 45.48876393885974 - ], - [ - -73.62915888889493, - 45.488839839494034 - ], - [ - -73.62921563915528, - 45.48877673843669 - ], - [ - -73.62904460246321, - 45.48870103522075 - ], - [ - -73.62898808959294, - 45.48876393885974 - ] - ] - ] - }, - "id": 269555, - "properties": { - "name": "03074315", - "address": "avenue Isabella (CSL+MTL) 4880", - "function": "1000", - "height": 8, - "year_of_construction": 1946 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6264202882668, - 45.488498139150295 - ], - [ - -73.62636764813824, - 45.48855663426477 - ], - [ - -73.62652273436804, - 45.48862623121138 - ], - [ - -73.62657568844938, - 45.48856743872925 - ], - [ - -73.6264202882668, - 45.488498139150295 - ] - ] - ] - }, - "id": 269556, - "properties": { - "name": "03074855", - "address": "avenue Dornal (MTL) 4833", - "function": "1000", - "height": 10, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63246346462981, - 45.483973217979894 - ], - [ - -73.63233730964532, - 45.48411287816446 - ], - [ - -73.63235878980407, - 45.484123538050596 - ], - [ - -73.63234549011858, - 45.484136837890276 - ], - [ - -73.63238449012691, - 45.48415603770834 - ], - [ - -73.63238458967248, - 45.48415593771002 - ], - [ - -73.63246238976528, - 45.48409043859493 - ], - [ - -73.63246299006376, - 45.48409003836705 - ], - [ - -73.63247204939206, - 45.484093247510856 - ], - [ - -73.63254680137345, - 45.484010492821774 - ], - [ - -73.63246346462981, - 45.483973217979894 - ] - ] - ] - }, - "id": 269582, - "properties": { - "name": "03001419", - "address": "avenue Coolbrook (MTL) 5267", - "function": "1000", - "height": 7, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6305400895578, - 45.485815138766654 - ], - [ - -73.63062138319893, - 45.48585284386309 - ], - [ - -73.63072298650121, - 45.48574006871925 - ], - [ - -73.63069248966708, - 45.485726038124 - ], - [ - -73.6306876894382, - 45.485723638327805 - ], - [ - -73.63067789025315, - 45.48573413904304 - ], - [ - -73.63063489018644, - 45.48571413876002 - ], - [ - -73.6305400895578, - 45.485815138766654 - ] - ] - ] - }, - "id": 269586, - "properties": { - "name": "03000676", - "address": "avenue Mountain Sights (MTL) 5224", - "function": "1000", - "height": 9, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63055429027374, - 45.48509113883905 - ], - [ - -73.6306336939908, - 45.48512576591849 - ], - [ - -73.63074231963652, - 45.485005509490186 - ], - [ - -73.63070448897689, - 45.48498913869204 - ], - [ - -73.63068948991959, - 45.48500633751469 - ], - [ - -73.63064588995944, - 45.484987237765715 - ], - [ - -73.63055429027374, - 45.48509113883905 - ] - ] - ] - }, - "id": 269652, - "properties": { - "name": "03001201", - "address": "avenue Trans Island (MTL) 5194", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6299485909798, - 45.48434873928595 - ], - [ - -73.6298326677548, - 45.48448051949926 - ], - [ - -73.62985908888491, - 45.48445203812962 - ], - [ - -73.63007428909563, - 45.48455083844219 - ], - [ - -73.6300318890289, - 45.48459653861101 - ], - [ - -73.63003188925869, - 45.48459663849366 - ], - [ - -73.63003941418192, - 45.48460016812232 - ], - [ - -73.63017144151203, - 45.484450080877764 - ], - [ - -73.6299485909798, - 45.48434873928595 - ] - ] - ] - }, - "id": 269670, - "properties": { - "name": "03037109", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5159", - "function": "5010", - "height": 8, - "year_of_construction": 1940 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62935868937892, - 45.48655973927918 - ], - [ - -73.62949828960605, - 45.48660543904366 - ], - [ - -73.62952938849809, - 45.486558339146846 - ], - [ - -73.62949848964436, - 45.48654813843459 - ], - [ - -73.62950875847488, - 45.486533079570464 - ], - [ - -73.62940629929551, - 45.486487728280764 - ], - [ - -73.62935868937892, - 45.48655973927918 - ] - ] - ] - }, - "id": 269674, - "properties": { - "name": "03074685", - "address": "rue Fulton (MTL) 5003", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63214048223209, - 45.48636315934348 - ], - [ - -73.63203127429924, - 45.48648535511385 - ], - [ - -73.6321107904554, - 45.486520339166795 - ], - [ - -73.63220689027057, - 45.486412138498466 - ], - [ - -73.63216509029284, - 45.48639373823061 - ], - [ - -73.63217808967222, - 45.486379238370375 - ], - [ - -73.63217269027936, - 45.48637723886176 - ], - [ - -73.63214048223209, - 45.48636315934348 - ] - ] - ] - }, - "id": 269750, - "properties": { - "name": "03000654", - "address": "avenue Mountain Sights (MTL) 5328", - "function": "1000", - "height": 9, - "year_of_construction": 1935 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63195259063048, - 45.48645073808057 - ], - [ - -73.63203127429924, - 45.48648535511385 - ], - [ - -73.63214048223209, - 45.48636315934348 - ], - [ - -73.63210268956303, - 45.48634663779419 - ], - [ - -73.63209069102402, - 45.48636023844241 - ], - [ - -73.63204928944553, - 45.48634203833693 - ], - [ - -73.63195259063048, - 45.48645073808057 - ] - ] - ] - }, - "id": 269751, - "properties": { - "name": "03000656", - "address": "avenue Mountain Sights (MTL) 5324", - "function": "1000", - "height": 9, - "year_of_construction": 1935 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63006679051792, - 45.48957153902262 - ], - [ - -73.63018208886179, - 45.48962293912154 - ], - [ - -73.63025428995549, - 45.48954283896522 - ], - [ - -73.63013909022133, - 45.48949143972596 - ], - [ - -73.63006679051792, - 45.48957153902262 - ] - ] - ] - }, - "id": 269938, - "properties": { - "name": "03073782", - "address": "avenue Lacombe (MTL) 4853", - "function": "1000", - "height": 9, - "year_of_construction": 1953 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62714328833226, - 45.4839820378647 - ], - [ - -73.6273183881717, - 45.484069337578866 - ], - [ - -73.62736775066735, - 45.48402039390302 - ], - [ - -73.6271889660092, - 45.48393674814314 - ], - [ - -73.62714328833226, - 45.4839820378647 - ] - ] - ] - }, - "id": 269943, - "properties": { - "name": "03035366", - "address": "rue Globert (MTL) 5220", - "function": "1000", - "height": 10, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63069008957336, - 45.486753838531435 - ], - [ - -73.630683090259, - 45.48676143853828 - ], - [ - -73.63068378944278, - 45.48676173828687 - ], - [ - -73.63073768979868, - 45.486786138916244 - ], - [ - -73.63081358947406, - 45.48670303854641 - ], - [ - -73.63073203537874, - 45.4866661428518 - ], - [ - -73.63066414138535, - 45.48674203974346 - ], - [ - -73.63069008957336, - 45.486753838531435 - ] - ] - ] - }, - "id": 269946, - "properties": { - "name": "03000367", - "address": "avenue de Westbury (MTL) 5269", - "function": "1000", - "height": 15, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63065179018544, - 45.486629838600045 - ], - [ - -73.63055679006918, - 45.486733739035415 - ], - [ - -73.63061758925392, - 45.48676133798688 - ], - [ - -73.63064368967927, - 45.486732738934116 - ], - [ - -73.63066414138535, - 45.48674203974346 - ], - [ - -73.63073203537874, - 45.4866661428518 - ], - [ - -73.63065179018544, - 45.486629838600045 - ] - ] - ] - }, - "id": 269947, - "properties": { - "name": "03000369", - "address": "avenue de Westbury (MTL) 5265", - "function": "1000", - "height": 15, - "year_of_construction": 1942 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63117888973542, - 45.48537263836642 - ], - [ - -73.63126789045086, - 45.485415199621954 - ], - [ - -73.63137409733339, - 45.485297617921226 - ], - [ - -73.63132278924282, - 45.48527293835285 - ], - [ - -73.63131389038547, - 45.485282138710694 - ], - [ - -73.63128139053138, - 45.485266537643334 - ], - [ - -73.63117888973542, - 45.48537263836642 - ] - ] - ] - }, - "id": 269960, - "properties": { - "name": "03001188", - "address": "avenue Trans Island (MTL) 5228", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63099318971928, - 45.486440338700525 - ], - [ - -73.63099869001981, - 45.48644283846345 - ], - [ - -73.63102069034126, - 45.486417138829076 - ], - [ - -73.631031690246, - 45.48642183870414 - ], - [ - -73.63103468960392, - 45.48641773826535 - ], - [ - -73.63106971048451, - 45.48637056326046 - ], - [ - -73.63096492275335, - 45.48632385367268 - ], - [ - -73.63089808939222, - 45.48640003834241 - ], - [ - -73.63099318971928, - 45.486440338700525 - ] - ] - ] - }, - "id": 269975, - "properties": { - "name": "03034746", - "address": "avenue Isabella (CSL+MTL) 5162", - "function": "1000", - "height": 8, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62994593389563, - 45.48465749302079 - ], - [ - -73.62984161375553, - 45.4847730007163 - ], - [ - -73.62991168899327, - 45.48480623784245 - ], - [ - -73.63002038890136, - 45.48469283793705 - ], - [ - -73.62994593389563, - 45.48465749302079 - ] - ] - ] - }, - "id": 270010, - "properties": { - "name": "05183736", - "address": "avenue Trans Island (MTL) 5154", - "function": "1000", - "height": 9, - "year_of_construction": 1930 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63132328906758, - 45.48518193904802 - ], - [ - -73.63145828914574, - 45.48504363849656 - ], - [ - -73.63138829047536, - 45.48500973814606 - ], - [ - -73.6313967887584, - 45.48500103855716 - ], - [ - -73.63136728957322, - 45.484986837821594 - ], - [ - -73.63135878908204, - 45.48499513877904 - ], - [ - -73.6310738891867, - 45.48485223845148 - ], - [ - -73.63102709939123, - 45.48483229755226 - ], - [ - -73.63089249998188, - 45.48498531232301 - ], - [ - -73.63132328906758, - 45.48518193904802 - ] - ] - ] - }, - "id": 270212, - "properties": { - "name": "05292442", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5227", - "function": "1000", - "height": 20, - "year_of_construction": 2022 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63017144151203, - 45.484450080877764 - ], - [ - -73.63003941418192, - 45.48460016812232 - ], - [ - -73.6301367414162, - 45.48464583245331 - ], - [ - -73.63026965151238, - 45.48449474166215 - ], - [ - -73.63017144151203, - 45.484450080877764 - ] - ] - ] - }, - "id": 270417, - "properties": { - "name": "03037111", - "address": "boulevard D\u00e9carie (CSL+MTL+MTR) 5167", - "function": "5010", - "height": 9, - "year_of_construction": 1954 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62950208884243, - 45.488975239394684 - ], - [ - -73.62964818892024, - 45.48903313889075 - ], - [ - -73.62970814078636, - 45.488958236083356 - ], - [ - -73.62957009587168, - 45.488897134874705 - ], - [ - -73.62955728989252, - 45.488916739035574 - ], - [ - -73.62955059031462, - 45.488914639196025 - ], - [ - -73.62954968985366, - 45.488915838811415 - ], - [ - -73.62950208884243, - 45.488975239394684 - ] - ] - ] - }, - "id": 270442, - "properties": { - "name": "03074227", - "address": "avenue Isabella (CSL+MTL) 4877", - "function": "1000", - "height": 9, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63246136121396, - 45.486924367967546 - ], - [ - -73.63239821660169, - 45.48699367530759 - ], - [ - -73.632519401686, - 45.48704781077671 - ], - [ - -73.63253029005755, - 45.48703593907701 - ], - [ - -73.63259569044794, - 45.48706553829165 - ], - [ - -73.63264841012983, - 45.48700775557654 - ], - [ - -73.63246136121396, - 45.486924367967546 - ] - ] - ] - }, - "id": 270447, - "properties": { - "name": "03000755", - "address": "avenue Lacombe (MTL) 5139", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63233739035475, - 45.48706043876161 - ], - [ - -73.63252459031068, - 45.48714483872284 - ], - [ - -73.63258019019256, - 45.487083938332276 - ], - [ - -73.6325136901719, - 45.48705403893622 - ], - [ - -73.632519401686, - 45.48704781077671 - ], - [ - -73.63239821660169, - 45.48699367530759 - ], - [ - -73.63233739035475, - 45.48706043876161 - ] - ] - ] - }, - "id": 270448, - "properties": { - "name": "03000757", - "address": "avenue Lacombe (MTL) 5135", - "function": "1000", - "height": 9, - "year_of_construction": 1936 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63131718962529, - 45.488679739243516 - ], - [ - -73.63162818981037, - 45.48881653843799 - ], - [ - -73.63169618977506, - 45.48874003888222 - ], - [ - -73.63163979011946, - 45.488715738777046 - ], - [ - -73.63170858986406, - 45.48863663863723 - ], - [ - -73.63176219110366, - 45.488659638960534 - ], - [ - -73.6317654903876, - 45.4886612386794 - ], - [ - -73.6318356907766, - 45.48858543837974 - ], - [ - -73.63152859039057, - 45.488444639040274 - ], - [ - -73.6314540901785, - 45.488524938829805 - ], - [ - -73.63153448964907, - 45.48856183892591 - ], - [ - -73.63151888919823, - 45.4885787388906 - ], - [ - -73.63152419015562, - 45.4885812388568 - ], - [ - -73.63147228992734, - 45.48863933863912 - ], - [ - -73.63138669038177, - 45.4886015383367 - ], - [ - -73.63131718962529, - 45.488679739243516 - ] - ] - ] - }, - "id": 270507, - "properties": { - "name": "03073739", - "address": "boulevard \u00c9douard-Montpetit (MTL) 4940", - "function": "1000", - "height": 15, - "year_of_construction": 1955 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62870138927073, - 45.48725533906444 - ], - [ - -73.62864318961218, - 45.4873197300946 - ], - [ - -73.62884074523737, - 45.48740717400289 - ], - [ - -73.62886868884348, - 45.487376239080255 - ], - [ - -73.6288687886287, - 45.487376238967684 - ], - [ - -73.62884508949111, - 45.487365538641576 - ], - [ - -73.62887468958154, - 45.48733283905106 - ], - [ - -73.62870138927073, - 45.48725533906444 - ] - ] - ] - }, - "id": 270516, - "properties": { - "name": "03074703", - "address": "rue Fulton (MTL) 4931", - "function": "1000", - "height": 9, - "year_of_construction": 1941 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63161758977301, - 45.48275493818268 - ], - [ - -73.63166129032606, - 45.48277443788393 - ], - [ - -73.63166928904045, - 45.48277823771398 - ], - [ - -73.63169856477158, - 45.48279142810718 - ], - [ - -73.63180304017621, - 45.48267602737756 - ], - [ - -73.63172228960175, - 45.48263973793338 - ], - [ - -73.63161758977301, - 45.48275493818268 - ] - ] - ] - }, - "id": 270671, - "properties": { - "name": "03034231", - "address": "avenue Earnscliffe (MTL) 5157", - "function": "1000", - "height": 10, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62846948877285, - 45.486207637899035 - ], - [ - -73.62841569686921, - 45.486268579257725 - ], - [ - -73.62856782560243, - 45.48633597845705 - ], - [ - -73.62862228894352, - 45.4862744387737 - ], - [ - -73.62846948877285, - 45.486207637899035 - ] - ] - ] - }, - "id": 270854, - "properties": { - "name": "03074807", - "address": "avenue Dornal (MTL) 4997", - "function": "1000", - "height": 11, - "year_of_construction": 1938 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6274015889796, - 45.48664523849697 - ], - [ - -73.62734372861854, - 45.48670843259841 - ], - [ - -73.62751585706212, - 45.48678464918081 - ], - [ - -73.62757258803751, - 45.48672273853464 - ], - [ - -73.6274015889796, - 45.48664523849697 - ] - ] - ] - }, - "id": 270855, - "properties": { - "name": "03074936", - "address": "avenue Dornal (MTL) 4946", - "function": "1000", - "height": 10, - "year_of_construction": 1945 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62818728853837, - 45.48449863804063 - ], - [ - -73.62818738831852, - 45.48449863792865 - ], - [ - -73.628208189267, - 45.48446843824282 - ], - [ - -73.62822288856098, - 45.48447333850279 - ], - [ - -73.62823438852693, - 45.48445513790267 - ], - [ - -73.62824758846861, - 45.484432938276065 - ], - [ - -73.62824778885461, - 45.48443273828523 - ], - [ - -73.62828881274201, - 45.48438263287644 - ], - [ - -73.62800419105015, - 45.484254979657734 - ], - [ - -73.62789988841399, - 45.48437003834484 - ], - [ - -73.62789998842196, - 45.48437013901565 - ], - [ - -73.62795665893202, - 45.48439635015584 - ], - [ - -73.62799390333629, - 45.48441308606043 - ], - [ - -73.62800748880552, - 45.4843978382409 - ], - [ - -73.6281102881208, - 45.48444303834631 - ], - [ - -73.62809638900127, - 45.48445873825246 - ], - [ - -73.62818728853837, - 45.48449863804063 - ] - ] - ] - }, - "id": 270915, - "properties": { - "name": "03034845", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5214", - "function": "1000", - "height": 17, - "year_of_construction": 1931 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6272374886493, - 45.4838886378154 - ], - [ - -73.6271889660092, - 45.48393674814314 - ], - [ - -73.62736775066735, - 45.48402039390302 - ], - [ - -73.6274125883463, - 45.48397593828662 - ], - [ - -73.6272374886493, - 45.4838886378154 - ] - ] - ] - }, - "id": 271058, - "properties": { - "name": "03035363", - "address": "rue Globert (MTL) 5224", - "function": "1000", - "height": 10, - "year_of_construction": 1926 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.63014639003639, - 45.48689823845658 - ], - [ - -73.63031988952365, - 45.48697573872811 - ], - [ - -73.63037536128043, - 45.48691435003912 - ], - [ - -73.63020194983665, - 45.48683670217592 - ], - [ - -73.63014639003639, - 45.48689823845658 - ] - ] - ] - }, - "id": 271097, - "properties": { - "name": "03074553", - "address": "rue Jean-Brillant (MTL) 5003", - "function": "1000", - "height": 9, - "year_of_construction": 1944 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62799768892013, - 45.48592933860024 - ], - [ - -73.62796810123905, - 45.485962899110234 - ], - [ - -73.62816386717539, - 45.48604838904997 - ], - [ - -73.62821968921999, - 45.48598513832375 - ], - [ - -73.62802388885616, - 45.48589963861903 - ], - [ - -73.62799768892013, - 45.48592933860024 - ] - ] - ] - }, - "id": 271098, - "properties": { - "name": "03074952", - "address": "avenue Dornal (MTL) 5006", - "function": "1000", - "height": 10, - "year_of_construction": 1939 - } - }, - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.62727828917723, - 45.484975238485426 - ], - [ - -73.6276586880967, - 45.48515233831992 - ], - [ - -73.62784708844228, - 45.484952138622795 - ], - [ - -73.62746668900138, - 45.48477503851019 - ], - [ - -73.62727828917723, - 45.484975238485426 - ] - ] - ] - }, - "id": 271221, - "properties": { - "name": "03117111", - "address": "chemin Queen-Mary (CSL+HMS+MTL) 5164", - "function": "1000", - "height": 13, - "year_of_construction": 1929 - } } ] } \ No newline at end of file diff --git a/input_files/output_roads.geojson b/input_files/output_roads.geojson index e3096e8..2f47d74 100644 --- a/input_files/output_roads.geojson +++ b/input_files/output_roads.geojson @@ -1 +1 @@ -{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63061311093311, 45.493322428890764], [-73.6317829796848, 45.4938455807949]]}, "properties": {"ID_TRC": 1270001, "DEB_GCH": 5500, "FIN_GCH": 5610, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 1, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Beaminster", "DEB_DRT": 5501, "FIN_DRT": 5611, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Beaminster "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61803645745336, 45.49626172154292], [-73.61809534835533, 45.49629130558944], [-73.61889132509617, 45.49664874248602], [-73.61895967677991, 45.49667981132864]]}, "properties": {"ID_TRC": 1270002, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "B\u00c3\u00a9gin", "DEB_DRT": 5135, "FIN_DRT": 5137, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue B\u00c3\u00a9gin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63104352402067, 45.492838852542306], [-73.63222002144953, 45.4933597378496]]}, "properties": {"ID_TRC": 1270010, "DEB_GCH": 5500, "FIN_GCH": 5610, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 1, "LIE_VOIE": "de", "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Bradford", "DEB_DRT": 5501, "FIN_DRT": 5611, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place de Bradford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63147915025986, 45.49234936127461], [-73.6326556469547, 45.49287542997017]]}, "properties": {"ID_TRC": 1270016, "DEB_GCH": 5500, "FIN_GCH": 5610, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 1, "LIE_VOIE": "de", "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Campden", "DEB_DRT": 5501, "FIN_DRT": 5611, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place de Campden "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62007012603473, 45.49019227375056], [-73.6207602680557, 45.4905111392609], [-73.62083897704267, 45.490548201853144]]}, "properties": {"ID_TRC": 1270021, "DEB_GCH": 4900, "FIN_GCH": 4940, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Cedar Crescent", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Cedar Crescent "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62083897704267, 45.490548201853144], [-73.6209177668873, 45.490585127078965], [-73.62163880824973, 45.49092019247466]]}, "properties": {"ID_TRC": 1270022, "DEB_GCH": 4950, "FIN_GCH": 5000, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Cedar Crescent", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Cedar Crescent "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62163880824973, 45.49092019247466], [-73.62229331891275, 45.49122378430647], [-73.62239323599752, 45.49127111396753]]}, "properties": {"ID_TRC": 1270023, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Cedar Crescent", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Cedar Crescent "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6172219772451, 45.493268760059166], [-73.61859219458279, 45.493866556048886], [-73.61866848842354, 45.49390033414057]]}, "properties": {"ID_TRC": 1270029, "DEB_GCH": 4940, "FIN_GCH": 4960, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Coronet", "DEB_DRT": 4921, "FIN_DRT": 4961, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Coronet "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61032898256786, 45.49586608146002], [-73.61046454182615, 45.49584582431002], [-73.61082399109603, 45.495787700748586], [-73.61206529705468, 45.495567626453436], [-73.61224665394032, 45.49553766062105], [-73.6123791689032, 45.49551836184833], [-73.61251126918788, 45.49550293288549], [-73.6127843564721, 45.49548304517708], [-73.61312172869219, 45.49546975247014], [-73.61417462245521, 45.495450976210314], [-73.61499275294916, 45.495458974922165], [-73.615227330249, 45.49546893219888]]}, "properties": {"ID_TRC": 1270041, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61563101351187, 45.49528801281926], [-73.615850989006, 45.49526210275462], [-73.61616215073461, 45.49523163904608], [-73.6164057713768, 45.495202233390835], [-73.61658094742796, 45.49517739271157], [-73.61671128149844, 45.49515357121982], [-73.61716769781212, 45.49506140489408]]}, "properties": {"ID_TRC": 1270047, "DEB_GCH": 4900, "FIN_GCH": 4942, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61716769781212, 45.49506140489408], [-73.61719325626537, 45.495005789442736], [-73.61722738786146, 45.49496066997014], [-73.61739476642661, 45.49483983704941]]}, "properties": {"ID_TRC": 1270050, "DEB_GCH": 4946, "FIN_GCH": 4962, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61739476642661, 45.49483983704941], [-73.61745163169941, 45.49479817361593], [-73.6175572345211, 45.494729400112256], [-73.61765221660727, 45.49467926625286], [-73.61772318065255, 45.49465003525846], [-73.61783802658323, 45.49461130991942], [-73.61788411693233, 45.494597853332884], [-73.61793453690304, 45.494585562280434], [-73.61806583753942, 45.49458978954196]]}, "properties": {"ID_TRC": 1270051, "DEB_GCH": 4970, "FIN_GCH": 4994, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61806583753942, 45.49458978954196], [-73.61817898890365, 45.49460213830446], [-73.61859316142812, 45.49473875671259], [-73.61860572140272, 45.49474778665819], [-73.618612806489, 45.49475749379633], [-73.61861667090128, 45.49476720112895], [-73.61862473095134, 45.49483867437039]]}, "properties": {"ID_TRC": 1270052, "DEB_GCH": 5000, "FIN_GCH": 5062, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61918671539495, 45.49497095792482], [-73.61952171762955, 45.495108572476944], [-73.61979135687476, 45.49520656247533], [-73.62006492887006, 45.4953117041636], [-73.62016862889726, 45.495400196711294]]}, "properties": {"ID_TRC": 1270053, "DEB_GCH": 5122, "FIN_GCH": 5150, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62016862889726, 45.495400196711294], [-73.6216628634023, 45.49606158897221], [-73.62171820972709, 45.496087871824265]]}, "properties": {"ID_TRC": 1270054, "DEB_GCH": 5168, "FIN_GCH": 5252, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 5171, "FIN_DRT": 5245, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62171820972709, 45.496087871824265], [-73.62178899907573, 45.49611923017863], [-73.62332531823354, 45.496803149242915], [-73.62339944531216, 45.496835557384124]]}, "properties": {"ID_TRC": 1270055, "DEB_GCH": 5290, "FIN_GCH": 5366, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 5307, "FIN_DRT": 5355, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62339944531216, 45.496835557384124], [-73.62347036068276, 45.4968663476546], [-73.62424566479864, 45.49721045050863], [-73.62431858639894, 45.497242416189124]]}, "properties": {"ID_TRC": 1270056, "DEB_GCH": 5400, "FIN_GCH": 5484, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 5405, "FIN_DRT": 5431, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62431858639894, 45.497242416189124], [-73.62438574590624, 45.49727239336824], [-73.62521895369868, 45.497642074552246], [-73.62526027817621, 45.497659807911134]]}, "properties": {"ID_TRC": 1270057, "DEB_GCH": 5500, "FIN_GCH": 5542, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 5499, "FIN_DRT": 5557, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62526027817621, 45.497659807911134], [-73.62530653001, 45.497679865545884], [-73.62627318908409, 45.49811265764137], [-73.6263269249393, 45.498136465235824]]}, "properties": {"ID_TRC": 1270058, "DEB_GCH": 5590, "FIN_GCH": 5600, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 5559, "FIN_DRT": 5617, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6263269249393, 45.498136465235824], [-73.62639066704998, 45.49816472383449], [-73.62734710680539, 45.49859850794064], [-73.62740180681497, 45.498630623334826]]}, "properties": {"ID_TRC": 1270059, "DEB_GCH": 5620, "FIN_GCH": 5740, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 5619, "FIN_DRT": 5685, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61620740994755, 45.49596346737155], [-73.61702200936374, 45.49638222319375], [-73.61711396022521, 45.49643124919879]]}, "properties": {"ID_TRC": 1270101, "DEB_GCH": 5000, "FIN_GCH": 5050, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61711396022521, 45.49643124919879], [-73.61719882318107, 45.49647538050101], [-73.6174624331806, 45.496610659549745], [-73.61763480757351, 45.496694260800126]]}, "properties": {"ID_TRC": 1270102, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61763480757351, 45.496694260800126], [-73.61776409082256, 45.496758891616906], [-73.61845450511754, 45.49710294129763], [-73.61851849095338, 45.49713517752742]]}, "properties": {"ID_TRC": 1270104, "DEB_GCH": 5140, "FIN_GCH": 5160, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 5085, "FIN_DRT": 5155, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61851849095338, 45.49713517752742], [-73.61858508949175, 45.497168680913745], [-73.6197907713031, 45.49776758664387], [-73.61986737801314, 45.497807507942746]]}, "properties": {"ID_TRC": 1270105, "DEB_GCH": 5252, "FIN_GCH": 5252, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 5255, "FIN_DRT": 5257, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62012087827156, 45.497942857796936], [-73.62016512935027, 45.49796922797169], [-73.62069790908953, 45.49827077309047], [-73.62074814901666, 45.49829913638768]]}, "properties": {"ID_TRC": 1270106, "DEB_GCH": 5300, "FIN_GCH": 5336, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 5301, "FIN_DRT": 5333, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62074814901666, 45.49829913638768], [-73.62087954293669, 45.49837335646374]]}, "properties": {"ID_TRC": 1270107, "DEB_GCH": 5346, "FIN_GCH": 5348, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62087954293669, 45.49837335646374], [-73.6209246746614, 45.49839886336001], [-73.62154791952801, 45.498753044481695], [-73.62162843108209, 45.49879325963571]]}, "properties": {"ID_TRC": 1270108, "DEB_GCH": 5350, "FIN_GCH": 5390, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 5385, "FIN_DRT": 5387, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62162843108209, 45.49879325963571], [-73.62170344701917, 45.49883171284498], [-73.62239441209337, 45.49921227502942], [-73.62248420821673, 45.49925097149059]]}, "properties": {"ID_TRC": 1270109, "DEB_GCH": 5400, "FIN_GCH": 5402, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 5425, "FIN_DRT": 5435, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62248420821673, 45.49925097149059], [-73.62257590515445, 45.49929091437433], [-73.62553975102928, 45.500614192942706], [-73.62564664082319, 45.500660865254844]]}, "properties": {"ID_TRC": 1270110, "DEB_GCH": 5530, "FIN_GCH": 5674, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 5511, "FIN_DRT": 5685, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62505687598183, 45.489761496661025], [-73.6256470273382, 45.48910125485891], [-73.62570297585901, 45.48903694750179]]}, "properties": {"ID_TRC": 1270117, "DEB_GCH": 4700, "FIN_GCH": 4740, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dornal", "DEB_DRT": 4701, "FIN_DRT": 4751, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dornal "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6263269249393, 45.498136465235824], [-73.62639370234744, 45.49805915844535], [-73.62831243982734, 45.495906179939794], [-73.62835490491882, 45.495857027959055]]}, "properties": {"ID_TRC": 1270119, "DEB_GCH": 3780, "FIN_GCH": 3900, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 3703, "FIN_DRT": 3825, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62835490491882, 45.495857027959055], [-73.6284022950205, 45.49580430141907], [-73.63009842215232, 45.49390064737815], [-73.63015036773064, 45.493842368939625]]}, "properties": {"ID_TRC": 1270120, "DEB_GCH": 4000, "FIN_GCH": 4472, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 3955, "FIN_DRT": 4585, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.618890048852, 45.503234057821835], [-73.61891673160207, 45.503203539316544], [-73.62062766314268, 45.501306582512896], [-73.62067835038155, 45.501249790929066]]}, "properties": {"ID_TRC": 1270131, "DEB_GCH": 2910, "FIN_GCH": 3076, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 2915, "FIN_DRT": 3075, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62067835038155, 45.501249790929066], [-73.62072906169263, 45.50119299434758], [-73.62242419625898, 45.49931951482473], [-73.62248420821673, 45.49925097149059]]}, "properties": {"ID_TRC": 1270132, "DEB_GCH": 3100, "FIN_GCH": 3240, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 3101, "FIN_DRT": 3239, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62248420821673, 45.49925097149059], [-73.62254190510184, 45.499186558865446], [-73.62358984168259, 45.49802946898381], [-73.62363736515593, 45.49797731997182]]}, "properties": {"ID_TRC": 1270133, "DEB_GCH": 3310, "FIN_GCH": 3400, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 3305, "FIN_DRT": 3397, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62363736515593, 45.49797731997182], [-73.62368944407282, 45.49792010955931], [-73.62416375746652, 45.497398535194435], [-73.62431858639894, 45.497242416189124]]}, "properties": {"ID_TRC": 1270134, "DEB_GCH": 3510, "FIN_GCH": 3540, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 3505, "FIN_DRT": 3555, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62431858639894, 45.497242416189124], [-73.62438363637972, 45.497177092964435], [-73.62631492831687, 45.49501981880467], [-73.6263635375005, 45.49496621125706]]}, "properties": {"ID_TRC": 1270135, "DEB_GCH": 3704, "FIN_GCH": 3916, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 3719, "FIN_DRT": 3905, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6263635375005, 45.49496621125706], [-73.62640967460102, 45.494914782022605], [-73.62811670681788, 45.493008985415265], [-73.62816464585607, 45.49295619534262]]}, "properties": {"ID_TRC": 1270136, "DEB_GCH": 3950, "FIN_GCH": 4500, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 3951, "FIN_DRT": 4511, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62816464585607, 45.49295619534262], [-73.62820976288417, 45.49290601886616], [-73.62990160709876, 45.49101047108675], [-73.62996134199422, 45.490945076645666]]}, "properties": {"ID_TRC": 1270137, "DEB_GCH": 4600, "FIN_GCH": 4782, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 4601, "FIN_DRT": 4797, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61763034578583, 45.50161786239591], [-73.61773402109131, 45.50159105431341], [-73.6177659181589, 45.50158134699353], [-73.61779175135807, 45.501566615343904], [-73.61877452633256, 45.500479058649304], [-73.61882782072497, 45.500421813671025]]}, "properties": {"ID_TRC": 1270140, "DEB_GCH": 2900, "FIN_GCH": 2966, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Fendall", "DEB_DRT": 2903, "FIN_DRT": 2965, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Fendall "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61882782072497, 45.500421813671025], [-73.6188796207462, 45.500365108103935], [-73.62068377431761, 45.498373289907256], [-73.62074814901666, 45.49829913638768]]}, "properties": {"ID_TRC": 1270141, "DEB_GCH": 3120, "FIN_GCH": 3280, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Fendall", "DEB_DRT": 3105, "FIN_DRT": 3285, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Fendall "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61806583753942, 45.49458978954196], [-73.6180997001487, 45.49453616542901], [-73.61863045761487, 45.49394535034532], [-73.61866848842354, 45.49390033414057]]}, "properties": {"ID_TRC": 1270144, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "du", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Fr\u00c3\u00a8re-Andr\u00c3\u00a9", "DEB_DRT": 3707, "FIN_DRT": 3743, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue du Fr\u00c3\u00a8re-Andr\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61866848842354, 45.49390033414057], [-73.61870984127702, 45.493855814784034], [-73.61900727044085, 45.49352830090901]]}, "properties": {"ID_TRC": 1270145, "DEB_GCH": 3750, "FIN_GCH": 3752, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "du", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Fr\u00c3\u00a8re-Andr\u00c3\u00a9", "DEB_DRT": 3745, "FIN_DRT": 3747, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue du Fr\u00c3\u00a8re-Andr\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6259022454268, 45.490126721544414], [-73.62648696592429, 45.48947266719164], [-73.62654074965626, 45.48941250516272]]}, "properties": {"ID_TRC": 1270147, "DEB_GCH": 4700, "FIN_GCH": 4750, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Fulton", "DEB_DRT": 4723, "FIN_DRT": 4729, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Fulton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61740943576591, 45.495175508898775], [-73.61761844612016, 45.49527643210433], [-73.6179225452763, 45.49541351130339], [-73.61799625905823, 45.49544691816312]]}, "properties": {"ID_TRC": 1270149, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Gatineau", "DEB_DRT": 5053, "FIN_DRT": 5055, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Gatineau "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61799625905823, 45.49544691816312], [-73.61806673812487, 45.49547869735078], [-73.61832427224078, 45.49559218221245], [-73.6183970201932, 45.495624627654536]]}, "properties": {"ID_TRC": 1270150, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Gatineau", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Gatineau "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61854335956532, 45.49568980884839], [-73.61862976882931, 45.49572838477493], [-73.61943420189043, 45.49609435856087], [-73.61949439324815, 45.49612006692317]]}, "properties": {"ID_TRC": 1270151, "DEB_GCH": 5160, "FIN_GCH": 5162, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Gatineau", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Gatineau "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61949439324815, 45.49612006692317], [-73.61955282847941, 45.496145440549896], [-73.62098845802424, 45.496789629460714], [-73.62107871966158, 45.496829212896394]]}, "properties": {"ID_TRC": 1270152, "DEB_GCH": 5174, "FIN_GCH": 5250, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Gatineau", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Gatineau "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62107871966158, 45.496829212896394], [-73.6211712028008, 45.49687094790565], [-73.62187594733024, 45.49718897532964], [-73.6219284210407, 45.49721273415267]]}, "properties": {"ID_TRC": 1270153, "DEB_GCH": 5354, "FIN_GCH": 5356, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Gatineau", "DEB_DRT": 5301, "FIN_DRT": 5349, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Gatineau "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6219284210407, 45.49721273415267], [-73.6219824352458, 45.497237277995076], [-73.62266213568601, 45.497541716700056], [-73.62273332146704, 45.49757265785779]]}, "properties": {"ID_TRC": 1270154, "DEB_GCH": 5360, "FIN_GCH": 5384, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Gatineau", "DEB_DRT": 5353, "FIN_DRT": 5385, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Gatineau "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62273332146704, 45.49757265785779], [-73.62280495976965, 45.497603658324124], [-73.6235458391267, 45.49793646372972], [-73.62363736515593, 45.49797731997182]]}, "properties": {"ID_TRC": 1270155, "DEB_GCH": 5412, "FIN_GCH": 5414, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Gatineau", "DEB_DRT": 5405, "FIN_DRT": 5423, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Gatineau "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62363736515593, 45.49797731997182], [-73.6237311382125, 45.49801923687188], [-73.62668829004163, 45.49934024335091], [-73.62679353840024, 45.49938793864305]]}, "properties": {"ID_TRC": 1270156, "DEB_GCH": 5530, "FIN_GCH": 5690, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Gatineau", "DEB_DRT": 5507, "FIN_DRT": 5685, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Gatineau "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61632371675942, 45.48574433592969], [-73.61644300383801, 45.48576874891376], [-73.61651394980464, 45.48578712520929], [-73.61656484171269, 45.48580282216419], [-73.61661658310375, 45.48582094803772], [-73.61670022508184, 45.48585586999235], [-73.62411050025153, 45.48920093722513], [-73.6242238667965, 45.489250679370365]]}, "properties": {"ID_TRC": 1270158, "DEB_GCH": 4640, "FIN_GCH": 5062, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Grosvenor", "DEB_DRT": 4641, "FIN_DRT": 5055, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Grosvenor "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62457714028764, 45.494199760309264], [-73.62463286493617, 45.494138113943464], [-73.62580256875854, 45.49283031882387], [-73.62585991162688, 45.49276620403802]]}, "properties": {"ID_TRC": 1270173, "DEB_GCH": 4120, "FIN_GCH": 4392, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 4095, "FIN_DRT": 4405, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62585991162688, 45.49276620403802], [-73.62590801499132, 45.492712754018214], [-73.6263398151754, 45.49222658403886], [-73.62636740447907, 45.49220729009443], [-73.6264002492598, 45.49219548918444]]}, "properties": {"ID_TRC": 1270174, "DEB_GCH": 4550, "FIN_GCH": 4650, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 4407, "FIN_DRT": 4595, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61795153797519, 45.50003021102268], [-73.61799845965298, 45.49997761192537], [-73.61980376471145, 45.49787268490603], [-73.61986737801314, 45.497807507942746]]}, "properties": {"ID_TRC": 1270178, "DEB_GCH": 3000, "FIN_GCH": 3200, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Jean-Brillant", "DEB_DRT": 3101, "FIN_DRT": 3285, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Jean-Brillant "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61986737801314, 45.497807507942746], [-73.61992687397439, 45.49774665541656], [-73.62009208872858, 45.49756901552756], [-73.62014370302407, 45.497521984900864], [-73.62019817644133, 45.49747927094282], [-73.62025751119226, 45.49743979150391], [-73.62032086349362, 45.497403727434175], [-73.62053046486761, 45.49728846501445], [-73.62068544183533, 45.497175912672056], [-73.62079845106072, 45.49719452459823]]}, "properties": {"ID_TRC": 1270179, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 1, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Jean-Brillant", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Jean-Brillant "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62107871966158, 45.496829212896394], [-73.6211243648476, 45.49677724642868], [-73.62166137160918, 45.49615284353184], [-73.62171820972709, 45.496087871824265]]}, "properties": {"ID_TRC": 1270182, "DEB_GCH": 3550, "FIN_GCH": 3550, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Jean-Brillant", "DEB_DRT": 3535, "FIN_DRT": 3555, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Jean-Brillant "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62171820972709, 45.496087871824265], [-73.62187331151858, 45.4959180954971], [-73.62352617493163, 45.49405949197828], [-73.62373335406201, 45.493829950254366]]}, "properties": {"ID_TRC": 1270183, "DEB_GCH": 3744, "FIN_GCH": 3998, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Jean-Brillant", "DEB_DRT": 3745, "FIN_DRT": 3777, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Jean-Brillant "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62373335406201, 45.493829950254366], [-73.62379283764001, 45.49376132620261], [-73.62495841062857, 45.492456596165894], [-73.62498687341373, 45.4924359504833], [-73.62502214633845, 45.49242182256433]]}, "properties": {"ID_TRC": 1270184, "DEB_GCH": 4000, "FIN_GCH": 4550, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Jean-Brillant", "DEB_DRT": 4105, "FIN_DRT": 4397, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Jean-Brillant "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62670436477623, 45.49044396542428], [-73.62724883781588, 45.48983148644619], [-73.62733311970227, 45.48976866454657]]}, "properties": {"ID_TRC": 1270185, "DEB_GCH": 4770, "FIN_GCH": 4780, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Jean-Brillant", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Jean-Brillant "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61977085257193, 45.500843189434235], [-73.61981555057129, 45.50079240713865], [-73.6215698890259, 45.49885876286407], [-73.62162843108209, 45.49879325963571]]}, "properties": {"ID_TRC": 1270194, "DEB_GCH": 3130, "FIN_GCH": 3290, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 3105, "FIN_DRT": 3285, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62162843108209, 45.49879325963571], [-73.6216825460314, 45.49873211273695], [-73.6226834299161, 45.497627547040786], [-73.62273332146704, 45.49757265785779]]}, "properties": {"ID_TRC": 1270195, "DEB_GCH": 3328, "FIN_GCH": 3424, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 3333, "FIN_DRT": 3435, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62273332146704, 45.49757265785779], [-73.62277976988632, 45.497522061684414], [-73.62333810018684, 45.49690509767031], [-73.62339944531216, 45.496835557384124]]}, "properties": {"ID_TRC": 1270196, "DEB_GCH": 3506, "FIN_GCH": 3536, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 3503, "FIN_DRT": 3553, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62339944531216, 45.496835557384124], [-73.62346243346387, 45.49676421402551], [-73.62534553919738, 45.49461690758309], [-73.62540282781497, 45.494553934109135]]}, "properties": {"ID_TRC": 1270198, "DEB_GCH": 3740, "FIN_GCH": 3830, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 3715, "FIN_DRT": 3943, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62540282781497, 45.494553934109135], [-73.62545376264988, 45.49449736772736], [-73.62716502823127, 45.492588160918366], [-73.62721211480311, 45.49253380286139]]}, "properties": {"ID_TRC": 1270199, "DEB_GCH": 3950, "FIN_GCH": 4592, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 3951, "FIN_DRT": 4575, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62721211480311, 45.49253380286139], [-73.62726039337466, 45.49247907294544], [-73.62895501299344, 45.49058911566644], [-73.62901249933543, 45.49052411141343]]}, "properties": {"ID_TRC": 1270200, "DEB_GCH": 4608, "FIN_GCH": 4746, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 4601, "FIN_DRT": 4777, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6264002492598, 45.49219548918444], [-73.62643691333935, 45.49219613316514], [-73.62646650422258, 45.49220304563519], [-73.62713749811276, 45.492500178200316], [-73.62721211480311, 45.49253380286139]]}, "properties": {"ID_TRC": 1270202, "DEB_GCH": 5250, "FIN_GCH": 5360, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62721211480311, 45.49253380286139], [-73.62728750428343, 45.49256813591499], [-73.62809076491364, 45.49292406084892], [-73.62816464585607, 45.49295619534262]]}, "properties": {"ID_TRC": 1270203, "DEB_GCH": 5420, "FIN_GCH": 5440, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 5405, "FIN_DRT": 5449, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62816464585607, 45.49295619534262], [-73.62823601485164, 45.49298779315146], [-73.62901224484514, 45.493332042816874], [-73.6290791865984, 45.49336291307336]]}, "properties": {"ID_TRC": 1270204, "DEB_GCH": 5450, "FIN_GCH": 5464, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6290791865984, 45.49336291307336], [-73.62914620074405, 45.4933940767829], [-73.63008788034445, 45.49381390604908], [-73.63015036773064, 45.493842368939625]]}, "properties": {"ID_TRC": 1270205, "DEB_GCH": 5470, "FIN_GCH": 5490, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 5479, "FIN_DRT": 5487, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63015036773064, 45.493842368939625], [-73.63021370252294, 45.49387153833262], [-73.63121413708998, 45.49431828932112], [-73.63131718245718, 45.49436461817868]]}, "properties": {"ID_TRC": 1270206, "DEB_GCH": 5500, "FIN_GCH": 5610, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62373335406201, 45.493829950254366], [-73.6240078012805, 45.49395079848613], [-73.62449858075813, 45.494165258186264], [-73.62457714028764, 45.494199760309264]]}, "properties": {"ID_TRC": 1270208, "DEB_GCH": 5290, "FIN_GCH": 5292, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62457714028764, 45.494199760309264], [-73.62465513290424, 45.494234022288296], [-73.62529582895236, 45.494520219398275], [-73.62540282781497, 45.494553934109135]]}, "properties": {"ID_TRC": 1270209, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62540282781497, 45.494553934109135], [-73.62548592333789, 45.49458012618609], [-73.62629099305344, 45.494934891640725], [-73.6263635375005, 45.49496621125706]]}, "properties": {"ID_TRC": 1270210, "DEB_GCH": 5440, "FIN_GCH": 5442, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6263635375005, 45.49496621125706], [-73.62644184196188, 45.49499978980962], [-73.62722412552583, 45.4953534942936], [-73.6272874533888, 45.495381152895774]]}, "properties": {"ID_TRC": 1270211, "DEB_GCH": 5500, "FIN_GCH": 5512, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 5505, "FIN_DRT": 5507, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6272874533888, 45.495381152895774], [-73.62735163227694, 45.49540905774614], [-73.62828391009346, 45.495824598364045], [-73.62835490491882, 45.495857027959055]]}, "properties": {"ID_TRC": 1270212, "DEB_GCH": 5580, "FIN_GCH": 5590, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62835490491882, 45.495857027959055], [-73.6284211592739, 45.495885363823966], [-73.62941031685598, 45.496329443373156], [-73.62951488713757, 45.496369374221]]}, "properties": {"ID_TRC": 1270213, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62087954293669, 45.49837335646374], [-73.62093535459289, 45.4983098487285], [-73.62188538810243, 45.49725996969532], [-73.6219284210407, 45.49721273415267]]}, "properties": {"ID_TRC": 1270224, "DEB_GCH": 3312, "FIN_GCH": 3370, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Mar\u00c3\u00a9chal", "DEB_DRT": 3303, "FIN_DRT": 3367, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Mar\u00c3\u00a9chal "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61795153797519, 45.50003021102268], [-73.61803611681596, 45.500067926084164], [-73.61876304879364, 45.50039159747408], [-73.61882782072497, 45.500421813671025]]}, "properties": {"ID_TRC": 1270226, "DEB_GCH": 5274, "FIN_GCH": 5306, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "McKenna", "DEB_DRT": 5275, "FIN_DRT": 5307, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue McKenna "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61882782072497, 45.500421813671025], [-73.61889257511712, 45.50045238798704], [-73.61969188116205, 45.5008067556631], [-73.61977085257193, 45.500843189434235]]}, "properties": {"ID_TRC": 1270227, "DEB_GCH": 5324, "FIN_GCH": 5362, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "McKenna", "DEB_DRT": 5325, "FIN_DRT": 5365, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue McKenna "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61977085257193, 45.500843189434235], [-73.61989557240821, 45.50090031495815], [-73.6205145558773, 45.50117657195306], [-73.62067835038155, 45.501249790929066]]}, "properties": {"ID_TRC": 1270228, "DEB_GCH": 5364, "FIN_GCH": 5368, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "McKenna", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue McKenna "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62067835038155, 45.501249790929066], [-73.62076546516847, 45.501286908510814], [-73.62113256346375, 45.50145293707128]]}, "properties": {"ID_TRC": 1270229, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "McKenna", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue McKenna "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62083897704267, 45.490548201853144], [-73.62087813172784, 45.49050669511711], [-73.62098035148875, 45.490398183019224], [-73.62102468302118, 45.49034698189218], [-73.62110591218332, 45.49023638425399], [-73.62116302317368, 45.49014786037003], [-73.62134758857246, 45.48980407029052], [-73.62177750174166, 45.4890219318653], [-73.62181439650503, 45.488960651981465]]}, "properties": {"ID_TRC": 1270231, "DEB_GCH": 4560, "FIN_GCH": 4614, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Michel-Bibaud", "DEB_DRT": 4551, "FIN_DRT": 4621, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Michel-Bibaud "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62007012603473, 45.49019227375056], [-73.62009340939765, 45.49014665007423], [-73.62073894077423, 45.48872785650047], [-73.62077216288836, 45.48866128411741]]}, "properties": {"ID_TRC": 1270233, "DEB_GCH": 4550, "FIN_GCH": 4640, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Miller", "DEB_DRT": 4565, "FIN_DRT": 4635, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Miller "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61626848176435, 45.494336099342576], [-73.6173424211987, 45.494806655081504], [-73.61739476642661, 45.49483983704941]]}, "properties": {"ID_TRC": 1270240, "DEB_GCH": 4890, "FIN_GCH": 4950, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "du", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Piedmont", "DEB_DRT": 4901, "FIN_DRT": 4939, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue du Piedmont "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61763480757351, 45.496694260800126], [-73.61764179160213, 45.4965411957551], [-73.61772866790413, 45.49642253402], [-73.6177911801944, 45.496307464999404], [-73.61789555563257, 45.4961911123084]]}, "properties": {"ID_TRC": 1270246, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61789555563257, 45.4961911123084], [-73.61793031905243, 45.49615459651776], [-73.61834472574584, 45.49568314404893], [-73.6183970201932, 45.495624627654536]]}, "properties": {"ID_TRC": 1270247, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6183970201932, 45.495624627654536], [-73.61844599715245, 45.495570051494084], [-73.61881652766763, 45.49515718437306], [-73.6188688398521, 45.4951057373656]]}, "properties": {"ID_TRC": 1270248, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61905917082764, 45.49491866982562], [-73.61920964810317, 45.49475747539256], [-73.61941554126936, 45.49459350665838]]}, "properties": {"ID_TRC": 1270249, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62239323599752, 45.49127111396753], [-73.62243157432357, 45.49123029573537], [-73.62365675570567, 45.4898806079489], [-73.62371409936688, 45.48981737020537]]}, "properties": {"ID_TRC": 1270252, "DEB_GCH": 4570, "FIN_GCH": 4610, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 4545, "FIN_DRT": 4565, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62371409936688, 45.48981737020537], [-73.62376107867156, 45.48976503381307], [-73.62417404366703, 45.48930526011375], [-73.6242238667965, 45.489250679370365]]}, "properties": {"ID_TRC": 1270253, "DEB_GCH": 4660, "FIN_GCH": 4662, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 4635, "FIN_DRT": 4699, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6242238667965, 45.489250679370365], [-73.6242660476781, 45.489203107939694], [-73.62472447651777, 45.48869162666656], [-73.62478579274152, 45.48862498036913]]}, "properties": {"ID_TRC": 1270254, "DEB_GCH": 4700, "FIN_GCH": 4730, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 4701, "FIN_DRT": 4745, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6102875097344, 45.495720866858626], [-73.61027052207248, 45.49566143595045], [-73.61025648574028, 45.49560736368739], [-73.61024627700468, 45.49556777657001], [-73.61022031008545, 45.49550392528514], [-73.61020130093875, 45.49545037904673], [-73.61016009779186, 45.495373564665734], [-73.61013416423204, 45.49533408268457], [-73.61010496160569, 45.4952955036926], [-73.61007291156761, 45.495258187443675], [-73.61003822584122, 45.49522231370033], [-73.60997225647101, 45.495163161626174], [-73.60989859151927, 45.49510815687604], [-73.60979556421417, 45.495041121040465], [-73.60974789878514, 45.49500543942657], [-73.60970889205295, 45.49497235947539], [-73.6096806579634, 45.49494340890148], [-73.60965177654653, 45.494907169302834], [-73.60963335760408, 45.4948783892636], [-73.60961460496623, 45.494840790167], [-73.6095990009364, 45.49479418870276], [-73.60959303040016, 45.49476287669792], [-73.60959022363727, 45.49473039185971], [-73.60959339882727, 45.494680622695576], [-73.60960459118014, 45.49462922589383], [-73.60962759127351, 45.49457151817353], [-73.60965767752657, 45.494521903145184], [-73.60968115483625, 45.49449254275322], [-73.60970600970654, 45.49446624095423], [-73.6097501541974, 45.49442804154717], [-73.60978408976749, 45.49440407060144], [-73.6098303653266, 45.49437648840383], [-73.60987707257485, 45.49435376515696], [-73.60992958796926, 45.494332926199824], [-73.60998538255282, 45.49431595384216], [-73.61003886282583, 45.49430312319599], [-73.6100773697829, 45.49429633658729], [-73.6101568206018, 45.494288250706894], [-73.6102637187062, 45.49428436777413], [-73.61193696950049, 45.494238193795326], [-73.61201146512651, 45.49423245130101], [-73.61206991344534, 45.494223754566455], [-73.61211411257443, 45.49421399197474], [-73.61219162755278, 45.49418763771188], [-73.61225836428011, 45.494154364736744], [-73.61230800657917, 45.494122368537695], [-73.61233593066815, 45.494101012516616], [-73.61236437563213, 45.49407632655173], [-73.61241060722887, 45.494027414786714], [-73.61243050178891, 45.494001657180576], [-73.61244249352607, 45.49398202674272], [-73.61246277540867, 45.49393872020718], [-73.61246948659075, 45.49391729527602], [-73.61247670011332, 45.4938830007236], [-73.61247980232424, 45.493850960055155], [-73.6124797575371, 45.493828461736925], [-73.61247791866327, 45.49380587542569], [-73.61247226126525, 45.493773573428555], [-73.61246360313547, 45.49374442496596], [-73.61245315307639, 45.49371716659038], [-73.6124427681375, 45.49369584847329], [-73.61242487469873, 45.49366634826015], [-73.61240148932353, 45.49363478358078], [-73.61236141005011, 45.49359342633802], [-73.61233043822115, 45.49356780875474], [-73.61227432544483, 45.49353006662492], [-73.61223639893184, 45.493509675624594], [-73.61217450356645, 45.493482648402015], [-73.61211737300819, 45.4934638059546], [-73.61204557828455, 45.493447227699626], [-73.61200504164347, 45.49344105785142], [-73.61191870351962, 45.49343457293488], [-73.61187321666497, 45.49343326772541], [-73.61177486197491, 45.493433903915154], [-73.61170256567465, 45.49343037480644], [-73.6116546436449, 45.493425202109606], [-73.61160566162472, 45.49341751063853], [-73.6115611091207, 45.49340837484422], [-73.61151760508086, 45.493395908134104], [-73.61147377852109, 45.493380202281635], [-73.611440507545, 45.49336583565691], [-73.61140184398927, 45.49334616497362], [-73.61136422972048, 45.49332334334824], [-73.61133696472389, 45.49330420143645], [-73.61130641668043, 45.493279033083475], [-73.61127427265744, 45.49324747693032], [-73.61124253677208, 45.49320872071378], [-73.6112243305311, 45.49318075057549], [-73.61120780507558, 45.49314899900056], [-73.61119125378362, 45.49310410859188], [-73.61118401448125, 45.49307216800464], [-73.61118036420491, 45.49304040411751], [-73.61118154044973, 45.492994596381344], [-73.61118685808627, 45.49296183371099], [-73.61119534377613, 45.49293014776992], [-73.6112055284596, 45.49290394990135], [-73.61121961341999, 45.49287522844431], [-73.61124770365294, 45.492831464365985], [-73.61148407101861, 45.4925527952078], [-73.61152073398205, 45.492521531659236], [-73.61155982821788, 45.49249242580159], [-73.61158849624196, 45.492474129152534], [-73.61163424673032, 45.49244879633946], [-73.61166724645526, 45.49243310521184], [-73.61170467976763, 45.49241785988649], [-73.61174180118194, 45.492405224403655], [-73.61177882144302, 45.49239465910054], [-73.61181911576651, 45.49238535036311], [-73.61186004690714, 45.492378110855725], [-73.6119012991744, 45.49237294088695], [-73.61196334169293, 45.49236847040325], [-73.6120010146897, 45.49236780335531], [-73.61203869018432, 45.49236839652506], [-73.6120858683866, 45.49237149992371], [-73.61213621803408, 45.492377390158225], [-73.6121858340128, 45.49238589064083], [-73.6122304936354, 45.49239610612649], [-73.6122973336559, 45.49241610877422], [-73.613003284938, 45.49271140030623]]}, "properties": {"ID_TRC": 1270265, "DEB_GCH": 3220, "FIN_GCH": 3620, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Ridgewood", "DEB_DRT": 3225, "FIN_DRT": 3615, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Ridgewood "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61561668186688, 45.48645792052811], [-73.61762570601148, 45.48736860713545], [-73.6177050153287, 45.48739903312875], [-73.61777766161148, 45.4874219065597], [-73.61787130574741, 45.487444488325366], [-73.61805003087858, 45.487481920904706], [-73.6181157029815, 45.48750021166553], [-73.61817336072036, 45.48752085050316], [-73.61904971036243, 45.48792023049905], [-73.619108394303, 45.487936558658845]]}, "properties": {"ID_TRC": 1270283, "DEB_GCH": 4640, "FIN_GCH": 4798, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Roslyn", "DEB_DRT": 4645, "FIN_DRT": 4775, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Roslyn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.619108394303, 45.487936558658845], [-73.61919499376596, 45.487960665846764], [-73.62067414780702, 45.48862830241591], [-73.62077216288836, 45.48866128411741]]}, "properties": {"ID_TRC": 1270286, "DEB_GCH": 4800, "FIN_GCH": 4898, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Roslyn", "DEB_DRT": 4821, "FIN_DRT": 4855, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Roslyn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62077216288836, 45.48866128411741], [-73.62086971676523, 45.48869379087933], [-73.62114759527245, 45.48875982140929], [-73.62144143091868, 45.48883600367582], [-73.62157437206763, 45.488876629080785], [-73.62176011875412, 45.48893726663093], [-73.62181439650503, 45.488960651981465]]}, "properties": {"ID_TRC": 1270287, "DEB_GCH": 4900, "FIN_GCH": 4994, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Roslyn", "DEB_DRT": 4909, "FIN_DRT": 4965, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Roslyn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62181439650503, 45.488960651981465], [-73.62192108727285, 45.48900683969573], [-73.62256000173767, 45.48929667506484], [-73.62287416935848, 45.48943949573032], [-73.62294216504945, 45.48947068206649]]}, "properties": {"ID_TRC": 1270288, "DEB_GCH": 4996, "FIN_GCH": 5042, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Roslyn", "DEB_DRT": 5001, "FIN_DRT": 5045, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Roslyn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62294216504945, 45.48947068206649], [-73.62301391904288, 45.48950396050415], [-73.62359931169802, 45.489766648715545], [-73.62371409936688, 45.48981737020537]]}, "properties": {"ID_TRC": 1270289, "DEB_GCH": 5044, "FIN_GCH": 5050, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Roslyn", "DEB_DRT": 5055, "FIN_DRT": 5057, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Roslyn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62526027817621, 45.497659807911134], [-73.62531890032166, 45.497594538448766], [-73.62724129779723, 45.495433928893135], [-73.6272874533888, 45.495381152895774]]}, "properties": {"ID_TRC": 1270290, "DEB_GCH": 3710, "FIN_GCH": 3920, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Saint-Kevin", "DEB_DRT": 3765, "FIN_DRT": 3925, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Saint-Kevin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6272874533888, 45.495381152895774], [-73.62733350983322, 45.49532853423758], [-73.62902985652534, 45.493419136204714], [-73.6290791865984, 45.49336291307336]]}, "properties": {"ID_TRC": 1270291, "DEB_GCH": 3950, "FIN_GCH": 4590, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Saint-Kevin", "DEB_DRT": 3955, "FIN_DRT": 4595, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Saint-Kevin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6290791865984, 45.49336291307336], [-73.62912406304582, 45.49331211786804], [-73.63081059947761, 45.49141116324065], [-73.63086851330702, 45.49134748484466]]}, "properties": {"ID_TRC": 1270292, "DEB_GCH": 4620, "FIN_GCH": 4798, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Saint-Kevin", "DEB_DRT": 4605, "FIN_DRT": 4795, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Saint-Kevin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62163880824973, 45.49092019247466], [-73.62289439922905, 45.48952226782509], [-73.62294216504945, 45.48947068206649]]}, "properties": {"ID_TRC": 1270294, "DEB_GCH": 4550, "FIN_GCH": 4640, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Stanley-Weir", "DEB_DRT": 4639, "FIN_DRT": 4641, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Stanley-Weir "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61851849095338, 45.49713517752742], [-73.61857908447793, 45.49707329446086], [-73.6189246097624, 45.496718002355045], [-73.61895967677991, 45.49667981132864]]}, "properties": {"ID_TRC": 1270297, "DEB_GCH": 3320, "FIN_GCH": 3322, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Swail", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Swail "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61895967677991, 45.49667981132864], [-73.61898926185087, 45.496647560473306], [-73.61944976394847, 45.49616687670109], [-73.61949439324815, 45.49612006692317]]}, "properties": {"ID_TRC": 1270298, "DEB_GCH": 3350, "FIN_GCH": 3352, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Swail", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Swail "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61949439324815, 45.49612006692317], [-73.61953684939613, 45.49607526267961], [-73.62007524951888, 45.495505671618616], [-73.62016862889726, 45.495400196711294]]}, "properties": {"ID_TRC": 1270299, "DEB_GCH": 3540, "FIN_GCH": 3550, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Swail", "DEB_DRT": 3503, "FIN_DRT": 3555, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Swail "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61667042910948, 45.49672329686384], [-73.61701483040828, 45.49653386890074], [-73.61703738545933, 45.496519266969685], [-73.61706940749879, 45.4964897165706], [-73.61711396022521, 45.49643124919879]]}, "properties": {"ID_TRC": 1270301, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Troie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Troie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61711396022521, 45.49643124919879], [-73.61716718674369, 45.496361736099544], [-73.61795110885379, 45.495496905474106], [-73.61799625905823, 45.49544691816312]]}, "properties": {"ID_TRC": 1270302, "DEB_GCH": 3300, "FIN_GCH": 3328, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Troie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Troie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63086851330702, 45.49134748484466], [-73.63093155544104, 45.491374307617086], [-73.6319463975192, 45.49182864271046]]}, "properties": {"ID_TRC": 1270314, "DEB_GCH": 5480, "FIN_GCH": 5498, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5483, "FIN_DRT": 5499, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6319463975192, 45.49182864271046], [-73.633015505511, 45.49230638904855], [-73.63312482534776, 45.49235401758448]]}, "properties": {"ID_TRC": 1270315, "DEB_GCH": 5500, "FIN_GCH": 5698, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5501, "FIN_DRT": 5601, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62502214633845, 45.49242182256433], [-73.62506724298301, 45.49242287213355], [-73.6251016642755, 45.492431241240936], [-73.62577898881409, 45.49272963484818], [-73.62585991162688, 45.49276620403802]]}, "properties": {"ID_TRC": 1270350, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62079845106072, 45.49719452459823], [-73.62085618099972, 45.49713245573508], [-73.62104676492983, 45.49692168706503], [-73.62107871966158, 45.496829212896394]]}, "properties": {"ID_TRC": 1270351, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Jean-Brillant", "DEB_DRT": 3373, "FIN_DRT": 3399, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Jean-Brillant "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61763480757351, 45.496694260800126], [-73.61775427238553, 45.496587753872376], [-73.61801147337457, 45.49630444113615], [-73.61803645745336, 45.49626172154292]]}, "properties": {"ID_TRC": 1270352, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 3315, "FIN_DRT": 3345, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61803645745336, 45.49626172154292], [-73.6180600580954, 45.49622132744619], [-73.61848839084513, 45.495747880185675], [-73.61854335956532, 45.49568980884839]]}, "properties": {"ID_TRC": 1270353, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 3355, "FIN_DRT": 3355, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61854335956532, 45.49568980884839], [-73.61871034236563, 45.495500618658006], [-73.61898156554295, 45.49519795955475], [-73.61903775509597, 45.495135746068726]]}, "properties": {"ID_TRC": 1270354, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 3525, "FIN_DRT": 3537, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61918671539495, 45.49497095792482], [-73.6193242445311, 45.49480073251584], [-73.61941554126936, 45.49459350665838]]}, "properties": {"ID_TRC": 1270356, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61903775509597, 45.495135746068726], [-73.61921115606853, 45.495172072146744], [-73.61984998030938, 45.49533033147966], [-73.62001404512675, 45.49538213693033], [-73.62016862889726, 45.495400196711294]]}, "properties": {"ID_TRC": 1270357, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 5145, "FIN_DRT": 5165, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61847141391304, 45.495047003471754], [-73.61853079328314, 45.49505178618419], [-73.61858594938049, 45.49505879721539], [-73.618760023406, 45.495086418636], [-73.6188688398521, 45.4951057373656]]}, "properties": {"ID_TRC": 1270358, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61786443031365, 45.49508333720154], [-73.61801064272423, 45.49506244955654], [-73.61810895072118, 45.49505164992863], [-73.6181920580423, 45.49504621506953], [-73.6182844090821, 45.49504459109259], [-73.61847141391304, 45.495047003471754]]}, "properties": {"ID_TRC": 1270359, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61740943576591, 45.495175508898775], [-73.6175295079874, 45.49514933650385], [-73.6177743984528, 45.495098225977344], [-73.61786443031365, 45.49508333720154]]}, "properties": {"ID_TRC": 1270360, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6157978818557, 45.49545588070145], [-73.61614502944268, 45.4954251416466], [-73.61625729123118, 45.49541134846535], [-73.61633261819868, 45.49539885280123], [-73.6165697709007, 45.49535433442542], [-73.61740943576591, 45.495175508898775]]}, "properties": {"ID_TRC": 1270361, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 4911, "FIN_DRT": 4947, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.615227330249, 45.49546893219888], [-73.61563779076907, 45.495465670086034], [-73.6157978818557, 45.49545588070145]]}, "properties": {"ID_TRC": 1270362, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61862473095134, 45.49483867437039], [-73.61870699604171, 45.494847653043045], [-73.61883960033042, 45.49486348627734], [-73.61894889938527, 45.49488797605976], [-73.61905917082764, 45.49491866982562]]}, "properties": {"ID_TRC": 1270363, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61759461963914, 45.49495666524017], [-73.61765814345013, 45.49494078011439], [-73.61783504624619, 45.49490262073542], [-73.61794813774704, 45.49488261543437], [-73.61806376914731, 45.49486602725462], [-73.61818035800968, 45.49485312777897], [-73.6182975877517, 45.4948439171074], [-73.61841535334845, 45.494838485331265], [-73.61854969077898, 45.49483456642178], [-73.61862473095134, 45.49483867437039]]}, "properties": {"ID_TRC": 1270364, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61716769781212, 45.49506140489408], [-73.61732884232987, 45.49502628188993], [-73.61750313723878, 45.49498216468539], [-73.61759461963914, 45.49495666524017]]}, "properties": {"ID_TRC": 1270365, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61739476642661, 45.49483983704941], [-73.61743343952081, 45.4948801760139], [-73.61750982961617, 45.49492284411177], [-73.61759461963914, 45.49495666524017]]}, "properties": {"ID_TRC": 1270367, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "du", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Piedmont", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue du Piedmont "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6157978818557, 45.49545588070145], [-73.61582019028178, 45.495528153596325], [-73.61586157169408, 45.495636553434935], [-73.61591143113927, 45.49571098093406], [-73.61595006519421, 45.49576578363014], [-73.61604359773686, 45.49584081259412], [-73.61620740994755, 45.49596346737155]]}, "properties": {"ID_TRC": 1270369, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6102875097344, 45.495720866858626], [-73.61087449891187, 45.4956038857752], [-73.61149400990533, 45.49550393030684], [-73.6118665466277, 45.495447860328255], [-73.61208484257821, 45.495418848625114], [-73.6122283391443, 45.49540268893096], [-73.61249191967667, 45.495378491558675], [-73.61278020691738, 45.49536029859419], [-73.61313767847575, 45.49534553499498], [-73.6154232382854, 45.49530235973199], [-73.61552631405743, 45.49529805281052], [-73.61563101351187, 45.49528801281926]]}, "properties": {"ID_TRC": 1270370, "DEB_GCH": 4730, "FIN_GCH": 4874, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.615227330249, 45.49546893219888], [-73.6153487821256, 45.49553853000454], [-73.61577034001478, 45.495767315911024], [-73.615878200206, 45.49581976239625], [-73.61620740994755, 45.49596346737155]]}, "properties": {"ID_TRC": 1271104, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61986737801314, 45.497807507942746], [-73.61994555909976, 45.49784832805559], [-73.62008407699963, 45.497920896882206], [-73.62012087827156, 45.497942857796936]]}, "properties": {"ID_TRC": 1271110, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 5281, "FIN_DRT": 5283, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63137218001366, 45.503250895589126], [-73.63141673893134, 45.50320109156378], [-73.63303529118429, 45.501336992785596], [-73.6330960111159, 45.50127011228528]]}, "properties": {"ID_TRC": 1280228, "DEB_GCH": 3400, "FIN_GCH": 3600, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Kent", "DEB_DRT": 3453, "FIN_DRT": 3535, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Kent "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63046909744837, 45.502843079947986], [-73.63051386703745, 45.50279247876968], [-73.6321267404684, 45.50093158129112], [-73.6321813512077, 45.50085976459869]]}, "properties": {"ID_TRC": 1280300, "DEB_GCH": 3450, "FIN_GCH": 3600, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Van Horne", "DEB_DRT": 3465, "FIN_DRT": 3543, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Van Horne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63575540270588, 45.50245973036624], [-73.63579817423965, 45.502383510277944], [-73.63780048908124, 45.50015549494523], [-73.63785042972033, 45.50009995056213]]}, "properties": {"ID_TRC": 1290024, "DEB_GCH": 3780, "FIN_GCH": 3940, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Barclay", "DEB_DRT": 3761, "FIN_DRT": 3941, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Barclay "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63785042972033, 45.50009995056213], [-73.63789964445783, 45.50004594374077], [-73.6396084527384, 45.49814159468778], [-73.63965532184042, 45.49808774900543]]}, "properties": {"ID_TRC": 1290025, "DEB_GCH": 3960, "FIN_GCH": 4580, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Barclay", "DEB_DRT": 3961, "FIN_DRT": 4581, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Barclay "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63965532184042, 45.49808774900543], [-73.63970032835273, 45.498035740587824], [-73.6414011155005, 45.49613776341817], [-73.64145813665542, 45.49607412377849]]}, "properties": {"ID_TRC": 1290026, "DEB_GCH": 4620, "FIN_GCH": 4760, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Barclay", "DEB_DRT": 4621, "FIN_DRT": 4761, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Barclay "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64145813665542, 45.49607412377849], [-73.64151456763128, 45.49601109268553], [-73.64289308161167, 45.494463474894594], [-73.64294322939472, 45.49440999603736]]}, "properties": {"ID_TRC": 1290028, "DEB_GCH": 4800, "FIN_GCH": 4896, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Barclay", "DEB_DRT": 4811, "FIN_DRT": 4897, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Barclay "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63878645157466, 45.500516835409705], [-73.63883336934033, 45.500464360264715], [-73.6405437393952, 45.498559005633425], [-73.64059201176069, 45.49850670737515]]}, "properties": {"ID_TRC": 1290037, "DEB_GCH": 3800, "FIN_GCH": 4300, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Bouchette", "DEB_DRT": 3975, "FIN_DRT": 3975, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Bouchette "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64059201176069, 45.49850670737515], [-73.6406398352876, 45.49845314559303], [-73.64233965307153, 45.49655479584366], [-73.64239629312294, 45.49649247426185]]}, "properties": {"ID_TRC": 1290039, "DEB_GCH": 4604, "FIN_GCH": 4790, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Bouchette", "DEB_DRT": 4605, "FIN_DRT": 4785, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Bouchette "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63120133629997, 45.49711853668126], [-73.63124701249092, 45.49706763110075], [-73.63140420916672, 45.49690744258941], [-73.63294796441909, 45.49517607887367], [-73.63299897832134, 45.49511612247733]]}, "properties": {"ID_TRC": 1290044, "DEB_GCH": 4200, "FIN_GCH": 4550, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 4005, "FIN_DRT": 4585, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63299897832134, 45.49511612247733], [-73.63304741527577, 45.49505726214497], [-73.63473283390258, 45.49316354090648], [-73.63480169682269, 45.493101627288794]]}, "properties": {"ID_TRC": 1290045, "DEB_GCH": 4610, "FIN_GCH": 4700, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 4615, "FIN_DRT": 4725, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63480169682269, 45.493101627288794], [-73.63486636200679, 45.493043692524], [-73.6362451084473, 45.49150308336348], [-73.63629983785036, 45.491443806929205]]}, "properties": {"ID_TRC": 1290046, "DEB_GCH": 4810, "FIN_GCH": 4890, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 4835, "FIN_DRT": 4895, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63629983785036, 45.491443806929205], [-73.6363515153497, 45.49138596508942], [-73.63714881614705, 45.49048723863834], [-73.63721783093506, 45.490400492352855], [-73.63747846210465, 45.4900456058127], [-73.63752830066132, 45.489993229499085]]}, "properties": {"ID_TRC": 1290048, "DEB_GCH": 4950, "FIN_GCH": 5130, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 4945, "FIN_DRT": 5135, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63752830066132, 45.489993229499085], [-73.63757740376045, 45.48994172442423], [-73.63806231556462, 45.48938912102017], [-73.63811080753717, 45.48933604689409]]}, "properties": {"ID_TRC": 1290050, "DEB_GCH": 5150, "FIN_GCH": 5192, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 5151, "FIN_DRT": 5193, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63811080753717, 45.48933604689409], [-73.6381568234142, 45.489285604639576], [-73.6385392694453, 45.48886568306794], [-73.63858241866149, 45.488816858886906]]}, "properties": {"ID_TRC": 1290051, "DEB_GCH": 5200, "FIN_GCH": 5210, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 5205, "FIN_DRT": 5207, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63858241866149, 45.488816858886906], [-73.63862334971536, 45.4887707281435], [-73.63900168405375, 45.48835494971382], [-73.63905073928062, 45.48830011147152]]}, "properties": {"ID_TRC": 1290052, "DEB_GCH": 5270, "FIN_GCH": 5272, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63900299090673, 45.48827896900262], [-73.63929144004666, 45.487952575513404]]}, "properties": {"ID_TRC": 1290053, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 1, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63386999697651, 45.50161697164959], [-73.63393398769209, 45.50154490647604], [-73.63593340499273, 45.499322686390904], [-73.63598133758407, 45.49926803222731]]}, "properties": {"ID_TRC": 1290068, "DEB_GCH": 3730, "FIN_GCH": 3948, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Carlton", "DEB_DRT": 3715, "FIN_DRT": 3947, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Carlton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63598133758407, 45.49926803222731], [-73.63602624190095, 45.4992179139368], [-73.63773719093591, 45.49731026062906], [-73.63778741963111, 45.49725502544465]]}, "properties": {"ID_TRC": 1290069, "DEB_GCH": 3950, "FIN_GCH": 4592, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Carlton", "DEB_DRT": 3955, "FIN_DRT": 4597, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Carlton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63778741963111, 45.49725502544465], [-73.63783465598283, 45.49720188126142], [-73.63953548395166, 45.49530501158163], [-73.63959178098195, 45.495241946724725]]}, "properties": {"ID_TRC": 1290070, "DEB_GCH": 4600, "FIN_GCH": 4780, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Carlton", "DEB_DRT": 4601, "FIN_DRT": 4757, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Carlton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63959178098195, 45.495241946724725], [-73.63964830805637, 45.4951796032333], [-73.64103656202859, 45.493632085698444], [-73.64108159219185, 45.49358125343826]]}, "properties": {"ID_TRC": 1290071, "DEB_GCH": 4810, "FIN_GCH": 4890, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Carlton", "DEB_DRT": 4815, "FIN_DRT": 4899, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Carlton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64108159219185, 45.49358125343826], [-73.6411285396266, 45.49352874980439], [-73.6423075034748, 45.49221275713812], [-73.64235527934859, 45.49216151983661]]}, "properties": {"ID_TRC": 1290072, "DEB_GCH": 4902, "FIN_GCH": 4986, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Carlton", "DEB_DRT": 4905, "FIN_DRT": 4997, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Carlton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62926639112445, 45.49954177179787], [-73.62932168834591, 45.49956704475553], [-73.62999501982601, 45.499872256774935], [-73.63004107673588, 45.49989269536529]]}, "properties": {"ID_TRC": 1290108, "DEB_GCH": 5794, "FIN_GCH": 5860, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 5809, "FIN_DRT": 5841, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6321813512077, 45.50085976459869], [-73.63227042500381, 45.50089997492725], [-73.63288936570535, 45.50117706521131], [-73.63292978838527, 45.501194854648844]]}, "properties": {"ID_TRC": 1290112, "DEB_GCH": 6200, "FIN_GCH": 6238, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 6211, "FIN_DRT": 6225, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63386999697651, 45.50161697164959], [-73.63392808585394, 45.50164301296186], [-73.63480983570585, 45.50203829777885], [-73.63487301287095, 45.50206585918767]]}, "properties": {"ID_TRC": 1290115, "DEB_GCH": 6300, "FIN_GCH": 6332, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62564664082319, 45.500660865254844], [-73.6257096249366, 45.50058988807065], [-73.62674203720822, 45.49944574573648], [-73.62679353840024, 45.49938793864305]]}, "properties": {"ID_TRC": 1290128, "DEB_GCH": 3320, "FIN_GCH": 3360, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 3333, "FIN_DRT": 3455, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62951488713757, 45.496369374221], [-73.62956268288904, 45.49631631177744], [-73.63126386599116, 45.49442392971458], [-73.63131718245718, 45.49436461817868]]}, "properties": {"ID_TRC": 1290134, "DEB_GCH": 3850, "FIN_GCH": 4140, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4333, "FIN_DRT": 4545, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63312482534776, 45.49235401758448], [-73.63318168050687, 45.49229170634917], [-73.63373488372665, 45.49167379707774], [-73.63378742451928, 45.49161568498631]]}, "properties": {"ID_TRC": 1290139, "DEB_GCH": 4800, "FIN_GCH": 4830, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4801, "FIN_DRT": 4845, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63378742451928, 45.49161568498631], [-73.63384139861704, 45.49155551122085], [-73.63456035603888, 45.490753907148125], [-73.63461625655704, 45.4906929467481]]}, "properties": {"ID_TRC": 1290140, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4855, "FIN_DRT": 4895, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63461625655704, 45.4906929467481], [-73.63467192653567, 45.49063300476649], [-73.63516384901898, 45.49008526530801], [-73.63532316746215, 45.489898250610565], [-73.63543395224839, 45.48975916995008], [-73.63554628980663, 45.48960757813831], [-73.63576553812287, 45.489286581885764], [-73.63580855256342, 45.4892212966975]]}, "properties": {"ID_TRC": 1290141, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4915, "FIN_DRT": 5025, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63580855256342, 45.4892212966975], [-73.63584870392329, 45.48916013258918], [-73.63630300187175, 45.48859821369024], [-73.63635374716087, 45.488544247216964]]}, "properties": {"ID_TRC": 1290142, "DEB_GCH": 5170, "FIN_GCH": 5170, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 5151, "FIN_DRT": 5151, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63635374716087, 45.488544247216964], [-73.63640004482609, 45.4884949656774], [-73.63677638514542, 45.488077757001804], [-73.63682187639762, 45.48802823171979]]}, "properties": {"ID_TRC": 1290143, "DEB_GCH": 5200, "FIN_GCH": 5240, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 5215, "FIN_DRT": 5245, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63682187639762, 45.48802823171979], [-73.63686531744081, 45.48798117760171], [-73.63727497072666, 45.4875252564653]]}, "properties": {"ID_TRC": 1290144, "DEB_GCH": 5250, "FIN_GCH": 5262, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 5265, "FIN_DRT": 5295, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63947872384963, 45.50394724078158], [-73.63951219514443, 45.503909275577264], [-73.64143219755357, 45.50176616099893], [-73.64147546829034, 45.50171441974343]]}, "properties": {"ID_TRC": 1290145, "DEB_GCH": 3730, "FIN_GCH": 3930, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Courtrai", "DEB_DRT": 3725, "FIN_DRT": 4005, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Courtrai "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64147546829034, 45.50171441974343], [-73.6415188067528, 45.50166382163804], [-73.64178879657993, 45.50136920972464], [-73.6418643332785, 45.50131323026937], [-73.64200540860351, 45.50125509944363], [-73.64212881722257, 45.501180971639236], [-73.64229529277196, 45.50106656323748], [-73.64239208052722, 45.50098355895479], [-73.64243872813795, 45.50094021428077], [-73.64248073180599, 45.500896875154936], [-73.64342416926239, 45.49984223602665], [-73.64347564882758, 45.499784961573695]]}, "properties": {"ID_TRC": 1290146, "DEB_GCH": 3960, "FIN_GCH": 4210, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Courtrai", "DEB_DRT": 4007, "FIN_DRT": 4375, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Courtrai "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63727497072666, 45.4875252564653], [-73.63739711290772, 45.48757610971048], [-73.63897540274733, 45.48826669830951], [-73.63900299090673, 45.48827896900262]]}, "properties": {"ID_TRC": 1290232, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 5701, "FIN_DRT": 5785, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63905073928062, 45.48830011147152], [-73.63912784006433, 45.48833517770046], [-73.64212970941172, 45.48967404810386]]}, "properties": {"ID_TRC": 1290233, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 5805, "FIN_DRT": 6075, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64212970941172, 45.48967404810386], [-73.6422407677609, 45.489723088879785], [-73.64527354295154, 45.491078764614436]]}, "properties": {"ID_TRC": 1290234, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 6201, "FIN_DRT": 6445, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62862939244721, 45.500260851501764], [-73.62868006501348, 45.50020509996663], [-73.62913011972134, 45.49970243102847], [-73.62926639112445, 45.49954177179787]]}, "properties": {"ID_TRC": 1290300, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Ellendale", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Ellendale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63292978838527, 45.501194854648844], [-73.63299110455061, 45.50112880046482], [-73.63499601283318, 45.49889849096428], [-73.63504284906844, 45.498845656395375]]}, "properties": {"ID_TRC": 1290331, "DEB_GCH": 3706, "FIN_GCH": 3886, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Kent", "DEB_DRT": 3763, "FIN_DRT": 3877, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Kent "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63504284906844, 45.498845656395375], [-73.63508832236494, 45.49879335995041], [-73.636799399223, 45.49688725013111], [-73.63684824299285, 45.49683335845664]]}, "properties": {"ID_TRC": 1290332, "DEB_GCH": 4010, "FIN_GCH": 4452, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Kent", "DEB_DRT": 3951, "FIN_DRT": 4447, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Kent "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63684824299285, 45.49683335845664], [-73.63689739398681, 45.49677914087398], [-73.63859402386242, 45.49488418000105], [-73.63865157195929, 45.49482098833173]]}, "properties": {"ID_TRC": 1290333, "DEB_GCH": 4600, "FIN_GCH": 4770, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Kent", "DEB_DRT": 4605, "FIN_DRT": 4757, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Kent "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63865157195929, 45.49482098833173], [-73.6387067450835, 45.49475940258936], [-73.64009175700471, 45.49321738986204], [-73.6401410390718, 45.49316004147857]]}, "properties": {"ID_TRC": 1290334, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Kent", "DEB_DRT": 4821, "FIN_DRT": 4897, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Kent "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6401410390718, 45.49316004147857], [-73.64018761925763, 45.4931056807239], [-73.64136533101845, 45.49179014914347], [-73.64141266150722, 45.4917378844859]]}, "properties": {"ID_TRC": 1290335, "DEB_GCH": 4900, "FIN_GCH": 4976, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Kent", "DEB_DRT": 4901, "FIN_DRT": 4971, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Kent "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63131718245718, 45.49436461817868], [-73.6314202891976, 45.494410691766404], [-73.63291153259425, 45.495077038961824], [-73.63299897832134, 45.49511612247733]]}, "properties": {"ID_TRC": 1290349, "DEB_GCH": 5750, "FIN_GCH": 5752, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63299897832134, 45.49511612247733], [-73.63308606038623, 45.49515494966874], [-73.63385210890554, 45.49549764844302], [-73.63393179058657, 45.495532700938206]]}, "properties": {"ID_TRC": 1290350, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 5855, "FIN_DRT": 5857, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63582956150145, 45.496379760928356], [-73.63591892657536, 45.496419436964054], [-73.63678326451054, 45.49680519557686], [-73.63684824299285, 45.49683335845664]]}, "properties": {"ID_TRC": 1290353, "DEB_GCH": 6240, "FIN_GCH": 6242, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 6205, "FIN_DRT": 6207, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63684824299285, 45.49683335845664], [-73.63691279124784, 45.4968617362028], [-73.63772094619951, 45.4972270365488], [-73.63778741963111, 45.49725502544465]]}, "properties": {"ID_TRC": 1290354, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63778741963111, 45.49725502544465], [-73.63785036586712, 45.49728204627685], [-73.63865894414307, 45.497643019748566], [-73.63872977951509, 45.4976750008057]]}, "properties": {"ID_TRC": 1290355, "DEB_GCH": 6300, "FIN_GCH": 6302, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 6485, "FIN_DRT": 6495, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63872977951509, 45.4976750008057], [-73.6388031663242, 45.49770826954455], [-73.63958386247721, 45.498056491411674], [-73.63965532184042, 45.49808774900543]]}, "properties": {"ID_TRC": 1290356, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 6505, "FIN_DRT": 6515, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63965532184042, 45.49808774900543], [-73.6397271297942, 45.49811868150921], [-73.64051133180875, 45.498471572137184], [-73.64059201176069, 45.49850670737515]]}, "properties": {"ID_TRC": 1290357, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64059201176069, 45.49850670737515], [-73.64067045034956, 45.498541120941844], [-73.64144134191527, 45.498884482531594], [-73.64151711005734, 45.49891850513957]]}, "properties": {"ID_TRC": 1290358, "DEB_GCH": 6756, "FIN_GCH": 6758, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 6755, "FIN_DRT": 6757, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64151711005734, 45.49891850513957], [-73.6415962411439, 45.49895394528163], [-73.64244881630643, 45.49933202609051], [-73.64252236257401, 45.49936500203203]]}, "properties": {"ID_TRC": 1290359, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64252236257401, 45.49936500203203], [-73.64259938498088, 45.49939933302543], [-73.64339237376076, 45.49974868321244], [-73.64347564882758, 45.499784961573695]]}, "properties": {"ID_TRC": 1290360, "DEB_GCH": 6920, "FIN_GCH": 6922, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 6925, "FIN_DRT": 6927, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62951488713757, 45.496369374221], [-73.62962125970807, 45.496409928094415], [-73.6311309684173, 45.497088642778316], [-73.63120133629997, 45.49711853668126]]}, "properties": {"ID_TRC": 1290362, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 5757, "FIN_DRT": 5845, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63120133629997, 45.49711853668126], [-73.6312727430157, 45.4971494952121], [-73.63163902215044, 45.497310521457216], [-73.63168962501894, 45.49733179145798], [-73.63174993109897, 45.49735035048844], [-73.6318046406601, 45.497367385984965], [-73.63207954071882, 45.497489999067675], [-73.6321512524079, 45.49752763353674]]}, "properties": {"ID_TRC": 1290363, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 5847, "FIN_DRT": 5879, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6340313512565, 45.49839377412087], [-73.63411922049154, 45.49843191974689], [-73.63497861752413, 45.49881805761765], [-73.63504284906844, 45.498845656395375]]}, "properties": {"ID_TRC": 1290366, "DEB_GCH": 6232, "FIN_GCH": 6234, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 6233, "FIN_DRT": 6235, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63504284906844, 45.498845656395375], [-73.63510687583877, 45.498872621889085], [-73.63590998339875, 45.49923857077913], [-73.63598133758407, 45.49926803222731]]}, "properties": {"ID_TRC": 1290367, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63598133758407, 45.49926803222731], [-73.63605197491749, 45.49929752732886], [-73.63684746757374, 45.49965213951608], [-73.6369230951777, 45.499686545068954]]}, "properties": {"ID_TRC": 1290368, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6369230951777, 45.499686545068954], [-73.63699560331902, 45.49971936676367], [-73.63778085911989, 45.50006957524315], [-73.63785042972033, 45.50009995056213]]}, "properties": {"ID_TRC": 1290369, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63785042972033, 45.50009995056213], [-73.63792159781822, 45.500132310539335], [-73.63870538164143, 45.50048008438831], [-73.63878645157466, 45.500516835409705]]}, "properties": {"ID_TRC": 1290370, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63878645157466, 45.500516835409705], [-73.63886827022104, 45.50055313509151], [-73.64064924719332, 45.501343260568994], [-73.64072075427926, 45.50137648605184]]}, "properties": {"ID_TRC": 1290371, "DEB_GCH": 6720, "FIN_GCH": 6874, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64072075427926, 45.50137648605184], [-73.64079179693505, 45.50141021979876], [-73.64139820623622, 45.501679989769876], [-73.64147546829034, 45.50171441974343]]}, "properties": {"ID_TRC": 1290372, "DEB_GCH": 6990, "FIN_GCH": 6992, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 6995, "FIN_DRT": 6997, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63461625655704, 45.4906929467481], [-73.63472420839831, 45.490740935092], [-73.63622198279829, 45.491409427866394], [-73.63629983785036, 45.491443806929205]]}, "properties": {"ID_TRC": 1290374, "DEB_GCH": 5750, "FIN_GCH": 5752, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 5757, "FIN_DRT": 5759, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63629983785036, 45.491443806929205], [-73.63637896574788, 45.49147898528106], [-73.63714065492076, 45.49182049740323], [-73.63721733766286, 45.491854230932134]]}, "properties": {"ID_TRC": 1290377, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63911428508378, 45.492702678986376], [-73.63920538666802, 45.4927422297825], [-73.64007581833205, 45.49313083603124], [-73.6401410390718, 45.49316004147857]]}, "properties": {"ID_TRC": 1290379, "DEB_GCH": 6204, "FIN_GCH": 6206, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6401410390718, 45.49316004147857], [-73.64020661188474, 45.49318944104778], [-73.64101832014555, 45.493553454156206], [-73.64108159219185, 45.49358125343826]]}, "properties": {"ID_TRC": 1290380, "DEB_GCH": 6350, "FIN_GCH": 6400, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64108159219185, 45.49358125343826], [-73.64114668361476, 45.49361026117791], [-73.64194529602543, 45.4939656444467], [-73.64201577859008, 45.493996431406195]]}, "properties": {"ID_TRC": 1290381, "DEB_GCH": 6402, "FIN_GCH": 6490, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64201577859008, 45.493996431406195], [-73.64208814581772, 45.49402872659171], [-73.64286922417338, 45.494377291315615], [-73.64294322939472, 45.49440999603736]]}, "properties": {"ID_TRC": 1290382, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63870349199166, 45.503599708171976], [-73.63875388184876, 45.503530522612174], [-73.64067415848747, 45.501428903302305], [-73.64072075427926, 45.50137648605184]]}, "properties": {"ID_TRC": 1290409, "DEB_GCH": 3724, "FIN_GCH": 3882, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Mackenzie", "DEB_DRT": 3701, "FIN_DRT": 3889, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Mackenzie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64072075427926, 45.50137648605184], [-73.640765412003, 45.50132619884974], [-73.64247699688677, 45.49941604444054], [-73.64252236257401, 45.49936500203203]]}, "properties": {"ID_TRC": 1290410, "DEB_GCH": 3890, "FIN_GCH": 4212, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Mackenzie", "DEB_DRT": 3955, "FIN_DRT": 4217, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Mackenzie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64252236257401, 45.49936500203203], [-73.64256519236633, 45.4993169419274], [-73.6441469972613, 45.49755037278786], [-73.64420076630344, 45.497490221669146]]}, "properties": {"ID_TRC": 1290411, "DEB_GCH": 4600, "FIN_GCH": 4782, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Mackenzie", "DEB_DRT": 4605, "FIN_DRT": 4771, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Mackenzie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63635374716087, 45.488544247216964], [-73.63646085362952, 45.48859388548813], [-73.63803593440238, 45.48930284942095], [-73.63811080753717, 45.48933604689409]]}, "properties": {"ID_TRC": 1290424, "DEB_GCH": 5722, "FIN_GCH": 5782, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Mountain Sights", "DEB_DRT": 5727, "FIN_DRT": 5727, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Mountain Sights "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63811080753717, 45.48933604689409], [-73.6381840404293, 45.48936863553221], [-73.64114913356295, 45.49070437879554], [-73.6412379600245, 45.4907430093544]]}, "properties": {"ID_TRC": 1290425, "DEB_GCH": 5880, "FIN_GCH": 6132, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Mountain Sights", "DEB_DRT": 5885, "FIN_DRT": 6131, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Mountain Sights "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6412379600245, 45.4907430093544], [-73.6413332678981, 45.4907845151532], [-73.64429554846781, 45.49211775031608], [-73.64437020638334, 45.4921510926415]]}, "properties": {"ID_TRC": 1290426, "DEB_GCH": 6220, "FIN_GCH": 6422, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Mountain Sights", "DEB_DRT": 6225, "FIN_DRT": 6395, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Mountain Sights "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64048348514966, 45.491319093631674], [-73.64055527814513, 45.4912762077913], [-73.6408862089836, 45.49106242640643], [-73.64093487898954, 45.491028798776895], [-73.6409878590221, 45.490988596488634], [-73.64103240615245, 45.49095227437073], [-73.64109800122634, 45.49089261777872], [-73.64113694777771, 45.49085324261429], [-73.64117966856836, 45.49080756835588], [-73.6412379600245, 45.4907430093544]]}, "properties": {"ID_TRC": 1291008, "DEB_GCH": 5170, "FIN_GCH": 5172, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Van Horne", "DEB_DRT": 5005, "FIN_DRT": 5107, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Van Horne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63911428508378, 45.492702678986376], [-73.63916378229403, 45.49264643779131], [-73.63982141978948, 45.49190959566014], [-73.64001738256047, 45.49169452689316], [-73.64009433738802, 45.49161919808503], [-73.64016172694541, 45.491559090139425], [-73.64022933856995, 45.491502273513454], [-73.64029895340852, 45.49144742009771], [-73.64042315251744, 45.49135925410619], [-73.64048348514966, 45.491319093631674]]}, "properties": {"ID_TRC": 1291009, "DEB_GCH": 4900, "FIN_GCH": 4902, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Van Horne", "DEB_DRT": 4901, "FIN_DRT": 4997, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Van Horne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6321813512077, 45.50085976459869], [-73.63234867434173, 45.50060164738717], [-73.63267022334797, 45.500086694385466], [-73.63281912982697, 45.49985514907199], [-73.63290264261852, 45.499732211592395], [-73.63302320416997, 45.499565763965634], [-73.63313810362303, 45.49941561177573], [-73.63328617461244, 45.499233923088255], [-73.63345763254283, 45.49903438817712], [-73.63398005794927, 45.498451431495596], [-73.6340313512565, 45.49839377412087]]}, "properties": {"ID_TRC": 1291010, "DEB_GCH": 3720, "FIN_GCH": 3906, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Van Horne", "DEB_DRT": 3737, "FIN_DRT": 3923, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Van Horne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64201577859008, 45.493996431406195], [-73.64206227830427, 45.493944170682084], [-73.6426962274727, 45.49323846432592], [-73.6427547469996, 45.493176745777504], [-73.6427898032474, 45.49314277466974], [-73.6428592022306, 45.493084912248605], [-73.64289838591144, 45.49305561536215], [-73.6429769775004, 45.493002331251155], [-73.64301691178203, 45.492977892995206], [-73.64308773137937, 45.49293937733995], [-73.6434589332622, 45.49275064602919], [-73.64355561595045, 45.49270164747695]]}, "properties": {"ID_TRC": 1291033, "DEB_GCH": 4900, "FIN_GCH": 5000, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Plamondon", "DEB_DRT": 4905, "FIN_DRT": 5027, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Plamondon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63760252397216, 45.48716088810758], [-73.63727497072666, 45.4875252564653]]}, "properties": {"ID_TRC": 1291111, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63682187639762, 45.48802823171979], [-73.63692812023248, 45.48807541536228], [-73.63850899498708, 45.48878400595288], [-73.63858241866149, 45.488816858886906]]}, "properties": {"ID_TRC": 1291112, "DEB_GCH": 5718, "FIN_GCH": 5798, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Trans Island", "DEB_DRT": 5721, "FIN_DRT": 5793, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Trans Island "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63858241866149, 45.488816858886906], [-73.63865773621275, 45.48885096048463], [-73.64162585064068, 45.490177418522705], [-73.64171680536596, 45.49021761765351]]}, "properties": {"ID_TRC": 1291113, "DEB_GCH": 5800, "FIN_GCH": 6146, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Trans Island", "DEB_DRT": 5801, "FIN_DRT": 6145, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Trans Island "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6412379600245, 45.4907430093544], [-73.64127281135892, 45.49070440587397], [-73.64167355388577, 45.49026393301555], [-73.64171680536596, 45.49021761765351]]}, "properties": {"ID_TRC": 1291114, "DEB_GCH": 5210, "FIN_GCH": 5240, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Van Horne", "DEB_DRT": 5215, "FIN_DRT": 5245, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Van Horne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63752830066132, 45.489993229499085], [-73.63760241077864, 45.490027457867875], [-73.63842028582742, 45.49039274199208], [-73.63849301989688, 45.490425143637864]]}, "properties": {"ID_TRC": 1291115, "DEB_GCH": 5850, "FIN_GCH": 5888, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 5895, "FIN_DRT": 5899, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64048348514966, 45.491319093631674], [-73.64057459153372, 45.49136167761653], [-73.64135373781842, 45.49171177957948], [-73.64141266150722, 45.4917378844859]]}, "properties": {"ID_TRC": 1291116, "DEB_GCH": 6220, "FIN_GCH": 6248, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 6205, "FIN_DRT": 6245, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64141266150722, 45.4917378844859], [-73.64147734322663, 45.49176625231405], [-73.64229400844205, 45.49213403010669], [-73.64235527934859, 45.49216151983661]]}, "properties": {"ID_TRC": 1291117, "DEB_GCH": 6250, "FIN_GCH": 6328, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 6251, "FIN_DRT": 6317, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64171680536596, 45.49021761765351], [-73.64175890787564, 45.49017302397948], [-73.6418328711428, 45.49008482878231], [-73.64209557858413, 45.48972848913146], [-73.64212970941172, 45.48967404810386]]}, "properties": {"ID_TRC": 1291118, "DEB_GCH": 5260, "FIN_GCH": 5262, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Van Horne", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Van Horne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63762888270254, 45.49436488951541], [-73.63767668703758, 45.4943096932657], [-73.63906517026979, 45.49275616954357], [-73.63911428508378, 45.492702678986376]]}, "properties": {"ID_TRC": 1291119, "DEB_GCH": 4810, "FIN_GCH": 4898, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Van Horne", "DEB_DRT": 4799, "FIN_DRT": 4885, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Van Horne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63582956150145, 45.496379760928356], [-73.6358778575788, 45.496325533098684], [-73.63757228531402, 45.494427889887355], [-73.63762888270254, 45.49436488951541]]}, "properties": {"ID_TRC": 1291120, "DEB_GCH": 4600, "FIN_GCH": 4790, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Van Horne", "DEB_DRT": 4605, "FIN_DRT": 4795, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Van Horne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63573147492201, 45.493517274689474], [-73.63578716332837, 45.493455580174874], [-73.63716472831031, 45.491912621608435], [-73.63721733766286, 45.491854230932134]]}, "properties": {"ID_TRC": 1291123, "DEB_GCH": 4800, "FIN_GCH": 4898, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "De La Peltrie", "DEB_DRT": 4811, "FIN_DRT": 4897, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue De La Peltrie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63721733766286, 45.491854230932134], [-73.63727270890848, 45.49179235091308], [-73.63844676934868, 45.4904773936409], [-73.63849301989688, 45.490425143637864]]}, "properties": {"ID_TRC": 1291124, "DEB_GCH": 4910, "FIN_GCH": 5132, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "De La Peltrie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue De La Peltrie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63393179058657, 45.495532700938206], [-73.63398260396427, 45.495475357039254], [-73.63567191130728, 45.493582787545144], [-73.63573147492201, 45.493517274689474]]}, "properties": {"ID_TRC": 1291125, "DEB_GCH": 4600, "FIN_GCH": 4766, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "De La Peltrie", "DEB_DRT": 4601, "FIN_DRT": 4785, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue De La Peltrie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63762888270254, 45.49436488951541], [-73.63771976964034, 45.49440638383272], [-73.63858461300248, 45.49479068859076], [-73.63865157195929, 45.49482098833173]]}, "properties": {"ID_TRC": 1291126, "DEB_GCH": 6250, "FIN_GCH": 6290, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 6225, "FIN_DRT": 6295, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63480169682269, 45.493101627288794], [-73.63488336661524, 45.49313798538774], [-73.63565710953841, 45.493483542594994], [-73.63573147492201, 45.493517274689474]]}, "properties": {"ID_TRC": 1291127, "DEB_GCH": 5850, "FIN_GCH": 5852, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5855, "FIN_DRT": 5899, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63312482534776, 45.49235401758448], [-73.63323005781321, 45.49240009180169], [-73.6347181417209, 45.493065195767755], [-73.63480169682269, 45.493101627288794]]}, "properties": {"ID_TRC": 1291128, "DEB_GCH": 5700, "FIN_GCH": 5710, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5725, "FIN_DRT": 5795, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63865157195929, 45.49482098833173], [-73.63871900248229, 45.494851630751256], [-73.6395251229779, 45.495212061322846], [-73.63959178098195, 45.495241946724725]]}, "properties": {"ID_TRC": 1291129, "DEB_GCH": 6320, "FIN_GCH": 6346, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63580855256342, 45.4892212966975], [-73.63591723494375, 45.489266963031746], [-73.63745662146908, 45.489960048501054], [-73.63752830066132, 45.489993229499085]]}, "properties": {"ID_TRC": 1291130, "DEB_GCH": 5700, "FIN_GCH": 5702, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 5715, "FIN_DRT": 5735, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63849301989688, 45.490425143637864], [-73.6385668528161, 45.49045826715465], [-73.64039255673842, 45.49127730796749], [-73.64048348514966, 45.491319093631674]]}, "properties": {"ID_TRC": 1291131, "DEB_GCH": 5890, "FIN_GCH": 6122, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63004107673588, 45.49989269536529], [-73.63010255848114, 45.49982164839643], [-73.6321512524079, 45.49752763353674]]}, "properties": {"ID_TRC": 1291132, "DEB_GCH": 3760, "FIN_GCH": 3922, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "De La Peltrie", "DEB_DRT": 3749, "FIN_DRT": 3947, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue De La Peltrie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6321512524079, 45.49752763353674], [-73.63218276011922, 45.49749059954818], [-73.63387755636867, 45.495592381219524], [-73.63393179058657, 45.495532700938206]]}, "properties": {"ID_TRC": 1291133, "DEB_GCH": 3960, "FIN_GCH": 4582, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "De La Peltrie", "DEB_DRT": 3965, "FIN_DRT": 4577, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue De La Peltrie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6340313512565, 45.49839377412087], [-73.6340781602758, 45.49834107495136], [-73.63577828703262, 45.49643697301096], [-73.63582956150145, 45.496379760928356]]}, "properties": {"ID_TRC": 1291134, "DEB_GCH": 3950, "FIN_GCH": 4452, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Van Horne", "DEB_DRT": 3951, "FIN_DRT": 4521, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Van Horne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63487301287095, 45.50206585918767], [-73.63488371004638, 45.50198023164802], [-73.63488859079281, 45.50197060296118], [-73.6350716823604, 45.501765759557166], [-73.63513722369481, 45.50167595911628], [-73.63687238412855, 45.49974264270268], [-73.6369230951777, 45.499686545068954]]}, "properties": {"ID_TRC": 1291135, "DEB_GCH": 3740, "FIN_GCH": 3940, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Plamondon", "DEB_DRT": 3735, "FIN_DRT": 3945, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Plamondon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64171680536596, 45.49021761765351], [-73.64180628954776, 45.4902574687224], [-73.64476440845206, 45.49157899790729], [-73.64484725555754, 45.491615316355634]]}, "properties": {"ID_TRC": 1291215, "DEB_GCH": 6210, "FIN_GCH": 6424, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Trans Island", "DEB_DRT": 6241, "FIN_DRT": 6495, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Trans Island "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64235527934859, 45.49216151983661], [-73.64241856771939, 45.492189580444325], [-73.64328288490599, 45.49257520020403], [-73.64348235969362, 45.49266701293436], [-73.64355561595045, 45.49270164747695]]}, "properties": {"ID_TRC": 1291216, "DEB_GCH": 6330, "FIN_GCH": 6410, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 6351, "FIN_DRT": 6405, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64212970941172, 45.48967404810386], [-73.64215559221371, 45.48963248174209], [-73.64233601329109, 45.4893705568877], [-73.6423667219322, 45.48932858133186]]}, "properties": {"ID_TRC": 1291217, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Van Horne", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Avenue Van Horne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63959178098195, 45.495241946724725], [-73.63965919608721, 45.49527228288376], [-73.64045529004207, 45.49562776952983], [-73.64053009717213, 45.49566109278981]]}, "properties": {"ID_TRC": 1291218, "DEB_GCH": 6410, "FIN_GCH": 6492, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 6415, "FIN_DRT": 6495, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64053009717213, 45.49566109278981], [-73.64060341749037, 45.49569418229646], [-73.64138240247917, 45.49604014404005], [-73.64145813665542, 45.49607412377849]]}, "properties": {"ID_TRC": 1291219, "DEB_GCH": 6500, "FIN_GCH": 6570, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 6575, "FIN_DRT": 6585, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64145813665542, 45.49607412377849], [-73.64153327884242, 45.496107902184995], [-73.64231925203136, 45.49645816855802], [-73.64239629312294, 45.49649247426185]]}, "properties": {"ID_TRC": 1291220, "DEB_GCH": 6600, "FIN_GCH": 6612, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 6625, "FIN_DRT": 6695, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64239629312294, 45.49649247426185], [-73.6424702354115, 45.49652556516459], [-73.64324206339357, 45.49687017356167], [-73.64332250361413, 45.496905485800625]]}, "properties": {"ID_TRC": 1291221, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64053009717213, 45.49566109278981], [-73.64058660765915, 45.49559755026649], [-73.64196820049443, 45.49405101954916], [-73.64201577859008, 45.493996431406195]]}, "properties": {"ID_TRC": 1291224, "DEB_GCH": 4820, "FIN_GCH": 4890, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Plamondon", "DEB_DRT": 4811, "FIN_DRT": 4899, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Plamondon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63872977951509, 45.4976750008057], [-73.63877868116498, 45.49762235587651], [-73.64033086392614, 45.49588305281148], [-73.64047063214394, 45.49572836292306], [-73.64053009717213, 45.49566109278981]]}, "properties": {"ID_TRC": 1291225, "DEB_GCH": 4610, "FIN_GCH": 4790, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Plamondon", "DEB_DRT": 4605, "FIN_DRT": 4785, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Plamondon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6369230951777, 45.499686545068954], [-73.63697133031228, 45.49963318253115], [-73.63757404470257, 45.49896434974326], [-73.63795284924332, 45.49853750576542], [-73.6386788936313, 45.49773010874556], [-73.63872977951509, 45.4976750008057]]}, "properties": {"ID_TRC": 1291226, "DEB_GCH": 3970, "FIN_GCH": 4522, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Plamondon", "DEB_DRT": 3965, "FIN_DRT": 4527, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Plamondon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64151711005734, 45.49891850513957], [-73.64156351440154, 45.49886642250115], [-73.64325900255734, 45.49697436415703], [-73.64332250361413, 45.496905485800625]]}, "properties": {"ID_TRC": 1291227, "DEB_GCH": 4610, "FIN_GCH": 4780, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "V\u00c3\u00a9zina", "DEB_DRT": 4605, "FIN_DRT": 4775, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue V\u00c3\u00a9zina "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6315328470842, 45.49060952764437], [-73.63159941804442, 45.49063829572744], [-73.6336798697032, 45.491570459173374], [-73.63378742451928, 45.49161568498631]]}, "properties": {"ID_TRC": 1300025, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Beaucourt", "DEB_DRT": 5535, "FIN_DRT": 5635, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Beaucourt "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61606969175696, 45.483476064641266], [-73.61616473169224, 45.48355051780902], [-73.61625705469288, 45.48360118015557], [-73.61665603349644, 45.4837808121338], [-73.61681396551799, 45.483854807054236]]}, "properties": {"ID_TRC": 1300028, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bonavista", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bonavista "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61681396551799, 45.483854807054236], [-73.61799945815018, 45.48438557487063], [-73.61805754966672, 45.48441323280354]]}, "properties": {"ID_TRC": 1300029, "DEB_GCH": 4550, "FIN_GCH": 4650, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bonavista", "DEB_DRT": 4555, "FIN_DRT": 4655, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bonavista "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61602571121473, 45.48422328752483], [-73.61607998704757, 45.484158688675976], [-73.61611494606562, 45.484123735744284], [-73.61614369924347, 45.484098238395084], [-73.61618878943439, 45.48406417521003], [-73.61623800055875, 45.48403298732104], [-73.61628606315374, 45.484007650254206], [-73.6163424631619, 45.483983114762125], [-73.61640161331098, 45.483962176048934], [-73.61644442690215, 45.48394980339712], [-73.61650137776279, 45.48393669620981], [-73.61675716601023, 45.483904789260556], [-73.61681396551799, 45.483854807054236]]}, "properties": {"ID_TRC": 1300031, "DEB_GCH": 4840, "FIN_GCH": 4842, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Bonavista", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Bonavista "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64075527970917, 45.486265173725464], [-73.64079700108104, 45.486219101048256], [-73.6413347210961, 45.485627271393554], [-73.6413885353804, 45.48557063306463]]}, "properties": {"ID_TRC": 1300047, "DEB_GCH": 5450, "FIN_GCH": 5506, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 5451, "FIN_DRT": 5507, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6413885353804, 45.48557063306463], [-73.64143848679484, 45.48551753116279], [-73.64197396131009, 45.48491904144607], [-73.64201347832048, 45.484874433078026]]}, "properties": {"ID_TRC": 1300048, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62641128727545, 45.48406289205951], [-73.62728890688149, 45.48311803489213], [-73.62733832742762, 45.48306268223605]]}, "properties": {"ID_TRC": 1300055, "DEB_GCH": 5194, "FIN_GCH": 5274, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Byron", "DEB_DRT": 5193, "FIN_DRT": 5275, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Byron "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62710380808011, 45.484961330686566], [-73.62705765626002, 45.485010491346536], [-73.62703364020969, 45.485029056682585], [-73.62701034571761, 45.48503997162119], [-73.62698050142257, 45.485047564406294], [-73.62694853885503, 45.48505155947923], [-73.62686962017344, 45.485054887053224], [-73.62679568947208, 45.48506189660462], [-73.6267045084998, 45.48507376956405], [-73.62661668220379, 45.48508975957658], [-73.6265380679006, 45.485108681813365], [-73.62646364111862, 45.48512995425675], [-73.62633572061756, 45.4851777727909], [-73.62624209592236, 45.4852202558914], [-73.62617524058442, 45.48525917767907], [-73.62610922809522, 45.4853010416677], [-73.6260524227315, 45.485344072456556], [-73.62599060904728, 45.48539240613344], [-73.62591204592367, 45.48547558519872], [-73.62586871945975, 45.48553329124479], [-73.6258295302708, 45.485586678630696], [-73.62580895744487, 45.485619657694016], [-73.62579353887523, 45.4856503983351]]}, "properties": {"ID_TRC": 1300061, "DEB_GCH": 4374, "FIN_GCH": 4410, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 4371, "FIN_DRT": 4385, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62579353887523, 45.4856503983351], [-73.6257544731197, 45.48574420865616], [-73.62566339030012, 45.48597199192035], [-73.62559147812763, 45.48615273506301], [-73.62557765141146, 45.48618966351067], [-73.6255546829451, 45.4862465007432], [-73.62552695794838, 45.48630592687956], [-73.62549236241686, 45.486361210468395], [-73.62546774763902, 45.48639454529592], [-73.62540683255716, 45.486464392971214], [-73.62536291895303, 45.486515341394], [-73.62517671381596, 45.48672234992455], [-73.62513320970146, 45.486771975484814]]}, "properties": {"ID_TRC": 1300063, "DEB_GCH": 4414, "FIN_GCH": 4460, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 4415, "FIN_DRT": 4431, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62513320970146, 45.486771975484814], [-73.62508914516786, 45.48682332844552], [-73.62497721743158, 45.48693171273506], [-73.62491791047691, 45.486977494262625], [-73.62483593390562, 45.48703085991366], [-73.62472389187086, 45.48708785794421], [-73.62466528224684, 45.487115009974815], [-73.62453991000119, 45.48715645346818], [-73.62441187682883, 45.48718764080746], [-73.62428044207452, 45.487207492300136], [-73.62414655688225, 45.48721663724267], [-73.62401264651463, 45.487214532861266], [-73.62387987212784, 45.48720099792749], [-73.62375034524231, 45.487176570289996], [-73.62371085688694, 45.4871659037757], [-73.62362712286043, 45.48714007640208], [-73.62354580648048, 45.48711001662804], [-73.62350968571585, 45.48709502691804], [-73.62344831591685, 45.487066385258494], [-73.62314928983794, 45.48692914390521]]}, "properties": {"ID_TRC": 1300065, "DEB_GCH": 4470, "FIN_GCH": 4530, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 4477, "FIN_DRT": 4495, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62314928983794, 45.48692914390521], [-73.62293189138128, 45.4868352571458], [-73.62180695655871, 45.48633542232936], [-73.62164081049308, 45.48625567800479]]}, "properties": {"ID_TRC": 1300068, "DEB_GCH": 4540, "FIN_GCH": 4580, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 4549, "FIN_DRT": 4595, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62164081049308, 45.48625567800479], [-73.62146388029186, 45.48617208996598], [-73.62061512557759, 45.485793847635314], [-73.62039796588323, 45.485692744193614], [-73.62034177001017, 45.48566445556795], [-73.62025746054134, 45.48561450820642], [-73.62021043704772, 45.48558234007204], [-73.62016382695975, 45.48554621171168], [-73.62010885420978, 45.48549731318987], [-73.62004899684219, 45.48543393090696], [-73.61998851653307, 45.485357345133245], [-73.61980131583074, 45.48512011436056], [-73.61976933957072, 45.485068041865574], [-73.6197372363512, 45.48500589009528], [-73.61972472427487, 45.48497710544124], [-73.6196953137992, 45.48489083271541], [-73.61967395643497, 45.48482066036108], [-73.61965787667204, 45.48475138231958], [-73.61965100641193, 45.484695863621674], [-73.61965213143279, 45.4846291775584], [-73.61965742254704, 45.484586784996424], [-73.6196865314906, 45.48448065253574], [-73.61969699326801, 45.48445763813564], [-73.61971297395269, 45.48443047708445]]}, "properties": {"ID_TRC": 1300069, "DEB_GCH": 4582, "FIN_GCH": 4740, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 4645, "FIN_DRT": 4711, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61971297395269, 45.48443047708445], [-73.61972604854633, 45.48441078509916], [-73.61974679743346, 45.484389066263084], [-73.620483961485, 45.48376166779007], [-73.62052637722381, 45.483727581415735]]}, "properties": {"ID_TRC": 1300074, "DEB_GCH": 4760, "FIN_GCH": 4770, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 4719, "FIN_DRT": 4729, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62052637722381, 45.483727581415735], [-73.62077264961488, 45.48351559110692], [-73.6213590919471, 45.48302306617452], [-73.62141892770454, 45.48297872587966], [-73.62148753531976, 45.482940945776626], [-73.62152253647969, 45.48292749948737], [-73.62164759482047, 45.482881572300684]]}, "properties": {"ID_TRC": 1300075, "DEB_GCH": 4778, "FIN_GCH": 4796, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 4795, "FIN_DRT": 4805, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62164759482047, 45.482881572300684], [-73.62172395817223, 45.482856848213125], [-73.62182165491453, 45.482825218401054], [-73.6219136168001, 45.482804422026135], [-73.62200601868562, 45.482791904142694], [-73.6220648831523, 45.482786801666535], [-73.62218769484573, 45.482784600493076], [-73.62227918538066, 45.482789812134534], [-73.62232868197891, 45.48279515889153], [-73.62236309029637, 45.48280043158116], [-73.62243360211791, 45.482814125024206], [-73.62250792099654, 45.48283177411421], [-73.62256250669024, 45.48284818432058], [-73.62264286328674, 45.482876625899195], [-73.62268837743511, 45.48289430556939], [-73.6227680110614, 45.482929947506], [-73.62303324400811, 45.48306366206494], [-73.62317050680123, 45.48312228692098]]}, "properties": {"ID_TRC": 1300076, "DEB_GCH": 4838, "FIN_GCH": 4880, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 4875, "FIN_DRT": 4877, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62317050680123, 45.48312228692098], [-73.62467691030935, 45.483823763211525], [-73.6247587726238, 45.48386408097162], [-73.62496281577107, 45.48397416826963]]}, "properties": {"ID_TRC": 1300078, "DEB_GCH": 4890, "FIN_GCH": 4970, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 4925, "FIN_DRT": 4955, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62496281577107, 45.48397416826963], [-73.62518147931577, 45.48406223366939], [-73.62671778826127, 45.48477535647576], [-73.62678798853374, 45.484807673033195]]}, "properties": {"ID_TRC": 1300079, "DEB_GCH": 4980, "FIN_GCH": 5050, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 4985, "FIN_DRT": 5025, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62678798853374, 45.484807673033195], [-73.62686872668527, 45.484844933745414], [-73.62703392674308, 45.48492187436685], [-73.62710380808011, 45.484961330686566]]}, "properties": {"ID_TRC": 1300081, "DEB_GCH": 5060, "FIN_GCH": 5080, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61941922415441, 45.48436030321982], [-73.61966877942204, 45.484418935625115], [-73.61971297395269, 45.48443047708445]]}, "properties": {"ID_TRC": 1300083, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62811447601919, 45.479605072066214], [-73.62820606282003, 45.47964587611849], [-73.62883711062236, 45.47992729551053]]}, "properties": {"ID_TRC": 1300085, "DEB_GCH": 4700, "FIN_GCH": 4920, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Clanranald", "DEB_DRT": 4909, "FIN_DRT": 4921, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Clanranald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62883711062236, 45.47992729551053], [-73.62916707070906, 45.4800765851562]]}, "properties": {"ID_TRC": 1300086, "DEB_GCH": 4930, "FIN_GCH": 4960, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Clanranald", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Clanranald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62916707070906, 45.4800765851562], [-73.63129546179901, 45.481037443955906], [-73.63134750283851, 45.48105866594845]]}, "properties": {"ID_TRC": 1300087, "DEB_GCH": 4980, "FIN_GCH": 5070, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Clanranald", "DEB_DRT": 5001, "FIN_DRT": 5051, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Clanranald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63146511713643, 45.48110633949431], [-73.6315211487779, 45.48112951735529], [-73.63457205299069, 45.48250439180176], [-73.63464257928878, 45.48253566923754]]}, "properties": {"ID_TRC": 1300088, "DEB_GCH": 5118, "FIN_GCH": 5270, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Clanranald", "DEB_DRT": 5125, "FIN_DRT": 5267, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Clanranald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63464257928878, 45.48253566923754], [-73.63470767292468, 45.48256425754675], [-73.63755338976055, 45.483840327163946], [-73.63822392731502, 45.48414744867113], [-73.6382951323587, 45.484179879323754]]}, "properties": {"ID_TRC": 1300089, "DEB_GCH": 5330, "FIN_GCH": 5480, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Clanranald", "DEB_DRT": 5355, "FIN_DRT": 5401, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Clanranald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6382951323587, 45.484179879323754], [-73.63837350326223, 45.48421575238609], [-73.64132110579224, 45.48554134463848], [-73.6413885353804, 45.48557063306463]]}, "properties": {"ID_TRC": 1300090, "DEB_GCH": 5500, "FIN_GCH": 5696, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Clanranald", "DEB_DRT": 5507, "FIN_DRT": 5643, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Clanranald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6413885353804, 45.48557063306463], [-73.64146128250252, 45.48560335632611], [-73.64442370493784, 45.48693208951548], [-73.64449447853214, 45.48696740578793]]}, "properties": {"ID_TRC": 1300091, "DEB_GCH": 5800, "FIN_GCH": 5962, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Clanranald", "DEB_DRT": 5805, "FIN_DRT": 5957, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Clanranald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62769106683163, 45.48168062842171], [-73.62776081289826, 45.48168863398027], [-73.62776866149325, 45.48169071891934], [-73.6287835043969, 45.482145969901715], [-73.62983515993803, 45.48262020579441], [-73.62990160491405, 45.48264975409213]]}, "properties": {"ID_TRC": 1300099, "DEB_GCH": 4914, "FIN_GCH": 5022, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 4899, "FIN_DRT": 5019, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63320017102264, 45.48412577935843], [-73.6332736294458, 45.48415866583571], [-73.6367824141972, 45.485729285894934], [-73.63685787764648, 45.48576344948757]]}, "properties": {"ID_TRC": 1300101, "DEB_GCH": 5328, "FIN_GCH": 5490, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 5315, "FIN_DRT": 5497, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63685787764648, 45.48576344948757], [-73.63693558274835, 45.485798577227236], [-73.63782227421056, 45.486198340836594], [-73.63789311793703, 45.48622836957608]]}, "properties": {"ID_TRC": 1300102, "DEB_GCH": 5506, "FIN_GCH": 5564, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 5515, "FIN_DRT": 5597, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63789311793703, 45.48622836957608], [-73.63795885172462, 45.4862564016114], [-73.63885886673948, 45.48666172054361], [-73.63893311172858, 45.48669455224441]]}, "properties": {"ID_TRC": 1300103, "DEB_GCH": 5600, "FIN_GCH": 5652, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 5601, "FIN_DRT": 5657, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63893311172858, 45.48669455224441], [-73.63900643801658, 45.486726966136594], [-73.63988205811341, 45.487118087972696], [-73.6399522685389, 45.48714974582621]]}, "properties": {"ID_TRC": 1300104, "DEB_GCH": 5702, "FIN_GCH": 5746, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 5701, "FIN_DRT": 5757, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6399522685389, 45.48714974582621], [-73.64002319086012, 45.48718172018426], [-73.6408985127282, 45.48757472423918], [-73.6409865579436, 45.48761310019714]]}, "properties": {"ID_TRC": 1300105, "DEB_GCH": 5800, "FIN_GCH": 5856, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 5801, "FIN_DRT": 5859, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6409865579436, 45.48761310019714], [-73.64107291792047, 45.48765073332114], [-73.64196432403473, 45.48805567838112], [-73.64203880375425, 45.488087994851796]]}, "properties": {"ID_TRC": 1300106, "DEB_GCH": 5860, "FIN_GCH": 5946, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 5871, "FIN_DRT": 5945, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64203880375425, 45.488087994851796], [-73.64210281782772, 45.488116971469516], [-73.64298587603002, 45.488511569788045], [-73.64306307356067, 45.488546933561935]]}, "properties": {"ID_TRC": 1300107, "DEB_GCH": 6000, "FIN_GCH": 6044, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 6003, "FIN_DRT": 6077, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61513474815295, 45.483850096021655], [-73.61527453537832, 45.48376848342523], [-73.61535136676758, 45.48372511921794], [-73.61539563669422, 45.48370257610218], [-73.61543179256309, 45.48368535093589], [-73.61546826558252, 45.48366821519716], [-73.61551422701866, 45.48364747024256], [-73.61556082305565, 45.48362726476], [-73.6155987769066, 45.48361201738317], [-73.61565644769185, 45.48359000073619], [-73.61570537071165, 45.48357276255561], [-73.61576494645277, 45.48355335347792], [-73.61582526321592, 45.483535293611894], [-73.61586607383859, 45.4835241832164], [-73.61597206346265, 45.48349896747691], [-73.61606969175696, 45.483476064641266]]}, "properties": {"ID_TRC": 1300114, "DEB_GCH": 4800, "FIN_GCH": 4840, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 4845, "FIN_DRT": 4847, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62661874009554, 45.478872230859714], [-73.62681482669662, 45.478833349165185], [-73.62727915958217, 45.47874220937152], [-73.62741665547813, 45.4787167319179]]}, "properties": {"ID_TRC": 1300137, "DEB_GCH": 5530, "FIN_GCH": 5548, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5545, "FIN_DRT": 5547, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62741665547813, 45.4787167319179], [-73.62755093362927, 45.47869276985949], [-73.62861112207172, 45.47849548533813], [-73.62877649502511, 45.47846306088212]]}, "properties": {"ID_TRC": 1300138, "DEB_GCH": 5550, "FIN_GCH": 5580, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5555, "FIN_DRT": 5597, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62877649502511, 45.47846306088212], [-73.6289674720206, 45.47843010854154], [-73.62966277485063, 45.478303487260014]]}, "properties": {"ID_TRC": 1300139, "DEB_GCH": 5620, "FIN_GCH": 5620, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5599, "FIN_DRT": 5635, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62483496812824, 45.48335929022853], [-73.6257102286427, 45.48240874577566], [-73.62575993981791, 45.482353435318615]]}, "properties": {"ID_TRC": 1300153, "DEB_GCH": 5180, "FIN_GCH": 5270, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Dalou", "DEB_DRT": 5185, "FIN_DRT": 5269, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Dalou "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62262126634434, 45.48093399251009], [-73.62333086123459, 45.48125852512374], [-73.6233969858403, 45.481286319932714]]}, "properties": {"ID_TRC": 1300156, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6233969858403, 45.481286319932714], [-73.62346065383936, 45.481314360766895], [-73.62412433654676, 45.48161538906196], [-73.62418399292852, 45.481642481138024]]}, "properties": {"ID_TRC": 1300157, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62418399292852, 45.481642481138024], [-73.62424716496466, 45.48167006157488], [-73.62491222697321, 45.4819709038041], [-73.62497196706123, 45.48199761901468]]}, "properties": {"ID_TRC": 1300158, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62497196706123, 45.48199761901468], [-73.62502900354292, 45.48202341391075], [-73.62569400294376, 45.482324169977396], [-73.62575993981791, 45.482353435318615]]}, "properties": {"ID_TRC": 1300159, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62575993981791, 45.482353435318615], [-73.62582401545367, 45.48238171261588], [-73.62648085345414, 45.48267751514457], [-73.62654402306778, 45.48270448128866]]}, "properties": {"ID_TRC": 1300160, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62670249775307, 45.48277605418677], [-73.62679115667565, 45.48281531081358], [-73.627282291515, 45.48303857819386], [-73.62733832742762, 45.48306268223605]]}, "properties": {"ID_TRC": 1300161, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62733832742762, 45.48306268223605], [-73.62739488007833, 45.4830881289198], [-73.62806598608768, 45.48338732624949], [-73.62813163865985, 45.4834184941596]]}, "properties": {"ID_TRC": 1300162, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6290690678829, 45.48382631897777], [-73.62919124004829, 45.48387508255484], [-73.63087946060274, 45.48464638313204], [-73.63215098485325, 45.485213676710266], [-73.63224689986747, 45.4852558217944]]}, "properties": {"ID_TRC": 1300164, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 5125, "FIN_DRT": 5289, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63224689986747, 45.4852558217944], [-73.63234343419983, 45.485298137725756], [-73.63322472248642, 45.48570559268098], [-73.63329580559694, 45.485739401772605]]}, "properties": {"ID_TRC": 1300165, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 5301, "FIN_DRT": 5347, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63329580559694, 45.485739401772605], [-73.63337440708646, 45.485775972666765], [-73.6341161831282, 45.48612562805557], [-73.6342271828665, 45.48617689169179]]}, "properties": {"ID_TRC": 1300166, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 5405, "FIN_DRT": 5407, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6342271828665, 45.48617689169179], [-73.63491834376399, 45.48652749328422], [-73.63500603152468, 45.486572206269905], [-73.63579310259315, 45.4869244967154], [-73.63587302038837, 45.48696060494678]]}, "properties": {"ID_TRC": 1300167, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 5451, "FIN_DRT": 5499, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63587302038837, 45.48696060494678], [-73.6359390892955, 45.48699037826852], [-73.6371592387492, 45.487477132947355], [-73.63727497072666, 45.4875252564653]]}, "properties": {"ID_TRC": 1300168, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 5505, "FIN_DRT": 5695, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62291569168286, 45.480617362004544], [-73.62691561307393, 45.48241785222171], [-73.62699804852923, 45.48245432405663]]}, "properties": {"ID_TRC": 1300176, "DEB_GCH": 4516, "FIN_GCH": 4800, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62699804852923, 45.48245432405663], [-73.62706580852935, 45.48248823994674], [-73.62804257039907, 45.48292514672018], [-73.6281201351559, 45.482959864452255]]}, "properties": {"ID_TRC": 1300178, "DEB_GCH": 4900, "FIN_GCH": 4980, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6281201351559, 45.482959864452255], [-73.62819424073231, 45.48299337167108], [-73.62918403794023, 45.483443116417085]]}, "properties": {"ID_TRC": 1300179, "DEB_GCH": 5000, "FIN_GCH": 5022, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63250396096136, 45.48492127186252], [-73.6325991630515, 45.484964416084004], [-73.63350564362477, 45.48536221039879], [-73.63439581339766, 45.48573712798149], [-73.63455044065711, 45.485816087164]]}, "properties": {"ID_TRC": 1300181, "DEB_GCH": 5330, "FIN_GCH": 5410, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63455044065711, 45.485816087164], [-73.63465826270259, 45.485823683036394], [-73.63480540914352, 45.48585230139514], [-73.63497657925654, 45.48591797922324], [-73.6351675496577, 45.48599534553365], [-73.63541478659035, 45.48610192469151], [-73.63563761609528, 45.486197896120096], [-73.6361462715748, 45.486440092771886], [-73.63621624990813, 45.48647470762035]]}, "properties": {"ID_TRC": 1300182, "DEB_GCH": 5412, "FIN_GCH": 5460, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63621624990813, 45.48647470762035], [-73.63628519207973, 45.4865076920168], [-73.63722090441756, 45.48696362410217]]}, "properties": {"ID_TRC": 1300183, "DEB_GCH": 5500, "FIN_GCH": 5540, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63722090441756, 45.48696362410217], [-73.6374807889252, 45.487098144928595], [-73.63760252397216, 45.48716088810758]]}, "properties": {"ID_TRC": 1300184, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63760252397216, 45.48716088810758], [-73.63772664362045, 45.48722482912498], [-73.63822541898837, 45.487477133652725]]}, "properties": {"ID_TRC": 1300185, "DEB_GCH": 5600, "FIN_GCH": 5602, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63822541898837, 45.487477133652725], [-73.63916770168832, 45.48789605204117], [-73.63924906395285, 45.48793319186684]]}, "properties": {"ID_TRC": 1300186, "DEB_GCH": 5700, "FIN_GCH": 5750, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63929144004666, 45.487952575513404], [-73.63932531782675, 45.48796812447025], [-73.64020054026139, 45.4883605040491], [-73.64027976331964, 45.48839504521003]]}, "properties": {"ID_TRC": 1300188, "DEB_GCH": 5800, "FIN_GCH": 5852, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64027976331964, 45.48839504521003], [-73.64038065142685, 45.48843902696618], [-73.641267827984, 45.488837593026716], [-73.64133031914152, 45.48886598008367]]}, "properties": {"ID_TRC": 1300190, "DEB_GCH": 5890, "FIN_GCH": 5960, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64133031914152, 45.48886598008367], [-73.64138710003019, 45.48889198148562], [-73.64226921225006, 45.48928505649992], [-73.6423667219322, 45.48932858133186]]}, "properties": {"ID_TRC": 1300191, "DEB_GCH": 6020, "FIN_GCH": 6100, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6423667219322, 45.48932858133186], [-73.64246518102712, 45.48937273568767], [-73.64332501080088, 45.48975359106011], [-73.6433928670548, 45.48978557998134]]}, "properties": {"ID_TRC": 1300192, "DEB_GCH": 6190, "FIN_GCH": 6290, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62570297585901, 45.48903694750179], [-73.62575765138526, 45.48897451252131], [-73.62713403428826, 45.48744265425374], [-73.62718065773652, 45.487390317953924]]}, "properties": {"ID_TRC": 1300200, "DEB_GCH": 4800, "FIN_GCH": 4896, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dornal", "DEB_DRT": 4801, "FIN_DRT": 4891, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dornal "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62718065773652, 45.487390317953924], [-73.62722634339866, 45.48733932907295], [-73.62871882884363, 45.48567161187616], [-73.62876043010517, 45.485624349630704]]}, "properties": {"ID_TRC": 1300201, "DEB_GCH": 4904, "FIN_GCH": 5024, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dornal", "DEB_DRT": 4909, "FIN_DRT": 5011, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dornal "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63499449426762, 45.48793326286368], [-73.63503976189618, 45.48788192806537], [-73.63541295290425, 45.48746922723758], [-73.63545856089777, 45.48741860881756]]}, "properties": {"ID_TRC": 1300208, "DEB_GCH": 5220, "FIN_GCH": 5244, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 5221, "FIN_DRT": 5227, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63545856089777, 45.48741860881756], [-73.63550072297829, 45.48737139048359], [-73.63582423798033, 45.487015262893514], [-73.63587302038837, 45.48696060494678]]}, "properties": {"ID_TRC": 1300209, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 5251, "FIN_DRT": 5253, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63621624990813, 45.48647470762035], [-73.63681363438009, 45.48581123233234], [-73.63685787764648, 45.48576344948757]]}, "properties": {"ID_TRC": 1300210, "DEB_GCH": 5344, "FIN_GCH": 5348, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 5335, "FIN_DRT": 5337, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63749860248171, 45.48506102523495], [-73.6375435581151, 45.48501049560591], [-73.63762659925243, 45.48491851524292], [-73.63766500412137, 45.484875978465084]]}, "properties": {"ID_TRC": 1300212, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 5413, "FIN_DRT": 5421, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63766500412137, 45.484875978465084], [-73.63770393207373, 45.484832835672066], [-73.63824819266266, 45.48423246285632], [-73.6382951323587, 45.484179879323754]]}, "properties": {"ID_TRC": 1300213, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 5451, "FIN_DRT": 5495, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6382951323587, 45.484179879323754], [-73.63833753024419, 45.484132462338934], [-73.63888937146118, 45.483531087382254], [-73.6389314546688, 45.483485973710415]]}, "properties": {"ID_TRC": 1300214, "DEB_GCH": 5530, "FIN_GCH": 5540, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 5531, "FIN_DRT": 5547, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62832432289706, 45.48099410077523], [-73.62839769459174, 45.4810070802738], [-73.62857712349923, 45.48108109891564], [-73.62887694252935, 45.48120389604207], [-73.6304744216276, 45.48191932946092], [-73.63054095494608, 45.481950204562885]]}, "properties": {"ID_TRC": 1300221, "DEB_GCH": 4902, "FIN_GCH": 4968, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Earnscliffe", "DEB_DRT": 4915, "FIN_DRT": 5003, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Earnscliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63064761046667, 45.481999007275725], [-73.63071207393561, 45.48202893958126], [-73.63375780704361, 45.483390882341396], [-73.63383372557061, 45.48342535448536]]}, "properties": {"ID_TRC": 1300222, "DEB_GCH": 5110, "FIN_GCH": 5256, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Earnscliffe", "DEB_DRT": 5119, "FIN_DRT": 5275, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Earnscliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63383372557061, 45.48342535448536], [-73.63390927633668, 45.48345981981105], [-73.63474008210929, 45.48383198226906], [-73.63742119966419, 45.48502720161177], [-73.63749860248171, 45.48506102523495]]}, "properties": {"ID_TRC": 1300223, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Earnscliffe", "DEB_DRT": 5305, "FIN_DRT": 5499, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Earnscliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62996134199422, 45.490945076645666], [-73.63001665639881, 45.490883449905894], [-73.63139863244302, 45.489336055260594], [-73.63144946984666, 45.48928012200586]]}, "properties": {"ID_TRC": 1300225, "DEB_GCH": 4800, "FIN_GCH": 4890, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 4825, "FIN_DRT": 4875, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63144946984666, 45.48928012200586], [-73.63149662469793, 45.48922804070546], [-73.63269235465937, 45.48789457819986], [-73.63273904320977, 45.48784015641744]]}, "properties": {"ID_TRC": 1300227, "DEB_GCH": 4900, "FIN_GCH": 4990, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 4901, "FIN_DRT": 4975, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63273904320977, 45.48784015641744], [-73.63278253982513, 45.48778945131323], [-73.63326844786366, 45.487244516255636], [-73.63332058710216, 45.48718493940354]]}, "properties": {"ID_TRC": 1300228, "DEB_GCH": 5100, "FIN_GCH": 5120, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63332058710216, 45.48718493940354], [-73.63336600304861, 45.48713326089777], [-73.63374131268718, 45.48672083295738], [-73.63378564550804, 45.48667041173319]]}, "properties": {"ID_TRC": 1300229, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 5205, "FIN_DRT": 5207, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63378564550804, 45.48667041173319], [-73.63382529132323, 45.48662552170974], [-73.6342271828665, 45.48617689169179]]}, "properties": {"ID_TRC": 1300230, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62654074965626, 45.48941250516272], [-73.62659508894781, 45.48935173914591], [-73.627972076547, 45.487813300439704], [-73.6280184318919, 45.487760229602806]]}, "properties": {"ID_TRC": 1300232, "DEB_GCH": 4812, "FIN_GCH": 4896, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Fulton", "DEB_DRT": 4805, "FIN_DRT": 4895, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Fulton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6280184318919, 45.487760229602806], [-73.62806406510504, 45.487708625179536], [-73.6295552701761, 45.48604107856635], [-73.62959820450895, 45.48599230524061]]}, "properties": {"ID_TRC": 1300233, "DEB_GCH": 4900, "FIN_GCH": 5002, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Fulton", "DEB_DRT": 4901, "FIN_DRT": 5009, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Fulton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62314928983794, 45.48692914390521], [-73.62317104613334, 45.486893091529595], [-73.6231813046186, 45.486862917192695], [-73.62318557335634, 45.48681766767663], [-73.62318229110072, 45.486769074828054], [-73.6231633597925, 45.48670375025101], [-73.6224735017498, 45.484964022194646], [-73.62245417654054, 45.4849166572517]]}, "properties": {"ID_TRC": 1300239, "DEB_GCH": 4934, "FIN_GCH": 4990, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Glencairn", "DEB_DRT": 4915, "FIN_DRT": 4975, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Glencairn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62245417654054, 45.4849166572517], [-73.62243510111088, 45.4848699302531], [-73.62198612709302, 45.48373754989783], [-73.62167336711248, 45.48295226714227], [-73.62164759482047, 45.482881572300684]]}, "properties": {"ID_TRC": 1300240, "DEB_GCH": 5030, "FIN_GCH": 5090, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Glencairn", "DEB_DRT": 5015, "FIN_DRT": 5095, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Glencairn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62678798853374, 45.484807673033195], [-73.62682728828536, 45.484763895768104], [-73.6270244349764, 45.4845482326624], [-73.62706466692309, 45.48451498045046], [-73.62712725804487, 45.48447711367804], [-73.62716275930889, 45.48445169603098], [-73.62720424436817, 45.48441250271578], [-73.62772701809979, 45.48385174630167], [-73.62808042369589, 45.483472623577], [-73.62813163865985, 45.4834184941596]]}, "properties": {"ID_TRC": 1300241, "DEB_GCH": 5192, "FIN_GCH": 5264, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Globert", "DEB_DRT": 5191, "FIN_DRT": 5255, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Globert "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62579353887523, 45.4856503983351], [-73.62571407988071, 45.48562758226004], [-73.62566838889764, 45.48561394723056], [-73.62563540487155, 45.48560113618917], [-73.62561194621284, 45.48558635952405], [-73.62559692353524, 45.48557101522459], [-73.62558526937586, 45.48555231551904], [-73.6250231421856, 45.48412801215438], [-73.62496281577107, 45.48397416826963]]}, "properties": {"ID_TRC": 1300246, "DEB_GCH": 4938, "FIN_GCH": 5026, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Iona", "DEB_DRT": 4955, "FIN_DRT": 5001, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Iona "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62818954162802, 45.49015459643721], [-73.62824569555347, 45.49009243172196], [-73.62962813336894, 45.4885497376348], [-73.62967658322863, 45.48849546606078]]}, "properties": {"ID_TRC": 1300248, "DEB_GCH": 4810, "FIN_GCH": 4898, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 4785, "FIN_DRT": 4891, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62967658322863, 45.48849546606078], [-73.62972464755566, 45.48844064622283], [-73.630913975906, 45.4871113491587], [-73.6309585408172, 45.4870537839953]]}, "properties": {"ID_TRC": 1300249, "DEB_GCH": 4900, "FIN_GCH": 5012, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 4901, "FIN_DRT": 4989, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6309585408172, 45.4870537839953], [-73.6309867266795, 45.486995174429346], [-73.6311058345929, 45.486711829148476], [-73.63113400033576, 45.48664410840351]]}, "properties": {"ID_TRC": 1300250, "DEB_GCH": 5014, "FIN_GCH": 5032, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 5151, "FIN_DRT": 5157, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63113400033576, 45.48664410840351], [-73.63116025736768, 45.48658067963167], [-73.63121538452017, 45.48644793317549], [-73.63122788972522, 45.486425780356505], [-73.63124935330825, 45.4863989378207], [-73.63126693175421, 45.48638037900071], [-73.63131187846894, 45.48633299073319], [-73.63135341984312, 45.48628495892448]]}, "properties": {"ID_TRC": 1300251, "DEB_GCH": 5160, "FIN_GCH": 5172, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 5159, "FIN_DRT": 5165, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63135341984312, 45.48628495892448], [-73.63139143617381, 45.48624083626041], [-73.63175641645604, 45.48582959668246], [-73.63180087445645, 45.48578381838075]]}, "properties": {"ID_TRC": 1300253, "DEB_GCH": 5200, "FIN_GCH": 5206, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 5201, "FIN_DRT": 5203, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63180087445645, 45.48578381838075], [-73.6318432618701, 45.48574085289468], [-73.63220176380953, 45.48531459055877], [-73.63224689986747, 45.4852558217944]]}, "properties": {"ID_TRC": 1300254, "DEB_GCH": 5210, "FIN_GCH": 5210, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63224689986747, 45.4852558217944], [-73.63250396096136, 45.48492127186252]]}, "properties": {"ID_TRC": 1300255, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63250396096136, 45.48492127186252], [-73.63254670080958, 45.484865664214375], [-73.6331572721344, 45.48417236581222], [-73.63320017102264, 45.48412577935843]]}, "properties": {"ID_TRC": 1300257, "DEB_GCH": 5320, "FIN_GCH": 5340, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63320017102264, 45.48412577935843], [-73.6332410489797, 45.48408209477443], [-73.63378555408599, 45.483478953335506], [-73.63383372557061, 45.48342535448536]]}, "properties": {"ID_TRC": 1300258, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63383372557061, 45.48342535448536], [-73.63387574233903, 45.483378955073384], [-73.63458896993626, 45.482592944192675], [-73.63464257928878, 45.48253566923754]]}, "properties": {"ID_TRC": 1300259, "DEB_GCH": 5450, "FIN_GCH": 5516, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63464257928878, 45.48253566923754], [-73.63468933841634, 45.48248607487369], [-73.63523107626995, 45.48188571938574], [-73.63527278969832, 45.48183974858316]]}, "properties": {"ID_TRC": 1300260, "DEB_GCH": 5530, "FIN_GCH": 5548, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6224650103745, 45.48228867200153], [-73.62334613566382, 45.48134409213174], [-73.6233969858403, 45.481286319932714]]}, "properties": {"ID_TRC": 1300261, "DEB_GCH": 5200, "FIN_GCH": 5268, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Jacques-Grenier", "DEB_DRT": 5205, "FIN_DRT": 5265, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Jacques-Grenier "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62733311970227, 45.48976866454657], [-73.62740401607715, 45.4897157621099], [-73.62878277518712, 45.48817335220842], [-73.62883055181386, 45.48812013186828]]}, "properties": {"ID_TRC": 1300263, "DEB_GCH": 4810, "FIN_GCH": 4894, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Jean-Brillant", "DEB_DRT": 4815, "FIN_DRT": 4895, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Jean-Brillant "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62883055181386, 45.48812013186828], [-73.62887634668283, 45.48806912443881], [-73.6303642639415, 45.486400671233405], [-73.63040826297224, 45.486349928428616]]}, "properties": {"ID_TRC": 1300264, "DEB_GCH": 4900, "FIN_GCH": 5022, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Jean-Brillant", "DEB_DRT": 4901, "FIN_DRT": 5007, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Jean-Brillant "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62901249933543, 45.49052411141343], [-73.6290682673, 45.490461017418774], [-73.63045163573535, 45.48891588238107], [-73.63050086841614, 45.48886012639689]]}, "properties": {"ID_TRC": 1300271, "DEB_GCH": 4800, "FIN_GCH": 4896, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 4801, "FIN_DRT": 4891, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63050086841614, 45.48886012639689], [-73.63054857036586, 45.48880642986165], [-73.63174746832931, 45.487468204121726], [-73.6317955168984, 45.48741304620346]]}, "properties": {"ID_TRC": 1300272, "DEB_GCH": 4900, "FIN_GCH": 5012, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 4901, "FIN_DRT": 5015, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6317955168984, 45.48741304620346], [-73.63184007681133, 45.48736091532209], [-73.63232852632513, 45.48681751125111], [-73.63237595277911, 45.486763514603894]]}, "properties": {"ID_TRC": 1300273, "DEB_GCH": 5100, "FIN_GCH": 5138, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 5101, "FIN_DRT": 5139, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63237595277911, 45.486763514603894], [-73.63242166533298, 45.48671265116125], [-73.63279442802805, 45.48629230993698], [-73.63283822842682, 45.486245840918215]]}, "properties": {"ID_TRC": 1300274, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 5207, "FIN_DRT": 5231, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63283822842682, 45.486245840918215], [-73.6328801073111, 45.486201587063135], [-73.63323793323981, 45.485804029851366], [-73.63329580559694, 45.485739401772605]]}, "properties": {"ID_TRC": 1300275, "DEB_GCH": 5280, "FIN_GCH": 5282, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 5253, "FIN_DRT": 5255, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62625931069897, 45.486977862581455], [-73.62637579031365, 45.487031146585714], [-73.62711464783503, 45.487362041795095], [-73.62718065773652, 45.487390317953924]]}, "properties": {"ID_TRC": 1300276, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62718065773652, 45.487390317953924], [-73.62724593680059, 45.48741832133553], [-73.62795648917053, 45.48773340397429], [-73.6280184318919, 45.487760229602806]]}, "properties": {"ID_TRC": 1300277, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 5145, "FIN_DRT": 5145, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6280184318919, 45.487760229602806], [-73.62808228975346, 45.487788248719916], [-73.62876623198245, 45.48809111711305], [-73.62883055181386, 45.48812013186828]]}, "properties": {"ID_TRC": 1300278, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 5205, "FIN_DRT": 5205, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62883055181386, 45.48812013186828], [-73.62889626355982, 45.48814982597457], [-73.62960112948164, 45.48846202480443], [-73.62967658322863, 45.48849546606078]]}, "properties": {"ID_TRC": 1300279, "DEB_GCH": 5250, "FIN_GCH": 5252, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 5251, "FIN_DRT": 5253, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62967658322863, 45.48849546606078], [-73.62975186441471, 45.488528988674155], [-73.63042494509531, 45.488827359532536], [-73.63050086841614, 45.48886012639689]]}, "properties": {"ID_TRC": 1300280, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63050086841614, 45.48886012639689], [-73.63057525952621, 45.48889423280708], [-73.63137996282839, 45.4892486934386], [-73.63144946984666, 45.48928012200586]]}, "properties": {"ID_TRC": 1300281, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63144946984666, 45.48928012200586], [-73.63152204295574, 45.48931314490063], [-73.63228862725173, 45.48965216407658], [-73.6323617161326, 45.48968417283774]]}, "properties": {"ID_TRC": 1300282, "DEB_GCH": 5480, "FIN_GCH": 5490, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lemieux", "DEB_DRT": 5455, "FIN_DRT": 5457, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lemieux "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62956450213377, 45.479113022537675], [-73.6304175139916, 45.47950399225001], [-73.63044744222958, 45.47951872388725], [-73.63046153278704, 45.47952642645595], [-73.63046902572825, 45.4795349194254], [-73.63047310241947, 45.479544423225]]}, "properties": {"ID_TRC": 1300298, "DEB_GCH": 4940, "FIN_GCH": 4942, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Macdonald", "DEB_DRT": 4901, "FIN_DRT": 4987, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Macdonald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63527278969832, 45.48183974858316], [-73.63540879650343, 45.48190260750844], [-73.63879192770736, 45.48342276378522], [-73.6389314546688, 45.483485973710415]]}, "properties": {"ID_TRC": 1300302, "DEB_GCH": 5304, "FIN_GCH": 5500, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Macdonald", "DEB_DRT": 5325, "FIN_DRT": 5437, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "C\u00c3\u00b4te-Saint-Luc", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Macdonald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6389314546688, 45.483485973710415], [-73.63905442127093, 45.48354186560468], [-73.64188581242298, 45.484817908629026], [-73.64201347832048, 45.484874433078026]]}, "properties": {"ID_TRC": 1300305, "DEB_GCH": 5520, "FIN_GCH": 5702, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Macdonald", "DEB_DRT": 5537, "FIN_DRT": 5675, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Hampstead", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Macdonald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64201347832048, 45.484874433078026], [-73.64213722054798, 45.484929367739134], [-73.64503835741354, 45.4862326030685], [-73.6451252421503, 45.48627167717401]]}, "properties": {"ID_TRC": 1300306, "DEB_GCH": 5900, "FIN_GCH": 6158, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Macdonald", "DEB_DRT": 5805, "FIN_DRT": 6187, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Hampstead", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Macdonald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62104577376212, 45.48483585644676], [-73.62110486758834, 45.48482455181108], [-73.62126214956861, 45.48480485649741], [-73.62132745152917, 45.48479893748281], [-73.62139307460187, 45.484795358139024], [-73.62145891383072, 45.48479402814254], [-73.62152486330515, 45.48479503804022], [-73.62159060673872, 45.48479829773399], [-73.62165603866873, 45.48480389777106], [-73.62172105369099, 45.484811747829724], [-73.62238421752708, 45.48490724200145], [-73.62245417654054, 45.4849166572517]]}, "properties": {"ID_TRC": 1300315, "DEB_GCH": 4720, "FIN_GCH": 4758, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Meridian", "DEB_DRT": 4725, "FIN_DRT": 4759, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Meridian "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62245417654054, 45.4849166572517], [-73.62252480592089, 45.484926169823254], [-73.62317804597356, 45.48501789045075], [-73.62326702018656, 45.48502877371659], [-73.62333456292137, 45.48503446027378], [-73.62340136165612, 45.48503753804161], [-73.62346646667854, 45.485038187567206], [-73.62353009063466, 45.48503721893472], [-73.62359603162523, 45.485033997695105], [-73.623659226522, 45.485029699575165], [-73.62372768821233, 45.485021346184084], [-73.62392041732859, 45.484990573100525]]}, "properties": {"ID_TRC": 1300317, "DEB_GCH": 4768, "FIN_GCH": 4790, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Meridian", "DEB_DRT": 4765, "FIN_DRT": 4787, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Meridian "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62181689408304, 45.48729033083382], [-73.62187914563393, 45.487173902476776], [-73.62194774370212, 45.48698277360023], [-73.62195255654427, 45.48696386990482], [-73.6219554737731, 45.48694649797049], [-73.6219566003589, 45.4869307478949], [-73.62195593713936, 45.48691679964629], [-73.62195390265471, 45.486902942846214], [-73.62194932029574, 45.486882159504994], [-73.62194337075246, 45.48686335705847], [-73.621922157003, 45.48681262368556], [-73.62173143216192, 45.4863970581333], [-73.62164081049308, 45.48625567800479]]}, "properties": {"ID_TRC": 1300321, "DEB_GCH": 4838, "FIN_GCH": 4850, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Mira", "DEB_DRT": 4801, "FIN_DRT": 4831, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Mira "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62164081049308, 45.48625567800479], [-73.62156707779845, 45.48615094269289], [-73.62154170991677, 45.48610307224886], [-73.62149721464868, 45.48597136934354], [-73.62106405658078, 45.4848849805824], [-73.62104577376212, 45.48483585644676]]}, "properties": {"ID_TRC": 1300323, "DEB_GCH": 4890, "FIN_GCH": 4940, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Mira", "DEB_DRT": 4875, "FIN_DRT": 4905, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Mira "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62104577376212, 45.48483585644676], [-73.6210296792291, 45.48479601369983], [-73.62065455397442, 45.4838494110169], [-73.62063753335428, 45.483812365457744], [-73.6206178223115, 45.483785574683424], [-73.62052637722381, 45.483727581415735]]}, "properties": {"ID_TRC": 1300324, "DEB_GCH": 4942, "FIN_GCH": 5050, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Mira", "DEB_DRT": 5007, "FIN_DRT": 5035, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Mira "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62816553384178, 45.484846100814195], [-73.6282881397856, 45.484896174362575], [-73.63129456178231, 45.48623716784629], [-73.63135341984312, 45.48628495892448]]}, "properties": {"ID_TRC": 1300325, "DEB_GCH": 5150, "FIN_GCH": 5252, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Mountain Sights", "DEB_DRT": 5147, "FIN_DRT": 5243, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Mountain Sights "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63135341984312, 45.48628495892448], [-73.63141529318592, 45.48633566177816], [-73.6323025777706, 45.48673141775712], [-73.63237595277911, 45.486763514603894]]}, "properties": {"ID_TRC": 1300326, "DEB_GCH": 5300, "FIN_GCH": 5342, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Mountain Sights", "DEB_DRT": 5305, "FIN_DRT": 5307, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Mountain Sights "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63237595277911, 45.486763514603894], [-73.63244950708635, 45.48679604267144], [-73.63324754824988, 45.48715211772319], [-73.63332058710216, 45.48718493940354]]}, "properties": {"ID_TRC": 1300327, "DEB_GCH": 5410, "FIN_GCH": 5438, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Mountain Sights", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Mountain Sights "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63332058710216, 45.48718493940354], [-73.63339342650889, 45.48721764249029], [-73.63492077775483, 45.48790060728009], [-73.63499449426762, 45.48793326286368]]}, "properties": {"ID_TRC": 1300328, "DEB_GCH": 5450, "FIN_GCH": 5496, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Mountain Sights", "DEB_DRT": 5475, "FIN_DRT": 5505, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Mountain Sights "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63499449426762, 45.48793326286368], [-73.63507035408917, 45.4879663954828], [-73.63624999558357, 45.48849667448771], [-73.63635374716087, 45.488544247216964]]}, "properties": {"ID_TRC": 1300329, "DEB_GCH": 5520, "FIN_GCH": 5534, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Mountain Sights", "DEB_DRT": 5515, "FIN_DRT": 5527, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Mountain Sights "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62607163524264, 45.48718633530344], [-73.62595869320845, 45.48713662937496], [-73.62518880242487, 45.48679685109413], [-73.62513320970146, 45.486771975484814]]}, "properties": {"ID_TRC": 1300359, "DEB_GCH": 4904, "FIN_GCH": 4908, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Ponsard", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Ponsard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62513320970146, 45.486771975484814], [-73.62507694762982, 45.48674729742246], [-73.62492314416828, 45.48667178151047], [-73.62477806588717, 45.48658122686254], [-73.62468642623816, 45.48651131218605], [-73.62461749294326, 45.486450101844234], [-73.62455552305317, 45.48638843416959], [-73.62449850197297, 45.48632217117911], [-73.62444018453866, 45.486241960838235], [-73.62439093680813, 45.48615931055693], [-73.62436390563894, 45.486103004247475], [-73.62393610083218, 45.48502939950887], [-73.62392041732859, 45.484990573100525]]}, "properties": {"ID_TRC": 1300360, "DEB_GCH": 4914, "FIN_GCH": 4990, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Ponsard", "DEB_DRT": 4915, "FIN_DRT": 4999, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Ponsard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62392041732859, 45.484990573100525], [-73.62390310646211, 45.48494781140409], [-73.62324980880778, 45.48330610295093], [-73.62322152979338, 45.48323219669789], [-73.62317050680123, 45.48312228692098]]}, "properties": {"ID_TRC": 1300363, "DEB_GCH": 5014, "FIN_GCH": 5090, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Ponsard", "DEB_DRT": 5001, "FIN_DRT": 5059, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Ponsard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62317050680123, 45.48312228692098], [-73.62313918701469, 45.483018911260565], [-73.62313399458988, 45.48296024125964], [-73.6231338691226, 45.48290264561153], [-73.62314752875487, 45.482828116418], [-73.62317310622298, 45.482751144561604], [-73.62320423271407, 45.482702964718975], [-73.6232268552588, 45.482674322280594], [-73.62413159143178, 45.481699885082804], [-73.62418399292852, 45.481642481138024]]}, "properties": {"ID_TRC": 1300364, "DEB_GCH": 5196, "FIN_GCH": 5276, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Ponsard", "DEB_DRT": 5205, "FIN_DRT": 5275, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Ponsard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62478579274152, 45.48862498036913], [-73.62484353636627, 45.48856163655071], [-73.62602781734303, 45.48723500568575], [-73.62607163524264, 45.48718633530344]]}, "properties": {"ID_TRC": 1300370, "DEB_GCH": 4800, "FIN_GCH": 4890, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 4815, "FIN_DRT": 4893, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62607163524264, 45.48718633530344], [-73.62625931069897, 45.486977862581455]]}, "properties": {"ID_TRC": 1300371, "DEB_GCH": 4906, "FIN_GCH": 4910, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 4895, "FIN_DRT": 4897, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62625931069897, 45.486977862581455], [-73.62631328039015, 45.48691791414096], [-73.62776073846655, 45.48530236514617], [-73.62780743489111, 45.48525123180803]]}, "properties": {"ID_TRC": 1300372, "DEB_GCH": 4912, "FIN_GCH": 5120, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 4935, "FIN_DRT": 5111, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62780743489111, 45.48525123180803], [-73.6278594680045, 45.485193902887076], [-73.62813016755706, 45.4848896921332], [-73.62816553384178, 45.484846100814195]]}, "properties": {"ID_TRC": 1300373, "DEB_GCH": 5146, "FIN_GCH": 5174, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5155, "FIN_DRT": 5185, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62816553384178, 45.484846100814195], [-73.62828234701702, 45.4847969625051], [-73.6285916919668, 45.48442444828668], [-73.62863461046305, 45.484367512149]]}, "properties": {"ID_TRC": 1300374, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5201, "FIN_DRT": 5225, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62863461046305, 45.484367512149], [-73.62867216910658, 45.48431825546925], [-73.62903360786522, 45.48387769053462], [-73.6290690678829, 45.48382631897777]]}, "properties": {"ID_TRC": 1300375, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5251, "FIN_DRT": 5295, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6290690678829, 45.48382631897777], [-73.62909765223527, 45.48378402517913], [-73.62923475952462, 45.48361891260206], [-73.62928709147329, 45.483525350146145], [-73.62930162595336, 45.483500294575805]]}, "properties": {"ID_TRC": 1300376, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62918403794023, 45.483443116417085], [-73.62923315898063, 45.48338043201134], [-73.62984947247696, 45.48269578403738], [-73.62990160491405, 45.48264975409213]]}, "properties": {"ID_TRC": 1300378, "DEB_GCH": 5300, "FIN_GCH": 5348, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62403807430596, 45.48299909504292], [-73.6249175862746, 45.48205648165829], [-73.62497196706123, 45.48199761901468]]}, "properties": {"ID_TRC": 1300392, "DEB_GCH": 5200, "FIN_GCH": 5268, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Saranac", "DEB_DRT": 5195, "FIN_DRT": 5263, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Saranac "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62562909465588, 45.48371303097915], [-73.62649497154857, 45.48276263329252], [-73.62654402306778, 45.48270448128866]]}, "properties": {"ID_TRC": 1300393, "DEB_GCH": 5180, "FIN_GCH": 5264, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Snowdon", "DEB_DRT": 5185, "FIN_DRT": 5263, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Snowdon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62769106683163, 45.48168062842171], [-73.62773388229898, 45.48163615805799], [-73.62827381397165, 45.48104780658145], [-73.62832432289706, 45.48099410077523]]}, "properties": {"ID_TRC": 1300395, "DEB_GCH": 5350, "FIN_GCH": 5388, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Snowdon", "DEB_DRT": 5361, "FIN_DRT": 5393, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Snowdon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62883711062236, 45.47992729551053], [-73.62887414401223, 45.47988387662395], [-73.62895686331257, 45.47979217009855], [-73.62907267380345, 45.479684047339596]]}, "properties": {"ID_TRC": 1300398, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Snowdon", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Snowdon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62956450213377, 45.479113022537675], [-73.6295604202492, 45.47909140519749], [-73.6295505408238, 45.47906491883718], [-73.62954821586898, 45.47904006252968], [-73.62955925789902, 45.47901398369233], [-73.62995460841398, 45.47858530825884], [-73.6299918012834, 45.478545220051544]]}, "properties": {"ID_TRC": 1300399, "DEB_GCH": 5590, "FIN_GCH": 5600, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Snowdon", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Snowdon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63086851330702, 45.49134748484466], [-73.63092680698472, 45.49128341994975], [-73.63147390517065, 45.49066588822936], [-73.6315328470842, 45.49060952764437]]}, "properties": {"ID_TRC": 1300404, "DEB_GCH": 4804, "FIN_GCH": 4830, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Saint-Kevin", "DEB_DRT": 4803, "FIN_DRT": 4825, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Saint-Kevin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6315328470842, 45.49060952764437], [-73.63158804219528, 45.490556774999014], [-73.63231668158924, 45.48973573529897], [-73.6323617161326, 45.48968417283774]]}, "properties": {"ID_TRC": 1300405, "DEB_GCH": 4832, "FIN_GCH": 4894, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Saint-Kevin", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Saint-Kevin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6323617161326, 45.48968417283774], [-73.63240771907387, 45.48963258763951], [-73.6335932040817, 45.48830056765075], [-73.63364149963581, 45.48824541834853]]}, "properties": {"ID_TRC": 1300406, "DEB_GCH": 4930, "FIN_GCH": 5020, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Saint-Kevin", "DEB_DRT": 4905, "FIN_DRT": 4907, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Saint-Kevin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62863461046305, 45.484367512149], [-73.63172827454287, 45.48575259469043], [-73.63180087445645, 45.48578381838075]]}, "properties": {"ID_TRC": 1300411, "DEB_GCH": 5120, "FIN_GCH": 5256, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Trans Island", "DEB_DRT": 5115, "FIN_DRT": 5257, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Trans Island "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63180087445645, 45.48578381838075], [-73.63187424658669, 45.48581533155851], [-73.63276321908552, 45.486212972172694], [-73.63283822842682, 45.486245840918215]]}, "properties": {"ID_TRC": 1300412, "DEB_GCH": 5300, "FIN_GCH": 5340, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Trans Island", "DEB_DRT": 5301, "FIN_DRT": 5341, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Trans Island "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63283822842682, 45.486245840918215], [-73.6329142661905, 45.48627903146226], [-73.63371040915496, 45.48663744534484], [-73.63378564550804, 45.48667041173319]]}, "properties": {"ID_TRC": 1300413, "DEB_GCH": 5400, "FIN_GCH": 5436, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Trans Island", "DEB_DRT": 5407, "FIN_DRT": 5437, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Trans Island "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63378564550804, 45.48667041173319], [-73.63386209268253, 45.48670395277906], [-73.63538278119289, 45.48738412928933], [-73.63545856089777, 45.48741860881756]]}, "properties": {"ID_TRC": 1300414, "DEB_GCH": 5454, "FIN_GCH": 5498, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Trans Island", "DEB_DRT": 5451, "FIN_DRT": 5497, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Trans Island "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63545856089777, 45.48741860881756], [-73.63553563703856, 45.48745387277214], [-73.6367152656472, 45.48798144727373], [-73.63682187639762, 45.48802823171979]]}, "properties": {"ID_TRC": 1300415, "DEB_GCH": 5500, "FIN_GCH": 5550, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Trans Island", "DEB_DRT": 5501, "FIN_DRT": 5565, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Trans Island "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61692234566495, 45.48511234792252], [-73.61704000351132, 45.48514754525665], [-73.6170905857096, 45.48516675192032], [-73.6217265143392, 45.48724929951503], [-73.62181689408304, 45.48729033083382]]}, "properties": {"ID_TRC": 1300447, "DEB_GCH": 4646, "FIN_GCH": 4912, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 4641, "FIN_DRT": 4931, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62181689408304, 45.48729033083382], [-73.62189561788988, 45.487325793452555], [-73.62466553970945, 45.488571010269986], [-73.62478579274152, 45.48862498036913]]}, "properties": {"ID_TRC": 1300448, "DEB_GCH": 4954, "FIN_GCH": 5094, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 4933, "FIN_DRT": 5091, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62478579274152, 45.48862498036913], [-73.62489961149114, 45.488676406540115], [-73.62563584292478, 45.48900677418364], [-73.62570297585901, 45.48903694750179]]}, "properties": {"ID_TRC": 1300449, "DEB_GCH": 5140, "FIN_GCH": 5160, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5145, "FIN_DRT": 5147, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62570297585901, 45.48903694750179], [-73.62576798574543, 45.48906620437581], [-73.62647570404697, 45.48938264902295], [-73.62654074965626, 45.48941250516272]]}, "properties": {"ID_TRC": 1300450, "DEB_GCH": 5180, "FIN_GCH": 5190, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5185, "FIN_DRT": 5195, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62654074965626, 45.48941250516272], [-73.6266078520557, 45.48944360797079], [-73.62727501843075, 45.48974227385011], [-73.62733311970227, 45.48976866454657]]}, "properties": {"ID_TRC": 1300451, "DEB_GCH": 5210, "FIN_GCH": 5220, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5207, "FIN_DRT": 5215, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62733311970227, 45.48976866454657], [-73.62742110940499, 45.489808706047526], [-73.62811585763204, 45.49012101522201], [-73.62818954162802, 45.49015459643721]]}, "properties": {"ID_TRC": 1300452, "DEB_GCH": 5250, "FIN_GCH": 5290, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5251, "FIN_DRT": 5299, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62818954162802, 45.49015459643721], [-73.62826976735013, 45.49019076721204], [-73.62893875193235, 45.49049221126344], [-73.62901249933543, 45.49052411141343]]}, "properties": {"ID_TRC": 1300453, "DEB_GCH": 5350, "FIN_GCH": 5360, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5301, "FIN_DRT": 5365, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62901249933543, 45.49052411141343], [-73.62908864205743, 45.49055701708514], [-73.62988502295285, 45.490911497549526], [-73.62996134199422, 45.490945076645666]]}, "properties": {"ID_TRC": 1300456, "DEB_GCH": 5414, "FIN_GCH": 5432, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5415, "FIN_DRT": 5433, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62996134199422, 45.490945076645666], [-73.63003745435164, 45.4909790889763], [-73.63080226126556, 45.49131928985009], [-73.63086851330702, 45.49134748484466]]}, "properties": {"ID_TRC": 1300457, "DEB_GCH": 5450, "FIN_GCH": 5464, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5451, "FIN_DRT": 5477, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6281201351559, 45.482959864452255], [-73.62816914484304, 45.48290736620827], [-73.62851708168436, 45.48252003260868]]}, "properties": {"ID_TRC": 1300471, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Wellsteed", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Wellsteed "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62780743489111, 45.48525123180803], [-73.62794474322268, 45.48527160965416], [-73.62796005681591, 45.48527577993364], [-73.62869924588045, 45.485597839610826], [-73.62876043010517, 45.485624349630704]]}, "properties": {"ID_TRC": 1300472, "DEB_GCH": 5146, "FIN_GCH": 5150, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 5135, "FIN_DRT": 5137, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62876043010517, 45.485624349630704], [-73.62881912781322, 45.485650350409564], [-73.62953694846125, 45.48596586504072], [-73.62959820450895, 45.48599230524061]]}, "properties": {"ID_TRC": 1300473, "DEB_GCH": 5152, "FIN_GCH": 5196, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 5139, "FIN_DRT": 5177, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62959820450895, 45.48599230524061], [-73.62966221792075, 45.4860203487273], [-73.63034910351419, 45.48632392427222], [-73.63040826297224, 45.486349928428616]]}, "properties": {"ID_TRC": 1300474, "DEB_GCH": 5198, "FIN_GCH": 5242, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 5215, "FIN_DRT": 5217, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63040826297224, 45.486349928428616], [-73.63046941302767, 45.48637742289973], [-73.6309910818136, 45.486610478454025], [-73.63102694033621, 45.48662132950994], [-73.6310603118718, 45.48662939073703], [-73.63113400033576, 45.48664410840351]]}, "properties": {"ID_TRC": 1300475, "DEB_GCH": 5244, "FIN_GCH": 5262, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 5251, "FIN_DRT": 5269, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6309585408172, 45.4870537839953], [-73.63103618652099, 45.48707368187227], [-73.63172436755801, 45.48738111716664], [-73.6317955168984, 45.48741304620346]]}, "properties": {"ID_TRC": 1300476, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6317955168984, 45.48741304620346], [-73.63186781571767, 45.48744574683611], [-73.63266777719257, 45.487808573196936], [-73.63273904320977, 45.48784015641744]]}, "properties": {"ID_TRC": 1300477, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 5401, "FIN_DRT": 5403, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63273904320977, 45.48784015641744], [-73.63281228182264, 45.48787275052583], [-73.63357083444029, 45.48821177052037], [-73.63364149963581, 45.48824541834853]]}, "properties": {"ID_TRC": 1300478, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63364149963581, 45.48824541834853], [-73.63371186653005, 45.4882793704047], [-73.63570195885079, 45.48917641581772], [-73.63580855256342, 45.4892212966975]]}, "properties": {"ID_TRC": 1300479, "DEB_GCH": 5400, "FIN_GCH": 5500, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Westbury", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Westbury "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62892067097489, 45.48376715160451], [-73.62894681803117, 45.48372515776809], [-73.62905429110809, 45.48359689335974], [-73.629160983298, 45.48347077698821], [-73.62918403794023, 45.483443116417085]]}, "properties": {"ID_TRC": 1300493, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62670249775307, 45.48277605418677], [-73.6267370663041, 45.48273779666769], [-73.62699804852923, 45.48245432405663]]}, "properties": {"ID_TRC": 1300494, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Snowdon", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Rue Snowdon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6342271828665, 45.48617689169179], [-73.63450135495661, 45.48587211402938], [-73.63455044065711, 45.485816087164]]}, "properties": {"ID_TRC": 1300509, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "\u00c3\u2030douard-Montpetit", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Boulevard \u00c3\u2030douard-Montpetit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62361765537732, 45.47985959049818], [-73.6236894611941, 45.47979997508393], [-73.62374729625456, 45.479759685470746], [-73.62392186576629, 45.47964340474264], [-73.62402522884192, 45.479580117245064], [-73.62411050304536, 45.47953332280333], [-73.62418941638956, 45.47949309532125], [-73.6244344708058, 45.47938078668706], [-73.624506991112, 45.47935010994873], [-73.62460258644998, 45.47932013304751]]}, "properties": {"ID_TRC": 1300511, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5351, "FIN_DRT": 5415, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62460258644998, 45.47932013304751], [-73.6247234448042, 45.4792821988098], [-73.62479387135348, 45.4792589935784], [-73.6248586761703, 45.47924145403509], [-73.62500888140393, 45.47920665239955], [-73.62512942040759, 45.479183042517825], [-73.625885585962, 45.47904352144631], [-73.62608065538065, 45.478962981698956]]}, "properties": {"ID_TRC": 1300512, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5451, "FIN_DRT": 5451, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63043707448837, 45.47964267972126], [-73.63043633068416, 45.47963037584097], [-73.63043836722443, 45.47961717366324], [-73.6304428749534, 45.47960665335635], [-73.63045680131617, 45.47958762189044], [-73.63046854540688, 45.47956791960497], [-73.63047170051112, 45.47955695339295], [-73.63047310241947, 45.479544423225]]}, "properties": {"ID_TRC": 1301105, "DEB_GCH": 4978, "FIN_GCH": 4978, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Aumont", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Aumont "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63124889020376, 45.471233787370714], [-73.63132098086894, 45.47126592897539], [-73.63398668412066, 45.47244777764457], [-73.6340656783345, 45.47248393240739]]}, "properties": {"ID_TRC": 1310015, "DEB_GCH": 4530, "FIN_GCH": 4680, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Beaconsfield", "DEB_DRT": 4505, "FIN_DRT": 4697, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Beaconsfield "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6340656783345, 45.47248393240739], [-73.63413558781734, 45.472514738064696], [-73.6384370944597, 45.474421696890495], [-73.63851145284407, 45.474455197609686]]}, "properties": {"ID_TRC": 1310016, "DEB_GCH": 4800, "FIN_GCH": 5090, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Beaconsfield", "DEB_DRT": 4831, "FIN_DRT": 5091, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Beaconsfield "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63851145284407, 45.474455197609686], [-73.63858674834512, 45.4744891005], [-73.64103867464203, 45.475576999825904], [-73.64109455229122, 45.47560446885008], [-73.64118683687379, 45.475652674379354]]}, "properties": {"ID_TRC": 1310017, "DEB_GCH": 5100, "FIN_GCH": 5280, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Beaconsfield", "DEB_DRT": 5105, "FIN_DRT": 5285, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Beaconsfield "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62058113573377, 45.47805845430051], [-73.6206536576512, 45.47809073802066], [-73.62262438284432, 45.47897822408226], [-73.6235310432674, 45.4793897767931], [-73.62360169395748, 45.47942047805218], [-73.62362967638914, 45.479431067087276], [-73.62365712293207, 45.479437966873846], [-73.62371014132009, 45.47944093565191]]}, "properties": {"ID_TRC": 1310064, "DEB_GCH": 4322, "FIN_GCH": 4454, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 4311, "FIN_DRT": 4455, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62280207688194, 45.48056395232799], [-73.6233899990714, 45.47988093309559], [-73.62345734852155, 45.4798274593709]]}, "properties": {"ID_TRC": 1310069, "DEB_GCH": 5300, "FIN_GCH": 5300, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62345734852155, 45.4798274593709], [-73.62355304041934, 45.4797514362889], [-73.62360569926696, 45.479708272611134], [-73.6237106207928, 45.47963373450327], [-73.62384305154363, 45.479546567272216], [-73.6239668611791, 45.47947371838132], [-73.62406170537126, 45.47942294908891], [-73.62411724616533, 45.479395260757485], [-73.62419091480106, 45.47936123666685], [-73.62439421230061, 45.479272634079635], [-73.62452478535077, 45.479224897114065]]}, "properties": {"ID_TRC": 1310070, "DEB_GCH": 5360, "FIN_GCH": 5360, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62452478535077, 45.479224897114065], [-73.6244837101875, 45.47917482828932], [-73.62446871384962, 45.479120308738416], [-73.62445498029209, 45.47901629128301], [-73.62445328518538, 45.47896517687886], [-73.62445541360272, 45.478924350082124], [-73.6244639623962, 45.47886648151324], [-73.62446921129089, 45.47883145465297]]}, "properties": {"ID_TRC": 1310072, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62452478535077, 45.479224897114065], [-73.62463345969758, 45.47918915545655], [-73.62470388377028, 45.47916729870344], [-73.62492609022172, 45.479108295905526], [-73.62505628703725, 45.47908184371988]]}, "properties": {"ID_TRC": 1310074, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62505628703725, 45.47908184371988], [-73.62511535234863, 45.4790706459105], [-73.62584220262055, 45.47893953705275], [-73.62608065538065, 45.478962981698956]]}, "properties": {"ID_TRC": 1310077, "DEB_GCH": 5486, "FIN_GCH": 5500, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62966277485063, 45.478303487260014], [-73.63007259046186, 45.478226455607356]]}, "properties": {"ID_TRC": 1310082, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5655, "FIN_DRT": 5655, "ARR_DRT": "N/A", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63007259046186, 45.478226455607356], [-73.63133347978686, 45.47799414429893]]}, "properties": {"ID_TRC": 1310083, "DEB_GCH": 5650, "FIN_GCH": 5652, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5659, "FIN_DRT": 5725, "ARR_DRT": "N/A", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63262293991339, 45.47773892617982], [-73.63283535660126, 45.477663565300944], [-73.63374033589095, 45.4773444293471], [-73.63381108848668, 45.47732110928485]]}, "properties": {"ID_TRC": 1310085, "DEB_GCH": 5770, "FIN_GCH": 5780, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5761, "FIN_DRT": 5763, "ARR_DRT": "N/A", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63381108848668, 45.47732110928485], [-73.63392956771881, 45.477283462105035], [-73.63472766113014, 45.47705007056093], [-73.6348288525021, 45.477023079929]]}, "properties": {"ID_TRC": 1310086, "DEB_GCH": 5802, "FIN_GCH": 5830, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5765, "FIN_DRT": 5777, "ARR_DRT": "N/A", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6348288525021, 45.477023079929], [-73.63493599946155, 45.47699438865981], [-73.63535557229898, 45.47690418424043], [-73.63552217784778, 45.47687497832506], [-73.63569989065064, 45.47685258701266], [-73.63595257606912, 45.47682435484402], [-73.63653657227388, 45.47678998870803]]}, "properties": {"ID_TRC": 1310087, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5779, "FIN_DRT": 5785, "ARR_DRT": "N/A", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6394457419518, 45.476658858023114], [-73.63960356561851, 45.47664131506972], [-73.6396541574568, 45.47662181472797], [-73.6397053749276, 45.47659916368328], [-73.63978250521019, 45.476560192323674], [-73.63987806069753, 45.47650625908648], [-73.63992504400251, 45.47647803362469], [-73.64009368294515, 45.47637010485757], [-73.64031487718356, 45.476226563951236], [-73.64038220558987, 45.47618084794542]]}, "properties": {"ID_TRC": 1310089, "DEB_GCH": 6060, "FIN_GCH": 6090, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 6001, "FIN_DRT": 6095, "ARR_DRT": "N/A", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64038220558987, 45.47618084794542], [-73.64043747201278, 45.476143079333745], [-73.64069320303695, 45.4759793246946], [-73.64105554374682, 45.475741847012095], [-73.64118683687379, 45.475652674379354]]}, "properties": {"ID_TRC": 1310090, "DEB_GCH": 6108, "FIN_GCH": 6142, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 6097, "FIN_DRT": 6151, "ARR_DRT": "N/A", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64118683687379, 45.475652674379354], [-73.64124491107789, 45.475613732326366], [-73.64206770617355, 45.475100204978794]]}, "properties": {"ID_TRC": 1310091, "DEB_GCH": 6150, "FIN_GCH": 6170, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 6153, "FIN_DRT": 6191, "ARR_DRT": "N/A", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64206770617355, 45.475100204978794], [-73.64217108584405, 45.47502747666139], [-73.64293127473078, 45.474565234193854]]}, "properties": {"ID_TRC": 1310092, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 6201, "FIN_DRT": 6211, "ARR_DRT": "N/A", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62188443640109, 45.48008638770529], [-73.62210481047545, 45.480218079321], [-73.62240490016526, 45.4803766863635], [-73.62261497745068, 45.48047905347159], [-73.62280207688194, 45.48056395232799]]}, "properties": {"ID_TRC": 1310120, "DEB_GCH": 4434, "FIN_GCH": 4436, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62552110407125, 45.47262363330941], [-73.62560658915712, 45.47266167489386], [-73.62864346247406, 45.47402250619676], [-73.62871635499909, 45.47405423684623]]}, "properties": {"ID_TRC": 1310124, "DEB_GCH": 4326, "FIN_GCH": 4490, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Draper", "DEB_DRT": 4329, "FIN_DRT": 4487, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Draper "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62871635499909, 45.47405423684623], [-73.62879056724343, 45.474087945625854], [-73.63109372377725, 45.4751207001413], [-73.63114917463973, 45.47514844447657], [-73.63120199297109, 45.47517835166741], [-73.63135244224183, 45.47527303190954], [-73.63141563421988, 45.47531768591967], [-73.63147608132425, 45.47536509613709]]}, "properties": {"ID_TRC": 1310125, "DEB_GCH": 4524, "FIN_GCH": 4630, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Draper", "DEB_DRT": 4525, "FIN_DRT": 4667, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Draper "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63147608132425, 45.47536509613709], [-73.63160595181901, 45.47545326683405], [-73.63183266824976, 45.47558898562006], [-73.63188918241785, 45.475619878057536], [-73.6319485402574, 45.47564887727763], [-73.6346678009638, 45.47685575548254], [-73.63468945498411, 45.476866708987636], [-73.6347213556167, 45.47688323035672], [-73.63475452935927, 45.47690271971073], [-73.63478972474604, 45.476929316137245], [-73.6348288525021, 45.477023079929]]}, "properties": {"ID_TRC": 1310126, "DEB_GCH": 4850, "FIN_GCH": 4860, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Draper", "DEB_DRT": 4801, "FIN_DRT": 4949, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Draper "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6189704449607, 45.47722719076414], [-73.61896898214206, 45.47720463581939], [-73.61897255047377, 45.477181408172925], [-73.61897874374608, 45.47716637292513], [-73.61898715475381, 45.4771525951529], [-73.61900230797222, 45.4771340407164], [-73.6198914283749, 45.47616622175565], [-73.6199512381929, 45.4761005911408]]}, "properties": {"ID_TRC": 1310132, "DEB_GCH": 5390, "FIN_GCH": 5472, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Duquette", "DEB_DRT": 5395, "FIN_DRT": 5465, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Duquette "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6211269332372, 45.477460099449104], [-73.6212059564126, 45.477494847133045], [-73.62126836598833, 45.47752168879716], [-73.62369617914824, 45.478626904313764], [-73.62376682779151, 45.47865706556886], [-73.62385170966634, 45.478693703069304]]}, "properties": {"ID_TRC": 1310133, "DEB_GCH": 4304, "FIN_GCH": 4450, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Earnscliffe", "DEB_DRT": 4319, "FIN_DRT": 4455, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Earnscliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62385170966634, 45.478693703069304], [-73.62393653364862, 45.478730226063725], [-73.62421456788424, 45.47885825977677], [-73.62423838196143, 45.4788789357558], [-73.62424900001146, 45.47890121656349]]}, "properties": {"ID_TRC": 1310134, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Earnscliffe", "DEB_DRT": 4457, "FIN_DRT": 4469, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Earnscliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62446921129089, 45.47883145465297], [-73.62456840870092, 45.47886112582759], [-73.62460224644434, 45.47887236872763], [-73.6246393924669, 45.478886793240875], [-73.624825573209, 45.47897045926842], [-73.62498023836515, 45.47904028608861], [-73.62505628703725, 45.47908184371988]]}, "properties": {"ID_TRC": 1310135, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Earnscliffe", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Earnscliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63740170325903, 45.47568986885107], [-73.63744459652536, 45.47564257660966], [-73.63790626282218, 45.475124917899514], [-73.6379498395869, 45.47507828377675]]}, "properties": {"ID_TRC": 1310138, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Fielding", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Fielding "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6379498395869, 45.47507828377675], [-73.6379919132678, 45.47503284105116], [-73.63846894352332, 45.47450337232174], [-73.63851145284407, 45.474455197609686]]}, "properties": {"ID_TRC": 1310139, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Fielding", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Fielding "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63851145284407, 45.474455197609686], [-73.63855394899645, 45.47440697633025], [-73.6390540067106, 45.47385101916893], [-73.63910913675196, 45.473788038293016]]}, "properties": {"ID_TRC": 1310140, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Fielding", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Fielding "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63910913675196, 45.473788038293016], [-73.63916362565931, 45.47372597466577], [-73.63966198975935, 45.473172446653194], [-73.6397045665833, 45.47312114218252]]}, "properties": {"ID_TRC": 1310141, "DEB_GCH": 6210, "FIN_GCH": 6212, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Fielding", "DEB_DRT": 6205, "FIN_DRT": 6207, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Fielding "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6397045665833, 45.47312114218252], [-73.63975107588054, 45.47306425540279], [-73.63979890371147, 45.47299472187838], [-73.63981582220079, 45.47296806320125], [-73.63986586202718, 45.472854520106544], [-73.639879158565, 45.472813556923626], [-73.6398910583611, 45.472762426043836], [-73.63990134100169, 45.47269725816649], [-73.63990355423192, 45.472653878514194], [-73.63989192107714, 45.472372913906256], [-73.63988982360036, 45.472348727438046], [-73.63988903056921, 45.47228402304433], [-73.63989326254443, 45.47216099694989], [-73.63990496013875, 45.47207089906927], [-73.63991807800757, 45.47200050814174], [-73.63993342230775, 45.47193461417425], [-73.63995696374265, 45.47185611093903], [-73.6399945980539, 45.47176031177036], [-73.64002853465658, 45.47167981656179]]}, "properties": {"ID_TRC": 1310142, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Fielding", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Fielding "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62385170966634, 45.478693703069304], [-73.62389835003086, 45.47863811416377], [-73.62430954386883, 45.47817780131062], [-73.62437452251514, 45.4781063081482]]}, "properties": {"ID_TRC": 1310153, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Guillaume-Couture", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Guillaume-Couture "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61739674391393, 45.474943782661285], [-73.61746994855511, 45.47497596468601], [-73.61903269887534, 45.47568394499587], [-73.61909455936203, 45.47571210557991]]}, "properties": {"ID_TRC": 1310155, "DEB_GCH": 4040, "FIN_GCH": 4098, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Girouard", "DEB_DRT": 4085, "FIN_DRT": 4089, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Girouard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61909455936203, 45.47571210557991], [-73.61916480850334, 45.475744010867814], [-73.61988806453594, 45.47607245219748], [-73.6199512381929, 45.4761005911408]]}, "properties": {"ID_TRC": 1310156, "DEB_GCH": 4110, "FIN_GCH": 4168, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Girouard", "DEB_DRT": 4115, "FIN_DRT": 4141, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Girouard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6199512381929, 45.4761005911408], [-73.62001816317218, 45.47613036113022], [-73.62067701468109, 45.47642952512312], [-73.62080372850124, 45.4764867350775]]}, "properties": {"ID_TRC": 1310157, "DEB_GCH": 4170, "FIN_GCH": 4224, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Girouard", "DEB_DRT": 4175, "FIN_DRT": 4251, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Girouard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62080372850124, 45.4764867350775], [-73.62087681333539, 45.47651921738567], [-73.62157949647089, 45.47683668821971], [-73.62166129957154, 45.47687474789561]]}, "properties": {"ID_TRC": 1310158, "DEB_GCH": 4226, "FIN_GCH": 4260, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Girouard", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Girouard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62166129957154, 45.47687474789561], [-73.62172850776572, 45.47690600447465], [-73.62429833876286, 45.478071891388836], [-73.62437452251514, 45.4781063081482]]}, "properties": {"ID_TRC": 1310159, "DEB_GCH": 4310, "FIN_GCH": 4476, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Girouard", "DEB_DRT": 4315, "FIN_DRT": 4455, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Girouard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62437452251514, 45.4781063081482], [-73.62451431002616, 45.478170198870075], [-73.62478393543883, 45.478294635363554], [-73.62486529395527, 45.47833083346227]]}, "properties": {"ID_TRC": 1310160, "DEB_GCH": 4478, "FIN_GCH": 4492, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Girouard", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Girouard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62486529395527, 45.47833083346227], [-73.62500887772572, 45.478393742192836], [-73.62585544973332, 45.47877645445519], [-73.6260312079769, 45.478865354063274], [-73.62608065538065, 45.478962981698956]]}, "properties": {"ID_TRC": 1310161, "DEB_GCH": 4500, "FIN_GCH": 4540, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Girouard", "DEB_DRT": 4545, "FIN_DRT": 4545, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Girouard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63456732120774, 45.471777780763986], [-73.6346532910151, 45.47182639857519], [-73.63903372875734, 45.47375583074293], [-73.63910913675196, 45.473788038293016]]}, "properties": {"ID_TRC": 1310174, "DEB_GCH": 4850, "FIN_GCH": 5090, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "Grand", "DEB_DRT": 4801, "FIN_DRT": 5091, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard Grand "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63910913675196, 45.473788038293016], [-73.63918410868071, 45.4738187330056], [-73.64190909580772, 45.47501094312108], [-73.64196908862988, 45.475038766546724], [-73.64206770617355, 45.475100204978794]]}, "properties": {"ID_TRC": 1310175, "DEB_GCH": 5110, "FIN_GCH": 5252, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "Grand", "DEB_DRT": 5105, "FIN_DRT": 5277, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard Grand "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61833698772303, 45.47653433697749], [-73.61838881986468, 45.47648114593938], [-73.61903605634552, 45.47577537498907], [-73.61909455936203, 45.47571210557991]]}, "properties": {"ID_TRC": 1310176, "DEB_GCH": 5408, "FIN_GCH": 5458, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Grovehill", "DEB_DRT": 5409, "FIN_DRT": 5459, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Grovehill "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63002633551204, 45.47259875219709], [-73.63010317300996, 45.47263144391545], [-73.63276342940351, 45.47381332682779], [-73.63284080632987, 45.47384677014317]]}, "properties": {"ID_TRC": 1310180, "DEB_GCH": 4530, "FIN_GCH": 4636, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Hampton", "DEB_DRT": 4535, "FIN_DRT": 4687, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Hampton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63296211973096, 45.473715501843195], [-73.63303598148981, 45.473748034423366], [-73.63732129855126, 45.47565505393451], [-73.63740170325903, 45.47568986885107]]}, "properties": {"ID_TRC": 1310181, "DEB_GCH": 4800, "FIN_GCH": 5080, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Hampton", "DEB_DRT": 4801, "FIN_DRT": 5095, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Hampton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63740170325903, 45.47568986885107], [-73.63747633416666, 45.47572218256021], [-73.63911231116799, 45.476452478325996], [-73.63915625384566, 45.476474653279574], [-73.63923685756387, 45.47651793174517], [-73.63933024596027, 45.47656902413115], [-73.6394457419518, 45.476658858023114]]}, "properties": {"ID_TRC": 1310182, "DEB_GCH": 5140, "FIN_GCH": 5240, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Hampton", "DEB_DRT": 5101, "FIN_DRT": 5191, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Hampton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61954117438079, 45.47257284456314], [-73.61961117046877, 45.47260169510029], [-73.62373209568882, 45.47445360085361], [-73.6238058422581, 45.474486534330666]]}, "properties": {"ID_TRC": 1310184, "DEB_GCH": 4000, "FIN_GCH": 4240, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Harvard", "DEB_DRT": 4001, "FIN_DRT": 4241, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Harvard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6238058422581, 45.474486534330666], [-73.62389197457291, 45.474525152161874], [-73.62695383591011, 45.47589994982057], [-73.62703095860084, 45.475935005144]]}, "properties": {"ID_TRC": 1310185, "DEB_GCH": 4310, "FIN_GCH": 4480, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Harvard", "DEB_DRT": 4309, "FIN_DRT": 4473, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Harvard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62981868536778, 45.47720972874332], [-73.62989328874981, 45.47724429637238], [-73.63116783981899, 45.47782288001681], [-73.63121259655695, 45.47784485776993], [-73.6312484941096, 45.47786949978381], [-73.63129122646514, 45.4779132430825], [-73.63133347978686, 45.47799414429893]]}, "properties": {"ID_TRC": 1310187, "DEB_GCH": 4800, "FIN_GCH": 4858, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Harvard", "DEB_DRT": 4805, "FIN_DRT": 4865, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Harvard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63069718246052, 45.47185328144743], [-73.6307714376875, 45.47188643459755], [-73.63343716471103, 45.473070815734026], [-73.63351037058402, 45.47310376810636]]}, "properties": {"ID_TRC": 1310191, "DEB_GCH": 4508, "FIN_GCH": 4690, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Hingston", "DEB_DRT": 4515, "FIN_DRT": 4677, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Hingston "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63351037058402, 45.47310376810636], [-73.63358511889048, 45.47313732782476], [-73.63787294113109, 45.475044773838526], [-73.6379498395869, 45.47507828377675]]}, "properties": {"ID_TRC": 1310192, "DEB_GCH": 4820, "FIN_GCH": 5080, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Hingston", "DEB_DRT": 4995, "FIN_DRT": 5095, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Hingston "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6379498395869, 45.47507828377675], [-73.63802660300581, 45.47511145345888], [-73.64022750477557, 45.47609159111287], [-73.64028612850836, 45.47612031694515], [-73.64038220558987, 45.47618084794542]]}, "properties": {"ID_TRC": 1310193, "DEB_GCH": 5100, "FIN_GCH": 5240, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Hingston", "DEB_DRT": 5101, "FIN_DRT": 5251, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Hingston "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6366485151868, 45.47178336368164], [-73.6367532108743, 45.47182651365413], [-73.63962125089849, 45.47307971314898], [-73.6397045665833, 45.47312114218252]]}, "properties": {"ID_TRC": 1310202, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Kensington", "DEB_DRT": 4887, "FIN_DRT": 5091, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Kensington "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6397045665833, 45.47312114218252], [-73.63978105899164, 45.473158801943825], [-73.64283776688129, 45.474499792764306], [-73.64293127473078, 45.474565234193854]]}, "properties": {"ID_TRC": 1310203, "DEB_GCH": 5300, "FIN_GCH": 5344, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Kensington", "DEB_DRT": 5101, "FIN_DRT": 5275, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Kensington "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61848952915582, 45.47373720950256], [-73.61855763049121, 45.473769018644475], [-73.62265224668482, 45.47562773980971], [-73.62274510550036, 45.475671363200235]]}, "properties": {"ID_TRC": 1310214, "DEB_GCH": 4000, "FIN_GCH": 4250, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Marcil", "DEB_DRT": 4021, "FIN_DRT": 4251, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Marcil "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62274510550036, 45.475671363200235], [-73.62283537126994, 45.47571483655429], [-73.62587049085828, 45.47709716112542], [-73.62594638829493, 45.47713194114601]]}, "properties": {"ID_TRC": 1310215, "DEB_GCH": 4308, "FIN_GCH": 4484, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Marcil", "DEB_DRT": 4345, "FIN_DRT": 4495, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Marcil "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62594638829493, 45.47713194114601], [-73.62602109001246, 45.477166200073846], [-73.6285799846624, 45.47832737453941], [-73.628635599324, 45.47835641814913], [-73.62877649502511, 45.47846306088212]]}, "properties": {"ID_TRC": 1310216, "DEB_GCH": 4502, "FIN_GCH": 4650, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Marcil", "DEB_DRT": 4503, "FIN_DRT": 4617, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Marcil "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62063524753218, 45.471365394167904], [-73.62071237960264, 45.47139948351394], [-73.6248153990298, 45.47323967035032], [-73.62491712503376, 45.47328373987661]]}, "properties": {"ID_TRC": 1310220, "DEB_GCH": 4000, "FIN_GCH": 4250, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Melrose", "DEB_DRT": 4005, "FIN_DRT": 4255, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Melrose "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62491712503376, 45.47328373987661], [-73.62500927242492, 45.47332369219335], [-73.62804670231667, 45.47468786825587], [-73.62812182646228, 45.4747209184305]]}, "properties": {"ID_TRC": 1310221, "DEB_GCH": 4312, "FIN_GCH": 4492, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Melrose", "DEB_DRT": 4315, "FIN_DRT": 4489, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Melrose "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62812182646228, 45.4747209184305], [-73.62819792496774, 45.474754383866475], [-73.62956060324208, 45.47536173451576], [-73.63085645887206, 45.475941082325235], [-73.63093082200066, 45.47597414523979]]}, "properties": {"ID_TRC": 1310222, "DEB_GCH": 4506, "FIN_GCH": 4662, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Melrose", "DEB_DRT": 4501, "FIN_DRT": 4659, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Melrose "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63093082200066, 45.47597414523979], [-73.63100420439905, 45.47600660835743], [-73.63364120015908, 45.47718129735454], [-73.63368303010078, 45.47720293674925], [-73.63371377409082, 45.477221079477225], [-73.63374262119744, 45.477240124264966], [-73.63381108848668, 45.47732110928485]]}, "properties": {"ID_TRC": 1310223, "DEB_GCH": 4802, "FIN_GCH": 4930, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Melrose", "DEB_DRT": 4801, "FIN_DRT": 4911, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Melrose "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61960047533653, 45.479179326780574], [-73.61972751948063, 45.478974007689], [-73.61974003840797, 45.47895698566132], [-73.62014457273857, 45.478511159398174], [-73.62020823101385, 45.478449992818085]]}, "properties": {"ID_TRC": 1310224, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62020823101385, 45.478449992818085], [-73.62031612014621, 45.47834047583766]]}, "properties": {"ID_TRC": 1310227, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62058113573377, 45.47805845430051], [-73.62062836738238, 45.47800626099768], [-73.62066709619765, 45.4779611332576], [-73.62104560405011, 45.477549283121135], [-73.6211269332372, 45.477460099449104]]}, "properties": {"ID_TRC": 1310228, "DEB_GCH": 5384, "FIN_GCH": 5444, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 5401, "FIN_DRT": 5435, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6211269332372, 45.477460099449104], [-73.62120275009977, 45.47737704907572], [-73.62159967037913, 45.476945558829485], [-73.62166129957154, 45.47687474789561]]}, "properties": {"ID_TRC": 1310229, "DEB_GCH": 5446, "FIN_GCH": 5458, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 5451, "FIN_DRT": 5487, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62166129957154, 45.47687474789561], [-73.62172332847715, 45.476803417514795], [-73.622156013789, 45.47632524719004], [-73.62220052069786, 45.47627606072506]]}, "properties": {"ID_TRC": 1310230, "DEB_GCH": 5500, "FIN_GCH": 5528, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 5501, "FIN_DRT": 5549, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62220052069786, 45.47627606072506], [-73.62224389182262, 45.476227713665565], [-73.62268750712138, 45.47573578396288], [-73.62274510550036, 45.475671363200235]]}, "properties": {"ID_TRC": 1310231, "DEB_GCH": 5550, "FIN_GCH": 5582, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 5555, "FIN_DRT": 5595, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62274510550036, 45.475671363200235], [-73.6228011694149, 45.475608501243364], [-73.6232460464802, 45.47511908775912], [-73.62328116177544, 45.47507950651885]]}, "properties": {"ID_TRC": 1310232, "DEB_GCH": 5600, "FIN_GCH": 5632, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 5601, "FIN_DRT": 5649, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62328116177544, 45.47507950651885], [-73.623317292905, 45.47503855662763], [-73.62377067291838, 45.47453410306692], [-73.6238058422581, 45.474486534330666]]}, "properties": {"ID_TRC": 1310233, "DEB_GCH": 5652, "FIN_GCH": 5690, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 5655, "FIN_DRT": 5683, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6238058422581, 45.474486534330666], [-73.62384041346148, 45.474440974241546], [-73.62428277403735, 45.473967038301296], [-73.62433684623022, 45.47390973114867]]}, "properties": {"ID_TRC": 1310234, "DEB_GCH": 5700, "FIN_GCH": 5732, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 5701, "FIN_DRT": 5737, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62491712503376, 45.47328373987661], [-73.62496949697831, 45.473226452723786], [-73.62547716357918, 45.47267164932576], [-73.62552110407125, 45.47262363330941]]}, "properties": {"ID_TRC": 1310236, "DEB_GCH": 5800, "FIN_GCH": 5848, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 5801, "FIN_DRT": 5845, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62552110407125, 45.47262363330941], [-73.62556378098036, 45.47257658825083], [-73.62615602743618, 45.47192364493168]]}, "properties": {"ID_TRC": 1310237, "DEB_GCH": 5850, "FIN_GCH": 5940, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 5855, "FIN_DRT": 5925, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62615602743618, 45.47192364493168], [-73.62624401339863, 45.471826867156516]]}, "properties": {"ID_TRC": 1310238, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6163126351416, 45.47615033627399], [-73.61640083903491, 45.476053920471244], [-73.61681428901883, 45.475592822004714], [-73.61686200844713, 45.47554254956224]]}, "properties": {"ID_TRC": 1310261, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61686200844713, 45.47554254956224], [-73.61690692153246, 45.47549283450256], [-73.61733582980891, 45.47501164988212], [-73.61739674391393, 45.474943782661285]]}, "properties": {"ID_TRC": 1310262, "DEB_GCH": 5456, "FIN_GCH": 5494, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 5435, "FIN_DRT": 5475, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61739674391393, 45.474943782661285], [-73.61745866397284, 45.47487617352885], [-73.61789357937393, 45.47439651032548], [-73.6179350368671, 45.47435132645097]]}, "properties": {"ID_TRC": 1310263, "DEB_GCH": 5500, "FIN_GCH": 5542, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6179350368671, 45.47435132645097], [-73.61797641676611, 45.474306071553244], [-73.61844963069193, 45.47378208984273], [-73.61848952915582, 45.47373720950256]]}, "properties": {"ID_TRC": 1310264, "DEB_GCH": 5552, "FIN_GCH": 5590, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 5551, "FIN_DRT": 5591, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61848952915582, 45.47373720950256], [-73.61852909297998, 45.47369300393119], [-73.61901219864477, 45.473158325001144]]}, "properties": {"ID_TRC": 1310265, "DEB_GCH": 5604, "FIN_GCH": 5636, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61901219864477, 45.473158325001144], [-73.61905113316578, 45.47311524291015], [-73.61949991544806, 45.47262080013351], [-73.61954117438079, 45.47257284456314]]}, "properties": {"ID_TRC": 1310266, "DEB_GCH": 5668, "FIN_GCH": 5670, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 5669, "FIN_DRT": 5671, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61954117438079, 45.47257284456314], [-73.61958178770067, 45.472525591309704], [-73.62002572794026, 45.47204060078802], [-73.62006703234724, 45.4719938707929]]}, "properties": {"ID_TRC": 1310267, "DEB_GCH": 5718, "FIN_GCH": 5720, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 5717, "FIN_DRT": 5727, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6179350368671, 45.47435132645097], [-73.6180072780391, 45.474383793931175], [-73.62205300190392, 45.47620892921261], [-73.62220052069786, 45.47627606072506]]}, "properties": {"ID_TRC": 1310279, "DEB_GCH": 4020, "FIN_GCH": 4266, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Old Orchard", "DEB_DRT": 4101, "FIN_DRT": 4267, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Old Orchard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62220052069786, 45.47627606072506], [-73.62234182939159, 45.476340730641446], [-73.62533407053644, 45.477693237382915], [-73.62540851597433, 45.477726629986535]]}, "properties": {"ID_TRC": 1310280, "DEB_GCH": 4310, "FIN_GCH": 4478, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Old Orchard", "DEB_DRT": 4311, "FIN_DRT": 4479, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Old Orchard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62540851597433, 45.477726629986535], [-73.62555447306784, 45.47779144805723], [-73.62723759371966, 45.478556059354155], [-73.62730202579336, 45.47858919506741], [-73.62732273681209, 45.47860339091542], [-73.62733996351979, 45.4786166008123], [-73.62736269368581, 45.47863718399011], [-73.62741665547813, 45.4787167319179]]}, "properties": {"ID_TRC": 1310281, "DEB_GCH": 4500, "FIN_GCH": 4578, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Old Orchard", "DEB_DRT": 4501, "FIN_DRT": 4585, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Old Orchard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62120578361292, 45.47884204581626], [-73.62141762473945, 45.47893352648482], [-73.62326481923174, 45.47976182685619], [-73.62334474176393, 45.47979795559045], [-73.6233630546885, 45.47980470378688], [-73.62338193073829, 45.47981038977796], [-73.62345734852155, 45.4798274593709]]}, "properties": {"ID_TRC": 1310282, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de l'", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Orphelinat", "DEB_DRT": 4355, "FIN_DRT": 4383, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de l'Orphelinat "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61901219864477, 45.473158325001144], [-73.61907956563185, 45.473191347819984], [-73.6232052653222, 45.475043717334664], [-73.62328116177544, 45.47507950651885]]}, "properties": {"ID_TRC": 1310284, "DEB_GCH": 4000, "FIN_GCH": 4238, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "d'", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Oxford", "DEB_DRT": 4003, "FIN_DRT": 4257, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue d'Oxford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62328116177544, 45.47507950651885], [-73.62334213244334, 45.47510890485594], [-73.62641680901739, 45.47649747171857], [-73.62649192229918, 45.476530933297035]]}, "properties": {"ID_TRC": 1310285, "DEB_GCH": 4304, "FIN_GCH": 4468, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "d'", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Oxford", "DEB_DRT": 4319, "FIN_DRT": 4479, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue d'Oxford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6292913663736, 45.477795593667125], [-73.62936648363501, 45.47782868148155], [-73.62990363385157, 45.478073213836986], [-73.62993172902974, 45.47808686090738], [-73.62995951433115, 45.478103388058756], [-73.62998740799115, 45.47812108488113], [-73.63001615879365, 45.4781445406417], [-73.63007259046186, 45.478226455607356]]}, "properties": {"ID_TRC": 1310287, "DEB_GCH": 4802, "FIN_GCH": 4806, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "d'", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Oxford", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue d'Oxford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62615602743618, 45.47192364493168], [-73.62625413802198, 45.471966841493284], [-73.62912337354807, 45.47324172138602], [-73.6293561316551, 45.473342337498615]]}, "properties": {"ID_TRC": 1310305, "DEB_GCH": 4320, "FIN_GCH": 4410, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Royal", "DEB_DRT": 4327, "FIN_DRT": 4491, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Royal "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6293561316551, 45.473342337498615], [-73.62942623199666, 45.47337294897561], [-73.63085271306694, 45.474010387989395], [-73.63209792555683, 45.474564553752664], [-73.63217007468799, 45.47459579848702]]}, "properties": {"ID_TRC": 1310306, "DEB_GCH": 4500, "FIN_GCH": 4646, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Royal", "DEB_DRT": 4501, "FIN_DRT": 4653, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Royal "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62877649502511, 45.47846306088212], [-73.62882890503974, 45.47832002285224], [-73.62886814343692, 45.478269672421746], [-73.62924730172936, 45.47784465505317], [-73.6292913663736, 45.477795593667125]]}, "properties": {"ID_TRC": 1310324, "DEB_GCH": 5610, "FIN_GCH": 5640, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Somerled", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Somerled "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62981868536778, 45.47720972874332], [-73.62986082084838, 45.47716387930429], [-73.63029858478204, 45.476676606429876], [-73.63034166763543, 45.4766280631606]]}, "properties": {"ID_TRC": 1310326, "DEB_GCH": 5732, "FIN_GCH": 5734, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Somerled", "DEB_DRT": 5731, "FIN_DRT": 5733, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Somerled "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63034166763543, 45.4766280631606], [-73.630381504827, 45.47658354859608], [-73.63088756020048, 45.47602183723642], [-73.63093082200066, 45.47597414523979]]}, "properties": {"ID_TRC": 1310327, "DEB_GCH": 5754, "FIN_GCH": 5780, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Somerled", "DEB_DRT": 5751, "FIN_DRT": 5781, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Somerled "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63093082200066, 45.47597414523979], [-73.6309733189254, 45.47592672945665], [-73.63140138689336, 45.475451702640974], [-73.63147608132425, 45.47536509613709]]}, "properties": {"ID_TRC": 1310328, "DEB_GCH": 5802, "FIN_GCH": 5812, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Somerled", "DEB_DRT": 5815, "FIN_DRT": 5817, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Somerled "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63147608132425, 45.47536509613709], [-73.63155079340733, 45.47527919324343], [-73.63181949585672, 45.4749857185685], [-73.63212754314567, 45.4746434437778], [-73.63217007468799, 45.47459579848702]]}, "properties": {"ID_TRC": 1310329, "DEB_GCH": 5850, "FIN_GCH": 5876, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Somerled", "DEB_DRT": 5851, "FIN_DRT": 5955, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Somerled "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63217007468799, 45.47459579848702], [-73.63220940569066, 45.474551735803146], [-73.63279853449805, 45.473892660235165], [-73.63284080632987, 45.47384677014317]]}, "properties": {"ID_TRC": 1310330, "DEB_GCH": 5950, "FIN_GCH": 5996, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Somerled", "DEB_DRT": 5957, "FIN_DRT": 5997, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Somerled "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63284080632987, 45.47384677014317], [-73.63296211973096, 45.473715501843195]]}, "properties": {"ID_TRC": 1310331, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Somerled", "DEB_DRT": 5999, "FIN_DRT": 5999, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Somerled "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63296211973096, 45.473715501843195], [-73.63304096855074, 45.47362581759851], [-73.63346878813071, 45.47314979307378], [-73.63351037058402, 45.47310376810636]]}, "properties": {"ID_TRC": 1310332, "DEB_GCH": 6050, "FIN_GCH": 6094, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Somerled", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Somerled "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63351037058402, 45.47310376810636], [-73.63355264766463, 45.47305691175178], [-73.63402643609972, 45.472528995148416], [-73.6340656783345, 45.47248393240739]]}, "properties": {"ID_TRC": 1310333, "DEB_GCH": 6120, "FIN_GCH": 6132, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Somerled", "DEB_DRT": 6101, "FIN_DRT": 6135, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Somerled "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6340656783345, 45.47248393240739], [-73.63413485978016, 45.472385778117285], [-73.63451568306729, 45.47185103904587], [-73.63456732120774, 45.471777780763986]]}, "properties": {"ID_TRC": 1310334, "DEB_GCH": 6150, "FIN_GCH": 6190, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Somerled", "DEB_DRT": 6167, "FIN_DRT": 6169, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Somerled "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62371014132009, 45.47944093565191], [-73.62376577559944, 45.479429569711236], [-73.62380023838644, 45.479412343717485], [-73.6238963175324, 45.47934735429411], [-73.62392265184829, 45.479328247176014], [-73.62396161017554, 45.47929220743307], [-73.62422998839031, 45.4789912480238], [-73.62424649905412, 45.47896757354224], [-73.62425239775266, 45.47894779434092], [-73.624253197723, 45.47892536636221], [-73.62424900001146, 45.47890121656349]]}, "properties": {"ID_TRC": 1310349, "DEB_GCH": 5410, "FIN_GCH": 5442, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62446921129089, 45.47883145465297], [-73.6244822683145, 45.47878391928533], [-73.62450154769496, 45.47874680028566], [-73.6247954699311, 45.47840594463037], [-73.62486529395527, 45.47833083346227]]}, "properties": {"ID_TRC": 1310350, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 5405, "FIN_DRT": 5455, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62486529395527, 45.47833083346227], [-73.62493219419908, 45.47825874600964], [-73.62536358451392, 45.47777635873802], [-73.62540851597433, 45.477726629986535]]}, "properties": {"ID_TRC": 1310351, "DEB_GCH": 5510, "FIN_GCH": 5512, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 5535, "FIN_DRT": 5537, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62540851597433, 45.477726629986535], [-73.6254499902942, 45.47768078088005], [-73.62590274865401, 45.47718027955141], [-73.62594638829493, 45.47713194114601]]}, "properties": {"ID_TRC": 1310352, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 5555, "FIN_DRT": 5581, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62594638829493, 45.47713194114601], [-73.62598809965452, 45.477085692270784], [-73.6264457985723, 45.47658167343358], [-73.62649192229918, 45.476530933297035]]}, "properties": {"ID_TRC": 1310353, "DEB_GCH": 5604, "FIN_GCH": 5606, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 5605, "FIN_DRT": 5637, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62649192229918, 45.476530933297035], [-73.62653398987246, 45.476484022885295], [-73.62698925737085, 45.47598207438407], [-73.62703095860084, 45.475935005144]]}, "properties": {"ID_TRC": 1310354, "DEB_GCH": 5654, "FIN_GCH": 5680, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 5655, "FIN_DRT": 5681, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62703095860084, 45.475935005144], [-73.6270715492607, 45.47588919960961], [-73.62751797883291, 45.47540210761199], [-73.62755769258224, 45.47535630220457]]}, "properties": {"ID_TRC": 1310355, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 5701, "FIN_DRT": 5735, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62812182646228, 45.4747209184305], [-73.62816166583785, 45.474675410291255], [-73.62867286555017, 45.47410202725993], [-73.62871635499909, 45.47405423684623]]}, "properties": {"ID_TRC": 1310357, "DEB_GCH": 5820, "FIN_GCH": 5838, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 5815, "FIN_DRT": 5841, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62871635499909, 45.47405423684623], [-73.62875968267126, 45.474006626342494], [-73.6293161292093, 45.473387742767315], [-73.6293561316551, 45.473342337498615]]}, "properties": {"ID_TRC": 1310358, "DEB_GCH": 5870, "FIN_GCH": 5872, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 5851, "FIN_DRT": 5879, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6293561316551, 45.473342337498615], [-73.62939694023538, 45.4732963979176], [-73.62998210442265, 45.472647870566476], [-73.63002633551204, 45.47259875219709]]}, "properties": {"ID_TRC": 1310359, "DEB_GCH": 5950, "FIN_GCH": 5998, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 5961, "FIN_DRT": 5997, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63002633551204, 45.47259875219709], [-73.6300705980708, 45.47254958675727], [-73.63065269061245, 45.471902319394985], [-73.63069718246052, 45.47185328144743]]}, "properties": {"ID_TRC": 1310360, "DEB_GCH": 6056, "FIN_GCH": 6094, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 6051, "FIN_DRT": 6091, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62006703234724, 45.4719938707929], [-73.62013772788315, 45.472025094299], [-73.6215600869552, 45.47266704284883], [-73.62423855552225, 45.473863863977726], [-73.62433684623022, 45.47390973114867]]}, "properties": {"ID_TRC": 1310393, "DEB_GCH": 4000, "FIN_GCH": 4256, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Wilson", "DEB_DRT": 4015, "FIN_DRT": 4265, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Wilson "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62433684623022, 45.47390973114867], [-73.6244265295275, 45.473951042908624], [-73.62748203571513, 45.47532268355355], [-73.62755769258224, 45.47535630220457]]}, "properties": {"ID_TRC": 1310394, "DEB_GCH": 4310, "FIN_GCH": 4482, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Wilson", "DEB_DRT": 4325, "FIN_DRT": 4481, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Wilson "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62755769258224, 45.47535630220457], [-73.62763315603134, 45.47539000988134], [-73.63026452621085, 45.47659295138293], [-73.63034166763543, 45.4766280631606]]}, "properties": {"ID_TRC": 1310395, "DEB_GCH": 4504, "FIN_GCH": 4614, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Wilson", "DEB_DRT": 4505, "FIN_DRT": 4627, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Wilson "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63034166763543, 45.4766280631606], [-73.63041766408875, 45.47666315144741], [-73.63239908595145, 45.47756890554907], [-73.63243383147494, 45.47758550029455], [-73.63247852735336, 45.47761309019439], [-73.63251054459347, 45.47763438145797], [-73.63254330790906, 45.477658821536544], [-73.63262293991339, 45.47773892617982]]}, "properties": {"ID_TRC": 1310396, "DEB_GCH": 4800, "FIN_GCH": 4900, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Wilson", "DEB_DRT": 4809, "FIN_DRT": 4877, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Wilson "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62048474079768, 45.47866491091602], [-73.62048861860802, 45.47866992977123], [-73.62062297284328, 45.47888982168755], [-73.62068753572088, 45.4789858663616], [-73.62075829643777, 45.47906903551085], [-73.62129676663388, 45.479609067758034], [-73.62152443373583, 45.47981090661122], [-73.62188443640109, 45.48008638770529]]}, "properties": {"ID_TRC": 1310401, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63653657227388, 45.47678998870803], [-73.63652879317354, 45.47669444682858], [-73.63653663475547, 45.476661526668046], [-73.63655392197889, 45.47663390341431], [-73.63731139285747, 45.475790055998175], [-73.63740170325903, 45.47568986885107]]}, "properties": {"ID_TRC": 1311101, "DEB_GCH": 6000, "FIN_GCH": 6044, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Fielding", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Fielding "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63653657227388, 45.47678998870803], [-73.63800570765089, 45.476734718299774], [-73.6387806082433, 45.47670648328226], [-73.63923895019748, 45.47668234725913], [-73.6394457419518, 45.476658858023114]]}, "properties": {"ID_TRC": 1311102, "DEB_GCH": 6010, "FIN_GCH": 6048, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5801, "FIN_DRT": 5825, "ARR_DRT": "N/A", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6118634802481, 45.47332323872753], [-73.61244937574928, 45.4735741497552], [-73.61477246682367, 45.47461081544959]]}, "properties": {"ID_TRC": 1330003, "DEB_GCH": 3430, "FIN_GCH": 3586, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Addington", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Addington "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6142375831534, 45.47520540395435], [-73.61431823905424, 45.47525319222366], [-73.61624240657484, 45.47611878712768], [-73.6163126351416, 45.47615033627399]]}, "properties": {"ID_TRC": 1330040, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Botrel", "DEB_DRT": 3755, "FIN_DRT": 3865, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Botrel "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61782636895053, 45.480196286754456], [-73.61800180078512, 45.47999848808301], [-73.61804154170729, 45.47995571330262]]}, "properties": {"ID_TRC": 1330041, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Brillon", "DEB_DRT": 5179, "FIN_DRT": 5195, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Brillon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61804154170729, 45.47995571330262], [-73.6181136990642, 45.47987616132787], [-73.61848338695481, 45.47946963848669], [-73.6185286836776, 45.4794194072635]]}, "properties": {"ID_TRC": 1330042, "DEB_GCH": 5220, "FIN_GCH": 5236, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Brillon", "DEB_DRT": 5197, "FIN_DRT": 5237, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Brillon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61872247030564, 45.478765436016026], [-73.61917395178114, 45.47827054138378]]}, "properties": {"ID_TRC": 1330044, "DEB_GCH": 5306, "FIN_GCH": 5326, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Brodeur", "DEB_DRT": 5309, "FIN_DRT": 5311, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Brodeur "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61276448062391, 45.47682887847578], [-73.61280814040825, 45.47678764148718], [-73.61321212739351, 45.47637777194816], [-73.61326995953945, 45.476308572600956]]}, "properties": {"ID_TRC": 1330085, "DEB_GCH": 5252, "FIN_GCH": 5268, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Antoine", "DEB_DRT": 5257, "FIN_DRT": 5267, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Antoine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61326995953945, 45.476308572600956], [-73.61332211059363, 45.476245822441264], [-73.61371031690798, 45.47580941855877], [-73.61374690702831, 45.4757694050599]]}, "properties": {"ID_TRC": 1330086, "DEB_GCH": 5340, "FIN_GCH": 5344, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Antoine", "DEB_DRT": 5311, "FIN_DRT": 5367, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Antoine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61374690702831, 45.4757694050599], [-73.61378315919339, 45.47572835188707], [-73.61386503650782, 45.47562864752121], [-73.61390348583592, 45.47558478032082]]}, "properties": {"ID_TRC": 1330087, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Antoine", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Antoine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6142375831534, 45.47520540395435], [-73.61427469551238, 45.475162072472195], [-73.61477246682367, 45.47461081544959]]}, "properties": {"ID_TRC": 1330089, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Antoine", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Antoine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61477246682367, 45.47461081544959], [-73.6152522375926, 45.474074149649546], [-73.61531266049673, 45.47401025302755]]}, "properties": {"ID_TRC": 1330091, "DEB_GCH": 5456, "FIN_GCH": 5488, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Antoine", "DEB_DRT": 5455, "FIN_DRT": 5489, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Antoine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61531266049673, 45.47401025302755], [-73.61537181989428, 45.473946148209485], [-73.61576853454679, 45.47350720876237], [-73.61585045031053, 45.47341559342635]]}, "properties": {"ID_TRC": 1330092, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Antoine", "DEB_DRT": 5505, "FIN_DRT": 5535, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Antoine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61585045031053, 45.47341559342635], [-73.61592788886901, 45.473329129928125], [-73.61627491050777, 45.47294315532196], [-73.61640136624183, 45.47280345180918]]}, "properties": {"ID_TRC": 1330093, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Antoine", "DEB_DRT": 5565, "FIN_DRT": 5567, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Antoine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61692641754784, 45.47221982313277], [-73.61742427663148, 45.47167811123875], [-73.61745562200385, 45.471639760108985]]}, "properties": {"ID_TRC": 1330095, "DEB_GCH": 5656, "FIN_GCH": 5682, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Antoine", "DEB_DRT": 5651, "FIN_DRT": 5687, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Antoine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60882786256812, 45.47430960118439], [-73.60894371230256, 45.47436264992465], [-73.61312893589385, 45.47624376407624], [-73.61318617151103, 45.47627106543451], [-73.61326995953945, 45.476308572600956]]}, "properties": {"ID_TRC": 1330182, "DEB_GCH": 3420, "FIN_GCH": 3636, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 3405, "FIN_DRT": 3627, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61326995953945, 45.476308572600956], [-73.61334741441487, 45.476342900305845], [-73.61525608437256, 45.47720330724786], [-73.61533278714074, 45.477237031462494]]}, "properties": {"ID_TRC": 1330183, "DEB_GCH": 3760, "FIN_GCH": 3860, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 3757, "FIN_DRT": 3859, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61533278714074, 45.477237031462494], [-73.61540550407402, 45.477269211465405], [-73.61546505897594, 45.477294529445096], [-73.61618647729053, 45.47762006607793], [-73.61773580383405, 45.47832020604495], [-73.61786377367788, 45.47837761366376]]}, "properties": {"ID_TRC": 1330184, "DEB_GCH": 4060, "FIN_GCH": 4136, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 4001, "FIN_DRT": 4165, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61786377367788, 45.47837761366376], [-73.6179900949306, 45.47843396529642], [-73.61872247030564, 45.478765436016026]]}, "properties": {"ID_TRC": 1330185, "DEB_GCH": 4170, "FIN_GCH": 4204, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 4167, "FIN_DRT": 4213, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61872247030564, 45.478765436016026], [-73.61894180929633, 45.47886719625939], [-73.61900781612847, 45.47889660199462]]}, "properties": {"ID_TRC": 1330186, "DEB_GCH": 4210, "FIN_GCH": 4220, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 4215, "FIN_DRT": 4221, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61900781612847, 45.47889660199462], [-73.61908067850794, 45.47892905709992], [-73.61948715526835, 45.47911266908929], [-73.61960047533653, 45.479179326780574]]}, "properties": {"ID_TRC": 1330187, "DEB_GCH": 4222, "FIN_GCH": 4246, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 4235, "FIN_DRT": 4241, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61960047533653, 45.479179326780574], [-73.6197806213861, 45.479288298889195], [-73.61998303842051, 45.47941452707899], [-73.62028799250741, 45.4796325303308], [-73.62071003377525, 45.479936442534736], [-73.62088425973155, 45.480051179737885], [-73.62109354865527, 45.480181538640174], [-73.62157777211989, 45.48046161807344], [-73.62213746438525, 45.48071493926947]]}, "properties": {"ID_TRC": 1330188, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 4243, "FIN_DRT": 4495, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61786377367788, 45.47837761366376], [-73.61792252812185, 45.47831182415315], [-73.61857757801569, 45.47759295518719]]}, "properties": {"ID_TRC": 1330207, "DEB_GCH": 5300, "FIN_GCH": 5342, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Duquette", "DEB_DRT": 5319, "FIN_DRT": 5341, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Duquette "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61199153229147, 45.47252911453718], [-73.61213009226957, 45.47258858520463], [-73.61524064685594, 45.473977418273435], [-73.61531266049673, 45.47401025302755]]}, "properties": {"ID_TRC": 1330225, "DEB_GCH": 3500, "FIN_GCH": 3500, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Girouard", "DEB_DRT": 3415, "FIN_DRT": 3595, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Girouard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61078622634633, 45.478534813681996], [-73.61084033841564, 45.47856513754563], [-73.6128297152674, 45.479457094125834], [-73.61290480122341, 45.47949058624457]]}, "properties": {"ID_TRC": 1330251, "DEB_GCH": 3754, "FIN_GCH": 3816, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Grey", "DEB_DRT": 3755, "FIN_DRT": 3811, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Grey "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61290480122341, 45.47949058624457], [-73.61298104027625, 45.47952452957122], [-73.61465081982352, 45.48027242059621], [-73.6147151270381, 45.48029854404565], [-73.61476645091935, 45.48030457702993]]}, "properties": {"ID_TRC": 1330252, "DEB_GCH": 4002, "FIN_GCH": 4074, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Grey", "DEB_DRT": 4001, "FIN_DRT": 4075, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Grey "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61745562200385, 45.471639760108985], [-73.61947084739764, 45.47254379613753], [-73.61954117438079, 45.47257284456314]]}, "properties": {"ID_TRC": 1330264, "DEB_GCH": 3760, "FIN_GCH": 3876, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Harvard", "DEB_DRT": 3775, "FIN_DRT": 3873, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Harvard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61375718849656, 45.47161718935476], [-73.61387119987101, 45.47166937919796], [-73.61625972149605, 45.472738885527605], [-73.61640136624183, 45.47280345180918]]}, "properties": {"ID_TRC": 1330320, "DEB_GCH": 3418, "FIN_GCH": 3560, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Marcil", "DEB_DRT": 3501, "FIN_DRT": 3501, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Marcil "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61221881722585, 45.477355889417495], [-73.61228529649166, 45.47738157321383], [-73.61427833815802, 45.47826918143229], [-73.61434832540134, 45.47829993970058]]}, "properties": {"ID_TRC": 1330329, "DEB_GCH": 3758, "FIN_GCH": 3858, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Marlowe", "DEB_DRT": 3757, "FIN_DRT": 3855, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Marlowe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61434832540134, 45.47829993970058], [-73.61441846594309, 45.47833059653947], [-73.61798224667292, 45.479931103239124], [-73.61804154170729, 45.47995571330262]]}, "properties": {"ID_TRC": 1330330, "DEB_GCH": 4000, "FIN_GCH": 4192, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Marlowe", "DEB_DRT": 4001, "FIN_DRT": 4195, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Marlowe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61276448062391, 45.47682887847578], [-73.61282242779764, 45.47686277204153], [-73.61477827913674, 45.477729079719275], [-73.61484831819428, 45.47776202246069]]}, "properties": {"ID_TRC": 1330370, "DEB_GCH": 3770, "FIN_GCH": 3870, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Northcliffe", "DEB_DRT": 3755, "FIN_DRT": 3865, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Northcliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61290480122341, 45.47949058624457], [-73.612955153059, 45.479453595280376], [-73.61359532604533, 45.4789614618677], [-73.61369055223146, 45.478885874701945]]}, "properties": {"ID_TRC": 1330374, "DEB_GCH": 5122, "FIN_GCH": 5142, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 5125, "FIN_DRT": 5143, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61369055223146, 45.478885874701945], [-73.61374206453021, 45.47884711425776], [-73.61399067758, 45.478659500088206], [-73.6140715693897, 45.47859219424795], [-73.61410927017053, 45.47855750911188], [-73.6141577037236, 45.478508864485306], [-73.61431382625587, 45.47834060052132], [-73.61434832540134, 45.47829993970058]]}, "properties": {"ID_TRC": 1330375, "DEB_GCH": 5152, "FIN_GCH": 5172, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 5153, "FIN_DRT": 5173, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61434832540134, 45.47829993970058], [-73.61438360983117, 45.478258726701526], [-73.61480734110282, 45.47780491504404], [-73.61484831819428, 45.47776202246069]]}, "properties": {"ID_TRC": 1330377, "DEB_GCH": 5224, "FIN_GCH": 5226, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 5225, "FIN_DRT": 5227, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61484831819428, 45.47776202246069], [-73.61489029984119, 45.477717537922345], [-73.6152711637944, 45.47730318473702], [-73.61533278714074, 45.477237031462494]]}, "properties": {"ID_TRC": 1330378, "DEB_GCH": 5260, "FIN_GCH": 5276, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61533278714074, 45.477237031462494], [-73.61538927893206, 45.47717662458752], [-73.61578063662608, 45.476738230667856], [-73.61581950576681, 45.47669698163587]]}, "properties": {"ID_TRC": 1330379, "DEB_GCH": 5300, "FIN_GCH": 5336, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 5319, "FIN_DRT": 5325, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6146092212344, 45.47117547397411], [-73.61472478238562, 45.47122665718397], [-73.61692641754784, 45.47221982313277]]}, "properties": {"ID_TRC": 1330410, "DEB_GCH": 3438, "FIN_GCH": 3540, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "d'", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Oxford", "DEB_DRT": 3405, "FIN_DRT": 3535, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue d'Oxford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61374690702831, 45.4757694050599], [-73.6138168519099, 45.4757998631604], [-73.61574535540613, 45.476665281839516], [-73.61581950576681, 45.47669698163587]]}, "properties": {"ID_TRC": 1330425, "DEB_GCH": 3750, "FIN_GCH": 3868, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Prud'homme", "DEB_DRT": 3757, "FIN_DRT": 3865, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Prud'homme "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61284937351735, 45.47208603641657], [-73.61291199384638, 45.47205325381388], [-73.61368170895797, 45.47165543897558], [-73.61375718849656, 45.47161718935476]]}, "properties": {"ID_TRC": 1330482, "DEB_GCH": 5550, "FIN_GCH": 5594, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": "Ouest", "NOM_VOIE": "Sherbrooke", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Sherbrooke Ouest"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61158132904191, 45.47792733189852], [-73.6116487787162, 45.47795743493842], [-73.61361103572979, 45.478851114219495], [-73.61369055223146, 45.478885874701945]]}, "properties": {"ID_TRC": 1330591, "DEB_GCH": 3764, "FIN_GCH": 3998, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Vend\u00c3\u00b4me", "DEB_DRT": 3759, "FIN_DRT": 3999, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Vend\u00c3\u00b4me "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61369055223146, 45.478885874701945], [-73.61385148189149, 45.47895616702818], [-73.61529642995501, 45.4796044698791], [-73.61532241239938, 45.47961812267143], [-73.61533245113655, 45.47962585189317], [-73.6153419678194, 45.47963619164667], [-73.6153507566462, 45.47965184168015], [-73.61535417960711, 45.47967460637102], [-73.6153475784274, 45.479697021470706], [-73.61533221594804, 45.47971728555901], [-73.61481331981085, 45.48028125674701], [-73.61476645091935, 45.48030457702993]]}, "properties": {"ID_TRC": 1330592, "DEB_GCH": 4000, "FIN_GCH": 4120, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Vend\u00c3\u00b4me", "DEB_DRT": 4001, "FIN_DRT": 4069, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Vend\u00c3\u00b4me "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61797949616738, 45.47106013200657], [-73.61803773714509, 45.471084871652124], [-73.61999454615491, 45.47196188920233], [-73.62006703234724, 45.4719938707929]]}, "properties": {"ID_TRC": 1330605, "DEB_GCH": 3766, "FIN_GCH": 3858, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Wilson", "DEB_DRT": 3757, "FIN_DRT": 3871, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Wilson "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6118634802481, 45.47332323872753], [-73.61211649427825, 45.4734807474785], [-73.6122055643401, 45.47352962860894], [-73.61234454469688, 45.47360614868239], [-73.6124266612228, 45.47364953143474], [-73.61265225112251, 45.47376535803831], [-73.6127975304785, 45.47384202949347], [-73.61314336511863, 45.474024633470385], [-73.6134835213288, 45.47419721345928], [-73.61366295173718, 45.47429044823852], [-73.61395695748382, 45.47444028250764], [-73.61411604341664, 45.47453032485962]]}, "properties": {"ID_TRC": 1330653, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62661874009554, 45.478872230859714], [-73.62672394714278, 45.47895683095201], [-73.62675437818575, 45.478977135527096], [-73.62679970060628, 45.47900417331613], [-73.62686952384001, 45.47904162300101], [-73.62802398650551, 45.47956499626119], [-73.62811447601919, 45.479605072066214]]}, "properties": {"ID_TRC": 1600003, "DEB_GCH": 4640, "FIN_GCH": 4650, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Clanranald", "DEB_DRT": 4599, "FIN_DRT": 4653, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Clanranald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61810145724984, 45.502570934963956], [-73.61818952225445, 45.50254970409126], [-73.61823296448706, 45.50253242061537], [-73.61827572342563, 45.50250004138697], [-73.61972205343447, 45.500899866835034], [-73.61977085257193, 45.500843189434235]]}, "properties": {"ID_TRC": 1600032, "DEB_GCH": 2900, "FIN_GCH": 3074, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lacombe", "DEB_DRT": 2931, "FIN_DRT": 3071, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lacombe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61763034578583, 45.50161786239591], [-73.61768715553556, 45.501724877807106], [-73.61806054841018, 45.50247318837327], [-73.61810145724984, 45.502570934963956]]}, "properties": {"ID_TRC": 1600033, "DEB_GCH": 5360, "FIN_GCH": 5390, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Louis-Colin", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Louis-Colin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62862939244721, 45.500260851501764], [-73.62870190558401, 45.50029470854772], [-73.62931522451632, 45.50057011440771], [-73.62934904071122, 45.500588344742724], [-73.62937494720441, 45.500609283781586], [-73.62939611657472, 45.500635447722516], [-73.62940852662493, 45.50066216171394], [-73.62941344430172, 45.50068960406708], [-73.62941013543805, 45.50071948531717], [-73.62939922109763, 45.50074667565238], [-73.62937996662909, 45.50077306534887], [-73.62844331097722, 45.501822271151546], [-73.6284089914757, 45.50186121918307]]}, "properties": {"ID_TRC": 1600060, "DEB_GCH": 5810, "FIN_GCH": 5864, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 5835, "FIN_DRT": 5865, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62755088853342, 45.50147203731927], [-73.62758601668007, 45.501432842307615], [-73.62857857481677, 45.500317255563694], [-73.62862939244721, 45.500260851501764]]}, "properties": {"ID_TRC": 1600062, "DEB_GCH": 3400, "FIN_GCH": 3450, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Ellendale", "DEB_DRT": 3345, "FIN_DRT": 3485, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Ellendale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62691330076535, 45.50218586312973], [-73.62695769076839, 45.50213530785346], [-73.6274512555895, 45.50158319098971], [-73.62748649822551, 45.50154386180503]]}, "properties": {"ID_TRC": 1600063, "DEB_GCH": 3270, "FIN_GCH": 3270, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Ellendale", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Ellendale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62564664082319, 45.500660865254844], [-73.62576475155363, 45.50076449082603], [-73.6260975000002, 45.50091557123984], [-73.62634609536717, 45.50102844195652]]}, "properties": {"ID_TRC": 1600067, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 5705, "FIN_DRT": 5757, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62564664082319, 45.500660865254844], [-73.62582614120721, 45.50069349463792], [-73.6264064099881, 45.50095557070037], [-73.62649213622673, 45.5009929331353]]}, "properties": {"ID_TRC": 1600068, "DEB_GCH": 5710, "FIN_GCH": 5730, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62634609536717, 45.50102844195652], [-73.62651767345524, 45.50110474593735], [-73.62741077302951, 45.50151061182243], [-73.62748649822551, 45.50154386180503]]}, "properties": {"ID_TRC": 1600069, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 5795, "FIN_DRT": 5795, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62649213622673, 45.5009929331353], [-73.62658379534676, 45.50103285843408], [-73.62747393513679, 45.501437107167355], [-73.62755088853342, 45.50147203731927]]}, "properties": {"ID_TRC": 1600070, "DEB_GCH": 5760, "FIN_GCH": 5790, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62748649822551, 45.50154386180503], [-73.6275597421658, 45.50157605044335], [-73.62827672172355, 45.50189994249866], [-73.62834645942854, 45.501932186983744]]}, "properties": {"ID_TRC": 1600071, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 5823, "FIN_DRT": 5873, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62755088853342, 45.50147203731927], [-73.62762364882403, 45.5015050646611], [-73.62833883470537, 45.501829408031206], [-73.6284089914757, 45.50186121918307]]}, "properties": {"ID_TRC": 1600072, "DEB_GCH": 5826, "FIN_GCH": 5866, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63004107673588, 45.49989269536529], [-73.6300933836543, 45.49991651135583], [-73.6308819941353, 45.50027405283344], [-73.6309300975391, 45.50029585760602]]}, "properties": {"ID_TRC": 1600103, "DEB_GCH": 5900, "FIN_GCH": 5990, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 5843, "FIN_DRT": 5985, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63102541211137, 45.50033816131587], [-73.63108011749652, 45.500363300020986], [-73.63208615808651, 45.50081676478801], [-73.6321813512077, 45.50085976459869]]}, "properties": {"ID_TRC": 1600104, "DEB_GCH": 5998, "FIN_GCH": 6180, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 6025, "FIN_DRT": 6185, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6309300975391, 45.50029585760602], [-73.6309867885054, 45.50022353652973], [-73.63109898871457, 45.500089768230644], [-73.63290767253201, 45.49805689492361], [-73.63301639055517, 45.497938001585915]]}, "properties": {"ID_TRC": 1600106, "DEB_GCH": 3750, "FIN_GCH": 3940, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Linton", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Linton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63102541211137, 45.50033816131587], [-73.63108356028707, 45.500263562591435], [-73.63301626838607, 45.49809933518356], [-73.63311733973842, 45.49798511701994]]}, "properties": {"ID_TRC": 1600107, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Linton", "DEB_DRT": 3751, "FIN_DRT": 3935, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Linton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6321512524079, 45.49752763353674], [-73.63222388799862, 45.49756695612314], [-73.63228158475543, 45.497597666910266], [-73.63260514811022, 45.49776818853876], [-73.63267119029186, 45.497794895257805], [-73.63277965778742, 45.497835030718626], [-73.63296263658424, 45.497912752009206], [-73.63301639055517, 45.497938001585915]]}, "properties": {"ID_TRC": 1600108, "DEB_GCH": 5900, "FIN_GCH": 5960, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63311733973842, 45.49798511701994], [-73.63316592230036, 45.49800853777069], [-73.6335602292478, 45.49818620106014], [-73.63393655270156, 45.49835321012311], [-73.6340313512565, 45.49839377412087]]}, "properties": {"ID_TRC": 1600109, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63301639055517, 45.497938001585915], [-73.6331122111188, 45.497833293913914], [-73.63471604538633, 45.496036771301306], [-73.63481407838115, 45.49592673922849]]}, "properties": {"ID_TRC": 1600111, "DEB_GCH": 4000, "FIN_GCH": 4530, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Linton", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Linton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63311733973842, 45.49798511701994], [-73.63321254659373, 45.49787718133997], [-73.63481730465456, 45.49608163414777], [-73.63491449693728, 45.495971992164456]]}, "properties": {"ID_TRC": 1600112, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Linton", "DEB_DRT": 3941, "FIN_DRT": 4561, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Linton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63393179058657, 45.495532700938206], [-73.63400772520983, 45.495565950661245], [-73.63476174018531, 45.49590298773407], [-73.63481407838115, 45.49592673922849]]}, "properties": {"ID_TRC": 1600113, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63491449693728, 45.495971992164456], [-73.63496913269509, 45.49599669560861], [-73.63573868698292, 45.49633946752338], [-73.63582956150145, 45.496379760928356]]}, "properties": {"ID_TRC": 1600115, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 6185, "FIN_DRT": 6187, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63481407838115, 45.49592673922849], [-73.63491160974469, 45.49581758748453], [-73.63655658604411, 45.493974463331455], [-73.63661258750378, 45.49391056275122]]}, "properties": {"ID_TRC": 1600116, "DEB_GCH": 4610, "FIN_GCH": 4770, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Linton", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Linton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63491449693728, 45.495971992164456], [-73.63500860530215, 45.495864989159976], [-73.63665790261312, 45.49402005876709], [-73.63671372013295, 45.493956073322536]]}, "properties": {"ID_TRC": 1600117, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Linton", "DEB_DRT": 4611, "FIN_DRT": 4771, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Linton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63573147492201, 45.493517274689474], [-73.63580385300203, 45.493549873269174], [-73.63656008994428, 45.49388674409976], [-73.63661258750378, 45.49391056275122]]}, "properties": {"ID_TRC": 1600118, "DEB_GCH": 5910, "FIN_GCH": 5980, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 5925, "FIN_DRT": 6001, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63671372013295, 45.493956073322536], [-73.63676967284437, 45.493980867921856], [-73.63753889547466, 45.49432425811782], [-73.63762888270254, 45.49436488951541]]}, "properties": {"ID_TRC": 1600119, "DEB_GCH": 6190, "FIN_GCH": 6192, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 6015, "FIN_DRT": 6057, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62832432289706, 45.48099410077523], [-73.62837275170095, 45.48094186313389], [-73.62911790731788, 45.48013342308902], [-73.62916707070906, 45.4800765851562]]}, "properties": {"ID_TRC": 1600204, "DEB_GCH": 5450, "FIN_GCH": 5500, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Snowdon", "DEB_DRT": 5485, "FIN_DRT": 5505, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Snowdon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6423667219322, 45.48932858133186], [-73.64240911877239, 45.48927768272854], [-73.643014290695, 45.48860215989262], [-73.64306307356067, 45.488546933561935]]}, "properties": {"ID_TRC": 1600382, "DEB_GCH": 5300, "FIN_GCH": 5302, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Van Horne", "DEB_DRT": 5305, "FIN_DRT": 5307, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Van Horne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64203880375425, 45.488087994851796], [-73.64208628128674, 45.48804526760989], [-73.64231543705203, 45.48777054499708], [-73.64244416068641, 45.48763332908389]]}, "properties": {"ID_TRC": 1600383, "DEB_GCH": 5354, "FIN_GCH": 5382, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Durnford", "DEB_DRT": 5351, "FIN_DRT": 5381, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Durnford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64133031914152, 45.48886598008367], [-73.64138382521011, 45.48880613197247], [-73.6419896323983, 45.488132861087045], [-73.64203880375425, 45.488087994851796]]}, "properties": {"ID_TRC": 1600384, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Durnford", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Durnford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64075527970917, 45.486265173725464], [-73.64083360566576, 45.48629959999015], [-73.6437891973882, 45.48763096767145], [-73.64386522753749, 45.48766363666597]]}, "properties": {"ID_TRC": 1600385, "DEB_GCH": 5814, "FIN_GCH": 5950, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "McLynn", "DEB_DRT": 5815, "FIN_DRT": 5975, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue McLynn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6409865579436, 45.48761310019714], [-73.64103217838043, 45.48756286017213], [-73.64127750597946, 45.48729504148784], [-73.64143293241476, 45.48712348413663]]}, "properties": {"ID_TRC": 1600386, "DEB_GCH": 5368, "FIN_GCH": 5384, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Cochrane", "DEB_DRT": 5355, "FIN_DRT": 5383, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Cochrane "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64027976331964, 45.48839504521003], [-73.64032312470796, 45.48834730442048], [-73.64054282491144, 45.48810511515812], [-73.64067790258561, 45.48795574303748], [-73.64094273090181, 45.48766124315036], [-73.6409865579436, 45.48761310019714]]}, "properties": {"ID_TRC": 1600387, "DEB_GCH": 5320, "FIN_GCH": 5326, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Cochrane", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Cochrane "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6399522685389, 45.48714974582621], [-73.63999208519563, 45.48710589390319], [-73.64023422840809, 45.48683653270632], [-73.64071134412863, 45.486313699619444], [-73.64075527970917, 45.486265173725464]]}, "properties": {"ID_TRC": 1600388, "DEB_GCH": 5350, "FIN_GCH": 5402, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 5371, "FIN_DRT": 5401, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63924906395285, 45.48793319186684], [-73.63929187396332, 45.48788519163177], [-73.63990852979863, 45.487197879504855], [-73.6399522685389, 45.48714974582621]]}, "properties": {"ID_TRC": 1600389, "DEB_GCH": 5310, "FIN_GCH": 5344, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bourret", "DEB_DRT": 5325, "FIN_DRT": 5335, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bourret "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63893311172858, 45.48669455224441], [-73.6389748018733, 45.48664925054216], [-73.63922112844658, 45.48637619184019], [-73.63939800085254, 45.486179796044446]]}, "properties": {"ID_TRC": 1600390, "DEB_GCH": 5360, "FIN_GCH": 5382, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Lucy", "DEB_DRT": 5375, "FIN_DRT": 5387, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Lucy "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63822541898837, 45.487477133652725], [-73.63863117526414, 45.48702841086715], [-73.63888892767903, 45.48674258799492], [-73.63893311172858, 45.48669455224441]]}, "properties": {"ID_TRC": 1600391, "DEB_GCH": 5318, "FIN_GCH": 5330, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Lucy", "DEB_DRT": 5309, "FIN_DRT": 5325, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Lucy "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63766500412137, 45.484875978465084], [-73.63774960668279, 45.4849137746103], [-73.64067948468278, 45.48623184502621], [-73.64075527970917, 45.486265173725464]]}, "properties": {"ID_TRC": 1600392, "DEB_GCH": 5510, "FIN_GCH": 5698, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "McLynn", "DEB_DRT": 5501, "FIN_DRT": 5703, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue McLynn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63789311793703, 45.48622836957608], [-73.63793682532314, 45.48618101371562], [-73.63818276417648, 45.48591095913423], [-73.63837430504748, 45.48570092799595]]}, "properties": {"ID_TRC": 1600393, "DEB_GCH": 5368, "FIN_GCH": 5380, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Belfield", "DEB_DRT": 5365, "FIN_DRT": 5387, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Belfield "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63722090441756, 45.48696362410217], [-73.6375889517389, 45.48655705405016], [-73.63784862855536, 45.48627453339264], [-73.63789311793703, 45.48622836957608]]}, "properties": {"ID_TRC": 1600394, "DEB_GCH": 5330, "FIN_GCH": 5332, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Belfield", "DEB_DRT": 5315, "FIN_DRT": 5321, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Belfield "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63685787764648, 45.48576344948757], [-73.63689919666892, 45.4857187968691], [-73.63745505734873, 45.48510869478803], [-73.63749860248171, 45.48506102523495]]}, "properties": {"ID_TRC": 1600395, "DEB_GCH": 5350, "FIN_GCH": 5372, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 5355, "FIN_DRT": 5411, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63000952043099, 45.48269768940994], [-73.63007565657136, 45.48272711422864], [-73.63055580890129, 45.48294279906398], [-73.63312617206721, 45.48409410780594], [-73.63320017102264, 45.48412577935843]]}, "properties": {"ID_TRC": 1600519, "DEB_GCH": 5134, "FIN_GCH": 5294, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 5133, "FIN_DRT": 5285, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62930162595336, 45.483500294575805], [-73.62941863417082, 45.48355714887525], [-73.63240470086409, 45.484876268234274], [-73.63250396096136, 45.48492127186252]]}, "properties": {"ID_TRC": 1600520, "DEB_GCH": 5100, "FIN_GCH": 5250, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62813163865985, 45.4834184941596], [-73.62818640077091, 45.48344451678518], [-73.62854848113965, 45.4836036190929], [-73.62883227088697, 45.48373185881745], [-73.62892067097489, 45.48376715160451]]}, "properties": {"ID_TRC": 1600521, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62710380808011, 45.484961330686566], [-73.62716926502364, 45.48499821787968], [-73.627653426156, 45.48522581555211], [-73.62766868222506, 45.48523030268071], [-73.62780743489111, 45.48525123180803]]}, "properties": {"ID_TRC": 1600522, "DEB_GCH": 5090, "FIN_GCH": 5090, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62460258644998, 45.47932013304751], [-73.6246394159528, 45.479365084532915], [-73.62465192352371, 45.47937420208019], [-73.62825414428849, 45.48098141346895], [-73.62832432289706, 45.48099410077523]]}, "properties": {"ID_TRC": 1600523, "DEB_GCH": 4520, "FIN_GCH": 4706, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Earnscliffe", "DEB_DRT": 4501, "FIN_DRT": 4711, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Earnscliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62361765537732, 45.47985959049818], [-73.62370267020015, 45.4798765865535], [-73.62371760552809, 45.479881380734135], [-73.62761960592923, 45.48167075395567], [-73.62762861232669, 45.4816734479317], [-73.62769106683163, 45.48168062842171]]}, "properties": {"ID_TRC": 1600524, "DEB_GCH": 4504, "FIN_GCH": 4712, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 4511, "FIN_DRT": 4815, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62699804852923, 45.48245432405663], [-73.62703279070809, 45.48239756338777], [-73.62764777686084, 45.48172552762617], [-73.62769106683163, 45.48168062842171]]}, "properties": {"ID_TRC": 1600525, "DEB_GCH": 5310, "FIN_GCH": 5336, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Snowdon", "DEB_DRT": 5315, "FIN_DRT": 5327, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Snowdon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62291569168286, 45.480617362004544], [-73.62354423090471, 45.47992054343976], [-73.62361765537732, 45.47985959049818]]}, "properties": {"ID_TRC": 1600526, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5309, "FIN_DRT": 5341, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6292913663736, 45.477795593667125], [-73.62933422720673, 45.47774835379231], [-73.62977620864551, 45.477255948616246], [-73.62981868536778, 45.47720972874332]]}, "properties": {"ID_TRC": 1600527, "DEB_GCH": 5650, "FIN_GCH": 5698, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Somerled", "DEB_DRT": 5651, "FIN_DRT": 5653, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Somerled "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62703095860084, 45.475935005144], [-73.62710728374249, 45.47596970406324], [-73.62974236610019, 45.47717436305014], [-73.62981868536778, 45.47720972874332]]}, "properties": {"ID_TRC": 1600528, "DEB_GCH": 4500, "FIN_GCH": 4636, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Harvard", "DEB_DRT": 4501, "FIN_DRT": 4635, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Harvard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62649192229918, 45.476530933297035], [-73.626565607991, 45.47656408213605], [-73.62921757320854, 45.47776243479209], [-73.6292913663736, 45.477795593667125]]}, "properties": {"ID_TRC": 1600529, "DEB_GCH": 4500, "FIN_GCH": 4644, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "d'", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Oxford", "DEB_DRT": 4517, "FIN_DRT": 4655, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue d'Oxford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62755769258224, 45.47535630220457], [-73.62759826667231, 45.4753100447734], [-73.62807895903379, 45.47476990606176], [-73.62812182646228, 45.4747209184305]]}, "properties": {"ID_TRC": 1600530, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 5751, "FIN_DRT": 5753, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62433684623022, 45.47390973114867], [-73.62438981306722, 45.47385343997676], [-73.62486372921397, 45.47334140021109], [-73.62491712503376, 45.47328373987661]]}, "properties": {"ID_TRC": 1600532, "DEB_GCH": 5752, "FIN_GCH": 5790, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 5751, "FIN_DRT": 5769, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62006703234724, 45.4719938707929], [-73.62010834107583, 45.47194728070427], [-73.62059404910559, 45.47141382767416], [-73.62063524753218, 45.471365394167904]]}, "properties": {"ID_TRC": 1600533, "DEB_GCH": 5750, "FIN_GCH": 5788, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 5775, "FIN_DRT": 5777, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62683450151911, 45.47117570387562], [-73.62693689691964, 45.471221298592944], [-73.62994995218476, 45.47256619308766], [-73.63002633551204, 45.47259875219709]]}, "properties": {"ID_TRC": 1600534, "DEB_GCH": 4310, "FIN_GCH": 4460, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Hampton", "DEB_DRT": 4333, "FIN_DRT": 4335, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Hampton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61640136624183, 45.47280345180918], [-73.61644605445818, 45.47275408470208], [-73.61666328476726, 45.47251730294267], [-73.61692641754784, 45.47221982313277]]}, "properties": {"ID_TRC": 1600598, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Antoine", "DEB_DRT": 5619, "FIN_DRT": 5621, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Antoine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61640136624183, 45.47280345180918], [-73.61653521276446, 45.47286450566567], [-73.61842035300673, 45.47370526578207], [-73.61848952915582, 45.47373720950256]]}, "properties": {"ID_TRC": 1600599, "DEB_GCH": 3760, "FIN_GCH": 3846, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Marcil", "DEB_DRT": 3785, "FIN_DRT": 3843, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Marcil "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61585045031053, 45.47341559342635], [-73.61592391543248, 45.473449365317364], [-73.61785933850314, 45.47431708146867], [-73.6179350368671, 45.47435132645097]]}, "properties": {"ID_TRC": 1600600, "DEB_GCH": 3784, "FIN_GCH": 3862, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Old Orchard", "DEB_DRT": 3771, "FIN_DRT": 3849, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Old Orchard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61531266049673, 45.47401025302755], [-73.61538372752007, 45.4740429692375], [-73.61712412139768, 45.47482036115745], [-73.6173192682291, 45.47491087429997], [-73.61739674391393, 45.474943782661285]]}, "properties": {"ID_TRC": 1600601, "DEB_GCH": 3774, "FIN_GCH": 3864, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Girouard", "DEB_DRT": 3781, "FIN_DRT": 3861, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Girouard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61692641754784, 45.47221982313277], [-73.6189364738329, 45.47312130202309], [-73.61901219864477, 45.473158325001144]]}, "properties": {"ID_TRC": 1600602, "DEB_GCH": 3774, "FIN_GCH": 3878, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "d'", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Oxford", "DEB_DRT": 3777, "FIN_DRT": 3851, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue d'Oxford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61581950576681, 45.47669698163587], [-73.61585716877445, 45.476656799232785], [-73.61626231375837, 45.476205610456496], [-73.6163126351416, 45.47615033627399]]}, "properties": {"ID_TRC": 1600603, "DEB_GCH": 5352, "FIN_GCH": 5382, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 5333, "FIN_DRT": 5385, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61477246682367, 45.47461081544959], [-73.61678341608159, 45.47550897969566], [-73.61686200844713, 45.47554254956224]]}, "properties": {"ID_TRC": 1600604, "DEB_GCH": 3760, "FIN_GCH": 3864, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Addington", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Addington "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61390348583592, 45.47558478032082], [-73.6139502974071, 45.47553271952865], [-73.61419796943905, 45.47525223270736], [-73.6142375831534, 45.47520540395435]]}, "properties": {"ID_TRC": 1600605, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Antoine", "DEB_DRT": 5369, "FIN_DRT": 5371, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Antoine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60970067663331, 45.4737027324114], [-73.60982585811351, 45.47375686911458], [-73.61382954253227, 45.4755531785014], [-73.61390348583592, 45.47558478032082]]}, "properties": {"ID_TRC": 1600606, "DEB_GCH": 3404, "FIN_GCH": 3744, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Prud'homme", "DEB_DRT": 3405, "FIN_DRT": 3641, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Prud'homme "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6185286836776, 45.4794194072635], [-73.61857306854027, 45.47936965276243], [-73.6189510681349, 45.478955380160265], [-73.61900781612847, 45.47889660199462]]}, "properties": {"ID_TRC": 1600607, "DEB_GCH": 5254, "FIN_GCH": 5256, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Brillon", "DEB_DRT": 5239, "FIN_DRT": 5263, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Brillon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61484831819428, 45.47776202246069], [-73.61491503621792, 45.477793467555145], [-73.61847225832173, 45.47939513551625], [-73.6185286836776, 45.4794194072635]]}, "properties": {"ID_TRC": 1600608, "DEB_GCH": 4010, "FIN_GCH": 4226, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Northcliffe", "DEB_DRT": 4001, "FIN_DRT": 4225, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Northcliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61500223378118, 45.48618268408757], [-73.61507408156211, 45.48621551279019], [-73.61561668186688, 45.48645792052811]]}, "properties": {"ID_TRC": 1600687, "DEB_GCH": 740, "FIN_GCH": 744, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Upper-Roslyn", "DEB_DRT": 739, "FIN_DRT": 745, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Upper-Roslyn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61623848775581, 45.484838554608324], [-73.61631020301292, 45.48486823164053], [-73.61671300694175, 45.48504501754686], [-73.61678523605906, 45.48507221152984], [-73.61692234566495, 45.48511234792252]]}, "properties": {"ID_TRC": 1600688, "DEB_GCH": 718, "FIN_GCH": 726, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 707, "FIN_DRT": 711, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61464485723545, 45.484118647714865], [-73.61475526627909, 45.484167316605024], [-73.61587835104977, 45.484674734844916], [-73.61616541754638, 45.48480835339882], [-73.61623848775581, 45.484838554608324]]}, "properties": {"ID_TRC": 1600689, "DEB_GCH": 690, "FIN_GCH": 716, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 691, "FIN_DRT": 701, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61561765695355, 45.48551501616945], [-73.61565744895206, 45.48547157924704], [-73.61619417310784, 45.484886438203], [-73.61623848775581, 45.484838554608324]]}, "properties": {"ID_TRC": 1600690, "DEB_GCH": 112, "FIN_GCH": 122, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Sunnyside", "DEB_DRT": 115, "FIN_DRT": 119, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Sunnyside "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61500223378118, 45.48618268408757], [-73.61504532375344, 45.48613589776188], [-73.61557406647428, 45.48556318696047], [-73.61561765695355, 45.48551501616945]]}, "properties": {"ID_TRC": 1600691, "DEB_GCH": 106, "FIN_GCH": 110, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Sunnyside", "DEB_DRT": 107, "FIN_DRT": 111, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Sunnyside "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61439182695752, 45.48684564639377], [-73.6144462399718, 45.48678598094247], [-73.6149606744441, 45.48622795621555], [-73.61500223378118, 45.48618268408757]]}, "properties": {"ID_TRC": 1600692, "DEB_GCH": 100, "FIN_GCH": 102, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Sunnyside", "DEB_DRT": 103, "FIN_DRT": 105, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Sunnyside "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61376837389635, 45.48750432609167], [-73.61381731709668, 45.48745435930548], [-73.61395621450879, 45.487313111323104], [-73.61423377153865, 45.487018556248195], [-73.61433379428608, 45.48690911436472], [-73.61439182695752, 45.48684564639377]]}, "properties": {"ID_TRC": 1600693, "DEB_GCH": 90, "FIN_GCH": 94, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Sunnyside", "DEB_DRT": 87, "FIN_DRT": 93, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Sunnyside "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61376837389635, 45.48750432609167], [-73.61382443445143, 45.4875303063737], [-73.61607211958618, 45.48854847781182], [-73.61615461694261, 45.48858567139724]]}, "properties": {"ID_TRC": 1600694, "DEB_GCH": 746, "FIN_GCH": 808, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Upper-Belmont", "DEB_DRT": 745, "FIN_DRT": 793, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Upper-Belmont "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61615461694261, 45.48858567139724], [-73.61623857949877, 45.48862417293181], [-73.61721050956372, 45.4890610867908], [-73.61766024311868, 45.48925923940509], [-73.61768389746031, 45.48926740430444], [-73.61770628202898, 45.489273680832326], [-73.61773003643249, 45.48927914585835], [-73.61775537145539, 45.48928352943575], [-73.61778076383104, 45.48928513647593], [-73.61780591882612, 45.48928358304891]]}, "properties": {"ID_TRC": 1600695, "DEB_GCH": 810, "FIN_GCH": 820, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Upper-Belmont", "DEB_DRT": 799, "FIN_DRT": 815, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Upper-Belmont "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6157792426567, 45.489323496836136], [-73.61588196447104, 45.4893704889989], [-73.61611249295473, 45.48948591178317], [-73.61628508745295, 45.48956404839102]]}, "properties": {"ID_TRC": 1600698, "DEB_GCH": 790, "FIN_GCH": 796, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lexington", "DEB_DRT": 779, "FIN_DRT": 789, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Lexington "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61417045958412, 45.48860648752374], [-73.61434645199702, 45.488680078557735], [-73.61566205867095, 45.4892709093649], [-73.6157792426567, 45.489323496836136]]}, "properties": {"ID_TRC": 1600699, "DEB_GCH": 758, "FIN_GCH": 786, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lexington", "DEB_DRT": 775, "FIN_DRT": 777, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Lexington "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61372370819275, 45.484653479304484], [-73.61378786298116, 45.484617350939175], [-73.61455804191564, 45.48415878538567], [-73.61464485723545, 45.484118647714865]]}, "properties": {"ID_TRC": 1600700, "DEB_GCH": 4740, "FIN_GCH": 4754, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": null, "DIR_VOIE": null, "NOM_VOIE": "The Boulevard", "DEB_DRT": 4737, "FIN_DRT": 4753, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "The Boulevard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61464485723545, 45.484118647714865], [-73.61474662775097, 45.48407004247688], [-73.61513474815295, 45.483850096021655]]}, "properties": {"ID_TRC": 1600701, "DEB_GCH": 4760, "FIN_GCH": 4760, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": null, "DIR_VOIE": null, "NOM_VOIE": "The Boulevard", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "The Boulevard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61359331605487, 45.485544942394654], [-73.61492959724589, 45.486149333322814], [-73.61500223378118, 45.48618268408757]]}, "properties": {"ID_TRC": 1600702, "DEB_GCH": 712, "FIN_GCH": 732, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Upper-Roslyn", "DEB_DRT": 715, "FIN_DRT": 731, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Upper-Roslyn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61355592565923, 45.49007935484815], [-73.61359279248572, 45.49003882808754], [-73.61408726415168, 45.4895051255339], [-73.614128086615, 45.48946089695675]]}, "properties": {"ID_TRC": 1600703, "DEB_GCH": 26, "FIN_GCH": 28, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Shorncliffe", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Shorncliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61355592565923, 45.49007935484815], [-73.6136160428469, 45.49010854948399], [-73.6150332997029, 45.49075220229624], [-73.61508118504467, 45.490772454792165]]}, "properties": {"ID_TRC": 1600705, "DEB_GCH": 36, "FIN_GCH": 52, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Roxborough", "DEB_DRT": 31, "FIN_DRT": 45, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Roxborough "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61452639930147, 45.49138020973848], [-73.61457278417008, 45.491327091721196], [-73.61496867519328, 45.49088725715292], [-73.61508118504467, 45.490772454792165]]}, "properties": {"ID_TRC": 1600706, "DEB_GCH": 10, "FIN_GCH": 12, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Devon", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Devon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61287048161876, 45.490824952240374], [-73.61296023930326, 45.49086757263304], [-73.61433715730509, 45.49149228535359], [-73.61440490781781, 45.49152401781246]]}, "properties": {"ID_TRC": 1600708, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "jardin", "DIR_VOIE": null, "NOM_VOIE": "Surrey", "DEB_DRT": 31, "FIN_DRT": 43, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Jardin Surrey "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61508118504467, 45.490772454792165], [-73.61567866345635, 45.490680995973214], [-73.61573386285532, 45.4906741442059]]}, "properties": {"ID_TRC": 1600709, "DEB_GCH": 16, "FIN_GCH": 18, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Devon", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Devon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61800471932031, 45.48941992936398], [-73.61810733100333, 45.48947698035789], [-73.61818893671708, 45.48956784713106], [-73.61822589069047, 45.4896800942712], [-73.61820227262388, 45.489837318062634], [-73.6181388014732, 45.49002153163024], [-73.61807994626213, 45.490123771695984], [-73.61803704973532, 45.49022262756985], [-73.61810602888382, 45.49114554079604], [-73.61812205665788, 45.49117584179886], [-73.61823225860046, 45.49119818521879], [-73.61833605288032, 45.49120986750892], [-73.61843902173807, 45.49120863778584], [-73.61854435163569, 45.491191124175515], [-73.61865204938958, 45.49116125718687], [-73.61872780998023, 45.49112749277301], [-73.61878756242878, 45.49107297226099], [-73.61882336113354, 45.49101510806709], [-73.61883840149827, 45.49095558117426], [-73.61881827888493, 45.490875879441575], [-73.61877340395577, 45.49079283509898], [-73.61875212021323, 45.49070857234549], [-73.61874112807399, 45.49062780940958], [-73.6187521235406, 45.49054246117624], [-73.61877911548869, 45.49047225464784], [-73.61881890531834, 45.490414386074114], [-73.61886428981079, 45.49036044218766], [-73.61891446718828, 45.49030817735336], [-73.61899099103069, 45.49025813061838], [-73.61907312575518, 45.49021930669994], [-73.61917924444536, 45.49019842310876], [-73.61928140357473, 45.49019270234404], [-73.61938279914078, 45.4902032634081], [-73.61946905940714, 45.490228437499596], [-73.61953617274473, 45.49025868396898], [-73.61958174978527, 45.49029569076106], [-73.61962494078125, 45.490337190710285], [-73.61966490441405, 45.49036185184881], [-73.61972251049278, 45.49037125538278], [-73.61978784357832, 45.49036846013403], [-73.61986210635578, 45.49035325246382], [-73.61994897221537, 45.49031607844172], [-73.62001510003107, 45.4902576207366], [-73.62007012603473, 45.49019227375056]]}, "properties": {"ID_TRC": 1600710, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 4, "LIE_VOIE": "de", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Kingston", "DEB_DRT": 4725, "FIN_DRT": 4725, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de Kingston "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61561765695355, 45.48551501616945], [-73.61569412597947, 45.48555379611286], [-73.61582116690465, 45.485610748191874], [-73.61589880833263, 45.48564610154582], [-73.61595487905232, 45.4856662032126], [-73.61602835770876, 45.4856848471928], [-73.61632371675942, 45.48574433592969]]}, "properties": {"ID_TRC": 1600711, "DEB_GCH": 708, "FIN_GCH": 716, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Grosvenor", "DEB_DRT": 707, "FIN_DRT": 715, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Grosvenor "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61780591882612, 45.48928358304891], [-73.61782489388672, 45.48927807239765], [-73.61783897632624, 45.48926951339071], [-73.61785153070132, 45.48925653141952], [-73.61786385530277, 45.489237293734945], [-73.61787184591905, 45.489220196753834], [-73.61787740222736, 45.48920384960565], [-73.6178825415237, 45.489188725552225], [-73.61788891511955, 45.48915848124976], [-73.61794523565322, 45.488739954560614], [-73.61796963007157, 45.48854653393617], [-73.61797035009552, 45.488537533839235], [-73.61797064881804, 45.48852898432501], [-73.61797042112975, 45.48852115500574], [-73.61796977089764, 45.48851296640967], [-73.61796880616333, 45.48850576796827], [-73.61796752467242, 45.48849847964446], [-73.61796518693762, 45.48849056274465], [-73.61796327757071, 45.48848579508612], [-73.61796062826821, 45.48848048828445], [-73.61795237607564, 45.48847023744397], [-73.61794338601679, 45.488460437512366], [-73.61793287063254, 45.48845104116073]]}, "properties": {"ID_TRC": 1600712, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "cr\u00c3\u00aate", "DIR_VOIE": null, "NOM_VOIE": "Lansdowne", "DEB_DRT": 5, "FIN_DRT": 19, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Cr\u00c3\u00aate Lansdowne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61439182695752, 45.48684564639377], [-73.61447571935885, 45.48688299367929], [-73.61791728313179, 45.48844174587763], [-73.61793287063254, 45.48845104116073]]}, "properties": {"ID_TRC": 1600713, "DEB_GCH": 744, "FIN_GCH": 814, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Upper-Lansdowne", "DEB_DRT": 749, "FIN_DRT": 815, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Upper-Lansdowne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61573386285532, 45.4906741442059], [-73.61579091659527, 45.49066774315428], [-73.61586254497583, 45.49065570146111], [-73.61589714070064, 45.49064747710115], [-73.6159480787887, 45.49063212646822], [-73.6159956384779, 45.49061596938268], [-73.6160421600272, 45.490598427570575], [-73.61609264127843, 45.49057609386484], [-73.61613944642875, 45.49055255808198], [-73.61618381928847, 45.49052623500919], [-73.61622512672466, 45.49049757521599], [-73.61626315976196, 45.490467298794385], [-73.61629528334763, 45.49043720834543], [-73.61632371047423, 45.49040559169001], [-73.61634886443522, 45.49037316850071], [-73.61636906100475, 45.49034183039507], [-73.61638503690854, 45.49031076631461], [-73.61639868651287, 45.49027727502054], [-73.61641064623589, 45.49024315533028], [-73.61642049252961, 45.49020777800943], [-73.6164278081184, 45.490173123142995], [-73.61643163466805, 45.49013523216493], [-73.6164327305925, 45.49010382352941], [-73.6164322391783, 45.4900702564335], [-73.61642995267927, 45.49003606150043], [-73.61642608719129, 45.49000375785122], [-73.61641967871095, 45.48996641721086], [-73.61641274906377, 45.48993213679942], [-73.61640317817336, 45.48989641932666], [-73.61637951859761, 45.48983443802988], [-73.61636743811705, 45.48980988231496], [-73.61634148629442, 45.48976239220127], [-73.61631310747939, 45.489714634824], [-73.61626624336537, 45.489644282471545], [-73.61626078176288, 45.48962964507481], [-73.61626165572277, 45.48961436436425], [-73.61628508745295, 45.48956404839102]]}, "properties": {"ID_TRC": 1600714, "DEB_GCH": 20, "FIN_GCH": 32, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Devon", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Devon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6157792426567, 45.489323496836136], [-73.615754833355, 45.489177042516744], [-73.61575341162221, 45.48915274566113], [-73.61575388755931, 45.48912736706811], [-73.61575668638451, 45.48910279620675], [-73.61576065927807, 45.489084793475776], [-73.6157645339492, 45.48907021070607], [-73.61576883465519, 45.48905769714854], [-73.61577702753968, 45.48903915023275], [-73.61578512083064, 45.4890235733566], [-73.61579521626827, 45.48900655447285], [-73.6158061566623, 45.488989984429224], [-73.61610955142345, 45.48863699310016], [-73.61615461694261, 45.48858567139724]]}, "properties": {"ID_TRC": 1600715, "DEB_GCH": 42, "FIN_GCH": 44, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Devon", "DEB_DRT": 41, "FIN_DRT": 43, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Devon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.614128086615, 45.48946089695675], [-73.61421314683838, 45.48950094998562], [-73.61480578500087, 45.48976619580682], [-73.61495145388571, 45.489839663842474], [-73.61505055323924, 45.48989688960846], [-73.61517661445777, 45.4899799163603], [-73.61526909112924, 45.49004938785595], [-73.61534276884119, 45.49011131866087], [-73.6154022931498, 45.49016678438258], [-73.61546743815475, 45.49023565343277], [-73.61554296771726, 45.49032575030976], [-73.61558836200302, 45.49038608961227], [-73.61564161160678, 45.49046909951371], [-73.61569256439857, 45.490563990794556], [-73.61570803914498, 45.49059718255152], [-73.61571865389212, 45.49062740951612], [-73.61573386285532, 45.4906741442059]]}, "properties": {"ID_TRC": 1600716, "DEB_GCH": 72, "FIN_GCH": 96, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "croissant", "DIR_VOIE": null, "NOM_VOIE": "Summit", "DEB_DRT": 83, "FIN_DRT": 95, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Croissant Summit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.614128086615, 45.48946089695675], [-73.61417213240401, 45.48941369767847], [-73.61423023971666, 45.489343264716055], [-73.61426685213357, 45.48928878228739], [-73.61429396729847, 45.48923430934945], [-73.61431369830264, 45.48918119356224], [-73.61432742058946, 45.48913114348396], [-73.6143358449551, 45.48907029966357], [-73.61433700982637, 45.48902017239199], [-73.61433311174052, 45.488971130001936], [-73.61431866559496, 45.48891057339956], [-73.61430780079628, 45.48887396259356], [-73.61429071983947, 45.48882880317665], [-73.61427164390791, 45.488788415157664], [-73.61417045958412, 45.48860648752374]]}, "properties": {"ID_TRC": 1600717, "DEB_GCH": 32, "FIN_GCH": 36, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Shorncliffe", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Shorncliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61573386285532, 45.4906741442059], [-73.61574531664361, 45.49071314605595], [-73.61575539096317, 45.49073725394323], [-73.61579711334525, 45.49080776647749], [-73.6158451616714, 45.49087566258006], [-73.61587076711392, 45.490908574085275], [-73.61592862117791, 45.49097232046778], [-73.61599248490391, 45.491033360958205], [-73.6160623574562, 45.49109106565597], [-73.61613781531442, 45.49114525478677], [-73.61621854342569, 45.491196018869644], [-73.61633855128447, 45.49125844200571]]}, "properties": {"ID_TRC": 1600718, "DEB_GCH": 100, "FIN_GCH": 100, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "croissant", "DIR_VOIE": null, "NOM_VOIE": "Summit", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Croissant Summit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6122744911533, 45.491476082028505], [-73.61236339661329, 45.491514312254985], [-73.61505715733058, 45.49267398253103]]}, "properties": {"ID_TRC": 1600719, "DEB_GCH": 28, "FIN_GCH": 60, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Oakland", "DEB_DRT": 23, "FIN_DRT": 61, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Oakland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61299827070692, 45.49068544688434], [-73.61352077259373, 45.49011818368545], [-73.61355592565923, 45.49007935484815]]}, "properties": {"ID_TRC": 1600720, "DEB_GCH": 22, "FIN_GCH": 24, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Shorncliffe", "DEB_DRT": 21, "FIN_DRT": 23, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Shorncliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6122744911533, 45.491476082028505], [-73.61230900224434, 45.491437601555354], [-73.61287048161876, 45.490824952240374]]}, "properties": {"ID_TRC": 1600721, "DEB_GCH": 2, "FIN_GCH": 16, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Shorncliffe", "DEB_DRT": 1, "FIN_DRT": 17, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Shorncliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61139201073107, 45.4900524274776], [-73.61142289582413, 45.49016401481652], [-73.61287048161876, 45.490824952240374]]}, "properties": {"ID_TRC": 1600723, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "jardin", "DIR_VOIE": null, "NOM_VOIE": "Surrey", "DEB_DRT": 15, "FIN_DRT": 21, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Jardin Surrey "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61199347193505, 45.48936818786243], [-73.61207766252528, 45.48940488263777], [-73.61231383532541, 45.489515432187886], [-73.61349784452591, 45.490051251469325], [-73.61355592565923, 45.49007935484815]]}, "properties": {"ID_TRC": 1600724, "DEB_GCH": 6, "FIN_GCH": 10, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Roxborough", "DEB_DRT": 3, "FIN_DRT": 9, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Roxborough "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6129646940403, 45.48806326184838], [-73.61311537356612, 45.48813072554804], [-73.6140241208366, 45.48854406092232], [-73.61417045958412, 45.48860648752374]]}, "properties": {"ID_TRC": 1600733, "DEB_GCH": 746, "FIN_GCH": 756, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lexington", "DEB_DRT": 753, "FIN_DRT": 765, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Lexington "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6118743148171, 45.48666468821163], [-73.6119939154958, 45.48670912754607], [-73.61370455790214, 45.4874755300118], [-73.61376837389635, 45.48750432609167]]}, "properties": {"ID_TRC": 1600734, "DEB_GCH": 724, "FIN_GCH": 742, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Upper-Belmont", "DEB_DRT": 719, "FIN_DRT": 739, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Upper-Belmont "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61186636902592, 45.4889026771321], [-73.61192543732973, 45.4888957601999], [-73.6119568785244, 45.488893209596846], [-73.61209341917294, 45.48888974603886], [-73.61219345626337, 45.488890007766976], [-73.61228051654327, 45.488891812125544], [-73.61240114309179, 45.48889826303919], [-73.61262173402288, 45.48892171394721], [-73.6127081832079, 45.488934317625606], [-73.61287898763777, 45.48896789654112], [-73.61304653726447, 45.489009667689054], [-73.61312857755583, 45.48903370457199], [-73.61321019927769, 45.48905954172621], [-73.61344337954048, 45.489150923409966], [-73.6140444641305, 45.489421834508214], [-73.614128086615, 45.48946089695675]]}, "properties": {"ID_TRC": 1600736, "DEB_GCH": 58, "FIN_GCH": 70, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "croissant", "DIR_VOIE": null, "NOM_VOIE": "Summit", "DEB_DRT": 55, "FIN_DRT": 69, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Croissant Summit "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61076810710757, 45.48827596241771], [-73.61089107623779, 45.4882408985129], [-73.61100878274773, 45.48821225638739], [-73.61115982654194, 45.48817962193426], [-73.61130792363623, 45.488150949697335], [-73.61146066908628, 45.48812515268791], [-73.61163072023196, 45.48809951853256], [-73.6117932868676, 45.48807794120334], [-73.61195892219592, 45.48806059035848], [-73.61207075769939, 45.48805139135277], [-73.61213585714772, 45.48804754766443], [-73.6121959997909, 45.48804523876984], [-73.6122576220025, 45.4880439184445], [-73.6123143928215, 45.48804377265511], [-73.61244133841065, 45.488045177504695], [-73.61255826413318, 45.488048662181306], [-73.61280628075583, 45.48806875605564], [-73.6129646940403, 45.48806326184838]]}, "properties": {"ID_TRC": 1600738, "DEB_GCH": 76, "FIN_GCH": 80, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Sunnyside", "DEB_DRT": 77, "FIN_DRT": 79, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Sunnyside "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6129646940403, 45.48806326184838], [-73.61309851787144, 45.48803912920088], [-73.61314924483206, 45.488024680088365], [-73.6131916336674, 45.48800915917646], [-73.61323190678142, 45.48799094080975], [-73.61327501786958, 45.48796740962663], [-73.6133116940132, 45.487944695121364], [-73.6133813443461, 45.48789512956087], [-73.61341674167794, 45.48786620668239], [-73.61352427356852, 45.48776359756867], [-73.61371338288406, 45.48756128460267], [-73.61376837389635, 45.48750432609167]]}, "properties": {"ID_TRC": 1600739, "DEB_GCH": 82, "FIN_GCH": 84, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Sunnyside", "DEB_DRT": 83, "FIN_DRT": 85, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Sunnyside "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6112979366718, 45.48729010403178], [-73.61135515782475, 45.48732755562671], [-73.61140068445526, 45.48735153936207], [-73.61266913940594, 45.48792868198966], [-73.6129646940403, 45.48806326184838]]}, "properties": {"ID_TRC": 1600740, "DEB_GCH": 722, "FIN_GCH": 740, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lexington", "DEB_DRT": 737, "FIN_DRT": 737, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Lexington "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6127814100435, 45.48521117071], [-73.61286389473958, 45.4851619169382], [-73.61352522792195, 45.48477159074764], [-73.61365253401428, 45.48469362005701], [-73.61372370819275, 45.484653479304484]]}, "properties": {"ID_TRC": 1600771, "DEB_GCH": 4720, "FIN_GCH": 4732, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": null, "DIR_VOIE": null, "NOM_VOIE": "The Boulevard", "DEB_DRT": 4721, "FIN_DRT": 4727, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "The Boulevard "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60926255380785, 45.48262713555877], [-73.60935665859184, 45.48266990428525], [-73.61354847680151, 45.48457916190191], [-73.61372370819275, 45.484653479304484]]}, "properties": {"ID_TRC": 1600772, "DEB_GCH": 596, "FIN_GCH": 672, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Grosvenor", "DEB_DRT": 629, "FIN_DRT": 673, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Grosvenor "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61301151805812, 45.48620846284402], [-73.61313044260243, 45.486275319967014], [-73.61430140065053, 45.486805204491624], [-73.61439182695752, 45.48684564639377]]}, "properties": {"ID_TRC": 1600774, "DEB_GCH": 724, "FIN_GCH": 740, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Upper-Lansdowne", "DEB_DRT": 723, "FIN_DRT": 729, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Upper-Lansdowne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61372370819275, 45.484653479304484], [-73.61381999042948, 45.484694893077055], [-73.61450390726911, 45.48500807964929], [-73.6155410731865, 45.4854763766666], [-73.61561765695355, 45.48551501616945]]}, "properties": {"ID_TRC": 1600775, "DEB_GCH": 688, "FIN_GCH": 704, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Grosvenor", "DEB_DRT": 681, "FIN_DRT": 703, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Grosvenor "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61301151805812, 45.48620846284402], [-73.61315810412516, 45.486072357786405], [-73.61319747915557, 45.486028042089174], [-73.61321832273572, 45.486003543378075], [-73.61325063240254, 45.48596130453478], [-73.61331878143875, 45.48584838526746], [-73.6133522397571, 45.4858002955823], [-73.61342066600928, 45.48572040369103], [-73.61356190067964, 45.48558860333012], [-73.61359331605487, 45.485544942394654]]}, "properties": {"ID_TRC": 1600776, "DEB_GCH": 4, "FIN_GCH": 6, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Belfrage", "DEB_DRT": 1, "FIN_DRT": 11, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Chemin Belfrage "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61213221823616, 45.48619381604362], [-73.61223432037374, 45.48619341027286], [-73.6123109213994, 45.48619081519114], [-73.61242412834754, 45.486183504388876], [-73.6128242010588, 45.48615647180579], [-73.6128479416427, 45.48615590844738], [-73.61288308155008, 45.48615722349566], [-73.612910686699, 45.4861591621505], [-73.61293184422334, 45.486163744846024], [-73.61301151805812, 45.48620846284402]]}, "properties": {"ID_TRC": 1600777, "DEB_GCH": 718, "FIN_GCH": 720, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Upper-Lansdowne", "DEB_DRT": 717, "FIN_DRT": 721, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Upper-Lansdowne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61323176591756, 45.48537597736844], [-73.61359331605487, 45.485544942394654]]}, "properties": {"ID_TRC": 1600778, "DEB_GCH": 698, "FIN_GCH": 710, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Upper-Roslyn", "DEB_DRT": 701, "FIN_DRT": 709, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Upper-Roslyn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60989823292296, 45.48194125789679], [-73.60995981294627, 45.481992070100596], [-73.60997397921324, 45.482000914100766], [-73.60999541377163, 45.48201188981039], [-73.61013568032692, 45.48207689116109], [-73.61302124460424, 45.48338007433493], [-73.6144365314206, 45.48402355706227], [-73.61464485723545, 45.484118647714865]]}, "properties": {"ID_TRC": 1600779, "DEB_GCH": 596, "FIN_GCH": 680, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 595, "FIN_DRT": 663, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64227028118262, 45.477337992121974], [-73.64234949061921, 45.47729244823527], [-73.64259484419614, 45.47710756579338], [-73.64268395991411, 45.477052738405675], [-73.64274127510855, 45.47702188910028], [-73.64280586778908, 45.47699040077505], [-73.64285244901689, 45.47697036389856], [-73.64293761339442, 45.47693848983119], [-73.64300697550019, 45.4769157246163], [-73.64304387569089, 45.476905599225155], [-73.64317092940422, 45.476876012122226], [-73.64325708468948, 45.47686042515847], [-73.64331551180274, 45.47685234255353], [-73.64341687422836, 45.47684285602467], [-73.64351149764856, 45.47683841746692], [-73.64358904156259, 45.47683876994172], [-73.6436266040962, 45.47684025268347], [-73.64373507863151, 45.47684785560132], [-73.64383279988765, 45.47685871185669], [-73.6439296954107, 45.47687649856728], [-73.64398849372395, 45.47688992329838], [-73.64404772086861, 45.47690595746524], [-73.64410452420461, 45.47692316468544], [-73.64417447619151, 45.47694675162126]]}, "properties": {"ID_TRC": 1602861, "DEB_GCH": 2, "FIN_GCH": 16, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Albion", "DEB_DRT": 1, "FIN_DRT": 9, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Albion "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64273167550432, 45.481338620277384], [-73.6427754831169, 45.481293021824186], [-73.64333407511975, 45.48067874772289], [-73.64337700988207, 45.4806304058217]]}, "properties": {"ID_TRC": 1602868, "DEB_GCH": 51, "FIN_GCH": 55, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Merton", "DEB_DRT": 50, "FIN_DRT": 54, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Merton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64273167550432, 45.481338620277384], [-73.64279392248685, 45.481366793387295], [-73.64286405482568, 45.48139613360055], [-73.64442389803565, 45.48209369021025], [-73.64448182553139, 45.48211912692582]]}, "properties": {"ID_TRC": 1602869, "DEB_GCH": 50, "FIN_GCH": 64, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Granville", "DEB_DRT": 57, "FIN_DRT": 67, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Granville "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64227028118262, 45.477337992121974], [-73.6423690757919, 45.477360998927594], [-73.64280545531402, 45.47749544432789], [-73.64315992156594, 45.47761181203627], [-73.64328167138916, 45.4776534163397], [-73.64377969610017, 45.47783988676472], [-73.64403950687745, 45.47794719150067], [-73.64427789198503, 45.47805074312516], [-73.64519736142921, 45.47846435760001], [-73.64523200274095, 45.47847844250883], [-73.64529844072949, 45.478506923211]]}, "properties": {"ID_TRC": 1602884, "DEB_GCH": 22, "FIN_GCH": 50, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Heath", "DEB_DRT": 19, "FIN_DRT": 45, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Heath "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64185532546858, 45.48189455681003], [-73.64195899137874, 45.4818574877554], [-73.64209061991059, 45.48179621867606], [-73.64217260494824, 45.48175570973551], [-73.64228913661532, 45.481691039348846], [-73.64236182114088, 45.481644332241096], [-73.64250579491411, 45.48154174029254], [-73.64260382214628, 45.481461523747136], [-73.64268550732307, 45.48138609739208], [-73.64273167550432, 45.481338620277384]]}, "properties": {"ID_TRC": 1602888, "DEB_GCH": 42, "FIN_GCH": 44, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "croissant", "DIR_VOIE": null, "NOM_VOIE": "Merton", "DEB_DRT": 41, "FIN_DRT": 47, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Croissant Merton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63872998493336, 45.47931359440209], [-73.63910754882647, 45.47936206057638], [-73.63947503233672, 45.47940750892666], [-73.63980685426142, 45.47945264003308], [-73.63998607276241, 45.47948049846326], [-73.64017975788093, 45.47951346843647], [-73.64045009159231, 45.479566682425514], [-73.64071949305705, 45.479626826417785], [-73.64095808598009, 45.47968637790312], [-73.64117938077342, 45.479747839948324], [-73.6414554933874, 45.47983299212218], [-73.64158157439715, 45.47987522275066], [-73.64170501868028, 45.479917816674295], [-73.64196966324974, 45.48001522064387], [-73.6422276803449, 45.48011983192424], [-73.64235643031908, 45.480174117667566], [-73.64330411672677, 45.48059788122644], [-73.64337700988207, 45.4806304058217]]}, "properties": {"ID_TRC": 1602890, "DEB_GCH": 60, "FIN_GCH": 74, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Stratford", "DEB_DRT": 55, "FIN_DRT": 97, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Stratford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63943662628392, 45.48025318791204], [-73.63942911073484, 45.480351375081085], [-73.63943184582445, 45.480412581561424], [-73.63943887911358, 45.480469540692305], [-73.63945282284388, 45.480534369318285], [-73.63947017442435, 45.48058283164496], [-73.63949617763431, 45.48064825158613], [-73.63953425109139, 45.48071608141378], [-73.63957402644625, 45.48077542426996], [-73.63961291506104, 45.48082446562701], [-73.63965351602259, 45.480869263000194], [-73.63969842678766, 45.48091466045971], [-73.6397666155738, 45.480967303106105], [-73.63982184704487, 45.481006021824534], [-73.63988656308278, 45.4810477591347], [-73.6399659212213, 45.48108887264604], [-73.6400590741975, 45.48113360501851], [-73.64016600102582, 45.48117347249099], [-73.64030565639067, 45.48121087548133], [-73.640399608612, 45.48123075913161], [-73.6404831989584, 45.48123974660914], [-73.64059005214615, 45.48125052398638], [-73.64068827285688, 45.48125525142975], [-73.64078561934326, 45.481253919399855], [-73.64087778755659, 45.48124895739367], [-73.64099146899035, 45.481233060372254], [-73.64110339980448, 45.48120746865403], [-73.64122048670872, 45.4811770220786], [-73.64130483733304, 45.481146615883475], [-73.64138573627123, 45.48111378971165], [-73.64148382084151, 45.48106276124807], [-73.64157628742659, 45.481007975604776], [-73.64162947390645, 45.4809699325486], [-73.64166652155073, 45.480933349238384], [-73.64171252520542, 45.480883090185316]]}, "properties": {"ID_TRC": 1602891, "DEB_GCH": 6, "FIN_GCH": 18, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "croissant", "DIR_VOIE": null, "NOM_VOIE": "Kilburn", "DEB_DRT": 1, "FIN_DRT": 25, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Croissant Kilburn "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6404667553735, 45.48210933367059], [-73.64066350313887, 45.482099822469166], [-73.64083009230214, 45.48209457761755], [-73.64103010755005, 45.482081191966856], [-73.6411144973728, 45.48207361812106], [-73.64119803447171, 45.48206271583533], [-73.64129833424266, 45.48204621303225], [-73.64136393099596, 45.48203389261132], [-73.64147001746099, 45.48201081316733], [-73.64175332625943, 45.481931627751344], [-73.64185532546858, 45.48189455681003]]}, "properties": {"ID_TRC": 1602893, "DEB_GCH": 30, "FIN_GCH": 40, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "croissant", "DIR_VOIE": null, "NOM_VOIE": "Merton", "DEB_DRT": 33, "FIN_DRT": 39, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Croissant Merton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63826204164894, 45.4801018966065], [-73.6382492484498, 45.480153422464646], [-73.63824347347483, 45.48025827373984], [-73.63824292126891, 45.480384330777326], [-73.63825529649218, 45.48051279567818], [-73.63827968952559, 45.48062427694484], [-73.6383048874109, 45.480711516262176], [-73.63834913003338, 45.48083691232363], [-73.63838984424487, 45.480928374701925], [-73.6384678637606, 45.481083690627074], [-73.63850804359936, 45.48114145840387]]}, "properties": {"ID_TRC": 1602894, "DEB_GCH": 2, "FIN_GCH": 8, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "croissant", "DIR_VOIE": null, "NOM_VOIE": "Merton", "DEB_DRT": 1, "FIN_DRT": 21, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Croissant Merton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63826204164894, 45.4801018966065], [-73.6382768847561, 45.48004539863662], [-73.63831289541056, 45.4799294437594], [-73.63835868878151, 45.47981451499287], [-73.6383777263062, 45.4797772762956], [-73.63842100517344, 45.47969982961462], [-73.63846282924749, 45.47963147403185], [-73.63857893726704, 45.47948005436575], [-73.63866032580754, 45.47936863375109], [-73.63872998493336, 45.47931359440209]]}, "properties": {"ID_TRC": 1602895, "DEB_GCH": 3, "FIN_GCH": 5, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Northcote", "DEB_DRT": 2, "FIN_DRT": 4, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Northcote "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63679145386764, 45.480044705800736], [-73.63692195399229, 45.48008554804008], [-73.63693747334132, 45.48008957919662], [-73.63695246267814, 45.48009271091485], [-73.6369668176776, 45.48009512351435], [-73.63698391484121, 45.480097172885], [-73.6370007989603, 45.480098322661895], [-73.63702074110927, 45.48009883865051], [-73.6370406799745, 45.48009818461391], [-73.63706146080644, 45.48009635998783], [-73.63708213269524, 45.48009336523808], [-73.63710933780727, 45.480086853240806], [-73.6371890487359, 45.480065158965374], [-73.63725116126956, 45.480052395387986], [-73.63731623292851, 45.48004160788239], [-73.63742276551811, 45.48002942069773], [-73.63745420105244, 45.4800270430486], [-73.63752191307056, 45.48002505229942], [-73.63759774849021, 45.48002542979501], [-73.63767851854503, 45.48003100263162], [-73.63819291617452, 45.480094726815395], [-73.63826204164894, 45.4801018966065]]}, "properties": {"ID_TRC": 1602897, "DEB_GCH": 2, "FIN_GCH": 8, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Granville", "DEB_DRT": 1, "FIN_DRT": 7, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Granville "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63680559244739, 45.479307804355585], [-73.63688566756576, 45.4793045391655], [-73.63776737220758, 45.479258572545184], [-73.63789175158175, 45.47925365260488], [-73.63801044373537, 45.47925305934021], [-73.63822579734382, 45.47925981842883], [-73.63843283817408, 45.4792756765387], [-73.63872998493336, 45.47931359440209]]}, "properties": {"ID_TRC": 1602898, "DEB_GCH": 44, "FIN_GCH": 50, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Stratford", "DEB_DRT": 43, "FIN_DRT": 49, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Stratford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63663711137322, 45.47768113109592], [-73.63671165808633, 45.47767766724949], [-73.63755567530524, 45.477632647195236], [-73.63765420557434, 45.4776287486937], [-73.63781213466044, 45.47762540857839], [-73.6379964495972, 45.47762617589336], [-73.6381786605773, 45.47762937549309], [-73.63830306274168, 45.477635434335085], [-73.63842567462427, 45.477642755221986], [-73.63855810710145, 45.477653483934276], [-73.63873666153039, 45.47767144592108], [-73.63977946071617, 45.47780381474106], [-73.63987498321266, 45.47781776827067]]}, "properties": {"ID_TRC": 1602900, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5601, "FIN_DRT": 5631, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63662728999739, 45.477586676896614], [-73.63670097701498, 45.477579947190506], [-73.63761251594157, 45.47753547578319], [-73.63776485066528, 45.47753106243115], [-73.63792130566209, 45.4775289837286], [-73.63809169728032, 45.47753111769585], [-73.63835147240351, 45.47754268246358], [-73.63857781876749, 45.47756031685029], [-73.63878064824785, 45.47758229907837], [-73.63965426678347, 45.47769111624923], [-73.63996056532694, 45.477729361449505]]}, "properties": {"ID_TRC": 1602901, "DEB_GCH": 5608, "FIN_GCH": 5638, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63996056532694, 45.477729361449505], [-73.64001724902599, 45.47766979341931], [-73.64006369360119, 45.477636618957746], [-73.64010350908718, 45.47761056184992], [-73.64041271655204, 45.477432445282986], [-73.64064117002489, 45.47727935556872], [-73.64089002347201, 45.477099602058054], [-73.64096623557491, 45.477048911200455]]}, "properties": {"ID_TRC": 1602902, "DEB_GCH": 1, "FIN_GCH": 5, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Cressy", "DEB_DRT": 4, "FIN_DRT": 6, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Cressy "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63996056532694, 45.477729361449505], [-73.64018036214611, 45.47775724679359], [-73.64039006880454, 45.47778641717476], [-73.64057033457495, 45.47781346354677], [-73.64098355963407, 45.47788593885287], [-73.64132464617003, 45.47795488185168]]}, "properties": {"ID_TRC": 1602903, "DEB_GCH": 5642, "FIN_GCH": 5646, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64096623557491, 45.477048911200455], [-73.64108617604646, 45.477067412230326], [-73.6412837864715, 45.477112074635], [-73.64165028016048, 45.477188745075], [-73.64199906409947, 45.47727065614301], [-73.6421488673117, 45.47730889689501], [-73.64227028118262, 45.477337992121974]]}, "properties": {"ID_TRC": 1602904, "DEB_GCH": 12, "FIN_GCH": 14, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Heath", "DEB_DRT": 11, "FIN_DRT": 15, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Heath "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64132464617003, 45.47795488185168], [-73.64137929222439, 45.47792441694723], [-73.64173552937105, 45.477695122328704], [-73.64197167128819, 45.477537880448764], [-73.64218841385097, 45.47738606198327], [-73.64227028118262, 45.477337992121974]]}, "properties": {"ID_TRC": 1602908, "DEB_GCH": 25, "FIN_GCH": 29, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Northcote", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Northcote "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64004012520654, 45.478617898847226], [-73.64022509862843, 45.478524295710265], [-73.64032235639105, 45.47847485994007], [-73.64063501213506, 45.478324006400626], [-73.64086798899507, 45.47820672797266], [-73.64109135270643, 45.47808496125629], [-73.64119822857919, 45.478025426695794]]}, "properties": {"ID_TRC": 1602910, "DEB_GCH": 17, "FIN_GCH": 19, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Northcote", "DEB_DRT": 18, "FIN_DRT": 22, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Northcote "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63663711137322, 45.47768113109592], [-73.6367141923658, 45.478420379498864], [-73.63671879965972, 45.47847175592062]]}, "properties": {"ID_TRC": 1602911, "DEB_GCH": 8, "FIN_GCH": 10, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Ellerdale", "DEB_DRT": 7, "FIN_DRT": 9, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Ellerdale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63671879965972, 45.47847175592062], [-73.6367238269324, 45.47852143067842], [-73.63680019281148, 45.479254695113895], [-73.63680559244739, 45.479307804355585]]}, "properties": {"ID_TRC": 1602912, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Ellerdale", "DEB_DRT": 11, "FIN_DRT": 19, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Ellerdale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63680559244739, 45.479307804355585], [-73.63681965644739, 45.47940649080801], [-73.63684387125242, 45.4796465640951], [-73.63684504692134, 45.47969650890618], [-73.63684517784769, 45.47975059471337], [-73.63683816976868, 45.47981926816421], [-73.6368286251549, 45.479886144508825], [-73.63681257429877, 45.47996769772081], [-73.63679145386764, 45.480044705800736]]}, "properties": {"ID_TRC": 1602913, "DEB_GCH": 20, "FIN_GCH": 22, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Ellerdale", "DEB_DRT": 21, "FIN_DRT": 23, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Ellerdale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63679145386764, 45.480044705800736], [-73.6367762823434, 45.48009949156253], [-73.63670770257886, 45.48023033397954], [-73.6366532491984, 45.48031283296402], [-73.63663041808897, 45.4803394084508], [-73.63650625154047, 45.48047706674034], [-73.63646587251506, 45.48052027185647]]}, "properties": {"ID_TRC": 1602915, "DEB_GCH": 26, "FIN_GCH": 26, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Ellerdale", "DEB_DRT": 25, "FIN_DRT": 27, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Ellerdale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63646587251506, 45.48052027185647], [-73.63653935321415, 45.48055289144787], [-73.63705721951493, 45.48078409424347], [-73.63812529639331, 45.48126481210115], [-73.63821801908716, 45.48130652795877]]}, "properties": {"ID_TRC": 1602917, "DEB_GCH": 64, "FIN_GCH": 70, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 61, "FIN_DRT": 79, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63821801908716, 45.48130652795877], [-73.63826687940049, 45.48126050106794], [-73.6383407560059, 45.48122558418665], [-73.63838163951873, 45.481203576386335], [-73.63843536852089, 45.481170573527045], [-73.63850804359936, 45.48114145840387]]}, "properties": {"ID_TRC": 1602919, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63850804359936, 45.48114145840387], [-73.63854378229759, 45.48119339042379], [-73.63862059731413, 45.48128113080062], [-73.63872214784993, 45.48138925523031]]}, "properties": {"ID_TRC": 1602921, "DEB_GCH": 10, "FIN_GCH": 26, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "croissant", "DIR_VOIE": null, "NOM_VOIE": "Merton", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Croissant Merton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63953109477038, 45.482825845191904], [-73.6395723044034, 45.482781690456726], [-73.64000628418229, 45.48229783436838]]}, "properties": {"ID_TRC": 1602923, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Langhorne", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Langhorne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6389314546688, 45.483485973710415], [-73.63897577418487, 45.48343999907366], [-73.63948643505906, 45.482874218554805], [-73.63953109477038, 45.482825845191904]]}, "properties": {"ID_TRC": 1602924, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Langhorne", "DEB_DRT": 1, "FIN_DRT": 27, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Langhorne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64185532546858, 45.48189455681003], [-73.64189673106115, 45.48193801925587], [-73.64191513575332, 45.48195626484863], [-73.64193089011243, 45.481969384382005], [-73.64194516002678, 45.48197971600901], [-73.64195805318654, 45.48198806923318], [-73.64197083843024, 45.48199552274362], [-73.64198108689759, 45.48200099974365], [-73.64200580554724, 45.48201257816023], [-73.64202798720254, 45.482022269823496], [-73.64322287692443, 45.4825556080982], [-73.64377859506254, 45.482799601802945], [-73.64384487758245, 45.48282808847391]]}, "properties": {"ID_TRC": 1602925, "DEB_GCH": 8, "FIN_GCH": 18, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lyncroft", "DEB_DRT": 1, "FIN_DRT": 29, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Lyncroft "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64171252520542, 45.480883090185316], [-73.64265258939231, 45.481302984590386], [-73.64273167550432, 45.481338620277384]]}, "properties": {"ID_TRC": 1602927, "DEB_GCH": 42, "FIN_GCH": 48, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Granville", "DEB_DRT": 47, "FIN_DRT": 49, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Granville "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63826204164894, 45.4801018966065], [-73.63833317713714, 45.48011192565907], [-73.63943662628392, 45.48025318791204]]}, "properties": {"ID_TRC": 1602928, "DEB_GCH": 16, "FIN_GCH": 20, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Granville", "DEB_DRT": 15, "FIN_DRT": 17, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Granville "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63653657227388, 45.47678998870803], [-73.63654925394954, 45.47687683017625], [-73.63662728999739, 45.477586676896614]]}, "properties": {"ID_TRC": 1602929, "DEB_GCH": 2, "FIN_GCH": 2, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Ellerdale", "DEB_DRT": 1, "FIN_DRT": 1, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Ellerdale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63987498321266, 45.47781776827067], [-73.63997703013156, 45.477831290797354], [-73.64031305274531, 45.47787191561267], [-73.64041690382928, 45.47788654684121], [-73.64057395420029, 45.47791128191517], [-73.640833919268, 45.477955778354016], [-73.64119822857919, 45.478025426695794]]}, "properties": {"ID_TRC": 1602930, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5633, "FIN_DRT": 5641, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63646587251506, 45.48052027185647], [-73.63642848421257, 45.48056112343663], [-73.6359125587946, 45.48113544599542], [-73.6358720503417, 45.48118088087028]]}, "properties": {"ID_TRC": 1602933, "DEB_GCH": 32, "FIN_GCH": 32, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Ellerdale", "DEB_DRT": 35, "FIN_DRT": 39, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Ellerdale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6358720503417, 45.48118088087028], [-73.63582479995684, 45.4812336430987], [-73.63558801358292, 45.481492080016594]]}, "properties": {"ID_TRC": 1602934, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Ellerdale", "DEB_DRT": 43, "FIN_DRT": 43, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Ellerdale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63527278969832, 45.48183974858316], [-73.63531315855343, 45.48179544879782], [-73.63558801358292, 45.481492080016594]]}, "properties": {"ID_TRC": 1602935, "DEB_GCH": 5550, "FIN_GCH": 5552, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Isabella", "DEB_DRT": 5551, "FIN_DRT": 5553, "ARR_DRT": "N/A", "LIM_GCH": "C\u00c3\u00b4te-Saint-Luc", "LIM_DRT": "C\u00c3\u00b4te-Saint-Luc", "POSITION": 5, "ODONYME": "Avenue Isabella "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63271686905209, 45.47976838578752], [-73.63288382236038, 45.479837705751315], [-73.63581035254153, 45.481148886635644], [-73.6358720503417, 45.48118088087028]]}, "properties": {"ID_TRC": 1602936, "DEB_GCH": 64, "FIN_GCH": 130, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Dufferin", "DEB_DRT": 51, "FIN_DRT": 129, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Dufferin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6358720503417, 45.48118088087028], [-73.63593342459282, 45.48121290537635], [-73.63946809628408, 45.48279702671386], [-73.63953109477038, 45.482825845191904]]}, "properties": {"ID_TRC": 1602937, "DEB_GCH": 140, "FIN_GCH": 226, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Dufferin", "DEB_DRT": 141, "FIN_DRT": 227, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Dufferin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63331519066895, 45.47910919872155], [-73.63336495370534, 45.479131057077716], [-73.63639718485165, 45.4804888961565], [-73.63646587251506, 45.48052027185647]]}, "properties": {"ID_TRC": 1602938, "DEB_GCH": 18, "FIN_GCH": 54, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 19, "FIN_DRT": 55, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63331519066895, 45.47910919872155], [-73.63335519656512, 45.47906474323217], [-73.63391417812485, 45.4784473645887], [-73.633957245658, 45.4783996836169]]}, "properties": {"ID_TRC": 1602940, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5567, "FIN_DRT": 5569, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6332044171973, 45.47905912144499], [-73.63324472121208, 45.47901519588105], [-73.63380507114408, 45.478396106235785], [-73.63384647295602, 45.478349853963856]]}, "properties": {"ID_TRC": 1602941, "DEB_GCH": 5564, "FIN_GCH": 5570, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.633957245658, 45.4783996836169], [-73.63400579932328, 45.47842124908984], [-73.63489034762709, 45.47882004865409], [-73.63496658976642, 45.478853188142054]]}, "properties": {"ID_TRC": 1602943, "DEB_GCH": 12, "FIN_GCH": 16, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Stratford", "DEB_DRT": 11, "FIN_DRT": 19, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Stratford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63496658976642, 45.478853188142054], [-73.6350430669364, 45.478886823341696], [-73.63573075165766, 45.47919585547488], [-73.63576602541092, 45.47921030243975], [-73.63583878143572, 45.47923640396028], [-73.63595164766208, 45.47927001731668], [-73.6360291329779, 45.47928837350443], [-73.6361079822668, 45.47930348856579], [-73.6361879837719, 45.47931518233116], [-73.63626882096304, 45.47932345540067], [-73.63636969398218, 45.47932738455577], [-73.63644417937326, 45.479326755700626], [-73.63647215666967, 45.47932515317099], [-73.63672584201844, 45.479311120167196], [-73.63680559244739, 45.479307804355585]]}, "properties": {"ID_TRC": 1602944, "DEB_GCH": 26, "FIN_GCH": 32, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Stratford", "DEB_DRT": 21, "FIN_DRT": 37, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Stratford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63496658976642, 45.478853188142054], [-73.63501132792364, 45.47880595675038], [-73.63502175418836, 45.47879811508382], [-73.63503270739386, 45.478790092599034], [-73.63504471536253, 45.47878188912181], [-73.63505946307308, 45.4787723321837], [-73.63507379099475, 45.47876358605221], [-73.6350980242165, 45.478749878371495], [-73.63513764654677, 45.47872994286212], [-73.63519118057795, 45.47870396145086], [-73.6352660106735, 45.478671295256184], [-73.63534475268102, 45.47864204424557], [-73.63542582381105, 45.4786163000472], [-73.63550795955005, 45.478594514079695], [-73.63557186105237, 45.47858021932511], [-73.6356353472652, 45.478568804763036], [-73.63573047823688, 45.4785546528029], [-73.635875716446, 45.47853738146714], [-73.63613223549284, 45.47850944804785], [-73.63635354009816, 45.47849145553408], [-73.63662950269254, 45.4784763667229], [-73.63671879965972, 45.47847175592062]]}, "properties": {"ID_TRC": 1602945, "DEB_GCH": 2, "FIN_GCH": 14, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Thurlow", "DEB_DRT": 1, "FIN_DRT": 9, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Thurlow "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63384647295602, 45.478349853963856], [-73.6338876726949, 45.478303586391036], [-73.63391703576302, 45.478272954248986], [-73.63394913364188, 45.47823889902385], [-73.63406894784846, 45.478133916163955], [-73.6341499436653, 45.478076495192965], [-73.63423559030537, 45.478022668536674], [-73.63431082083545, 45.47798100312312], [-73.63443780924457, 45.47792082831776], [-73.63448734714119, 45.47790043143728], [-73.63457209655913, 45.47786901402443], [-73.63462406894155, 45.477851853890726], [-73.63473919788383, 45.47781824068798], [-73.63480225461664, 45.477803857373715], [-73.63495157892193, 45.47777551314487], [-73.63514193640086, 45.477743970267824], [-73.63551710438603, 45.47768553380322], [-73.63569847627647, 45.477661236553374], [-73.63592208050045, 45.47763577251021], [-73.63612713270801, 45.47761716965203], [-73.63633599525156, 45.47760351171186], [-73.6365550247165, 45.47759218601269], [-73.63662728999739, 45.477586676896614]]}, "properties": {"ID_TRC": 1602946, "DEB_GCH": 5578, "FIN_GCH": 5606, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.633957245658, 45.4783996836169], [-73.63400057045739, 45.478351780289415], [-73.63403488753782, 45.47831925262708], [-73.63410121317816, 45.47825941909359], [-73.63416343685371, 45.478204990095676], [-73.63419629498799, 45.47818029321636], [-73.63427877193558, 45.47812449036401], [-73.63432860327087, 45.47809428397592], [-73.63443270870755, 45.478038635544664], [-73.63448772016153, 45.478013012659986], [-73.634543158887, 45.47798936913385], [-73.6346011326217, 45.47796716257384], [-73.63466027100122, 45.477946574336016], [-73.63471951926022, 45.47792796582636], [-73.63478046041637, 45.477911155207494], [-73.63490562704946, 45.477883829372516], [-73.63510357102072, 45.477848048093925], [-73.63531892312191, 45.47781260579004], [-73.63557372724253, 45.47777459646592], [-73.63586662194915, 45.47773852093714], [-73.63609139546206, 45.477716475040886], [-73.63625995731341, 45.47770331494546], [-73.63655532196266, 45.477685593608975], [-73.63663711137322, 45.47768113109592]]}, "properties": {"ID_TRC": 1602947, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5573, "FIN_DRT": 5591, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63109858497607, 45.479042611408474], [-73.63252019720672, 45.47968180972957], [-73.63259427886037, 45.47971448335738]]}, "properties": {"ID_TRC": 1602951, "DEB_GCH": 24, "FIN_GCH": 50, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Dufferin", "DEB_DRT": 31, "FIN_DRT": 49, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Dufferin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63238491128148, 45.478685072404865], [-73.63245928962577, 45.47872336082676], [-73.63315266338735, 45.4790357317752], [-73.6332044171973, 45.47905912144499]]}, "properties": {"ID_TRC": 1602952, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 11, "FIN_DRT": 13, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Place Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63302514424146, 45.47798219107186], [-73.63308905761183, 45.478010781250646], [-73.6337930884312, 45.47832592545908], [-73.63384647295602, 45.478349853963856]]}, "properties": {"ID_TRC": 1602953, "DEB_GCH": 8, "FIN_GCH": 8, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Stratford", "DEB_DRT": 5, "FIN_DRT": 5, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Stratford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63133347978686, 45.47799414429893], [-73.63149149242462, 45.477967421753036], [-73.63228461249062, 45.47781817253447], [-73.63239571899169, 45.47779812254762], [-73.63249535078049, 45.477774371644145], [-73.63262293991339, 45.47773892617982]]}, "properties": {"ID_TRC": 1602955, "DEB_GCH": 5700, "FIN_GCH": 5740, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5727, "FIN_DRT": 5745, "ARR_DRT": "N/A", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63238491128148, 45.478685072404865], [-73.63245944442464, 45.478609249034825], [-73.63298212561767, 45.47803142409985], [-73.63302514424146, 45.47798219107186]]}, "properties": {"ID_TRC": 1602956, "DEB_GCH": 2, "FIN_GCH": 8, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Holmdale", "DEB_DRT": 1, "FIN_DRT": 5, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Holmdale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63271686905209, 45.47976838578752], [-73.63295079142028, 45.47951203177356], [-73.63327122449641, 45.47915861427366], [-73.63331519066895, 45.47910919872155]]}, "properties": {"ID_TRC": 1602958, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5559, "FIN_DRT": 5565, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63259427886037, 45.47971448335738], [-73.63281978481223, 45.479480776374366], [-73.6331575847231, 45.4791094304697], [-73.6332044171973, 45.47905912144499]]}, "properties": {"ID_TRC": 1602959, "DEB_GCH": 5558, "FIN_GCH": 5558, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64261469460897, 45.48420522512327], [-73.64265663326921, 45.48415954741104], [-73.64316884713016, 45.48359401873967], [-73.64321491540251, 45.48354260834582]]}, "properties": {"ID_TRC": 1602979, "DEB_GCH": 25, "FIN_GCH": 25, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Hampstead", "DEB_DRT": 24, "FIN_DRT": 24, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Hampstead "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64261469460897, 45.48420522512327], [-73.64257129567856, 45.48425261704935], [-73.64210929261722, 45.484764129131534], [-73.64201347832048, 45.484874433078026]]}, "properties": {"ID_TRC": 1602980, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Hampstead", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Hampstead "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64261469460897, 45.48420522512327], [-73.6426802435749, 45.48423322251286], [-73.64573433220403, 45.485602245443445]]}, "properties": {"ID_TRC": 1602981, "DEB_GCH": 300, "FIN_GCH": 364, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Dufferin", "DEB_DRT": 301, "FIN_DRT": 369, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Dufferin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63953109477038, 45.482825845191904], [-73.63960467659237, 45.4828588653561], [-73.64254820815896, 45.48417687162695], [-73.64261469460897, 45.48420522512327]]}, "properties": {"ID_TRC": 1603004, "DEB_GCH": 230, "FIN_GCH": 290, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Dufferin", "DEB_DRT": 255, "FIN_DRT": 289, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Dufferin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64028519145303, 45.48216256314475], [-73.64034319808518, 45.4822377262467], [-73.64036235942518, 45.482263530768265], [-73.64038710669135, 45.48228671864217], [-73.64040644898803, 45.482300283898596], [-73.64042852884691, 45.482311595945454], [-73.64046655112297, 45.482326938143366], [-73.64050636092158, 45.482339848094824], [-73.64054606574982, 45.482352848371136], [-73.64058334376153, 45.48236594160499], [-73.64062400673511, 45.482382360315974], [-73.64313792275638, 45.48350721401715], [-73.64321491540251, 45.48354260834582]]}, "properties": {"ID_TRC": 1603005, "DEB_GCH": 108, "FIN_GCH": 134, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 101, "FIN_DRT": 123, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61635869428623, 45.499016623310766], [-73.61615572587553, 45.49909747994523], [-73.61611046125468, 45.49911897238803], [-73.6160637357564, 45.49914353543893], [-73.61599218806532, 45.49918242669339], [-73.61585493296522, 45.499245880782354], [-73.6157308197717, 45.4992960300264], [-73.61558188322516, 45.499347202631355], [-73.61541925996256, 45.49942329811799], [-73.61529410995574, 45.49951616058549], [-73.6151912910519, 45.49959641226057], [-73.6150598771121, 45.499728436803636], [-73.61464373131045, 45.500193078421695], [-73.61397789893368, 45.501037406659115], [-73.61381582130088, 45.50121241120177], [-73.61303901632714, 45.5020812858713], [-73.61264742299295, 45.502515002310105]]}, "properties": {"ID_TRC": 1622579, "DEB_GCH": 2910, "FIN_GCH": 2950, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 4, "LIE_VOIE": "de", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Polytechnique", "DEB_DRT": 2107, "FIN_DRT": 2107, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de Polytechnique "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64206770617355, 45.475100204978794], [-73.64216836883061, 45.47516270957358], [-73.6422267738131, 45.475188284995724], [-73.64375602657032, 45.47580575343145]]}, "properties": {"ID_TRC": 1623872, "DEB_GCH": 8, "FIN_GCH": 14, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Glenmore", "DEB_DRT": 1, "FIN_DRT": 9, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Glenmore "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61780591882612, 45.48928358304891], [-73.61784539112415, 45.48932901218833], [-73.61789449566618, 45.4893671059579], [-73.61800471932031, 45.48941992936398]]}, "properties": {"ID_TRC": 1623995, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 4, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Upper-Belmont", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Upper-Belmont "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6394457419518, 45.476658858023114], [-73.63958436498352, 45.476769849091745], [-73.6396075261183, 45.47679267915615], [-73.63962211058035, 45.47680292071355], [-73.63963394372588, 45.47680974576298], [-73.63965042121204, 45.47681755496525], [-73.63967101257374, 45.4768250891809], [-73.63969814262933, 45.47683171554916], [-73.63972873951276, 45.47683727585056], [-73.64085683163017, 45.477031517812016], [-73.64096623557491, 45.477048911200455]]}, "properties": {"ID_TRC": 1624217, "DEB_GCH": 6, "FIN_GCH": 8, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Heath", "DEB_DRT": 1, "FIN_DRT": 9, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Heath "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63262293991339, 45.47773892617982], [-73.63268870340845, 45.47780946350589], [-73.63270860130243, 45.477826197342516], [-73.63272107212848, 45.47783527220854], [-73.63273406903106, 45.47784398652309], [-73.6327478048437, 45.477852609992745], [-73.63276412680487, 45.477861761814644], [-73.63278615207571, 45.47787371385236], [-73.63295988891196, 45.47795207582869], [-73.63302514424146, 45.47798219107186]]}, "properties": {"ID_TRC": 1624218, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Stratford", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Stratford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63210917326995, 45.480416556913276], [-73.63224013993569, 45.48047533565283], [-73.63512117329137, 45.48176957803681], [-73.63527278969832, 45.48183974858316]]}, "properties": {"ID_TRC": 1624225, "DEB_GCH": 5140, "FIN_GCH": 5200, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Macdonald", "DEB_DRT": 5137, "FIN_DRT": 5277, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "C\u00c3\u00b4te-Saint-Luc", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Macdonald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63043707448837, 45.47964267972126], [-73.63044506429966, 45.479659673876924], [-73.63045717720235, 45.47967174116144], [-73.6304813766878, 45.47968446592472], [-73.63184100800532, 45.48029617030813], [-73.63198841078692, 45.48036238177122]]}, "properties": {"ID_TRC": 1624226, "DEB_GCH": 4944, "FIN_GCH": 5120, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Macdonald", "DEB_DRT": 4989, "FIN_DRT": 5045, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "C\u00c3\u00b4te-Saint-Luc", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Macdonald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62990160491405, 45.48264975409213], [-73.62995213785602, 45.48260504399223], [-73.63050478851812, 45.4820019085442], [-73.63054095494608, 45.481950204562885]]}, "properties": {"ID_TRC": 1624374, "DEB_GCH": 5370, "FIN_GCH": 5420, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63134750283851, 45.48105866594845], [-73.63140478062621, 45.480997001077384], [-73.63194107782176, 45.48040746657923], [-73.63198841078692, 45.48036238177122]]}, "properties": {"ID_TRC": 1624375, "DEB_GCH": 5530, "FIN_GCH": 5548, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63054095494608, 45.481950204562885], [-73.63057830203107, 45.48189860225242], [-73.63129764049684, 45.48111249585166], [-73.63134750283851, 45.48105866594845]]}, "properties": {"ID_TRC": 1624376, "DEB_GCH": 5430, "FIN_GCH": 5514, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62930162595336, 45.483500294575805], [-73.62934121744489, 45.483432055812166], [-73.62996026404599, 45.48274335439377], [-73.63000952043099, 45.48269768940994]]}, "properties": {"ID_TRC": 1624377, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5301, "FIN_DRT": 5345, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63000952043099, 45.48269768940994], [-73.63005997157194, 45.48265099789429], [-73.63060967390996, 45.48205101498785], [-73.63064761046667, 45.481999007275725]]}, "properties": {"ID_TRC": 1624378, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5353, "FIN_DRT": 5415, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63064761046667, 45.481999007275725], [-73.6306852952765, 45.48194680637157], [-73.63140663938967, 45.48116123690435], [-73.63146511713643, 45.48110633949431]]}, "properties": {"ID_TRC": 1624379, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5451, "FIN_DRT": 5519, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63146511713643, 45.48110633949431], [-73.63152634296266, 45.48104923741506], [-73.63206412412202, 45.48046303029343], [-73.63210917326995, 45.480416556913276]]}, "properties": {"ID_TRC": 1624380, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5531, "FIN_DRT": 5549, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62020823101385, 45.478449992818085], [-73.6202874702715, 45.47849456453304], [-73.62035762379372, 45.47854101722294], [-73.62048474079768, 45.47866491091602]]}, "properties": {"ID_TRC": 1624410, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62031612014621, 45.47834047583766], [-73.62036031538254, 45.47841763344817], [-73.6204182379313, 45.4785173802754], [-73.62048474079768, 45.47866491091602]]}, "properties": {"ID_TRC": 1624411, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62031612014621, 45.47834047583766], [-73.62033171555645, 45.47832405430009], [-73.62049131465392, 45.47815282492676], [-73.62053468913504, 45.478109312281845], [-73.62058113573377, 45.47805845430051]]}, "properties": {"ID_TRC": 1624412, "DEB_GCH": 5364, "FIN_GCH": 5382, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": "de", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Monkland", "DEB_DRT": 5351, "FIN_DRT": 5365, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue de Monkland "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62816553384178, 45.484846100814195], [-73.62815823331843, 45.4847575493166], [-73.62845345113493, 45.48437123778273], [-73.62849881554722, 45.48430813612456]]}, "properties": {"ID_TRC": 1624413, "DEB_GCH": 5176, "FIN_GCH": 5222, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62849881554722, 45.48430813612456], [-73.62853370533824, 45.484259465817225], [-73.62888586905949, 45.48382314150827], [-73.62892067097489, 45.48376715160451]]}, "properties": {"ID_TRC": 1624414, "DEB_GCH": 5236, "FIN_GCH": 5276, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61635869428623, 45.499016623310766], [-73.61632656450709, 45.49896340710901], [-73.61630028176457, 45.49890404643606], [-73.61627545927234, 45.498811935132686], [-73.61626530068055, 45.498760311539705], [-73.61626178785404, 45.49868026501603], [-73.61626664612365, 45.498600209971144], [-73.61629238230721, 45.498498354978196], [-73.6163591025084, 45.4983829207623], [-73.616464317992, 45.498265092597215], [-73.6167383936057, 45.49804585203469], [-73.61697399001677, 45.4978384228734], [-73.61718110301796, 45.49761924978337], [-73.61735472393114, 45.49739422551797], [-73.61741977489653, 45.49728232336266], [-73.617473077368, 45.49715630749979], [-73.61754962622443, 45.49693844535697], [-73.61763480757351, 45.496694260800126]]}, "properties": {"ID_TRC": 1624998, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 4, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Tour", "DEB_DRT": 3099, "FIN_DRT": 3101, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la Tour "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62012087827156, 45.497942857796936], [-73.62017592661772, 45.497885163097244], [-73.62064726049822, 45.49736003746011], [-73.62079845106072, 45.49719452459823]]}, "properties": {"ID_TRC": 1625001, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Jean-Brillant", "DEB_DRT": 3317, "FIN_DRT": 3371, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Jean-Brillant "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61452639930147, 45.49138020973848], [-73.61459332061006, 45.491410584826674], [-73.615555475423, 45.491849322050314], [-73.61562115052976, 45.491877717011114]]}, "properties": {"ID_TRC": 1625413, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "jardin", "DIR_VOIE": null, "NOM_VOIE": "Surrey", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Jardin Surrey "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61440490781781, 45.49152401781246], [-73.6144724685112, 45.49155595491092], [-73.6154272240557, 45.49198804131692], [-73.61548970061479, 45.49201640381581]]}, "properties": {"ID_TRC": 1625414, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "jardin", "DIR_VOIE": null, "NOM_VOIE": "Surrey", "DEB_DRT": 45, "FIN_DRT": 75, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Jardin Surrey "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61562115052976, 45.491877717011114], [-73.61569152257155, 45.49190610605228], [-73.61574463354138, 45.49192984099686], [-73.61577318082162, 45.491948922071735], [-73.61578712271755, 45.491966141543436], [-73.61579309755263, 45.491980103328], [-73.61579442528233, 45.49199825365147], [-73.61579376131611, 45.492009888417954], [-73.6157897780165, 45.492029900054895], [-73.61577716434022, 45.49204572333812], [-73.61576189462701, 45.49206015050288], [-73.61574596148074, 45.49206899300117], [-73.61572139769181, 45.49207876613189], [-73.6156981614743, 45.49208388549015], [-73.6156782447864, 45.49208574696849], [-73.61565700055549, 45.49208528166405], [-73.61563376448036, 45.49208062779482], [-73.61560920069955, 45.492072250807034], [-73.61554015608385, 45.49203920795078], [-73.61548970061479, 45.49201640381581]]}, "properties": {"ID_TRC": 1625415, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Surrey-Gardens", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Surrey-Gardens "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61628508745295, 45.48956404839102], [-73.61640629174505, 45.489615007352974], [-73.6164753638554, 45.48964346473554], [-73.6174155247966, 45.490070647641964]]}, "properties": {"ID_TRC": 1625416, "DEB_GCH": 800, "FIN_GCH": 804, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lexington", "DEB_DRT": 807, "FIN_DRT": 807, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Lexington "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62907267380345, 45.479684047339596], [-73.62909118461464, 45.47965855828404], [-73.62954078897825, 45.47917010512081], [-73.6295493781312, 45.47915945446616], [-73.62955693315492, 45.47914315529535], [-73.62956450213377, 45.479113022537675]]}, "properties": {"ID_TRC": 1625624, "DEB_GCH": 5550, "FIN_GCH": 5556, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Snowdon", "DEB_DRT": 5545, "FIN_DRT": 5545, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Snowdon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62916707070906, 45.4800765851562], [-73.62909234126734, 45.479980193244565], [-73.62903187128359, 45.479788935706395], [-73.6290378208606, 45.4797607610831], [-73.62904641293015, 45.47973483331595], [-73.62907267380345, 45.479684047339596]]}, "properties": {"ID_TRC": 1625625, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Snowdon", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Snowdon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61139201073107, 45.4900524274776], [-73.61155277028271, 45.49003188640745], [-73.61290533860186, 45.49064309398733], [-73.61299827070692, 45.49068544688434]]}, "properties": {"ID_TRC": 4000443, "DEB_GCH": 8, "FIN_GCH": 20, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "jardin", "DIR_VOIE": null, "NOM_VOIE": "Surrey", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Jardin Surrey "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61299827070692, 45.49068544688434], [-73.61308827815925, 45.49072651649744], [-73.61445875137929, 45.491348354419266], [-73.61452639930147, 45.49138020973848]]}, "properties": {"ID_TRC": 4000444, "DEB_GCH": 30, "FIN_GCH": 46, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "jardin", "DIR_VOIE": null, "NOM_VOIE": "Surrey", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Jardin Surrey "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64096623557491, 45.477048911200455], [-73.64117367116438, 45.47691215540204], [-73.64170996701564, 45.476546568196426], [-73.64187522124435, 45.47643639115619], [-73.64200406298673, 45.47636261635193], [-73.64213240080183, 45.47629847129436], [-73.6423077659646, 45.476224098564664], [-73.64241611922517, 45.476184096464785], [-73.64251952965462, 45.476150489794875], [-73.64264129325886, 45.47611524038918], [-73.64275843033808, 45.47608629624182], [-73.64291881694783, 45.476055317980986], [-73.64310906625558, 45.47602682165835], [-73.64322888181005, 45.47601416248408], [-73.64334417209464, 45.476006008549554], [-73.64346151555381, 45.47600252662701], [-73.6435614887231, 45.47600346284526], [-73.64364675731555, 45.476009460662965]]}, "properties": {"ID_TRC": 4000540, "DEB_GCH": 11, "FIN_GCH": 33, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Cressy", "DEB_DRT": 18, "FIN_DRT": 36, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Cressy "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64132464617003, 45.47795488185168], [-73.64141486324613, 45.47797314934959], [-73.64177380031515, 45.47806332779179], [-73.64199286275692, 45.478120111394624], [-73.64229112279237, 45.478204604147166], [-73.64259542398568, 45.47829961768804], [-73.64279879847865, 45.47836838841523], [-73.64292995461123, 45.47841601097827], [-73.64298293000365, 45.478437435949964]]}, "properties": {"ID_TRC": 4000839, "DEB_GCH": 5652, "FIN_GCH": 5662, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64119822857919, 45.478025426695794], [-73.64127882770374, 45.47804081273115], [-73.64174754771535, 45.47815452364774], [-73.6419423321688, 45.47820647784708], [-73.64203608691486, 45.47823326943231], [-73.64223890867316, 45.478292502566525], [-73.64250065574181, 45.47837299046865], [-73.64287129857001, 45.47850121797799], [-73.64292248486365, 45.47852008200107]]}, "properties": {"ID_TRC": 4000840, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5643, "FIN_DRT": 5659, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61563101351187, 45.49528801281926], [-73.6157978818557, 45.49545588070145]]}, "properties": {"ID_TRC": 4002757, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61759461963914, 45.49495666524017], [-73.61786443031365, 45.49508333720154]]}, "properties": {"ID_TRC": 4002758, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "du", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Piedmont", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue du Piedmont "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61862473095134, 45.49483867437039], [-73.61861180834823, 45.49489339405159], [-73.61860814187685, 45.49490438608289], [-73.61854380539404, 45.49498728938718], [-73.61850836208814, 45.49502057248684], [-73.61847141391304, 45.495047003471754]]}, "properties": {"ID_TRC": 4002759, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61903775509597, 45.495135746068726], [-73.61918671539495, 45.49497095792482]]}, "properties": {"ID_TRC": 4002760, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6188688398521, 45.4951057373656], [-73.61905917082764, 45.49491866982562]]}, "properties": {"ID_TRC": 4002761, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61905917082764, 45.49491866982562], [-73.61918671539495, 45.49497095792482]]}, "properties": {"ID_TRC": 4002762, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6188688398521, 45.4951057373656], [-73.61903775509597, 45.495135746068726]]}, "properties": {"ID_TRC": 4002763, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6183970201932, 45.495624627654536], [-73.61854335956532, 45.49568980884839]]}, "properties": {"ID_TRC": 4002764, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Gatineau", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Gatineau "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61789555563257, 45.4961911123084], [-73.61803645745336, 45.49626172154292]]}, "properties": {"ID_TRC": 4002765, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "B\u00c3\u00a9gin", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue B\u00c3\u00a9gin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61299827070692, 45.49068544688434], [-73.61287048161876, 45.490824952240374]]}, "properties": {"ID_TRC": 4002767, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Shorncliffe", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Shorncliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61452639930147, 45.49138020973848], [-73.61440490781781, 45.49152401781246]]}, "properties": {"ID_TRC": 4002768, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Devon", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Avenue Devon "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61562115052976, 45.491877717011114], [-73.61548970061479, 45.49201640381581]]}, "properties": {"ID_TRC": 4002769, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Westmount", "LIM_DRT": "Westmount", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62460258644998, 45.47932013304751], [-73.62452478535077, 45.479224897114065]]}, "properties": {"ID_TRC": 4002770, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Terrebonne", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de Terrebonne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62608065538065, 45.478962981698956], [-73.62623732026171, 45.478939910943545], [-73.62651690801964, 45.47889253513084], [-73.62661874009554, 45.478872230859714]]}, "properties": {"ID_TRC": 4002771, "DEB_GCH": 5504, "FIN_GCH": 5522, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5501, "FIN_DRT": 5501, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62345734852155, 45.4798274593709], [-73.62361765537732, 45.47985959049818]]}, "properties": {"ID_TRC": 4002772, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de l'", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Orphelinat", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de l'Orphelinat "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62849881554722, 45.48430813612456], [-73.62863461046305, 45.484367512149]]}, "properties": {"ID_TRC": 4002773, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Trans Island", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Trans Island "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62892067097489, 45.48376715160451], [-73.6290690678829, 45.48382631897777]]}, "properties": {"ID_TRC": 4002774, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62918403794023, 45.483443116417085], [-73.62930162595336, 45.483500294575805]]}, "properties": {"ID_TRC": 4002775, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62990160491405, 45.48264975409213], [-73.63000952043099, 45.48269768940994]]}, "properties": {"ID_TRC": 4002776, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Coolbrook", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Coolbrook "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63054095494608, 45.481950204562885], [-73.63064761046667, 45.481999007275725]]}, "properties": {"ID_TRC": 4002777, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Earnscliffe", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Earnscliffe "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63134750283851, 45.48105866594845], [-73.63146511713643, 45.48110633949431]]}, "properties": {"ID_TRC": 4002778, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Clanranald", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Clanranald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63198841078692, 45.48036238177122], [-73.63210917326995, 45.480416556913276]]}, "properties": {"ID_TRC": 4002779, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Macdonald", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "C\u00c3\u00b4te-Saint-Luc", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Macdonald "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63259427886037, 45.47971448335738], [-73.63271686905209, 45.47976838578752]]}, "properties": {"ID_TRC": 4002780, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Dufferin", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Dufferin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6332044171973, 45.47905912144499], [-73.63331519066895, 45.47910919872155]]}, "properties": {"ID_TRC": 4002781, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63384647295602, 45.478349853963856], [-73.633957245658, 45.4783996836169]]}, "properties": {"ID_TRC": 4002782, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Stratford", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Stratford "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63662728999739, 45.477586676896614], [-73.63663711137322, 45.47768113109592]]}, "properties": {"ID_TRC": 4002783, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Ellerdale", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Ellerdale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63987498321266, 45.47781776827067], [-73.63996056532694, 45.477729361449505]]}, "properties": {"ID_TRC": 4002784, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Cressy", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Cressy "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64119822857919, 45.478025426695794], [-73.64132464617003, 45.47795488185168]]}, "properties": {"ID_TRC": 4002785, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Northcote", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Northcote "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63661258750378, 45.49391056275122], [-73.63671372013295, 45.493956073322536]]}, "properties": {"ID_TRC": 4002838, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Victoria", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Victoria "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63481407838115, 45.49592673922849], [-73.63491449693728, 45.495971992164456]]}, "properties": {"ID_TRC": 4002839, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Lavoie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Lavoie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63301639055517, 45.497938001585915], [-73.63311733973842, 45.49798511701994]]}, "properties": {"ID_TRC": 4002840, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "L\u00c3\u00a9gar\u00c3\u00a9", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue L\u00c3\u00a9gar\u00c3\u00a9 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6309300975391, 45.50029585760602], [-73.63102541211137, 45.50033816131587]]}, "properties": {"ID_TRC": 4002841, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62755088853342, 45.50147203731927], [-73.62748649822551, 45.50154386180503]]}, "properties": {"ID_TRC": 4003167, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Ellendale", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Ellendale "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62649213622673, 45.5009929331353], [-73.62634609536717, 45.50102844195652]]}, "properties": {"ID_TRC": 4003168, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6174155247966, 45.490070647641964], [-73.61748978853346, 45.490103225986964]]}, "properties": {"ID_TRC": 4004242, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 4, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Lexington", "DEB_DRT": 841, "FIN_DRT": 841, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Lexington "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.613003284938, 45.49271140030623], [-73.61306853905552, 45.4927231536195], [-73.61313802141414, 45.49273224524141], [-73.61322052433545, 45.49273928824267], [-73.61330880586743, 45.49274174524302], [-73.61348573220585, 45.49274268946326], [-73.61358303310755, 45.49274349259961], [-73.61361026349057, 45.49274517545009], [-73.61366600058771, 45.4927534894572], [-73.61369429639406, 45.49276012059817], [-73.613723440833, 45.492769000948876], [-73.61375502085674, 45.49278210858661], [-73.61377382878986, 45.492793878945406], [-73.61378936412147, 45.49280493268536], [-73.61380046879117, 45.492816800697476], [-73.61380840789943, 45.492828851831334], [-73.61381551324479, 45.49284603335989], [-73.61381797617508, 45.492860883516954]]}, "properties": {"ID_TRC": 4005067, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Ridgewood", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Ridgewood "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.613003284938, 45.49271140030623], [-73.61321342960791, 45.4928097794332], [-73.6133473985392, 45.49286257319178], [-73.61359276537718, 45.49296504604997], [-73.61363478981455, 45.49297652338855], [-73.61367415745758, 45.49297864407139], [-73.61370169567692, 45.492975916904975], [-73.61372869851238, 45.49296950045196], [-73.61375379498118, 45.492959486287454], [-73.61377571907778, 45.492946505339944], [-73.61379341768645, 45.49293127898597], [-73.61380647034674, 45.492914707266095], [-73.61381572016961, 45.492896519388424], [-73.61381852890318, 45.49287635804482], [-73.61381797617508, 45.492860883516954]]}, "properties": {"ID_TRC": 4005068, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Ridgewood", "DEB_DRT": 3625, "FIN_DRT": 3665, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Ridgewood "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61805754966672, 45.48441323280354], [-73.6181066612341, 45.48447087026262], [-73.61812936961972, 45.48450743384428], [-73.61814932387487, 45.48455334741998], [-73.61821044684473, 45.48476926813576], [-73.61823990839028, 45.48483034303205], [-73.61826011941578, 45.48485786009479], [-73.61828444389418, 45.48488456303306], [-73.61830241670616, 45.484901373114376], [-73.61833192633414, 45.4849235286999], [-73.61836761066377, 45.484944592215385], [-73.61840351535864, 45.48495841398122], [-73.61843624157162, 45.48496602964459], [-73.61847486780674, 45.48496967918252], [-73.61852403343813, 45.48496719837008], [-73.6185473433212, 45.48496285447112], [-73.6185632654748, 45.48495761838976], [-73.61857823432186, 45.48495085333276], [-73.6185909896611, 45.4849449906427], [-73.61860900970488, 45.48493390270357], [-73.61861813567394, 45.48492355197305], [-73.61862679933387, 45.48491372565719]]}, "properties": {"ID_TRC": 4005069, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bonavista", "DEB_DRT": 4665, "FIN_DRT": 4691, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bonavista "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61805754966672, 45.48441323280354], [-73.61814989631799, 45.48445043729119], [-73.61825809327809, 45.48449464926854], [-73.6183136453058, 45.4845190700292], [-73.61838008597945, 45.484553198490445], [-73.61846028143816, 45.48460522160896], [-73.61849219906496, 45.48463002650308], [-73.61851788785928, 45.484653128143705], [-73.61855373562986, 45.4846902581821], [-73.61858568582217, 45.48473054216602], [-73.61861555459797, 45.48478450708526], [-73.61863582585774, 45.48484064181954], [-73.6186392262813, 45.48485188748689], [-73.61863980528169, 45.484876454929065], [-73.61863698694881, 45.48489103693496], [-73.61862679933387, 45.48491372565719]]}, "properties": {"ID_TRC": 4005070, "DEB_GCH": 4660, "FIN_GCH": 4700, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bonavista", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Bonavista "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61909178759092, 45.48435249380866], [-73.61908743185217, 45.48433836941754], [-73.61908665574441, 45.48432064146044], [-73.61909082795417, 45.48429759880303], [-73.61909990271437, 45.484275997536365], [-73.6191043760512, 45.48426752689584], [-73.61911363489648, 45.4842550982415], [-73.61912774745069, 45.48424239434586], [-73.61915061277347, 45.48422761167305], [-73.6191695887537, 45.48421967255799], [-73.61919184418774, 45.48421568956541], [-73.61921432055902, 45.4842164759718], [-73.61923004857744, 45.48421951948277], [-73.61924346081646, 45.48422526494712], [-73.61926417207229, 45.48423955222653], [-73.6193079511686, 45.484284953233015], [-73.6193271925534, 45.484302841645125], [-73.61933997883035, 45.48431173766295], [-73.61935253443139, 45.484319526884775], [-73.61937757961827, 45.48433458235776], [-73.61941922415441, 45.48436030321982]]}, "properties": {"ID_TRC": 4005071, "DEB_GCH": 4752, "FIN_GCH": 4760, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61941922415441, 45.48436030321982], [-73.61935986778296, 45.484360854098895], [-73.61931699319918, 45.48436369178816], [-73.61927995472091, 45.48436840629512], [-73.61923903216517, 45.48437672827789], [-73.61919991352315, 45.48438972823771], [-73.61917690195465, 45.4843944204244], [-73.6191538128368, 45.48439418603047], [-73.61913776784897, 45.484390962870485], [-73.6191217167943, 45.48438486020735], [-73.6191094617541, 45.4843777633033], [-73.61909634935118, 45.48436409819098], [-73.61909178759092, 45.48435249380866]]}, "properties": {"ID_TRC": 4005072, "DEB_GCH": 4740, "FIN_GCH": 4748, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Circle", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Circle "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62075803719418, 45.47874865700329], [-73.62075640216483, 45.47877493921033], [-73.62076806039927, 45.478799674924495], [-73.62078941711448, 45.478820530815696], [-73.62080811569086, 45.47883185023726], [-73.62082518784331, 45.47883752236233], [-73.62084485232782, 45.478841620609714], [-73.62088948490515, 45.4788434632868], [-73.62099280120998, 45.47883544222072], [-73.62106070226001, 45.47883138913124], [-73.62109767546873, 45.478831615395585], [-73.62113352171778, 45.47883449694145], [-73.62120578361292, 45.47884204581626]]}, "properties": {"ID_TRC": 4005073, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de l'", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Orphelinat", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de l'Orphelinat "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62120578361292, 45.47884204581626], [-73.62103805029481, 45.47875178275966], [-73.62093096758132, 45.478704469744315], [-73.62090277630853, 45.478694420176], [-73.62088989849082, 45.478691644055104], [-73.62085740324378, 45.47869167844062], [-73.62084485239338, 45.478693581622544], [-73.62081458908766, 45.47870126300825], [-73.62078634063761, 45.47871389208828], [-73.62077669699143, 45.47872184163438], [-73.62076917688587, 45.478729658906644], [-73.62075803719418, 45.47874865700329]]}, "properties": {"ID_TRC": 4005074, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "de l'", "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Orphelinat", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue de l'Orphelinat "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61790389393698, 45.476762697008255], [-73.61789300530661, 45.476751998940045], [-73.6178847456485, 45.47673733860498], [-73.61787818027719, 45.47672582621111], [-73.6178746687278, 45.47671143092951], [-73.61787232680567, 45.47670126394773], [-73.6178730351806, 45.47668695429615], [-73.61787942791064, 45.476666339398115], [-73.61789141521469, 45.476647248241164], [-73.61790752341916, 45.47663121275986], [-73.61792796149786, 45.47661733266456], [-73.61795336327746, 45.47660578749287], [-73.6179806718726, 45.47659819967393], [-73.61799237925082, 45.47659665784111], [-73.61802296940121, 45.476594286411185], [-73.61808974979596, 45.47659349729031], [-73.61815319699926, 45.47659278469077], [-73.61818054489447, 45.47659116389539], [-73.6182043052518, 45.47658808702871], [-73.6182314541292, 45.47658142368314], [-73.61826274494676, 45.4765711730762], [-73.618301332929, 45.47655500943109], [-73.61833698772303, 45.47653433697749]]}, "properties": {"ID_TRC": 4005075, "DEB_GCH": 5404, "FIN_GCH": 5406, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Grovehill", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Grovehill "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61833698772303, 45.47653433697749], [-73.61813915416273, 45.4767593042464], [-73.61813188964103, 45.47676651121196], [-73.61811419180245, 45.47677912849892], [-73.61809332422655, 45.47678949921714], [-73.61807023529614, 45.47679708270127], [-73.61804545225264, 45.476801608001026], [-73.61802002917592, 45.47680298404154], [-73.61799860961321, 45.47680156641449], [-73.61796852567404, 45.476793857901484], [-73.61794656761086, 45.47678731101683], [-73.61792777296513, 45.476779771030195], [-73.61791330071142, 45.47677078659822], [-73.61790389393698, 45.476762697008255]]}, "properties": {"ID_TRC": 4005076, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Grovehill", "DEB_DRT": 5393, "FIN_DRT": 5407, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Grovehill "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63178851284783, 45.478415819432655], [-73.63178315060557, 45.47842374494717], [-73.63177843208477, 45.47843625961319], [-73.63177749870106, 45.47844319018639], [-73.6317777250825, 45.47844984924261], [-73.63178112917302, 45.47846190461442], [-73.63178758856593, 45.478471976348], [-73.63179647083986, 45.47848051554589], [-73.63181348307805, 45.478491744902705], [-73.63227755986696, 45.478701613125935], [-73.63238491128148, 45.478685072404865]]}, "properties": {"ID_TRC": 4005175, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 1, "FIN_DRT": 9, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Place Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63178851284783, 45.478415819432655], [-73.63180199182014, 45.478404914607836], [-73.6318086299669, 45.47840121735077], [-73.63181685109097, 45.47839769801106], [-73.63182570670695, 45.47839480805634], [-73.63183488093223, 45.478392817580186], [-73.63184511202424, 45.478391545761006], [-73.63185513390872, 45.478391174254334], [-73.63186610763775, 45.478391791704595], [-73.63187655651497, 45.47839348935113], [-73.6318995749101, 45.478401472311994], [-73.6319176341443, 45.4784091908164], [-73.63236154175935, 45.478611522378095], [-73.63238491128148, 45.478685072404865]]}, "properties": {"ID_TRC": 4005176, "DEB_GCH": 2, "FIN_GCH": 4, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Place Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63231366876194, 45.480017130243894], [-73.63254634588837, 45.47976457316559], [-73.63259427886037, 45.47971448335738]]}, "properties": {"ID_TRC": 4006418, "DEB_GCH": 5556, "FIN_GCH": 5556, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63198841078692, 45.48036238177122], [-73.63203835063103, 45.480314750963295], [-73.63231366876194, 45.480017130243894]]}, "properties": {"ID_TRC": 4006419, "DEB_GCH": 5550, "FIN_GCH": 5552, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "C\u00c3\u00b4te-Saint-Luc", "LIM_DRT": "C\u00c3\u00b4te-Saint-Luc", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63243301144497, 45.48007150465771], [-73.63260697853731, 45.479885183939246], [-73.63271686905209, 45.47976838578752]]}, "properties": {"ID_TRC": 4006420, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5555, "FIN_DRT": 5557, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63210917326995, 45.480416556913276], [-73.63215348438423, 45.480370593682046], [-73.63243301144497, 45.48007150465771]]}, "properties": {"ID_TRC": 4006421, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 5551, "FIN_DRT": 5553, "ARR_DRT": "N/A", "LIM_GCH": "C\u00c3\u00b4te-Saint-Luc", "LIM_DRT": "C\u00c3\u00b4te-Saint-Luc", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6299918012834, 45.478545220051544], [-73.63005438850819, 45.478573405578956], [-73.63109858497607, 45.479042611408474]]}, "properties": {"ID_TRC": 4007142, "DEB_GCH": 8, "FIN_GCH": 22, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Dufferin", "DEB_DRT": 4975, "FIN_DRT": 4975, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Hampstead", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Dufferin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62966277485063, 45.478303487260014], [-73.6297201440259, 45.47838677922398], [-73.62973041151153, 45.47840134665908], [-73.62974247097485, 45.47841528194006], [-73.62975621700468, 45.47842849520139], [-73.62977154308865, 45.47844080704402], [-73.62978823926203, 45.47845221703098], [-73.62980609270456, 45.47846245612431], [-73.62982478779783, 45.47847152423231], [-73.6299265956098, 45.478515865192406], [-73.6299918012834, 45.478545220051544]]}, "properties": {"ID_TRC": 4007143, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Dufferin", "DEB_DRT": 4875, "FIN_DRT": 4875, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Hampstead", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Dufferin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62213746438525, 45.48071493926947], [-73.62250847652938, 45.48088366813258]]}, "properties": {"ID_TRC": 4007659, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61795153797519, 45.50003021102268], [-73.61790590436415, 45.50008200948471], [-73.61763740953826, 45.500391142286475], [-73.61762436452466, 45.50041167417564], [-73.6176143819207, 45.50043283280059], [-73.61760640361986, 45.50045362942368], [-73.6175730209255, 45.50074317131861], [-73.61752458663742, 45.50130657755307], [-73.61752627918368, 45.501359131611096], [-73.61754309232911, 45.501424899381995], [-73.61760640853872, 45.50157116290543], [-73.61763034578583, 45.50161786239591]]}, "properties": {"ID_TRC": 4007918, "DEB_GCH": 5290, "FIN_GCH": 5340, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Louis-Colin", "DEB_DRT": 5255, "FIN_DRT": 5255, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Louis-Colin "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62649213622673, 45.5009929331353], [-73.62653052109766, 45.50095048370442], [-73.6274841627239, 45.499889035473345], [-73.62751375525716, 45.49986011476564], [-73.62752692495205, 45.49984984072231], [-73.62754242001093, 45.49984100428076], [-73.62755950228845, 45.49983396575181], [-73.62758429023387, 45.49982727855153], [-73.62761468059591, 45.499824454864424], [-73.62763346874996, 45.49982515374822], [-73.62765183950104, 45.499827832976194], [-73.62767982690563, 45.4998358109797], [-73.62855662853478, 45.500227557318965], [-73.62862939244721, 45.500260851501764]]}, "properties": {"ID_TRC": 4007925, "DEB_GCH": 3400, "FIN_GCH": 3460, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "Decelles", "DEB_DRT": 3325, "FIN_DRT": 3465, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Place Decelles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6189704449607, 45.47722719076414], [-73.61898114716811, 45.477248415559714], [-73.6190034522691, 45.47727676900381], [-73.61902016108506, 45.47729538023065], [-73.61904796555277, 45.47732270930872], [-73.61940103516386, 45.4776508167085], [-73.61944996002252, 45.477687212738616], [-73.61948694262925, 45.4777072818172], [-73.61953041721269, 45.47772213307631], [-73.61957054796486, 45.47772760443888], [-73.61960399029401, 45.47772604126252], [-73.61964635050268, 45.47771353491919], [-73.61969539894599, 45.47768852245131], [-73.61974759206215, 45.47764163453281], [-73.62074458614076, 45.476552114821295], [-73.62080372850124, 45.4764867350775]]}, "properties": {"ID_TRC": 4007936, "DEB_GCH": 5378, "FIN_GCH": 5466, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Brodeur", "DEB_DRT": 5365, "FIN_DRT": 5471, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Brodeur "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62769533702583, 45.48006661745228], [-73.62770982890075, 45.480069352982255], [-73.62772376304564, 45.480068962166726], [-73.62774605757643, 45.4800658356896], [-73.62776668057276, 45.4800572379852], [-73.62778507370308, 45.48004473226278], [-73.62812162020451, 45.47967593868392], [-73.62811447601919, 45.479605072066214]]}, "properties": {"ID_TRC": 4008253, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Avonmore", "DEB_DRT": 5485, "FIN_DRT": 5515, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Avonmore "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62769533702583, 45.48006661745228], [-73.62768474694828, 45.48006036455764], [-73.62767694391586, 45.480050203662124], [-73.62767192744235, 45.48003730704214], [-73.62767192749281, 45.48002206566363], [-73.6276735994742, 45.48001346800924], [-73.62768084542044, 45.48000057140589], [-73.62801801723751, 45.47963114821262], [-73.62811447601919, 45.479605072066214]]}, "properties": {"ID_TRC": 4008254, "DEB_GCH": 5488, "FIN_GCH": 5520, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Avonmore", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Avonmore "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6330960111159, 45.50127011228528], [-73.63313776744799, 45.50128818714503], [-73.63381683915715, 45.50159319011167], [-73.63386999697651, 45.50161697164959]]}, "properties": {"ID_TRC": 4009024, "DEB_GCH": 6250, "FIN_GCH": 6282, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63292978838527, 45.501194854648844], [-73.63296881805924, 45.5012116198721], [-73.63305641292406, 45.50125273474957], [-73.6330960111159, 45.50127011228528]]}, "properties": {"ID_TRC": 4009025, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62955141233539, 45.502426264245805], [-73.6296088562441, 45.50236613230225], [-73.62993152927531, 45.502003364009504], [-73.63003784069615, 45.50187662272006], [-73.63007288739895, 45.501832846386996], [-73.63009982133066, 45.50179528865136], [-73.6307599515706, 45.500761594836945], [-73.63078879880415, 45.50071797744553]]}, "properties": {"ID_TRC": 4009036, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Linton", "DEB_DRT": 3335, "FIN_DRT": 3605, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Linton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63078879880415, 45.50071797744553], [-73.63081958903625, 45.50067216355311], [-73.63097297433528, 45.500421716578415], [-73.63102541211137, 45.50033816131587]]}, "properties": {"ID_TRC": 4009037, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Linton", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Linton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.629440280012, 45.50237798766534], [-73.62949904598204, 45.50230281182495], [-73.62987287698022, 45.50187987030905], [-73.6299423406171, 45.501793757973765], [-73.62998694879667, 45.50173125202482], [-73.63000862001282, 45.50169999987632], [-73.6301285122506, 45.50151258775087], [-73.63062878035475, 45.500725657817625], [-73.63065810572732, 45.500679909082905]]}, "properties": {"ID_TRC": 4009038, "DEB_GCH": 3350, "FIN_GCH": 3600, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Linton", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Linton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63065810572732, 45.500679909082905], [-73.63068830628896, 45.50063343676472], [-73.63077569453405, 45.50049528749399], [-73.63087439889449, 45.50036702436691], [-73.6309300975391, 45.50029585760602]]}, "properties": {"ID_TRC": 4009039, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Linton", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Linton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63065810572732, 45.500679909082905], [-73.63078879880415, 45.50071797744553]]}, "properties": {"ID_TRC": 4009040, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6223456785533, 45.48116140927826], [-73.62247156200614, 45.48109261406629], [-73.62262126634434, 45.48093399251009]]}, "properties": {"ID_TRC": 4009104, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6223456785533, 45.48116140927826], [-73.62236633809495, 45.4810582147954], [-73.62250847652938, 45.48088366813258]]}, "properties": {"ID_TRC": 4009105, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62262126634434, 45.48093399251009], [-73.62291569168286, 45.480617362004544]]}, "properties": {"ID_TRC": 4009106, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62250847652938, 45.48088366813258], [-73.62280207688194, 45.48056395232799]]}, "properties": {"ID_TRC": 4009107, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 2, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62250847652938, 45.48088366813258], [-73.62262126634434, 45.48093399251009]]}, "properties": {"ID_TRC": 4009108, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62280207688194, 45.48056395232799], [-73.62291569168286, 45.480617362004544]]}, "properties": {"ID_TRC": 4009109, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61941554126936, 45.49459350665838], [-73.61955541247715, 45.49442404945304], [-73.62000048412519, 45.493943649374195], [-73.62021860726881, 45.493699201322876]]}, "properties": {"ID_TRC": 4009113, "DEB_GCH": 3710, "FIN_GCH": 3776, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 3715, "FIN_DRT": 3755, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6208581891312, 45.492986063441904], [-73.62091738141002, 45.49292009032829], [-73.62235693108141, 45.491311549599025], [-73.62239323599752, 45.49127111396753]]}, "properties": {"ID_TRC": 4009114, "DEB_GCH": 3860, "FIN_GCH": 4300, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62021860726881, 45.493699201322876], [-73.62046466748005, 45.4934220106613], [-73.62079021674482, 45.49306190495652], [-73.6208581891312, 45.492986063441904]]}, "properties": {"ID_TRC": 4009115, "DEB_GCH": 3800, "FIN_GCH": 3840, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Queen-Mary", "DEB_DRT": 3791, "FIN_DRT": 3799, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin Queen-Mary "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.619108394303, 45.487936558658845], [-73.61909418197824, 45.487992538689625], [-73.61894639003614, 45.488565139448866], [-73.61887289445191, 45.48889171155732], [-73.6188504113695, 45.489039143782], [-73.61885246770066, 45.489113746013714], [-73.61885894866913, 45.4891848337942], [-73.61887066369435, 45.48923593776283], [-73.61889681729346, 45.48932842363206], [-73.61893180170873, 45.489405061449375], [-73.61896708157421, 45.48947161955615], [-73.61900296106019, 45.48952242838593], [-73.61906644789205, 45.48960398606085], [-73.61916903410696, 45.489711691109896], [-73.61924462884143, 45.489779916992966], [-73.61932790742877, 45.489838955478355], [-73.61941612577012, 45.48988853968968], [-73.61949714907796, 45.48992886182984], [-73.62007012603473, 45.49019227375056]]}, "properties": {"ID_TRC": 4009154, "DEB_GCH": 4800, "FIN_GCH": 4890, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Cedar Crescent", "DEB_DRT": 4801, "FIN_DRT": 4875, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Rue Cedar Crescent "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61251526643838, 45.47979078154127], [-73.61284980087522, 45.47952969889331], [-73.61290480122341, 45.47949058624457]]}, "properties": {"ID_TRC": 4009514, "DEB_GCH": 5044, "FIN_GCH": 5064, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Notre-Dame-de-Gr\u00c3\u00a2ce", "DEB_DRT": 5015, "FIN_DRT": 5065, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Notre-Dame-de-Gr\u00c3\u00a2ce "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61411604341664, 45.47453032485962], [-73.61375202130671, 45.47438006223247], [-73.6133466722378, 45.474183598537415], [-73.6130291366392, 45.47403427819271], [-73.61279781693655, 45.47392663963693]]}, "properties": {"ID_TRC": 4010986, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6124268131337, 45.4743742206615], [-73.61268793086495, 45.47448950806738], [-73.61304567562306, 45.474650512776826], [-73.61328241421003, 45.47475737044952], [-73.61352105409063, 45.474864945843066], [-73.61384870793135, 45.4750116690028], [-73.61399031006239, 45.47507587295282], [-73.61412526151994, 45.47513801372226], [-73.6142375831534, 45.47520540395435]]}, "properties": {"ID_TRC": 4010988, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63821801908716, 45.48130652795877], [-73.63829905060429, 45.481342985920456], [-73.63859702088635, 45.48147680493337], [-73.638985917785, 45.481647170513824], [-73.63929742529446, 45.48178885972444], [-73.6393560498124, 45.48181569632704], [-73.63940020186021, 45.48183553085999], [-73.63951945021755, 45.481886861436486], [-73.63959517674718, 45.48191754681571], [-73.63966107843054, 45.48194302437321], [-73.63986941404863, 45.48203598950122]]}, "properties": {"ID_TRC": 4011455, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 81, "FIN_DRT": 99, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63986941404863, 45.48203598950122], [-73.63997126341174, 45.48210688242133], [-73.64003179981344, 45.48213857595322]]}, "properties": {"ID_TRC": 4011456, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64003179981344, 45.48213857595322], [-73.64003701012673, 45.482154768375295], [-73.64004675466231, 45.48216996518219], [-73.64005553555704, 45.482179493687674], [-73.6400717097321, 45.48219198306975], [-73.64009104366815, 45.48220221850858], [-73.6401130090671, 45.482209840936996], [-73.64013665565687, 45.48221476153464], [-73.64016113837991, 45.48221653141422]]}, "properties": {"ID_TRC": 4011457, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63986941404863, 45.48203598950122], [-73.63997490224376, 45.48204153944156], [-73.64009109540196, 45.48205273956457]]}, "properties": {"ID_TRC": 4011458, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64026322388618, 45.482069087083964], [-73.6403291863899, 45.482082622094374], [-73.6404667553735, 45.48210933367059]]}, "properties": {"ID_TRC": 4011459, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "croissant", "DIR_VOIE": null, "NOM_VOIE": "Merton", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Croissant Merton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64026322388618, 45.482069087083964], [-73.64027760699781, 45.482082568467405], [-73.64028819574716, 45.48209767423251], [-73.6402942498442, 45.482113775622075], [-73.64029576772145, 45.482130242521244], [-73.64029274892938, 45.482146714992254], [-73.64028519145303, 45.48216256314475]]}, "properties": {"ID_TRC": 4011460, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64009109540196, 45.48205273956457], [-73.6401130223738, 45.48204506330193], [-73.64013664524703, 45.48204026468797], [-73.64016111896842, 45.48203843474317], [-73.64018581159618, 45.48203966422716], [-73.64020966810172, 45.48204404464439], [-73.64023194842336, 45.482051216740395], [-73.64024546972276, 45.48205767970921], [-73.64026322388618, 45.482069087083964]]}, "properties": {"ID_TRC": 4011461, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Finchley "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64003179981344, 45.48213857595322], [-73.64003091463213, 45.48212192830567], [-73.64003488331959, 45.482105544661664], [-73.64004307414626, 45.48208978573375], [-73.64005370008019, 45.482077459883016], [-73.6400718123612, 45.48206302236041], [-73.64009109540196, 45.48205273956457]]}, "properties": {"ID_TRC": 4011462, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Langhorne", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Langhorne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64028519145303, 45.48216256314475], [-73.6403638734064, 45.482150767360416], [-73.6404667553735, 45.48210933367059]]}, "properties": {"ID_TRC": 4011463, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "croissant", "DIR_VOIE": null, "NOM_VOIE": "Merton", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Croissant Merton "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64000628418229, 45.48229783436838], [-73.64009791964251, 45.48225188631892], [-73.64012663611005, 45.48223619399394], [-73.64016113837991, 45.48221653141422]]}, "properties": {"ID_TRC": 4011464, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Langhorne", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Langhorne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64000628418229, 45.48229783436838], [-73.64003002983286, 45.48220338978269], [-73.64003179981344, 45.48213857595322]]}, "properties": {"ID_TRC": 4011465, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Langhorne", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Langhorne "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61439915116888, 45.50210994272537], [-73.61448968488105, 45.502077192213264], [-73.61457145348331, 45.50204086139617], [-73.61473061112544, 45.50196512967006], [-73.61496058614968, 45.50185204349333], [-73.61553442855997, 45.50158032849511], [-73.61614112482621, 45.50123799664071], [-73.61643023642117, 45.50107476139324], [-73.61671088062691, 45.500936161199725]]}, "properties": {"ID_TRC": 4011598, "DEB_GCH": 2787, "FIN_GCH": 2905, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 4, "LIE_VOIE": "des", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Services", "DEB_DRT": 2950, "FIN_DRT": 2950, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin des Services "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61671088062691, 45.500936161199725], [-73.61671350693723, 45.50088542849534], [-73.61673452388337, 45.500395682077354], [-73.61671933650244, 45.499888446809216], [-73.61667104947465, 45.499642631878395], [-73.61659168533102, 45.49938625748068], [-73.61653536736189, 45.49927146722982], [-73.61649740340135, 45.49920187222692], [-73.6164229353548, 45.49909747989762], [-73.61635869428623, 45.499016623310766]]}, "properties": {"ID_TRC": 4011599, "DEB_GCH": 2920, "FIN_GCH": 3000, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 4, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Tour", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la Tour "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61563393693967, 45.50445529206942], [-73.61581081454356, 45.50427444153612], [-73.61588075058916, 45.50420673797175], [-73.61593554827103, 45.504127456603236], [-73.61648033099746, 45.50312208194903], [-73.61699770928446, 45.502162142502044], [-73.61701920948173, 45.50209472964707], [-73.61702320213426, 45.50203240759022], [-73.61701484810224, 45.50197927658171], [-73.61699824859691, 45.50192518781096], [-73.61676023178994, 45.50121599332295], [-73.61672664835741, 45.501093183055055], [-73.61671088062691, 45.500936161199725]]}, "properties": {"ID_TRC": 4011600, "DEB_GCH": 2700, "FIN_GCH": 2910, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 4, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "Tour", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la Tour "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62679353840024, 45.49938793864305], [-73.62683868219915, 45.49933728671805], [-73.62722531186581, 45.498903501941406]]}, "properties": {"ID_TRC": 4012308, "DEB_GCH": 3510, "FIN_GCH": 3540, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 3499, "FIN_DRT": 3555, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62722531186581, 45.498903501941406], [-73.62732507006038, 45.49885796240602], [-73.6274222808691, 45.4987513224108], [-73.62749184478442, 45.49868369307232]]}, "properties": {"ID_TRC": 4012309, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62765299242179, 45.49843340422645], [-73.62946092498487, 45.496429197187794], [-73.62951488713757, 45.496369374221]]}, "properties": {"ID_TRC": 4012310, "DEB_GCH": 3680, "FIN_GCH": 3820, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 3745, "FIN_DRT": 3999, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62749184478442, 45.49868369307232], [-73.62757140025144, 45.4986060872129], [-73.62765503890834, 45.4985130090944], [-73.62765299242179, 45.49843340422645]]}, "properties": {"ID_TRC": 4012311, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62749184478442, 45.49868369307232], [-73.62775673294209, 45.49883995193902], [-73.62788734798644, 45.49891288006686], [-73.62795856791482, 45.498950147423436], [-73.62919342452346, 45.499508514464594], [-73.62926639112445, 45.49954177179787]]}, "properties": {"ID_TRC": 4012312, "DEB_GCH": 5750, "FIN_GCH": 5792, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 5693, "FIN_DRT": 5785, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62740180681497, 45.498630623334826], [-73.62749184478442, 45.49868369307232]]}, "properties": {"ID_TRC": 4012313, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-des-Neiges", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-des-Neiges "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62722531186581, 45.498903501941406], [-73.62722377712494, 45.49881959457339], [-73.62732538829415, 45.4987022942592], [-73.62740180681497, 45.498630623334826]]}, "properties": {"ID_TRC": 4012314, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62740180681497, 45.498630623334826], [-73.62748105244496, 45.49855759178906], [-73.6275537462814, 45.49847499968954], [-73.62765299242179, 45.49843340422645]]}, "properties": {"ID_TRC": 4012315, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64204494425503, 45.479098416243865], [-73.64211079592272, 45.479119521231745], [-73.64217140881864, 45.47914059423352], [-73.64225810572766, 45.479171173998], [-73.64238681506465, 45.47921799351247], [-73.64285729513249, 45.47940604300211], [-73.64322279656523, 45.47956728935664], [-73.64394496355675, 45.47988972781403], [-73.64401726485073, 45.47992364368865]]}, "properties": {"ID_TRC": 4013268, "DEB_GCH": 72, "FIN_GCH": 88, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Thurlow", "DEB_DRT": 61, "FIN_DRT": 83, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Thurlow "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64004012520654, 45.478617898847226], [-73.6402500124831, 45.478657905216465], [-73.64036115731312, 45.47867738716154], [-73.64049615621781, 45.47870097963219], [-73.64062810000617, 45.47872628541357], [-73.64087004103416, 45.47877620348346], [-73.64117270057756, 45.47884728465245], [-73.64136695276748, 45.478896540718864], [-73.64158465240581, 45.47895575681942], [-73.64182179470431, 45.47902673726074], [-73.6419705714312, 45.47907442902619], [-73.64204494425503, 45.479098416243865]]}, "properties": {"ID_TRC": 4013269, "DEB_GCH": 54, "FIN_GCH": 70, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Thurlow", "DEB_DRT": 45, "FIN_DRT": 59, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Thurlow "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64186106132517, 45.4793185583253], [-73.64201177736572, 45.47913989295546], [-73.64204494425503, 45.479098416243865]]}, "properties": {"ID_TRC": 4013270, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64061829789408, 45.4804891938206], [-73.64069838010346, 45.480512297080196], [-73.64089361342172, 45.48057208205915], [-73.64103341904287, 45.48061735606148], [-73.64116579472174, 45.48066438162758], [-73.64131791035601, 45.48071824710017], [-73.64144517722355, 45.48076827470112], [-73.6415465626673, 45.48080885727444], [-73.64171252520542, 45.480883090185316]]}, "properties": {"ID_TRC": 4013276, "DEB_GCH": 32, "FIN_GCH": 40, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Granville", "DEB_DRT": 29, "FIN_DRT": 33, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Granville "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63943662628392, 45.48025318791204], [-73.63964125294764, 45.48028150155364], [-73.63971387044666, 45.480293021679834], [-73.63996044508266, 45.48033690657277], [-73.64027185766946, 45.48040347970112], [-73.64053916456385, 45.480468306334515], [-73.64061829789408, 45.4804891938206]]}, "properties": {"ID_TRC": 4013277, "DEB_GCH": 22, "FIN_GCH": 30, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Granville", "DEB_DRT": 23, "FIN_DRT": 27, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Granville "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64061829789408, 45.4804891938206], [-73.64066174208273, 45.48041479005298], [-73.64077325000737, 45.480239027815]]}, "properties": {"ID_TRC": 4013278, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63963922540135, 45.47878218876574], [-73.63986434936875, 45.47868258621391], [-73.64004012520654, 45.478617898847226]]}, "properties": {"ID_TRC": 4013542, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Northcote", "DEB_DRT": 16, "FIN_DRT": 16, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Northcote "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63872998493336, 45.47931359440209], [-73.63892547649145, 45.479159977019634], [-73.63895191018037, 45.479140416166636], [-73.63902427103902, 45.47909101178984], [-73.63913351389176, 45.479023473727885], [-73.63923887902797, 45.47896664959008], [-73.6393728166167, 45.478901960928546], [-73.63963922540135, 45.47878218876574]]}, "properties": {"ID_TRC": 4013543, "DEB_GCH": 11, "FIN_GCH": 15, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Northcote", "DEB_DRT": 10, "FIN_DRT": 14, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Northcote "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63955940080204, 45.47856635905226], [-73.63984716183195, 45.47860134343123], [-73.64004012520654, 45.478617898847226]]}, "properties": {"ID_TRC": 4013544, "DEB_GCH": 44, "FIN_GCH": 44, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Thurlow", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Thurlow "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63671879965972, 45.47847175592062], [-73.63685947503313, 45.478465382342115], [-73.63760392518017, 45.478427230714665], [-73.63781765486269, 45.478418333617995], [-73.63798234337776, 45.47841696477575], [-73.63825339504024, 45.47842185682541], [-73.63836398007578, 45.47842856244042], [-73.63853471783641, 45.478441674360056], [-73.63870261545826, 45.478458209566455], [-73.63914926319696, 45.47851476591349], [-73.63955940080204, 45.47856635905226]]}, "properties": {"ID_TRC": 4013545, "DEB_GCH": 18, "FIN_GCH": 42, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Thurlow", "DEB_DRT": 25, "FIN_DRT": 41, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Thurlow "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63963922540135, 45.47878218876574], [-73.63963879230046, 45.478730198840346], [-73.63963633094711, 45.478716072902884], [-73.6396327027459, 45.478699518580044], [-73.63962727534103, 45.478680626404376], [-73.63962015839056, 45.47866101664095], [-73.63961273004041, 45.47864365709988], [-73.63960371802152, 45.47862566937594], [-73.6395933396265, 45.478607119566924], [-73.63955940080204, 45.47856635905226]]}, "properties": {"ID_TRC": 4013546, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62455381608316, 45.50186339926898], [-73.62460524130803, 45.501806094032474], [-73.62558581329498, 45.50072915354993], [-73.62564664082319, 45.500660865254844]]}, "properties": {"ID_TRC": 4013761, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 3201, "FIN_DRT": 3215, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62061755495161, 45.48247987989852], [-73.620694035117, 45.48242531522093], [-73.62195159626333, 45.48153061589403], [-73.62197076861048, 45.48151655646935], [-73.62198941296589, 45.481502227651355], [-73.62200795190635, 45.48148780895821], [-73.62202627913047, 45.48147321029394], [-73.62204450068666, 45.481458611964555], [-73.62206229946261, 45.481443744130054], [-73.62208020433533, 45.48142887595439], [-73.62209768598062, 45.48141373849927], [-73.62211506240497, 45.48139860092898], [-73.62213212209741, 45.48138337393494], [-73.62214875881509, 45.48136778722707], [-73.62216529031257, 45.48135220062928], [-73.6223456785533, 45.48116140927826]]}, "properties": {"ID_TRC": 4013763, "DEB_GCH": 5102, "FIN_GCH": 5240, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 5147, "FIN_DRT": 5275, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61606969175696, 45.483476064641266], [-73.61620998755136, 45.483443289753126], [-73.61633941269325, 45.48342380951841], [-73.61639099476206, 45.48341718742], [-73.61644279063121, 45.48341155513608], [-73.61649479877434, 45.483406822458335], [-73.61654691387005, 45.48340271954011], [-73.61659913554887, 45.483399066412375], [-73.61665135926411, 45.48339640331443], [-73.61670379589596, 45.48339473003083], [-73.6167562343829, 45.48339395634246], [-73.61680856813607, 45.48339363288516], [-73.61686100911511, 45.48339384920188], [-73.61691345095011, 45.48339469561093], [-73.61696589427582, 45.48339626164634], [-73.61701812933597, 45.48339908810557], [-73.61707026041562, 45.483402724284076], [-73.61712228733144, 45.483407080647474], [-73.61717421090576, 45.48341233693934], [-73.61722592454576, 45.483418043571085], [-73.61727766625025, 45.48342432402748], [-73.61732914363245, 45.483431166460896], [-73.61738075407183, 45.48343804292852], [-73.61743215375972, 45.48344518976831], [-73.61748365975751, 45.48345242623527], [-73.61753495493093, 45.483460112818996], [-73.6175862501916, 45.48346761941034], [-73.61763775559442, 45.483474765823786], [-73.61768926007343, 45.48348146229188], [-73.61774097476544, 45.48348761861237], [-73.61779279337054, 45.48349314468503], [-73.61784471596003, 45.48349786076536], [-73.61789684774674, 45.48350176674465], [-73.61794908313739, 45.48350468253744], [-73.61800152734479, 45.483506608259866], [-73.61805386495323, 45.48350808414532], [-73.61810630653446, 45.48350874981279], [-73.61815874705975, 45.48350869558036], [-73.61821107978066, 45.48350783157388], [-73.61826351684432, 45.48350633731815], [-73.6183158469949, 45.483504033287545], [-73.61836806933471, 45.483500919483156], [-73.61842029079631, 45.48349717553853], [-73.6184722992985, 45.48349244196013], [-73.6185242008084, 45.483487078576765], [-73.6185758894723, 45.48348099528887], [-73.61862736554764, 45.483474102336835], [-73.61867862884338, 45.48346630973649], [-73.61872967928699, 45.4834577972325], [-73.61878041173166, 45.483448385190165], [-73.61883072025398, 45.48343816370476], [-73.61888092195989, 45.48342740240065], [-73.61893069973947, 45.48341583142933], [-73.61898015970115, 45.48340345068082], [-73.61902919611266, 45.48339044068485], [-73.619077808403, 45.4833765310388], [-73.61912599732925, 45.483362081905845], [-73.6191738686206, 45.483346912982], [-73.61922121069315, 45.48333111469809], [-73.61926823506047, 45.48331477681852], [-73.61936090835118, 45.48328021276142], [-73.61952313790579, 45.48321346463405], [-73.61958248858029, 45.48318179811931], [-73.6196246474258, 45.48315979570503], [-73.61966617137972, 45.48313716382291], [-73.61970685001329, 45.483113902919115], [-73.61974700024571, 45.48309019263155], [-73.6197864103714, 45.483065853213546], [-73.61982529228561, 45.48304115417249], [-73.6198626466448, 45.48301544754344], [-73.62037160197936, 45.48265503954177], [-73.62054433026564, 45.482531845482306], [-73.62061755495161, 45.48247987989852]]}, "properties": {"ID_TRC": 4013764, "DEB_GCH": 4842, "FIN_GCH": 5100, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Saint-Luc", "DEB_DRT": 4851, "FIN_DRT": 5145, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Saint-Luc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61597699734978, 45.47580819047193], [-73.61604983949674, 45.4758492489644], [-73.61749858378435, 45.476704169922705], [-73.61815493389336, 45.47709100354302], [-73.61833860268113, 45.477209860942196]]}, "properties": {"ID_TRC": 4014228, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 7, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61833860268113, 45.477209860942196], [-73.61850487258823, 45.4773377629115], [-73.61864120637291, 45.47745038303422], [-73.6187510339117, 45.47755052155136], [-73.61887334775031, 45.47766606832197]]}, "properties": {"ID_TRC": 4014229, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.615441991817, 45.47530648775987], [-73.61566771606732, 45.47543209070535], [-73.6161159146183, 45.47568420559977]]}, "properties": {"ID_TRC": 4014230, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6161159146183, 45.47568420559977], [-73.61617131533278, 45.475715688920964], [-73.61624747333013, 45.47576087803955], [-73.61785296396438, 45.47671277025139], [-73.61799860961321, 45.47680156641449], [-73.61841891652661, 45.4770489732243], [-73.61850141470268, 45.477107504164216]]}, "properties": {"ID_TRC": 4014231, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 7, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61850141470268, 45.477107504164216], [-73.61854570862576, 45.47713982503224], [-73.61877143183081, 45.47731651760015], [-73.61891548796791, 45.4774386686454], [-73.61900490775803, 45.47751713982233], [-73.61909814301691, 45.47760352627932], [-73.61918578453415, 45.47768892866376], [-73.61932703629635, 45.47783115072187], [-73.6194089832501, 45.47791567410564]]}, "properties": {"ID_TRC": 4014232, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6376429218004, 45.487515358561964], [-73.63800441528771, 45.48767675714239], [-73.63862016479479, 45.48795001114902], [-73.63878611528956, 45.488026761052154]]}, "properties": {"ID_TRC": 4015310, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63713788622483, 45.48728986833211], [-73.6376429218004, 45.487515358561964]]}, "properties": {"ID_TRC": 4015311, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63459661579985, 45.48615031736746], [-73.63713788622483, 45.48728986833211]]}, "properties": {"ID_TRC": 4015312, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63411058808164, 45.48593183101983], [-73.63459661579985, 45.48615031736746]]}, "properties": {"ID_TRC": 4015313, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63256123273025, 45.485239354482076], [-73.63411058808164, 45.48593183101983]]}, "properties": {"ID_TRC": 4015314, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63212634889592, 45.48504510288278], [-73.63256123273025, 45.485239354482076]]}, "properties": {"ID_TRC": 4015315, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62938528191077, 45.483819294286214], [-73.62986499731363, 45.48403405676243], [-73.63212634889592, 45.48504510288278]]}, "properties": {"ID_TRC": 4015316, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62877414564308, 45.48354690429618], [-73.62938528191077, 45.483819294286214]]}, "properties": {"ID_TRC": 4015317, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62699408091318, 45.482749562412565], [-73.62877414564308, 45.48354690429618]]}, "properties": {"ID_TRC": 4015318, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62662690366753, 45.48258443543356], [-73.62699408091318, 45.482749562412565]]}, "properties": {"ID_TRC": 4015319, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6229109871655, 45.48091018794268], [-73.62662690366753, 45.48258443543356]]}, "properties": {"ID_TRC": 4015320, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62242767376077, 45.48068966123092], [-73.62253778636935, 45.48074119683088], [-73.6229109871655, 45.48091018794268]]}, "properties": {"ID_TRC": 4015321, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6200516276699, 45.47893771908712], [-73.62015339913422, 45.47905221455411], [-73.62047814208097, 45.4793884766339], [-73.62067854515539, 45.47956822297526], [-73.62075602197902, 45.47963419614915], [-73.62082630988627, 45.47969324760416], [-73.62097417360839, 45.479814852066866], [-73.6210791138169, 45.47989510506796], [-73.62114325776608, 45.4799424634805], [-73.62124459388521, 45.4800147106145], [-73.62136631840691, 45.48009863512894], [-73.62144883578227, 45.480152813354934], [-73.62154128218597, 45.480212110757506], [-73.6215987555817, 45.480247956846945], [-73.62170570151878, 45.48031475554856], [-73.62206809845092, 45.48051608117829], [-73.62242767376077, 45.48068966123092]]}, "properties": {"ID_TRC": 4015322, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61887334775031, 45.47766606832197], [-73.61897969957201, 45.47777094747728], [-73.61969253475317, 45.478531186051065], [-73.61976761971177, 45.47862146457933]]}, "properties": {"ID_TRC": 4015323, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61976761971177, 45.47862146457933], [-73.61984025121026, 45.47869994953774], [-73.6200516276699, 45.47893771908712]]}, "properties": {"ID_TRC": 4015324, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6194089832501, 45.47791567410564], [-73.61968645640187, 45.47826616274609], [-73.61988209437871, 45.47848992882637]]}, "properties": {"ID_TRC": 4015325, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61988209437871, 45.47848992882637], [-73.61995392911136, 45.47857419944146], [-73.62016896871856, 45.478819898207284]]}, "properties": {"ID_TRC": 4015326, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62016896871856, 45.478819898207284], [-73.62028941982273, 45.4789584439068], [-73.62048187965011, 45.47917075250514], [-73.62061235509786, 45.47930344232714], [-73.62072651357109, 45.47941134946572], [-73.6209064237781, 45.47957262026307], [-73.62107861765016, 45.479712778873804], [-73.62126936704911, 45.47985728582981], [-73.6213327703546, 45.4799034751218], [-73.6214379064419, 45.47997643815079], [-73.62156702197738, 45.4800629643746], [-73.62171355958675, 45.48015550153652], [-73.62190396240558, 45.480271752156], [-73.622141029293, 45.480398972765904], [-73.62251745757685, 45.48058587766844]]}, "properties": {"ID_TRC": 4015327, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62251745757685, 45.48058587766844], [-73.62300318998949, 45.48080729989635]]}, "properties": {"ID_TRC": 4015328, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62300318998949, 45.48080729989635], [-73.62671296634136, 45.48248007930571]]}, "properties": {"ID_TRC": 4015329, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62671296634136, 45.48248007930571], [-73.62708843427053, 45.48264931043469]]}, "properties": {"ID_TRC": 4015330, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62708843427053, 45.48264931043469], [-73.62885481767564, 45.48344048457764]]}, "properties": {"ID_TRC": 4015331, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62885481767564, 45.48344048457764], [-73.62947402149277, 45.48371651769757]]}, "properties": {"ID_TRC": 4015332, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62947402149277, 45.48371651769757], [-73.62995656233161, 45.48393280025494], [-73.63155812869408, 45.484654548668765], [-73.63219760023414, 45.48493433984778]]}, "properties": {"ID_TRC": 4015333, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63219760023414, 45.48493433984778], [-73.63264352698748, 45.48513372367587]]}, "properties": {"ID_TRC": 4015334, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63264352698748, 45.48513372367587], [-73.63369139949704, 45.485606406573424], [-73.63420010690628, 45.4858293310846]]}, "properties": {"ID_TRC": 4015335, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63420010690628, 45.4858293310846], [-73.63469077134971, 45.48604944188363]]}, "properties": {"ID_TRC": 4015336, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63469077134971, 45.48604944188363], [-73.63605862908396, 45.486659795084805], [-73.63722718126857, 45.4871832007075]]}, "properties": {"ID_TRC": 4015337, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63774204633877, 45.487413810513544], [-73.6380839064397, 45.487566922219926], [-73.63861647798097, 45.48780434953884], [-73.63870921073897, 45.487846293723706]]}, "properties": {"ID_TRC": 4015338, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63722718126857, 45.4871832007075], [-73.63774204633877, 45.487413810513544]]}, "properties": {"ID_TRC": 4015339, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63759034011414, 45.48756617364624], [-73.63828894318604, 45.487861155142674], [-73.63878611528956, 45.488026761052154]]}, "properties": {"ID_TRC": 4015340, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6342271828665, 45.48617689169179], [-73.6347037017532, 45.486340245528055], [-73.63498401165096, 45.48645371114372], [-73.63581691161814, 45.48682753973845], [-73.63631870892124, 45.48703812902467], [-73.63668536163867, 45.48718781617022], [-73.636903110558, 45.487275987055746], [-73.63707999537814, 45.487350672893704]]}, "properties": {"ID_TRC": 4015341, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63707999537814, 45.487350672893704], [-73.63759034011414, 45.48756617364624]]}, "properties": {"ID_TRC": 4015342, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63779287643835, 45.48736275496258], [-73.63780546520371, 45.48736928772739], [-73.63816486832368, 45.48754708126169], [-73.63870921073897, 45.487846293723706]]}, "properties": {"ID_TRC": 4015343, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63455044065711, 45.485816087164], [-73.63466379993585, 45.48589415108068], [-73.63672669573069, 45.48682734367028], [-73.63727335768498, 45.48709325155134], [-73.637295945594, 45.487104962665214]]}, "properties": {"ID_TRC": 4015344, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.637295945594, 45.487104962665214], [-73.63779287643835, 45.48736275496258]]}, "properties": {"ID_TRC": 4015345, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61995279212788, 45.47903148212882], [-73.6201525557792, 45.47925110093859], [-73.6202876894155, 45.479390988378526], [-73.62049711550674, 45.47958749305586], [-73.62066919814859, 45.479736610375056], [-73.62092188772266, 45.479940850875195], [-73.62097484727015, 45.47998090456755], [-73.62117487506141, 45.48012295651448], [-73.62148306204232, 45.480334982636926], [-73.62192208331216, 45.4805884426126], [-73.62213746438525, 45.48071493926947]]}, "properties": {"ID_TRC": 4015346, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61887334775031, 45.47766606832197], [-73.61897248997839, 45.47781107399237], [-73.6192247548995, 45.47816611736813], [-73.61969183032137, 45.47873111410249]]}, "properties": {"ID_TRC": 4015347, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61969183032137, 45.47873111410249], [-73.61974972942053, 45.47880011711896], [-73.61995279212788, 45.47903148212882]]}, "properties": {"ID_TRC": 4015348, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62026604517716, 45.47872605899035], [-73.62052660806467, 45.47901920418021], [-73.62065412169483, 45.47914869970235], [-73.62074568872963, 45.479242016047436], [-73.6208467669731, 45.479342521705114], [-73.62101655868929, 45.479490264165484], [-73.62109959562373, 45.479556618150724], [-73.62124101106093, 45.47967053316754], [-73.6214204542203, 45.47980859434694], [-73.62171031650885, 45.47999624135129], [-73.62188443640109, 45.48008638770529]]}, "properties": {"ID_TRC": 4015349, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6194089832501, 45.47791567410564], [-73.61953214084778, 45.47800547128396], [-73.61962804573402, 45.47807125633466], [-73.61970935633211, 45.47813996512995], [-73.61980111570422, 45.47821781075299], [-73.61996814758538, 45.47839131423963]]}, "properties": {"ID_TRC": 4015350, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61996814758538, 45.47839131423963], [-73.62004518713647, 45.47847322105846], [-73.6201770634195, 45.47862022153703], [-73.62019768595215, 45.47864332815418], [-73.62026604517716, 45.47872605899035]]}, "properties": {"ID_TRC": 4015351, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64241787135164, 45.48964636629723], [-73.64512736565439, 45.49085663494811]]}, "properties": {"ID_TRC": 4015354, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64199908880357, 45.489458562650825], [-73.64241787135164, 45.48964636629723]]}, "properties": {"ID_TRC": 4015355, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63919576061623, 45.488206227645115], [-73.64199908880357, 45.489458562650825]]}, "properties": {"ID_TRC": 4015356, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63900068087155, 45.488120575174676], [-73.63919576061623, 45.488206227645115]]}, "properties": {"ID_TRC": 4015357, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63878611528956, 45.488026761052154], [-73.63900068087155, 45.488120575174676]]}, "properties": {"ID_TRC": 4015358, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6424929256632, 45.48953693858138], [-73.6431447191778, 45.48982877130908], [-73.64520606566067, 45.49074978879512]]}, "properties": {"ID_TRC": 4015361, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64207133698946, 45.489349645309524], [-73.6424929256632, 45.48953693858138]]}, "properties": {"ID_TRC": 4015362, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63928781996323, 45.48810447676283], [-73.63987492095993, 45.48836603145505], [-73.64207133698946, 45.489349645309524]]}, "properties": {"ID_TRC": 4015363, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63909311904557, 45.48801773337412], [-73.63928781996323, 45.48810447676283]]}, "properties": {"ID_TRC": 4015364, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63870921073897, 45.487846293723706], [-73.6388113523587, 45.48789220529144], [-73.63909311904557, 45.48801773337412]]}, "properties": {"ID_TRC": 4015365, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61464831677051, 45.47509302510481], [-73.61514321899861, 45.475349016681236], [-73.61539753798507, 45.475485550124134], [-73.61554360629248, 45.47556576648988], [-73.61572389901394, 45.47566664673996], [-73.61597699734978, 45.47580819047193]]}, "properties": {"ID_TRC": 4015366, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61418289753371, 45.47486802617306], [-73.61432783361631, 45.47493721580306], [-73.61464831677051, 45.47509302510481]]}, "properties": {"ID_TRC": 4015367, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61476565749459, 45.4749738297802], [-73.61480150586704, 45.47499143594263], [-73.615441991817, 45.47530648775987]]}, "properties": {"ID_TRC": 4015368, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61433105724066, 45.474764088214], [-73.6144382535898, 45.4748151641983], [-73.61476565749459, 45.4749738297802]]}, "properties": {"ID_TRC": 4015369, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61252569896178, 45.473940137582744], [-73.6136689118518, 45.47445749293853], [-73.61433105724066, 45.474764088214]]}, "properties": {"ID_TRC": 4015370, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61482526602644, 45.474913903021786], [-73.61490592596533, 45.47495797450436], [-73.61510822305335, 45.47506706203023], [-73.615441991817, 45.47530648775987]]}, "properties": {"ID_TRC": 4015373, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.614401321833, 45.47467968415394], [-73.6147209227351, 45.47485689116669], [-73.61482526602644, 45.474913903021786]]}, "properties": {"ID_TRC": 4015374, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 6, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61411604341664, 45.47453032485962], [-73.614401321833, 45.47467968415394]]}, "properties": {"ID_TRC": 4015375, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61235143210675, 45.474157384763856], [-73.61299565900732, 45.474414325958755], [-73.61318170102562, 45.47448536403401], [-73.61418289753371, 45.47486802617306]]}, "properties": {"ID_TRC": 4015376, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.61243146560936, 45.47405645536943], [-73.61305960816405, 45.47433741187359], [-73.61359053169245, 45.47458442241899], [-73.61418289753371, 45.47486802617306]]}, "properties": {"ID_TRC": 4015379, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 8, "LIE_VOIE": null, "TYP_VOIE": "autoroute", "DIR_VOIE": null, "NOM_VOIE": "15", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Autoroute 15 "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63156350489513, 45.49408992605251], [-73.6317829796848, 45.4938455807949]]}, "properties": {"ID_TRC": 4016697, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4635, "FIN_DRT": 4637, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63131718245718, 45.49436461817868], [-73.63136903364003, 45.49430668213993], [-73.63156350489513, 45.49408992605251]]}, "properties": {"ID_TRC": 4016698, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4615, "FIN_DRT": 4633, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63200116491696, 45.49360311142136], [-73.63222002144953, 45.4933597378496]]}, "properties": {"ID_TRC": 4016699, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4655, "FIN_DRT": 4661, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6317829796848, 45.4938455807949], [-73.63200116491696, 45.49360311142136]]}, "properties": {"ID_TRC": 4016700, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4643, "FIN_DRT": 4653, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63243913100474, 45.49311640989669], [-73.6326556469547, 45.49287542997017]]}, "properties": {"ID_TRC": 4016701, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4683, "FIN_DRT": 4697, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63222002144953, 45.4933597378496], [-73.63243913100474, 45.49311640989669]]}, "properties": {"ID_TRC": 4016702, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4667, "FIN_DRT": 4681, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63287717685283, 45.49262926248478], [-73.63306863454467, 45.492416118803], [-73.63312482534776, 45.49235401758448]]}, "properties": {"ID_TRC": 4016703, "DEB_GCH": 4780, "FIN_GCH": 4780, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4725, "FIN_DRT": 4735, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6326556469547, 45.49287542997017], [-73.63287717685283, 45.49262926248478]]}, "properties": {"ID_TRC": 4016704, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00c3\u00b4te-Sainte-Catherine", "DEB_DRT": 4701, "FIN_DRT": 4723, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00c3\u00b4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63169601188628, 45.4921057059234], [-73.6319463975192, 45.49182864271046]]}, "properties": {"ID_TRC": 4016705, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 4785, "FIN_DRT": 4787, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63147915025986, 45.49234936127461], [-73.63169601188628, 45.4921057059234]]}, "properties": {"ID_TRC": 4016706, "DEB_GCH": 4752, "FIN_GCH": 4770, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6312643336401, 45.492590646812154], [-73.63147915025986, 45.49234936127461]]}, "properties": {"ID_TRC": 4016707, "DEB_GCH": 4750, "FIN_GCH": 4750, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63104352402067, 45.492838852542306], [-73.6312643336401, 45.492590646812154]]}, "properties": {"ID_TRC": 4016708, "DEB_GCH": 4682, "FIN_GCH": 4748, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63082905533446, 45.49307980592337], [-73.63104352402067, 45.492838852542306]]}, "properties": {"ID_TRC": 4016709, "DEB_GCH": 4650, "FIN_GCH": 4680, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63061311093311, 45.493322428890764], [-73.63082905533446, 45.49307980592337]]}, "properties": {"ID_TRC": 4016710, "DEB_GCH": 4640, "FIN_GCH": 4648, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63039273184636, 45.49357003354203], [-73.63061311093311, 45.493322428890764]]}, "properties": {"ID_TRC": 4016711, "DEB_GCH": 4630, "FIN_GCH": 4638, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63015036773064, 45.493842368939625], [-73.63019726036902, 45.49378912344263], [-73.63039273184636, 45.49357003354203]]}, "properties": {"ID_TRC": 4016712, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Dupuis", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Avenue Dupuis "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63169601188628, 45.4921057059234], [-73.63287717685283, 45.49262926248478]]}, "properties": {"ID_TRC": 4016713, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6312643336401, 45.492590646812154], [-73.63243913100474, 45.49311640989669]]}, "properties": {"ID_TRC": 4016714, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63082905533446, 45.49307980592337], [-73.63200116491696, 45.49360311142136]]}, "properties": {"ID_TRC": 4016715, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63039273184636, 45.49357003354203], [-73.63156350489513, 45.49408992605251]]}, "properties": {"ID_TRC": 4016716, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "voie", "DIR_VOIE": null, "NOM_VOIE": "Non-nomm\u00c3\u00a9e", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Voie Non-nomm\u00c3\u00a9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63900299090673, 45.48827896900262], [-73.63905073928062, 45.48830011147152]]}, "properties": {"ID_TRC": 4016862, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.63924906395285, 45.48793319186684], [-73.63929144004666, 45.487952575513404]]}, "properties": {"ID_TRC": 4016863, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": -1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.62654402306778, 45.48270448128866], [-73.62670249775307, 45.48277605418677]]}, "properties": {"ID_TRC": 4016869, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "SENS_CIR": 1, "CLASSE": 7, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "D\u00c3\u00a9carie", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "C\u00c3\u00b4te-des-Neiges-Notre-Dame-de-Gr\u00c3\u00a2ce", "LIM_GCH": "Montr\u00c3\u00a9al", "LIM_DRT": "Montr\u00c3\u00a9al", "POSITION": 5, "ODONYME": "Boulevard D\u00c3\u00a9carie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.64016113837991, 45.48221653141422], [-73.64018582483688, 45.48221524133592], [-73.64020965998698, 45.48221098235432], [-73.64023190465319, 45.48220375560231], [-73.64025161079897, 45.48219383219876], [-73.64026846255815, 45.48218166223104], [-73.64027761923235, 45.48217247165388], [-73.64028519145303, 45.48216256314475]]}, "properties": {"ID_TRC": 4017850, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "N/A", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Finchley", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "N/A", "LIM_GCH": "Hampstead", "LIM_DRT": "Hampstead", "POSITION": 5, "ODONYME": "Rue Finchley "}}]} \ No newline at end of file +{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59506718169946, 45.51929278919055], [-73.595332408308, 45.5189930022535], [-73.5959298081567, 45.518294270835526]]}, "properties": {"ID_TRC": 1240105, "DEB_GCH": 370, "FIN_GCH": 396, "ARR_GCH": "Le Plateau-Mont-Royal", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "\u00c9douard-Charles", "DEB_DRT": 365, "FIN_DRT": 399, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Rue \u00c9douard-Charles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59759382262268, 45.52041202160453], [-73.5976229817374, 45.520330182308456], [-73.59772225603118, 45.5201832405602], [-73.59804966254967, 45.519822652225216], [-73.59835357526725, 45.51948923157061]]}, "properties": {"ID_TRC": 1240131, "DEB_GCH": 350, "FIN_GCH": 390, "ARR_GCH": "Le Plateau-Mont-Royal", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": "Ouest", "NOM_VOIE": "Fairmount", "DEB_DRT": 353, "FIN_DRT": 405, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Fairmount Ouest"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59526685157219, 45.518002701378016], [-73.5959298081567, 45.518294270835526]]}, "properties": {"ID_TRC": 1240178, "DEB_GCH": 5030, "FIN_GCH": 5032, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Hutchison", "DEB_DRT": 5007, "FIN_DRT": 5009, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Rue Hutchison "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.5959298081567, 45.518294270835526], [-73.59628621690675, 45.518451084947145], [-73.59660419583157, 45.51859790847387], [-73.59667836634496, 45.51864600834251]]}, "properties": {"ID_TRC": 1240179, "DEB_GCH": 5040, "FIN_GCH": 5070, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Hutchison", "DEB_DRT": 5041, "FIN_DRT": 5043, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Rue Hutchison "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59661329033216, 45.51872059719443], [-73.59705447350504, 45.51891526364606], [-73.59749955304527, 45.51911853653525]]}, "properties": {"ID_TRC": 1240180, "DEB_GCH": 5100, "FIN_GCH": 5150, "ARR_GCH": "Outremont", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Hutchison", "DEB_DRT": 5101, "FIN_DRT": 5103, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Rue Hutchison "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59749955304527, 45.51911853653525], [-73.59792389337213, 45.519303540704946], [-73.59835357526725, 45.51948923157061]]}, "properties": {"ID_TRC": 1240181, "DEB_GCH": 5152, "FIN_GCH": 5198, "ARR_GCH": "Outremont", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Hutchison", "DEB_DRT": 5159, "FIN_DRT": 5171, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Rue Hutchison "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59835357526725, 45.51948923157061], [-73.59853713132625, 45.519558431283556], [-73.60285841440847, 45.521475989769925]]}, "properties": {"ID_TRC": 1240182, "DEB_GCH": 5200, "FIN_GCH": 5540, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Hutchison", "DEB_DRT": 5213, "FIN_DRT": 5479, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Rue Hutchison "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59669597720399, 45.52001235619827], [-73.5970115074921, 45.51966188136429], [-73.59749955304527, 45.51911853653525]]}, "properties": {"ID_TRC": 1240199, "DEB_GCH": 359, "FIN_GCH": 397, "ARR_GCH": "Le Plateau-Mont-Royal", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "rue", "DIR_VOIE": null, "NOM_VOIE": "Labadie", "DEB_DRT": 354, "FIN_DRT": 398, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Rue Labadie "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59521725380762, 45.520326148886674], [-73.59525992926146, 45.52028080274776], [-73.59550293259802, 45.51999999363357], [-73.59582296304909, 45.51962703333212]]}, "properties": {"ID_TRC": 1240218, "DEB_GCH": 278, "FIN_GCH": 290, "ARR_GCH": "Le Plateau-Mont-Royal", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": "Ouest", "NOM_VOIE": "Laurier", "DEB_DRT": 251, "FIN_DRT": 283, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Laurier Ouest"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59582296304909, 45.51962703333212], [-73.59610999254177, 45.51929802784235], [-73.59661329033216, 45.51872059719443]]}, "properties": {"ID_TRC": 1240219, "DEB_GCH": 360, "FIN_GCH": 400, "ARR_GCH": "Le Plateau-Mont-Royal", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": "Ouest", "NOM_VOIE": "Laurier", "DEB_DRT": 351, "FIN_DRT": 399, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Laurier Ouest"}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59506718169946, 45.51929278919055], [-73.5953766288348, 45.519429801904124], [-73.59582296304909, 45.51962703333212]]}, "properties": {"ID_TRC": 1240267, "DEB_GCH": 5036, "FIN_GCH": 5070, "ARR_GCH": "Le Plateau-Mont-Royal", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "du", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Parc", "DEB_DRT": 5031, "FIN_DRT": 5059, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue du Parc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59582296304909, 45.51962703333212], [-73.59669597720399, 45.52001235619827]]}, "properties": {"ID_TRC": 1240268, "DEB_GCH": 5110, "FIN_GCH": 5138, "ARR_GCH": "Le Plateau-Mont-Royal", "SENS_CIR": 0, "CLASSE": 7, "LIE_VOIE": "du", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Parc", "DEB_DRT": 5101, "FIN_DRT": 5137, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue du Parc "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60111162287424, 45.51588526506827], [-73.60112129641433, 45.515959172145564], [-73.60114070919414, 45.51601090076587], [-73.60137984981536, 45.516489450288276], [-73.60139585020853, 45.516515460836104], [-73.60140779683482, 45.51653127213412], [-73.60142524844524, 45.51654889532196], [-73.60145527244045, 45.51657154667567], [-73.60147883987358, 45.51658511468927], [-73.60368643159443, 45.51756792320686], [-73.60373400959571, 45.51758872414737]]}, "properties": {"ID_TRC": 1604074, "DEB_GCH": 212, "FIN_GCH": 288, "ARR_GCH": "Outremont", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "McDougall", "DEB_DRT": 215, "FIN_DRT": 287, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue McDougall "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59894797994374, 45.51883812456619], [-73.60344125539838, 45.52082527495115]]}, "properties": {"ID_TRC": 1604076, "DEB_GCH": 5210, "FIN_GCH": 5510, "ARR_GCH": "Outremont", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Durocher", "DEB_DRT": 5203, "FIN_DRT": 5521, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Durocher "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59835357526725, 45.51948923157061], [-73.59843358903406, 45.519407657127566], [-73.59890946457071, 45.51888227372923], [-73.59894797994374, 45.51883812456619]]}, "properties": {"ID_TRC": 1604077, "DEB_GCH": 1024, "FIN_GCH": 1030, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Fairmount", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Fairmount "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59718649407004, 45.518060973210055], [-73.59894797994374, 45.51883812456619]]}, "properties": {"ID_TRC": 1604078, "DEB_GCH": 5126, "FIN_GCH": 5196, "ARR_GCH": "Outremont", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Durocher", "DEB_DRT": 5111, "FIN_DRT": 5197, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Durocher "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59667836634496, 45.51864600834251], [-73.59718649407004, 45.518060973210055]]}, "properties": {"ID_TRC": 1604079, "DEB_GCH": 1000, "FIN_GCH": 1052, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Laurier", "DEB_DRT": 1001, "FIN_DRT": 1045, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Laurier "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59718649407004, 45.518060973210055], [-73.59768107363753, 45.51749519246221], [-73.59772009401253, 45.51745098838028]]}, "properties": {"ID_TRC": 1604080, "DEB_GCH": 1054, "FIN_GCH": 1090, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Laurier", "DEB_DRT": 1051, "FIN_DRT": 1089, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Laurier "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59894797994374, 45.51883812456619], [-73.59944665458373, 45.518283175558565], [-73.5994869949239, 45.518236013978495]]}, "properties": {"ID_TRC": 1604081, "DEB_GCH": 1060, "FIN_GCH": 1090, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Fairmount", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Fairmount "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.5994869949239, 45.518236013978495], [-73.59954596880354, 45.518263200778044], [-73.60204934118995, 45.51937303209899], [-73.60210758503855, 45.519398543169864]]}, "properties": {"ID_TRC": 1604082, "DEB_GCH": 200, "FIN_GCH": 286, "ARR_GCH": "Outremont", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Querbes", "DEB_DRT": 215, "FIN_DRT": 299, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Querbes "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.5999578735355, 45.51770956436938], [-73.60001971438825, 45.51773533926753], [-73.60252857225028, 45.51885028515169], [-73.60258092495809, 45.518873823871374]]}, "properties": {"ID_TRC": 1604083, "DEB_GCH": 262, "FIN_GCH": 298, "ARR_GCH": "Outremont", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de l'", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "\u00c9p\u00e9e", "DEB_DRT": 215, "FIN_DRT": 297, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue de l'\u00c9p\u00e9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.5999578735355, 45.51770956436938], [-73.59999868044031, 45.5176621936575], [-73.60037971441822, 45.5172492426553], [-73.6004235841781, 45.51720017064677]]}, "properties": {"ID_TRC": 1604084, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Fairmount", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Fairmount "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.5994869949239, 45.518236013978495], [-73.59952757123126, 45.51818798270717], [-73.59991850309852, 45.517756576123155], [-73.5999578735355, 45.51770956436938]]}, "properties": {"ID_TRC": 1604085, "DEB_GCH": 1130, "FIN_GCH": 1130, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Fairmount", "DEB_DRT": 1125, "FIN_DRT": 1125, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Fairmount "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59772009401253, 45.51745098838028], [-73.59781293680538, 45.51749372986743], [-73.59912346470618, 45.51807841381911], [-73.5994150463149, 45.51820275169376], [-73.5994869949239, 45.518236013978495]]}, "properties": {"ID_TRC": 1604086, "DEB_GCH": 120, "FIN_GCH": 198, "ARR_GCH": "Outremont", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Querbes", "DEB_DRT": 105, "FIN_DRT": 191, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Querbes "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59772009401253, 45.51745098838028], [-73.59775999303861, 45.51740405229103], [-73.59814637131481, 45.51695987674457], [-73.59817965160595, 45.51691694373417]]}, "properties": {"ID_TRC": 1604087, "DEB_GCH": 1108, "FIN_GCH": 1134, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Laurier", "DEB_DRT": 1101, "FIN_DRT": 1145, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Laurier "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59695250545542, 45.51711035981828], [-73.59700992820228, 45.517131383764585], [-73.59762454358187, 45.51740740800521], [-73.59772009401253, 45.51745098838028]]}, "properties": {"ID_TRC": 1604088, "DEB_GCH": 22, "FIN_GCH": 40, "ARR_GCH": "Outremont", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Querbes", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Querbes "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59817965160595, 45.51691694373417], [-73.59826270945989, 45.516956086932105], [-73.59989746972171, 45.51768343049424], [-73.5999578735355, 45.51770956436938]]}, "properties": {"ID_TRC": 1604089, "DEB_GCH": 130, "FIN_GCH": 196, "ARR_GCH": "Outremont", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de l'", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "\u00c9p\u00e9e", "DEB_DRT": 101, "FIN_DRT": 193, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue de l'\u00c9p\u00e9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59817965160595, 45.51691694373417], [-73.59821800651304, 45.51686991229968], [-73.59861839009199, 45.51640907444005], [-73.59864925024401, 45.51635477748705]]}, "properties": {"ID_TRC": 1604090, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Laurier", "DEB_DRT": 1160, "FIN_DRT": 1160, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Laurier "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59831719472277, 45.516092328198965], [-73.59832564736963, 45.51616397301103], [-73.59832989422374, 45.51616987231223], [-73.59853384463266, 45.51629980615071], [-73.59864925024401, 45.51635477748705]]}, "properties": {"ID_TRC": 1604091, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bloomfield", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Bloomfield "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60068596879967, 45.51590955881393], [-73.60103840074251, 45.515888960940295], [-73.60111162287424, 45.51588526506827]]}, "properties": {"ID_TRC": 1604093, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00f4te-Sainte-Catherine", "DEB_DRT": 275, "FIN_DRT": 275, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00f4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60111162287424, 45.51588526506827], [-73.6011834447422, 45.515880823296634], [-73.60201296299422, 45.515834909227785], [-73.60209393131016, 45.51582903314205]]}, "properties": {"ID_TRC": 1604094, "DEB_GCH": 314, "FIN_GCH": 314, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00f4te-Sainte-Catherine", "DEB_DRT": 283, "FIN_DRT": 283, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00f4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60068596879967, 45.51590955881393], [-73.60068076778639, 45.51579973397708], [-73.60067143635189, 45.51571757884091], [-73.60065964070002, 45.515698794030826]]}, "properties": {"ID_TRC": 1604095, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "McCulloch", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue McCulloch "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60065964070002, 45.515698794030826], [-73.600626865501, 45.51564796366607], [-73.60060001753378, 45.515511378166956], [-73.60050395077857, 45.514683632950074]]}, "properties": {"ID_TRC": 1604096, "DEB_GCH": 2, "FIN_GCH": 10, "ARR_GCH": "Outremont", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "McCulloch", "DEB_DRT": 3, "FIN_DRT": 11, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue McCulloch "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6000968185747, 45.51465215157258], [-73.60016015330837, 45.51468830679238], [-73.60018413069265, 45.514696214042054], [-73.60021225897282, 45.51469855820138], [-73.60050395077857, 45.514683632950074]]}, "properties": {"ID_TRC": 1604097, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": "du", "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "V\u00e9sinet", "DEB_DRT": 5, "FIN_DRT": 7, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Place du V\u00e9sinet "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60050395077857, 45.514683632950074], [-73.60083994869639, 45.5146629844535], [-73.60087705489718, 45.51465786893834], [-73.60090609424971, 45.514646865677435], [-73.60095754461557, 45.51461602202708]]}, "properties": {"ID_TRC": 1604098, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "du", "TYP_VOIE": "place", "DIR_VOIE": null, "NOM_VOIE": "V\u00e9sinet", "DEB_DRT": 15, "FIN_DRT": 21, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Place du V\u00e9sinet "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60095754461557, 45.51461602202708], [-73.60086132667382, 45.51457414270316], [-73.60064809554156, 45.514468769277315], [-73.60053284211762, 45.51443799451474]]}, "properties": {"ID_TRC": 1604099, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "du", "TYP_VOIE": "c\u00f4te", "DIR_VOIE": null, "NOM_VOIE": "V\u00e9sinet", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "C\u00f4te du V\u00e9sinet "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60053284211762, 45.51443799451474], [-73.60042639463903, 45.51440902912376], [-73.60032456549455, 45.51437609127755], [-73.60030470401728, 45.51436809923222], [-73.5997675465803, 45.51412306931552], [-73.59970848252294, 45.514095625559754]]}, "properties": {"ID_TRC": 1604101, "DEB_GCH": 60, "FIN_GCH": 78, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "McCulloch", "DEB_DRT": 51, "FIN_DRT": 65, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue McCulloch "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59970848252294, 45.514095625559754], [-73.59964741678941, 45.5140686386142], [-73.59868554675094, 45.513636968039464], [-73.59862473317297, 45.513607044819686]]}, "properties": {"ID_TRC": 1604102, "DEB_GCH": 80, "FIN_GCH": 96, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "McCulloch", "DEB_DRT": 87, "FIN_DRT": 97, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue McCulloch "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59674890455591, 45.516321308995884], [-73.59677219587377, 45.51629503280788], [-73.59678803234243, 45.51626510710288], [-73.59679651579943, 45.51623922633764], [-73.59680121151808, 45.516212284719536], [-73.59680233345958, 45.516142372199454]]}, "properties": {"ID_TRC": 1604108, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "Saint-Joseph", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Boulevard Saint-Joseph "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59631286507738, 45.516825921315835], [-73.5963460098713, 45.51679042298828], [-73.59672258740919, 45.516352560037134], [-73.59674890455591, 45.516321308995884]]}, "properties": {"ID_TRC": 1604109, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "Saint-Joseph", "DEB_DRT": 439, "FIN_DRT": 445, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Boulevard Saint-Joseph "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.5959298081567, 45.518294270835526], [-73.5969166313857, 45.5171504513983], [-73.59695250545542, 45.51711035981828]]}, "properties": {"ID_TRC": 1604110, "DEB_GCH": 410, "FIN_GCH": 458, "ARR_GCH": "Outremont", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "\u00c9douard-Charles", "DEB_DRT": 401, "FIN_DRT": 483, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue \u00c9douard-Charles "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59631286507738, 45.516825921315835], [-73.59638909783556, 45.516859951086516], [-73.59690386057196, 45.51709124708266], [-73.59695250545542, 45.51711035981828]]}, "properties": {"ID_TRC": 1604111, "DEB_GCH": 2, "FIN_GCH": 20, "ARR_GCH": "Outremont", "SENS_CIR": -1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Querbes", "DEB_DRT": 3, "FIN_DRT": 9, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Querbes "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59607752240602, 45.51709211245228], [-73.59627297995722, 45.516868868348084], [-73.59631286507738, 45.516825921315835]]}, "properties": {"ID_TRC": 1604112, "DEB_GCH": 428, "FIN_GCH": 428, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "Saint-Joseph", "DEB_DRT": 433, "FIN_DRT": 433, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Boulevard Saint-Joseph "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59553236427277, 45.51770973446262], [-73.59607752240602, 45.51709211245228]]}, "properties": {"ID_TRC": 1604113, "DEB_GCH": 422, "FIN_GCH": 422, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "Saint-Joseph", "DEB_DRT": 405, "FIN_DRT": 425, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Boulevard Saint-Joseph "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59680233345958, 45.516142372199454], [-73.59694255971577, 45.51614125041033], [-73.59826638368321, 45.516094763022146], [-73.59831719472277, 45.516092328198965]]}, "properties": {"ID_TRC": 1604114, "DEB_GCH": 170, "FIN_GCH": 216, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00f4te-Sainte-Catherine", "DEB_DRT": 195, "FIN_DRT": 205, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00f4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6004235841781, 45.51720017064677], [-73.60048629992026, 45.51722791585173], [-73.6012818261046, 45.51757979969432], [-73.60136307255738, 45.51761194507792], [-73.60145032678744, 45.51763814544442], [-73.60153872858041, 45.517656965355194], [-73.60160742630167, 45.51766560977969], [-73.60180167621404, 45.51769020877331], [-73.60188024955255, 45.51770327752258], [-73.60195809397477, 45.51772201653986], [-73.60200140499637, 45.51773547683498], [-73.60204598768665, 45.517751545740694], [-73.6020967036544, 45.51777291865759], [-73.60309976573603, 45.51821856189179], [-73.60314947388306, 45.518238603934925]]}, "properties": {"ID_TRC": 1604115, "DEB_GCH": 214, "FIN_GCH": 290, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bloomfield", "DEB_DRT": 215, "FIN_DRT": 295, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Bloomfield "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59970848252294, 45.514095625559754], [-73.599740830348, 45.51405946779191], [-73.60079382078816, 45.51292604386471], [-73.60091641958287, 45.512793406067075], [-73.60105213732045, 45.51264920953876]]}, "properties": {"ID_TRC": 1604120, "DEB_GCH": 12, "FIN_GCH": 40, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Roskilde", "DEB_DRT": 15, "FIN_DRT": 21, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Roskilde "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59864925024401, 45.51635477748705], [-73.59873988780612, 45.516398080284404], [-73.59913313918416, 45.51662974117325], [-73.60036501093659, 45.51717393170057], [-73.6004235841781, 45.51720017064677]]}, "properties": {"ID_TRC": 1604123, "DEB_GCH": 126, "FIN_GCH": 212, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Bloomfield", "DEB_DRT": 135, "FIN_DRT": 195, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Bloomfield "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60065964070002, 45.515698794030826], [-73.60074154866415, 45.51566478117071], [-73.60122730212213, 45.515434330101925], [-73.60125978641281, 45.51541639289878], [-73.60131135438515, 45.51538439966696], [-73.60133222249644, 45.51536467261263], [-73.60134127756712, 45.515351255822544], [-73.60134810990812, 45.51533442093271], [-73.60135083236528, 45.51532199958523], [-73.60135328566743, 45.51527718104705], [-73.60134937406247, 45.515215359358855], [-73.60129745468356, 45.514757252184914], [-73.60129223804165, 45.514732778655635], [-73.60127486603821, 45.51470325677105], [-73.60124707797634, 45.51468681475967], [-73.60119239167926, 45.514666737818104], [-73.60106787966245, 45.514649162120186], [-73.60101494298965, 45.514636706550384], [-73.60095754461557, 45.51461602202708]]}, "properties": {"ID_TRC": 1604127, "DEB_GCH": 12, "FIN_GCH": 16, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": "du", "TYP_VOIE": "c\u00f4te", "DIR_VOIE": null, "NOM_VOIE": "V\u00e9sinet", "DEB_DRT": 11, "FIN_DRT": 11, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "C\u00f4te du V\u00e9sinet "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59674890455591, 45.516321308995884], [-73.59685106736953, 45.516349751430546], [-73.59737332395683, 45.51658130870525], [-73.59738684599617, 45.51658624675294], [-73.59740057824546, 45.51659046474707], [-73.59741462522206, 45.51659378240527], [-73.59742867264869, 45.516597100286326], [-73.5974427199392, 45.51660059790899], [-73.59745676752452, 45.51660400577055], [-73.59747081526646, 45.51660750338937], [-73.59748475759652, 45.51661118128956], [-73.59749848987735, 45.51661566922414], [-73.59751190696988, 45.51662078731474], [-73.59752500735671, 45.51662617562643], [-73.59785973006112, 45.51677590746655], [-73.59810770247863, 45.51688296614517], [-73.59817965160595, 45.51691694373417]]}, "properties": {"ID_TRC": 1604128, "DEB_GCH": 22, "FIN_GCH": 32, "ARR_GCH": "Outremont", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": "de l'", "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "\u00c9p\u00e9e", "DEB_DRT": 1, "FIN_DRT": 25, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue de l'\u00c9p\u00e9e "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59410967230711, 45.51622110290747], [-73.59417551602446, 45.51624354714192], [-73.59607752240602, 45.51709211245228]]}, "properties": {"ID_TRC": 1604138, "DEB_GCH": 40, "FIN_GCH": 90, "ARR_GCH": "Outremont", "SENS_CIR": 1, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "McNider", "DEB_DRT": 45, "FIN_DRT": 95, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue McNider "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59438124412189, 45.51589404085767], [-73.59447161646146, 45.51590618959441], [-73.59484765065984, 45.515956813939646], [-73.59502536936235, 45.51597880457858], [-73.59614519610369, 45.51610340751359], [-73.59638531341325, 45.51612741313465], [-73.59649121745004, 45.516134703098025], [-73.59665951718303, 45.51614284024895], [-73.59680233345958, 45.516142372199454]]}, "properties": {"ID_TRC": 1604140, "DEB_GCH": 152, "FIN_GCH": 152, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00f4te-Sainte-Catherine", "DEB_DRT": 115, "FIN_DRT": 165, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00f4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59504515810727, 45.51470706091068], [-73.59510948860594, 45.514711545941296], [-73.595543494429, 45.514711453716], [-73.59675605005229, 45.51468631510609], [-73.5968901101047, 45.51467693221241], [-73.59693433528538, 45.51467149497048], [-73.59702233342675, 45.51465894509004], [-73.59706637301423, 45.514652664353456], [-73.59719438093578, 45.51462303801819], [-73.59727805964194, 45.514600108572914], [-73.59735866862717, 45.51457241207415], [-73.59743800725745, 45.51454273672632], [-73.59747587794392, 45.51452569584302], [-73.59758621184993, 45.514471336039556], [-73.59762228492248, 45.51445258671982], [-73.59768850982637, 45.514409963339844], [-73.59787936182282, 45.51427607073429], [-73.59812576179436, 45.5140921839632], [-73.59858643325767, 45.51364632288716], [-73.59862473317297, 45.513607044819686]]}, "properties": {"ID_TRC": 1604142, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "boulevard", "DIR_VOIE": null, "NOM_VOIE": "Mont-Royal", "DEB_DRT": 1121, "FIN_DRT": 1195, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Boulevard Mont-Royal "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59499727235105, 45.51533686424589], [-73.5950608339374, 45.51534693570649], [-73.59570761897884, 45.515373033409105], [-73.59579524484406, 45.51537313992764], [-73.59591304934791, 45.51536440170137], [-73.59689884546256, 45.515276456797515], [-73.59701770514565, 45.51526726661623], [-73.59707112242918, 45.51526578126548], [-73.59713900723358, 45.515266713608895], [-73.59793399384475, 45.515279713747525], [-73.598030695723, 45.51527810084675], [-73.59812812862246, 45.51527180761246], [-73.5981925165315, 45.515265003025206], [-73.59824850271247, 45.51525721625281], [-73.59913209289964, 45.515071966774954], [-73.59927012248642, 45.51503809971508], [-73.59936054492097, 45.51500787349709], [-73.59948471285306, 45.5149563795473], [-73.59992804057903, 45.514734520081724], [-73.6000968185747, 45.51465215157258]]}, "properties": {"ID_TRC": 1604144, "DEB_GCH": 24, "FIN_GCH": 76, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Maplewood", "DEB_DRT": 25, "FIN_DRT": 77, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Maplewood "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.6000968185747, 45.51465215157258], [-73.60037336698896, 45.514510497736666], [-73.60053284211762, 45.51443799451474]]}, "properties": {"ID_TRC": 1604145, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Maplewood", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Maplewood "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59831719472277, 45.516092328198965], [-73.59836888820561, 45.516089995175165], [-73.59874806617601, 45.51606390850056]]}, "properties": {"ID_TRC": 4000447, "DEB_GCH": 220, "FIN_GCH": 236, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00f4te-Sainte-Catherine", "DEB_DRT": 233, "FIN_DRT": 235, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00f4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59874806617601, 45.51606390850056], [-73.59990456511873, 45.515965732229276], [-73.60068596879967, 45.51590955881393]]}, "properties": {"ID_TRC": 4000557, "DEB_GCH": 238, "FIN_GCH": 266, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 6, "LIE_VOIE": "de la", "TYP_VOIE": "chemin", "DIR_VOIE": null, "NOM_VOIE": "C\u00f4te-Sainte-Catherine", "DEB_DRT": 239, "FIN_DRT": 271, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Chemin de la C\u00f4te-Sainte-Catherine "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.60053284211762, 45.51443799451474], [-73.60070901661923, 45.51435415477023], [-73.60221621332174, 45.513688578842526], [-73.60227723340505, 45.513668680247925]]}, "properties": {"ID_TRC": 4000950, "DEB_GCH": 110, "FIN_GCH": 138, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 0, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Maplewood", "DEB_DRT": 105, "FIN_DRT": 135, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Maplewood "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59864925024401, 45.51635477748705], [-73.59868291053344, 45.51629643759542], [-73.59875472286897, 45.51612763915766], [-73.59874806617601, 45.51606390850056]]}, "properties": {"ID_TRC": 4009014, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Outremont", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": null, "NOM_VOIE": "Laurier", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "Outremont", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Laurier "}}, {"type": "Feature", "geometry": {"type": "LineString", "coordinates": [[-73.59661329033216, 45.51872059719443], [-73.59667836634496, 45.51864600834251]]}, "properties": {"ID_TRC": 4016914, "DEB_GCH": 0, "FIN_GCH": 0, "ARR_GCH": "Le Plateau-Mont-Royal", "SENS_CIR": 0, "CLASSE": 5, "LIE_VOIE": null, "TYP_VOIE": "avenue", "DIR_VOIE": "Ouest", "NOM_VOIE": "Laurier", "DEB_DRT": 0, "FIN_DRT": 0, "ARR_DRT": "Le Plateau-Mont-Royal", "LIM_GCH": "Montr\u00e9al", "LIM_DRT": "Montr\u00e9al", "POSITION": 5, "ODONYME": "Avenue Laurier Ouest"}}]} \ No newline at end of file diff --git a/main.py b/main.py index b393999..86809b0 100644 --- a/main.py +++ b/main.py @@ -2,15 +2,14 @@ from DistrictHeatingNetworkCreator import DistrictHeatingNetworkCreator from Scripts.road_processor import road_processor from pathlib import Path import time - +location = [45.51663850312751, -73.59854314961274] start_time = time.perf_counter() -roads_file = road_processor(-73.62785596251456, 45.4868575174825, 0.005) +roads_file = road_processor(location[1], location[0], 0.001) buildings_file = Path('./input_files/buildings.geojson').resolve() dhn_creator = DistrictHeatingNetworkCreator(buildings_file, roads_file) network_graph = dhn_creator.run() - end_time = time.perf_counter() elapsed_time = end_time - start_time