diff --git a/cabby/geo/map_processing/map_structure.py b/cabby/geo/map_processing/map_structure.py index 33947788..c1def284 100644 --- a/cabby/geo/map_processing/map_structure.py +++ b/cabby/geo/map_processing/map_structure.py @@ -64,8 +64,13 @@ def __init__(self, map_name: Text, level: int, load_directory: Text = None): if load_directory is None: self.poi, self.streets = self.get_poi() - self.nx_graph = ox.graph_from_polygon(self.polygon_area) + self.nx_graph = ox.graph_from_polygon(self.polygon_area, network_type = 'all') self.nodes, _ = ox.graph_to_gdfs(self.nx_graph) + + # Find closest nodes to POI. + self.poi['node'] = self.poi['centroid'].apply(lambda x: + ox.distance.get_nearest_node(self.nx_graph, + util.tuple_from_point(x))) else: self.load_map(load_directory) @@ -82,6 +87,10 @@ def get_poi(self) -> Tuple[GeoSeries, GeoSeries]: osm_poi_no_streets = osm_poi_named_entities[osm_highway.isnull()] osm_poi_streets = osm_poi_named_entities[osm_highway.notnull()] + # Get centroid for POI. + osm_poi_no_streets['centroid'] = osm_poi_no_streets['geometry'].apply( + lambda x: x if isinstance(x, Point) else x.centroid) + return osm_poi_no_streets, osm_poi_streets def create_S2Graph(self, level: int): @@ -99,10 +108,6 @@ def create_S2Graph(self, level: int): x, level) if isinstance(x, Point) else util.cellid_from_polyline(x, level)) - # Get centroid for POI. - self.poi['centroid'] = self.poi['geometry'].apply( - lambda x: x if isinstance(x, Point) else x.centroid) - # Filter out entities that we didn't mange to get cellids covering. self.poi = self.poi[self.poi['cellids'].notnull()] self.streets = self.streets[self.streets['cellids'].notnull()] @@ -118,7 +123,7 @@ def create_S2Graph(self, level: int): self.streets[['cellids', 'osmid']].apply( lambda x: self.s2_graph.add_street(x.cellids, x.osmid), axis=1) - def get_valid_path(self, dir_name: Text, name_ending: Text, \ + def get_valid_path(self, dir_name: Text, name_ending: Text, file_ending: Text) -> Optional[Text]: '''Creates the file path and checks validity. Arguments: diff --git a/cabby/geo/map_processing/map_test.py b/cabby/geo/map_processing/map_test.py index 26a0238b..3cbea125 100644 --- a/cabby/geo/map_processing/map_test.py +++ b/cabby/geo/map_processing/map_test.py @@ -25,33 +25,29 @@ class MapTest(unittest.TestCase): def setUp(self): - # Process the map for an area in Pittsburgh. - self.pittsburgh_map = map_structure.Map("Pittsburgh", 18) + # Process the map for an area in Bologna. + self.bologna_map = map_structure.Map("Bologna", 18) def testSingleOutput(self): # Verify that a known POI is present. - specific_poi_found = self.pittsburgh_map.poi[self.pittsburgh_map.poi[ - 'name'] == 'Frick Building'] + specific_poi_found = self.bologna_map.poi[self.bologna_map.poi[ + 'name'] == 'Delizie di Forno'] # Check that the number of Frick Building POI found is exactly 1. self.assertEqual(specific_poi_found.shape[0], 1) # Check the cellid. - list_cells = self.pittsburgh_map.poi[self.pittsburgh_map.poi[ - 'name'] == 'Frick Building']['cellids'].tolist()[0] - expected_ids = [ - 9814734816715735040, 9814734845337665536, 9814734856679063552, - 9814734856712617984, 9814734856746172416, 9814734856779726848, - 9814734856813281280, 9814734856846835712 - ] - found_ids = [list_cells[i].id() for i in range(8)] + list_cells = self.bologna_map.poi[self.bologna_map.poi[ + 'name'] == 'Delizie di Forno']['cellids'].tolist()[0] + expected_ids = [5152070235402010624] + found_ids = [list_cells[i].id() for i in range(len(list_cells))] for expected, found in zip(expected_ids, found_ids): self.assertEqual(expected, found) # Check that the POI was added correctly to the graph. cell_to_search = list_cells[0] - node = self.pittsburgh_map.s2_graph.search(cell_to_search) - self.assertTrue(hasattr(node, 'poi') and 203322568 in node.poi) + node = self.bologna_map.s2_graph.search(cell_to_search) + self.assertTrue(hasattr(node, 'poi') and 4696883190 in node.poi) if __name__ == "__main__": diff --git a/cabby/geo/map_processing/poiTestData/pittsburgh_graph.gpickle b/cabby/geo/map_processing/poiTestData/pittsburgh_graph.gpickle index 9d8e0cc7..ea2cfc71 100644 Binary files a/cabby/geo/map_processing/poiTestData/pittsburgh_graph.gpickle and b/cabby/geo/map_processing/poiTestData/pittsburgh_graph.gpickle differ diff --git a/cabby/geo/map_processing/poiTestData/pittsburgh_nodes.geojson b/cabby/geo/map_processing/poiTestData/pittsburgh_nodes.geojson index d32842a4..90be06ce 100644 --- a/cabby/geo/map_processing/poiTestData/pittsburgh_nodes.geojson +++ b/cabby/geo/map_processing/poiTestData/pittsburgh_nodes.geojson @@ -17,11 +17,10 @@ { "type": "Feature", "properties": { "y": 40.4503154, "x": -80.0118332, "osmid": 6046744640, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0118332, 40.4503154 ] } }, { "type": "Feature", "properties": { "y": 40.4502776, "x": -80.0120334, "osmid": 6046744641, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0120334, 40.4502776 ] } }, { "type": "Feature", "properties": { "y": 40.4506889, "x": -80.0121531, "osmid": 6046744652, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0121531, 40.4506889 ] } }, -{ "type": "Feature", "properties": { "y": 40.4484646, "x": -79.9478883, "osmid": 5853099144, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9478883, 40.4484646 ] } }, { "type": "Feature", "properties": { "y": 40.4378487, "x": -80.0241973, "osmid": 105873488, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0241973, 40.4378487 ] } }, +{ "type": "Feature", "properties": { "y": 40.4481458, "x": -79.9490099, "osmid": 5853099145, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9490099, 40.4481458 ] } }, { "type": "Feature", "properties": { "y": 40.4475878, "x": -79.9610096, "osmid": 6531874899, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9610096, 40.4475878 ] } }, { "type": "Feature", "properties": { "y": 40.4478539, "x": -79.9608223, "osmid": 6531874901, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9608223, 40.4478539 ] } }, -{ "type": "Feature", "properties": { "y": 40.4425557, "x": -79.9488817, "osmid": 3955654747, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9488817, 40.4425557 ] } }, { "type": "Feature", "properties": { "y": 40.4380579, "x": -80.0250549, "osmid": 105873503, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0250549, 40.4380579 ] } }, { "type": "Feature", "properties": { "y": 40.4378572, "x": -79.9471811, "osmid": 3955654751, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9471811, 40.4378572 ] } }, { "type": "Feature", "properties": { "y": 40.4380295, "x": -79.9474058, "osmid": 3955654752, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9474058, 40.4380295 ] } }, @@ -101,7 +100,6 @@ { "type": "Feature", "properties": { "y": 40.4565889, "x": -79.9779622, "osmid": 6066405794, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9779622, 40.4565889 ] } }, { "type": "Feature", "properties": { "y": 40.4366859, "x": -79.9500069, "osmid": 105251233, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9500069, 40.4366859 ] } }, { "type": "Feature", "properties": { "y": 40.4564946, "x": -79.9780937, "osmid": 6066405795, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9780937, 40.4564946 ] } }, -{ "type": "Feature", "properties": { "y": 40.4281445, "x": -79.998033, "osmid": 7013925287, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.998033, 40.4281445 ] } }, { "type": "Feature", "properties": { "y": 40.456175, "x": -79.9326385, "osmid": 7069532576, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9326385, 40.456175 ] } }, { "type": "Feature", "properties": { "y": 40.4297337, "x": -80.0033588, "osmid": 3161817516, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0033588, 40.4297337 ] } }, { "type": "Feature", "properties": { "y": 40.4562588, "x": -79.9798271, "osmid": 6066405815, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9798271, 40.4562588 ] } }, @@ -154,17 +152,8 @@ { "type": "Feature", "properties": { "y": 40.4588589, "x": -79.9886403, "osmid": 5286593124, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9886403, 40.4588589 ] } }, { "type": "Feature", "properties": { "y": 40.4582254, "x": -79.9884287, "osmid": 5286593125, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9884287, 40.4582254 ] } }, { "type": "Feature", "properties": { "y": 40.4576921, "x": -79.9354274, "osmid": 393773671, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9354274, 40.4576921 ] } }, -{ "type": "Feature", "properties": { "y": 40.4477159, "x": -79.9365602, "osmid": 1857290881, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9365602, 40.4477159 ] } }, -{ "type": "Feature", "properties": { "y": 40.4477284, "x": -79.9363752, "osmid": 1857290882, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9363752, 40.4477284 ] } }, -{ "type": "Feature", "properties": { "y": 40.4477454, "x": -79.93616, "osmid": 1857290883, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.93616, 40.4477454 ] } }, { "type": "Feature", "properties": { "y": 40.4404854, "x": -80.026215, "osmid": 104891012, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.026215, 40.4404854 ] } }, -{ "type": "Feature", "properties": { "y": 40.4477498, "x": -79.9360936, "osmid": 1857290884, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9360936, 40.4477498 ] } }, -{ "type": "Feature", "properties": { "y": 40.4477543, "x": -79.9360272, "osmid": 1857290885, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9360272, 40.4477543 ] } }, -{ "type": "Feature", "properties": { "y": 40.4478656, "x": -79.9363883, "osmid": 1857290887, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9363883, 40.4478656 ] } }, -{ "type": "Feature", "properties": { "y": 40.4478809, "x": -79.9361757, "osmid": 1857290888, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9361757, 40.4478809 ] } }, { "type": "Feature", "properties": { "y": 40.4478857, "x": -79.9361093, "osmid": 1857290889, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9361093, 40.4478857 ] } }, -{ "type": "Feature", "properties": { "y": 40.4478905, "x": -79.936043, "osmid": 1857290890, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.936043, 40.4478905 ] } }, -{ "type": "Feature", "properties": { "y": 40.4478521, "x": -79.9365751, "osmid": 1857290886, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9365751, 40.4478521 ] } }, { "type": "Feature", "properties": { "y": 40.4358627, "x": -79.9843016, "osmid": 3995501203, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9843016, 40.4358627 ] } }, { "type": "Feature", "properties": { "y": 40.4359274, "x": -79.9844608, "osmid": 3995501204, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9844608, 40.4359274 ] } }, { "type": "Feature", "properties": { "y": 40.436151, "x": -79.9842803, "osmid": 3995501205, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9842803, 40.436151 ] } }, @@ -213,7 +202,6 @@ { "type": "Feature", "properties": { "y": 40.4357448, "x": -79.9582038, "osmid": 7259652861, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9582038, 40.4357448 ] } }, { "type": "Feature", "properties": { "y": 40.4355426, "x": -79.9576604, "osmid": 7259652864, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9576604, 40.4355426 ] } }, { "type": "Feature", "properties": { "y": 40.4328032, "x": -80.0050774, "osmid": 683770626, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0050774, 40.4328032 ] } }, -{ "type": "Feature", "properties": { "y": 40.4353922, "x": -79.9572962, "osmid": 7259652867, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9572962, 40.4353922 ] } }, { "type": "Feature", "properties": { "y": 40.435859, "x": -79.9583145, "osmid": 7259652871, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9583145, 40.435859 ] } }, { "type": "Feature", "properties": { "y": 40.440213, "x": -79.9934476, "osmid": 3277882120, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9934476, 40.440213 ] } }, { "type": "Feature", "properties": { "y": 40.444678, "x": -79.9957242, "osmid": 683705096, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9957242, 40.444678 ] } }, @@ -239,10 +227,6 @@ { "type": "Feature", "properties": { "y": 40.4363286, "x": -79.9552074, "osmid": 105186077, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9552074, 40.4363286 ] } }, { "type": "Feature", "properties": { "y": 40.4387528, "x": -79.9977652, "osmid": 2133394207, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9977652, 40.4387528 ] } }, { "type": "Feature", "properties": { "y": 40.4389263, "x": -79.997897, "osmid": 2133394209, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.997897, 40.4389263 ] } }, -{ "type": "Feature", "properties": { "y": 40.4498464, "x": -79.9428293, "osmid": 1829241674, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9428293, 40.4498464 ] } }, -{ "type": "Feature", "properties": { "y": 40.4498635, "x": -79.9426315, "osmid": 1829241675, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9426315, 40.4498635 ] } }, -{ "type": "Feature", "properties": { "y": 40.450046, "x": -79.9428667, "osmid": 1829241676, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9428667, 40.450046 ] } }, -{ "type": "Feature", "properties": { "y": 40.4500649, "x": -79.9426693, "osmid": 1829241677, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9426693, 40.4500649 ] } }, { "type": "Feature", "properties": { "y": 40.4446268, "x": -79.9428845, "osmid": 1704985422, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9428845, 40.4446268 ] } }, { "type": "Feature", "properties": { "y": 40.4450288, "x": -79.942775, "osmid": 1704985423, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.942775, 40.4450288 ] } }, { "type": "Feature", "properties": { "y": 40.4513147, "x": -80.0254204, "osmid": 105120592, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0254204, 40.4513147 ] } }, @@ -279,14 +263,14 @@ { "type": "Feature", "properties": { "y": 40.4384941, "x": -79.9471426, "osmid": 3955655570, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9471426, 40.4384941 ] } }, { "type": "Feature", "properties": { "y": 40.4554259, "x": -80.0267699, "osmid": 105120659, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0267699, 40.4554259 ] } }, { "type": "Feature", "properties": { "y": 40.4357879, "x": -80.0222827, "osmid": 106070932, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0222827, 40.4357879 ] } }, -{ "type": "Feature", "properties": { "y": 40.4525102, "x": -80.0010157, "osmid": 5175575443, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010157, 40.4525102 ] } }, -{ "type": "Feature", "properties": { "y": 40.4526463, "x": -80.0002521, "osmid": 5175575444, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0002521, 40.4526463 ] } }, { "type": "Feature", "properties": { "y": 40.4581027, "x": -79.973707, "osmid": 6080725908, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.973707, 40.4581027 ] } }, { "type": "Feature", "properties": { "y": 40.4581486, "x": -79.9737643, "osmid": 6080725907, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9737643, 40.4581486 ] } }, -{ "type": "Feature", "properties": { "y": 40.4360027, "x": -80.0232656, "osmid": 106070937, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0232656, 40.4360027 ] } }, -{ "type": "Feature", "properties": { "y": 40.4555079, "x": -80.0267968, "osmid": 105120666, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0267968, 40.4555079 ] } }, { "type": "Feature", "properties": { "y": 40.4583219, "x": -79.9733814, "osmid": 6080725911, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9733814, 40.4583219 ] } }, { "type": "Feature", "properties": { "y": 40.4583732, "x": -79.97344, "osmid": 6080725912, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.97344, 40.4583732 ] } }, +{ "type": "Feature", "properties": { "y": 40.4360027, "x": -80.0232656, "osmid": 106070937, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0232656, 40.4360027 ] } }, +{ "type": "Feature", "properties": { "y": 40.4555079, "x": -80.0267968, "osmid": 105120666, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0267968, 40.4555079 ] } }, +{ "type": "Feature", "properties": { "y": 40.4386142, "x": -79.9466143, "osmid": 3955655571, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9466143, 40.4386142 ] } }, +{ "type": "Feature", "properties": { "y": 40.4393704, "x": -79.9467907, "osmid": 3955655572, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9467907, 40.4393704 ] } }, { "type": "Feature", "properties": { "y": 40.4328876, "x": -79.9623182, "osmid": 7259063197, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9623182, 40.4328876 ] } }, { "type": "Feature", "properties": { "y": 40.4327983, "x": -79.9621141, "osmid": 7259063198, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9621141, 40.4327983 ] } }, { "type": "Feature", "properties": { "y": 40.4327063, "x": -79.9624475, "osmid": 7259063199, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9624475, 40.4327063 ] } }, @@ -367,8 +351,8 @@ { "type": "Feature", "properties": { "y": 40.4337613, "x": -80.0255325, "osmid": 2862154809, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0255325, 40.4337613 ] } }, { "type": "Feature", "properties": { "y": 40.454159, "x": -80.0094388, "osmid": 2865693753, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0094388, 40.454159 ] } }, { "type": "Feature", "properties": { "y": 40.4349731, "x": -80.0225826, "osmid": 2862154811, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0225826, 40.4349731 ] } }, -{ "type": "Feature", "properties": { "y": 40.454739, "x": -80.0085896, "osmid": 2865693756, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085896, 40.454739 ] } }, { "type": "Feature", "properties": { "y": 40.4354665, "x": -80.022731, "osmid": 2862154812, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.022731, 40.4354665 ] } }, +{ "type": "Feature", "properties": { "y": 40.454739, "x": -80.0085896, "osmid": 2865693756, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085896, 40.454739 ] } }, { "type": "Feature", "properties": { "y": 40.4465258, "x": -79.9967989, "osmid": 6216483910, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9967989, 40.4465258 ] } }, { "type": "Feature", "properties": { "y": 40.4516915, "x": -80.0111645, "osmid": 2865693766, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0111645, 40.4516915 ] } }, { "type": "Feature", "properties": { "y": 40.4462999, "x": -79.9973637, "osmid": 6216483916, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9973637, 40.4462999 ] } }, @@ -413,10 +397,10 @@ { "type": "Feature", "properties": { "y": 40.4362973, "x": -79.9866535, "osmid": 104957085, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9866535, 40.4362973 ] } }, { "type": "Feature", "properties": { "y": 40.445093, "x": -79.9954908, "osmid": 6216483998, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9954908, 40.445093 ] } }, { "type": "Feature", "properties": { "y": 40.4487258, "x": -79.9875401, "osmid": 6182274207, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9875401, 40.4487258 ] } }, -{ "type": "Feature", "properties": { "y": 40.4518051, "x": -80.0101201, "osmid": 5330240672, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0101201, 40.4518051 ] } }, -{ "type": "Feature", "properties": { "y": 40.4482667, "x": -79.9870541, "osmid": 6182274209, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9870541, 40.4482667 ] } }, { "type": "Feature", "properties": { "y": 40.4482828, "x": -79.9869443, "osmid": 6182274205, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9869443, 40.4482828 ] } }, +{ "type": "Feature", "properties": { "y": 40.4482667, "x": -79.9870541, "osmid": 6182274209, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9870541, 40.4482667 ] } }, { "type": "Feature", "properties": { "y": 40.4482341, "x": -79.9870229, "osmid": 6182274206, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9870229, 40.4482341 ] } }, +{ "type": "Feature", "properties": { "y": 40.4518051, "x": -80.0101201, "osmid": 5330240672, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0101201, 40.4518051 ] } }, { "type": "Feature", "properties": { "y": 40.4526066, "x": -80.0098946, "osmid": 5330240674, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0098946, 40.4526066 ] } }, { "type": "Feature", "properties": { "y": 40.4477797, "x": -79.9877454, "osmid": 6182274213, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9877454, 40.4477797 ] } }, { "type": "Feature", "properties": { "y": 40.4527566, "x": -80.0102245, "osmid": 5330240675, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0102245, 40.4527566 ] } }, @@ -429,10 +413,10 @@ { "type": "Feature", "properties": { "y": 40.4479737, "x": -79.9887277, "osmid": 6182274229, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9887277, 40.4479737 ] } }, { "type": "Feature", "properties": { "y": 40.4480781, "x": -79.9888495, "osmid": 6182274230, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9888495, 40.4480781 ] } }, { "type": "Feature", "properties": { "y": 40.4480312, "x": -79.9887956, "osmid": 6182274231, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9887956, 40.4480312 ] } }, -{ "type": "Feature", "properties": { "y": 40.4526576, "x": -80.0107175, "osmid": 5330240696, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0107175, 40.4526576 ] } }, { "type": "Feature", "properties": { "y": 40.4480544, "x": -79.9885947, "osmid": 6182274232, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885947, 40.4480544 ] } }, -{ "type": "Feature", "properties": { "y": 40.4480188, "x": -79.9885545, "osmid": 6182274234, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885545, 40.4480188 ] } }, { "type": "Feature", "properties": { "y": 40.4343831, "x": -80.0062284, "osmid": 5913904311, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062284, 40.4343831 ] } }, +{ "type": "Feature", "properties": { "y": 40.4480188, "x": -79.9885545, "osmid": 6182274234, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885545, 40.4480188 ] } }, +{ "type": "Feature", "properties": { "y": 40.4526576, "x": -80.0107175, "osmid": 5330240696, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0107175, 40.4526576 ] } }, { "type": "Feature", "properties": { "y": 40.4377184, "x": -80.0126073, "osmid": 6015616183, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0126073, 40.4377184 ] } }, { "type": "Feature", "properties": { "y": 40.4484854, "x": -79.9878975, "osmid": 6182274237, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9878975, 40.4484854 ] } }, { "type": "Feature", "properties": { "y": 40.4372813, "x": -80.0118219, "osmid": 6015616184, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0118219, 40.4372813 ] } }, @@ -448,19 +432,13 @@ { "type": "Feature", "properties": { "y": 40.452424, "x": -80.0115939, "osmid": 5330240763, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0115939, 40.452424 ] } }, { "type": "Feature", "properties": { "y": 40.4477393, "x": -79.9381359, "osmid": 7135659261, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9381359, 40.4477393 ] } }, { "type": "Feature", "properties": { "y": 40.4528589, "x": -80.0111179, "osmid": 5330240766, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0111179, 40.4528589 ] } }, -{ "type": "Feature", "properties": { "y": 40.4514566, "x": -79.940522, "osmid": 1822360832, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.940522, 40.4514566 ] } }, -{ "type": "Feature", "properties": { "y": 40.4515305, "x": -79.9405616, "osmid": 1822360833, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9405616, 40.4515305 ] } }, { "type": "Feature", "properties": { "y": 40.4528027, "x": -80.0108258, "osmid": 5330240770, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0108258, 40.4528027 ] } }, { "type": "Feature", "properties": { "y": 40.433576, "x": -79.9465499, "osmid": 303203586, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9465499, 40.433576 ] } }, { "type": "Feature", "properties": { "y": 40.4334943, "x": -79.9467012, "osmid": 303203588, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9467012, 40.4334943 ] } }, -{ "type": "Feature", "properties": { "y": 40.451661, "x": -79.9411446, "osmid": 1822360837, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9411446, 40.451661 ] } }, -{ "type": "Feature", "properties": { "y": 40.425706, "x": -79.9357808, "osmid": 104826118, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9357808, 40.425706 ] } }, -{ "type": "Feature", "properties": { "y": 40.4516065, "x": -79.9406566, "osmid": 1822360835, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9406566, 40.4516065 ] } }, -{ "type": "Feature", "properties": { "y": 40.4517296, "x": -79.9409228, "osmid": 1822360840, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9409228, 40.4517296 ] } }, { "type": "Feature", "properties": { "y": 40.4489294, "x": -79.9382603, "osmid": 7135659268, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9382603, 40.4489294 ] } }, +{ "type": "Feature", "properties": { "y": 40.425706, "x": -79.9357808, "osmid": 104826118, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9357808, 40.425706 ] } }, { "type": "Feature", "properties": { "y": 40.4485073, "x": -79.9380122, "osmid": 7135659270, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9380122, 40.4485073 ] } }, { "type": "Feature", "properties": { "y": 40.4482847, "x": -79.9383337, "osmid": 7135659267, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9383337, 40.4482847 ] } }, -{ "type": "Feature", "properties": { "y": 40.4518422, "x": -79.9407404, "osmid": 1822360845, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9407404, 40.4518422 ] } }, { "type": "Feature", "properties": { "y": 40.457359, "x": -79.93557, "osmid": 393774353, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.93557, 40.457359 ] } }, { "type": "Feature", "properties": { "y": 40.4256507, "x": -79.9346435, "osmid": 104826131, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9346435, 40.4256507 ] } }, { "type": "Feature", "properties": { "y": 40.4477368, "x": -79.9789724, "osmid": 107513116, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9789724, 40.4477368 ] } }, @@ -530,9 +508,8 @@ { "type": "Feature", "properties": { "y": 40.4328317, "x": -80.0213426, "osmid": 104990145, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0213426, 40.4328317 ] } }, { "type": "Feature", "properties": { "y": 40.4590611, "x": -80.02796, "osmid": 105121218, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.02796, 40.4590611 ] } }, { "type": "Feature", "properties": { "y": 40.4299776, "x": -79.9493475, "osmid": 303203779, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9493475, 40.4299776 ] } }, -{ "type": "Feature", "properties": { "y": 40.4271399, "x": -79.9881851, "osmid": 7011042759, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9881851, 40.4271399 ] } }, -{ "type": "Feature", "properties": { "y": 40.427379, "x": -79.9881953, "osmid": 7011042761, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9881953, 40.427379 ] } }, { "type": "Feature", "properties": { "y": 40.4580889, "x": -79.9796256, "osmid": 6625068489, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9796256, 40.4580889 ] } }, +{ "type": "Feature", "properties": { "y": 40.4263532, "x": -79.9846821, "osmid": 7011042762, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9846821, 40.4263532 ] } }, { "type": "Feature", "properties": { "y": 40.4595231, "x": -80.0281112, "osmid": 105121227, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0281112, 40.4595231 ] } }, { "type": "Feature", "properties": { "y": 40.433729, "x": -80.0200276, "osmid": 105711051, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0200276, 40.433729 ] } }, { "type": "Feature", "properties": { "y": 40.432895, "x": -80.0218871, "osmid": 104990157, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0218871, 40.432895 ] } }, @@ -540,13 +517,10 @@ { "type": "Feature", "properties": { "y": 40.4563397, "x": -79.9810508, "osmid": 7184319950, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9810508, 40.4563397 ] } }, { "type": "Feature", "properties": { "y": 40.4560349, "x": -79.9806937, "osmid": 7184319952, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9806937, 40.4560349 ] } }, { "type": "Feature", "properties": { "y": 40.4559287, "x": -79.9805693, "osmid": 7184319951, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9805693, 40.4559287 ] } }, -{ "type": "Feature", "properties": { "y": 40.4263532, "x": -79.9846821, "osmid": 7011042762, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9846821, 40.4263532 ] } }, { "type": "Feature", "properties": { "y": 40.4555593, "x": -79.9810935, "osmid": 7184319954, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9810935, 40.4555593 ] } }, -{ "type": "Feature", "properties": { "y": 40.4257191, "x": -79.983528, "osmid": 7011042764, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.983528, 40.4257191 ] } }, -{ "type": "Feature", "properties": { "y": 40.433828, "x": -80.020554, "osmid": 105711061, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.020554, 40.433828 ] } }, { "type": "Feature", "properties": { "y": 40.4562851, "x": -79.9819625, "osmid": 7184319953, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9819625, 40.4562851 ] } }, +{ "type": "Feature", "properties": { "y": 40.433828, "x": -80.020554, "osmid": 105711061, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.020554, 40.433828 ] } }, { "type": "Feature", "properties": { "y": 40.4460376, "x": -80.0170423, "osmid": 5406459351, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0170423, 40.4460376 ] } }, -{ "type": "Feature", "properties": { "y": 40.425694, "x": -79.9843026, "osmid": 7011042768, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9843026, 40.425694 ] } }, { "type": "Feature", "properties": { "y": 40.4506907, "x": -80.0013029, "osmid": 6950094297, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0013029, 40.4506907 ] } }, { "type": "Feature", "properties": { "y": 40.4437003, "x": -80.0059879, "osmid": 6950094298, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0059879, 40.4437003 ] } }, { "type": "Feature", "properties": { "y": 40.4471429, "x": -80.017399, "osmid": 5406459355, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.017399, 40.4471429 ] } }, @@ -581,7 +555,6 @@ { "type": "Feature", "properties": { "y": 40.4408401, "x": -79.9739607, "osmid": 105776654, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9739607, 40.4408401 ] } }, { "type": "Feature", "properties": { "y": 40.4301601, "x": -79.9826442, "osmid": 104957455, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9826442, 40.4301601 ] } }, { "type": "Feature", "properties": { "y": 40.447495, "x": -79.950164, "osmid": 2777941516, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.950164, 40.447495 ] } }, -{ "type": "Feature", "properties": { "y": 40.4468648, "x": -79.9390481, "osmid": 104597004, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9390481, 40.4468648 ] } }, { "type": "Feature", "properties": { "y": 40.4532914, "x": -79.9355725, "osmid": 104957473, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9355725, 40.4532914 ] } }, { "type": "Feature", "properties": { "y": 40.4517883, "x": -80.0287826, "osmid": 7013008936, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0287826, 40.4517883 ] } }, { "type": "Feature", "properties": { "y": 40.4510482, "x": -80.0282841, "osmid": 7013008938, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0282841, 40.4510482 ] } }, @@ -608,7 +581,6 @@ { "type": "Feature", "properties": { "y": 40.4391112, "x": -79.9453959, "osmid": 302450286, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9453959, 40.4391112 ] } }, { "type": "Feature", "properties": { "y": 40.4402067, "x": -79.9441916, "osmid": 302450295, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9441916, 40.4402067 ] } }, { "type": "Feature", "properties": { "y": 40.4495932, "x": -80.0025903, "osmid": 684918409, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025903, 40.4495932 ] } }, -{ "type": "Feature", "properties": { "y": 40.4486577, "x": -80.0050632, "osmid": 3382660919, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0050632, 40.4486577 ] } }, { "type": "Feature", "properties": { "y": 40.436391, "x": -79.9586704, "osmid": 6532925074, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9586704, 40.436391 ] } }, { "type": "Feature", "properties": { "y": 40.4366207, "x": -79.9583509, "osmid": 6532925075, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9583509, 40.4366207 ] } }, { "type": "Feature", "properties": { "y": 40.4313038, "x": -79.9439745, "osmid": 303203991, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9439745, 40.4313038 ] } }, @@ -616,10 +588,7 @@ { "type": "Feature", "properties": { "y": 40.4343545, "x": -79.9521435, "osmid": 3138127516, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9521435, 40.4343545 ] } }, { "type": "Feature", "properties": { "y": 40.4343665, "x": -79.9522309, "osmid": 3138127517, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9522309, 40.4343665 ] } }, { "type": "Feature", "properties": { "y": 40.4358045, "x": -79.951809, "osmid": 3138127522, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.951809, 40.4358045 ] } }, -{ "type": "Feature", "properties": { "y": 40.4275996, "x": -80.0107386, "osmid": 7011632813, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0107386, 40.4275996 ] } }, -{ "type": "Feature", "properties": { "y": 40.4277925, "x": -80.0107609, "osmid": 7011632814, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0107609, 40.4277925 ] } }, { "type": "Feature", "properties": { "y": 40.43462, "x": -80.0063478, "osmid": 6016108208, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063478, 40.43462 ] } }, -{ "type": "Feature", "properties": { "y": 40.4277867, "x": -80.0112214, "osmid": 7011632819, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0112214, 40.4277867 ] } }, { "type": "Feature", "properties": { "y": 40.4283545, "x": -79.973567, "osmid": 104695476, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.973567, 40.4283545 ] } }, { "type": "Feature", "properties": { "y": 40.4524572, "x": -80.0204616, "osmid": 105940663, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0204616, 40.4524572 ] } }, { "type": "Feature", "properties": { "y": 40.434498, "x": -80.0063005, "osmid": 6016108216, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063005, 40.434498 ] } }, @@ -661,8 +630,6 @@ { "type": "Feature", "properties": { "y": 40.4354035, "x": -80.012681, "osmid": 6032131852, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.012681, 40.4354035 ] } }, { "type": "Feature", "properties": { "y": 40.4311993, "x": -79.9437084, "osmid": 303204108, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9437084, 40.4311993 ] } }, { "type": "Feature", "properties": { "y": 40.4404288, "x": -79.9430157, "osmid": 302450446, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9430157, 40.4404288 ] } }, -{ "type": "Feature", "properties": { "y": 40.4535829, "x": -79.9412596, "osmid": 7144703761, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9412596, 40.4535829 ] } }, -{ "type": "Feature", "properties": { "y": 40.4530536, "x": -79.9404313, "osmid": 7144703764, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9404313, 40.4530536 ] } }, { "type": "Feature", "properties": { "y": 40.4395796, "x": -79.9431444, "osmid": 302450455, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9431444, 40.4395796 ] } }, { "type": "Feature", "properties": { "y": 40.4394751, "x": -79.9432217, "osmid": 302450456, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9432217, 40.4394751 ] } }, { "type": "Feature", "properties": { "y": 40.4394032, "x": -79.9432818, "osmid": 302450457, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9432818, 40.4394032 ] } }, @@ -682,12 +649,12 @@ { "type": "Feature", "properties": { "y": 40.4395394, "x": -79.9433456, "osmid": 302450468, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9433456, 40.4395394 ] } }, { "type": "Feature", "properties": { "y": 40.4404353, "x": -79.9423634, "osmid": 302450472, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9423634, 40.4404353 ] } }, { "type": "Feature", "properties": { "y": 40.4444236, "x": -79.9416863, "osmid": 6896322337, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9416863, 40.4444236 ] } }, -{ "type": "Feature", "properties": { "y": 40.4442344, "x": -79.9417564, "osmid": 6896322338, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9417564, 40.4442344 ] } }, { "type": "Feature", "properties": { "y": 40.4442031, "x": -79.9412845, "osmid": 6896322339, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9412845, 40.4442031 ] } }, -{ "type": "Feature", "properties": { "y": 40.4434335, "x": -79.9413893, "osmid": 6896322342, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9413893, 40.4434335 ] } }, +{ "type": "Feature", "properties": { "y": 40.4442344, "x": -79.9417564, "osmid": 6896322338, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9417564, 40.4442344 ] } }, +{ "type": "Feature", "properties": { "y": 40.4440079, "x": -79.9412573, "osmid": 6896322347, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9412573, 40.4440079 ] } }, { "type": "Feature", "properties": { "y": 40.443859, "x": -79.9410968, "osmid": 6896322340, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9410968, 40.443859 ] } }, +{ "type": "Feature", "properties": { "y": 40.4434335, "x": -79.9413893, "osmid": 6896322342, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9413893, 40.4434335 ] } }, { "type": "Feature", "properties": { "y": 40.4436309, "x": -79.9413387, "osmid": 6896322343, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9413387, 40.4436309 ] } }, -{ "type": "Feature", "properties": { "y": 40.4440079, "x": -79.9412573, "osmid": 6896322347, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9412573, 40.4440079 ] } }, { "type": "Feature", "properties": { "y": 40.4525777, "x": -79.9818458, "osmid": 6080268090, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9818458, 40.4525777 ] } }, { "type": "Feature", "properties": { "y": 40.4522904, "x": -79.9815011, "osmid": 6080268091, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9815011, 40.4522904 ] } }, { "type": "Feature", "properties": { "y": 40.4527615, "x": -79.9815807, "osmid": 6080268102, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9815807, 40.4527615 ] } }, @@ -708,18 +675,17 @@ { "type": "Feature", "properties": { "y": 40.4570238, "x": -79.9791141, "osmid": 6050511856, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9791141, 40.4570238 ] } }, { "type": "Feature", "properties": { "y": 40.4569953, "x": -79.9796284, "osmid": 6050511857, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9796284, 40.4569953 ] } }, { "type": "Feature", "properties": { "y": 40.4304467, "x": -80.0242112, "osmid": 105940887, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0242112, 40.4304467 ] } }, -{ "type": "Feature", "properties": { "y": 40.425883, "x": -79.9718169, "osmid": 6904052722, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9718169, 40.425883 ] } }, -{ "type": "Feature", "properties": { "y": 40.4365777, "x": -80.0174333, "osmid": 105777051, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0174333, 40.4365777 ] } }, { "type": "Feature", "properties": { "y": 40.4569091, "x": -79.9795236, "osmid": 6050511858, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9795236, 40.4569091 ] } }, +{ "type": "Feature", "properties": { "y": 40.4365777, "x": -80.0174333, "osmid": 105777051, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0174333, 40.4365777 ] } }, { "type": "Feature", "properties": { "y": 40.4525561, "x": -80.0150676, "osmid": 6046943142, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0150676, 40.4525561 ] } }, { "type": "Feature", "properties": { "y": 40.4410324, "x": -80.026248, "osmid": 2394130344, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.026248, 40.4410324 ] } }, { "type": "Feature", "properties": { "y": 40.4525561, "x": -80.0146744, "osmid": 6046943144, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0146744, 40.4525561 ] } }, { "type": "Feature", "properties": { "y": 40.4526371, "x": -80.0150976, "osmid": 6046943145, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0150976, 40.4526371 ] } }, { "type": "Feature", "properties": { "y": 40.4527035, "x": -80.0147467, "osmid": 6046943146, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0147467, 40.4527035 ] } }, { "type": "Feature", "properties": { "y": 40.4525068, "x": -80.0150501, "osmid": 6046943147, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0150501, 40.4525068 ] } }, -{ "type": "Feature", "properties": { "y": 40.4529857, "x": -80.0143208, "osmid": 6046943149, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0143208, 40.4529857 ] } }, -{ "type": "Feature", "properties": { "y": 40.4525015, "x": -80.014172, "osmid": 6046943150, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.014172, 40.4525015 ] } }, { "type": "Feature", "properties": { "y": 40.452521, "x": -80.0149652, "osmid": 6046943148, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0149652, 40.452521 ] } }, +{ "type": "Feature", "properties": { "y": 40.4525015, "x": -80.014172, "osmid": 6046943150, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.014172, 40.4525015 ] } }, +{ "type": "Feature", "properties": { "y": 40.4529857, "x": -80.0143208, "osmid": 6046943149, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0143208, 40.4529857 ] } }, { "type": "Feature", "properties": { "y": 40.4573437, "x": -79.978932, "osmid": 6050511861, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.978932, 40.4573437 ] } }, { "type": "Feature", "properties": { "y": 40.455637, "x": -79.9458782, "osmid": 3534619829, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9458782, 40.455637 ] } }, { "type": "Feature", "properties": { "y": 40.4569878, "x": -79.9807751, "osmid": 6050511862, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9807751, 40.4569878 ] } }, @@ -739,7 +705,6 @@ { "type": "Feature", "properties": { "y": 40.4521781, "x": -80.007544, "osmid": 5247141845, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.007544, 40.4521781 ] } }, { "type": "Feature", "properties": { "y": 40.4447572, "x": -80.0142841, "osmid": 5397448665, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0142841, 40.4447572 ] } }, { "type": "Feature", "properties": { "y": 40.4453317, "x": -80.0137157, "osmid": 5397448666, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0137157, 40.4453317 ] } }, -{ "type": "Feature", "properties": { "y": 40.4574688, "x": -79.9797701, "osmid": 6050511871, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9797701, 40.4574688 ] } }, { "type": "Feature", "properties": { "y": 40.4450609, "x": -79.9572727, "osmid": 105711578, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9572727, 40.4450609 ] } }, { "type": "Feature", "properties": { "y": 40.4522928, "x": -80.0066909, "osmid": 5247141853, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0066909, 40.4522928 ] } }, { "type": "Feature", "properties": { "y": 40.4520175, "x": -80.0074932, "osmid": 5247141859, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0074932, 40.4520175 ] } }, @@ -806,8 +771,6 @@ { "type": "Feature", "properties": { "y": 40.4465813, "x": -80.0232783, "osmid": 5423728718, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0232783, 40.4465813 ] } }, { "type": "Feature", "properties": { "y": 40.4572103, "x": -80.0057922, "osmid": 104597591, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057922, 40.4572103 ] } }, { "type": "Feature", "properties": { "y": 40.4424841, "x": -79.9516831, "osmid": 2173732951, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9516831, 40.4424841 ] } }, -{ "type": "Feature", "properties": { "y": 40.452385, "x": -79.9377534, "osmid": 1890879576, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9377534, 40.452385 ] } }, -{ "type": "Feature", "properties": { "y": 40.4525296, "x": -79.9378331, "osmid": 1890879582, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9378331, 40.4525296 ] } }, { "type": "Feature", "properties": { "y": 40.4423996, "x": -79.9525509, "osmid": 2173732959, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9525509, 40.4423996 ] } }, { "type": "Feature", "properties": { "y": 40.4571407, "x": -80.0061971, "osmid": 104597601, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061971, 40.4571407 ] } }, { "type": "Feature", "properties": { "y": 40.4563392, "x": -79.9944587, "osmid": 105744484, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9944587, 40.4563392 ] } }, @@ -829,12 +792,11 @@ { "type": "Feature", "properties": { "y": 40.4344206, "x": -79.989959, "osmid": 4081682611, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.989959, 40.4344206 ] } }, { "type": "Feature", "properties": { "y": 40.4269506, "x": -79.9382647, "osmid": 7495846068, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9382647, 40.4269506 ] } }, { "type": "Feature", "properties": { "y": 40.449794, "x": -79.989736, "osmid": 6179227829, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.989736, 40.449794 ] } }, -{ "type": "Feature", "properties": { "y": 40.4476622, "x": -79.9494185, "osmid": 1797720244, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9494185, 40.4476622 ] } }, +{ "type": "Feature", "properties": { "y": 40.4424621, "x": -79.9527745, "osmid": 2173733046, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9527745, 40.4424621 ] } }, { "type": "Feature", "properties": { "y": 40.4274126, "x": -79.9377059, "osmid": 7495846071, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9377059, 40.4274126 ] } }, { "type": "Feature", "properties": { "y": 40.4498383, "x": -79.9897892, "osmid": 6179227831, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9897892, 40.4498383 ] } }, -{ "type": "Feature", "properties": { "y": 40.4479436, "x": -79.9495899, "osmid": 1797720247, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9495899, 40.4479436 ] } }, +{ "type": "Feature", "properties": { "y": 40.4424086, "x": -79.9523967, "osmid": 2173733049, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9523967, 40.4424086 ] } }, { "type": "Feature", "properties": { "y": 40.449599, "x": -79.9903495, "osmid": 6179227834, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9903495, 40.449599 ] } }, -{ "type": "Feature", "properties": { "y": 40.4424621, "x": -79.9527745, "osmid": 2173733046, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9527745, 40.4424621 ] } }, { "type": "Feature", "properties": { "y": 40.4525538, "x": -80.0199409, "osmid": 105810108, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0199409, 40.4525538 ] } }, { "type": "Feature", "properties": { "y": 40.4492982, "x": -79.9900303, "osmid": 6179227837, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9900303, 40.4492982 ] } }, { "type": "Feature", "properties": { "y": 40.4539785, "x": -80.0146579, "osmid": 4068378814, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0146579, 40.4539785 ] } }, @@ -880,8 +842,8 @@ { "type": "Feature", "properties": { "y": 40.4304762, "x": -79.9789466, "osmid": 104728823, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9789466, 40.4304762 ] } }, { "type": "Feature", "properties": { "y": 40.452556, "x": -80.0056607, "osmid": 5247174897, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0056607, 40.452556 ] } }, { "type": "Feature", "properties": { "y": 40.4446132, "x": -79.9631805, "osmid": 6186273010, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9631805, 40.4446132 ] } }, -{ "type": "Feature", "properties": { "y": 40.4449236, "x": -79.9631614, "osmid": 6186273012, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9631614, 40.4449236 ] } }, { "type": "Feature", "properties": { "y": 40.4448917, "x": -79.9630823, "osmid": 6186273013, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9630823, 40.4448917 ] } }, +{ "type": "Feature", "properties": { "y": 40.4449236, "x": -79.9631614, "osmid": 6186273012, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9631614, 40.4449236 ] } }, { "type": "Feature", "properties": { "y": 40.4448724, "x": -79.9630295, "osmid": 6186273015, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9630295, 40.4448724 ] } }, { "type": "Feature", "properties": { "y": 40.4442695, "x": -79.9631517, "osmid": 6186273019, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9631517, 40.4442695 ] } }, { "type": "Feature", "properties": { "y": 40.4448068, "x": -79.9628664, "osmid": 6186273016, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9628664, 40.4448068 ] } }, @@ -914,19 +876,18 @@ { "type": "Feature", "properties": { "y": 40.4500361, "x": -80.0184543, "osmid": 7565281623, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0184543, 40.4500361 ] } }, { "type": "Feature", "properties": { "y": 40.4497955, "x": -79.9889357, "osmid": 6179227991, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9889357, 40.4497955 ] } }, { "type": "Feature", "properties": { "y": 40.4499838, "x": -80.0186091, "osmid": 7565281625, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0186091, 40.4499838 ] } }, -{ "type": "Feature", "properties": { "y": 40.4570297, "x": -80.0051732, "osmid": 5253411826, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0051732, 40.4570297 ] } }, +{ "type": "Feature", "properties": { "y": 40.4495322, "x": -79.9896475, "osmid": 6179227993, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9896475, 40.4495322 ] } }, { "type": "Feature", "properties": { "y": 40.4494195, "x": -79.9895267, "osmid": 6179227995, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9895267, 40.4494195 ] } }, { "type": "Feature", "properties": { "y": 40.4499014, "x": -80.0188804, "osmid": 7565281628, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0188804, 40.4499014 ] } }, -{ "type": "Feature", "properties": { "y": 40.4495322, "x": -79.9896475, "osmid": 6179227993, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9896475, 40.4495322 ] } }, { "type": "Feature", "properties": { "y": 40.4493608, "x": -79.9898662, "osmid": 6179227994, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9898662, 40.4493608 ] } }, +{ "type": "Feature", "properties": { "y": 40.4492512, "x": -79.9896585, "osmid": 6179227998, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9896585, 40.4492512 ] } }, { "type": "Feature", "properties": { "y": 40.4498554, "x": -80.0189551, "osmid": 7565281631, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0189551, 40.4498554 ] } }, -{ "type": "Feature", "properties": { "y": 40.4569399, "x": -80.0056358, "osmid": 5253411827, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0056358, 40.4569399 ] } }, { "type": "Feature", "properties": { "y": 40.4496775, "x": -79.9887959, "osmid": 6179228000, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9887959, 40.4496775 ] } }, { "type": "Feature", "properties": { "y": 40.4491711, "x": -79.9895738, "osmid": 6179227999, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9895738, 40.4491711 ] } }, { "type": "Feature", "properties": { "y": 40.4495593, "x": -79.9886557, "osmid": 6179228002, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9886557, 40.4495593 ] } }, -{ "type": "Feature", "properties": { "y": 40.4572054, "x": -80.0057297, "osmid": 5253411828, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057297, 40.4572054 ] } }, -{ "type": "Feature", "properties": { "y": 40.4492512, "x": -79.9896585, "osmid": 6179227998, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9896585, 40.4492512 ] } }, { "type": "Feature", "properties": { "y": 40.4490417, "x": -79.989437, "osmid": 6179228001, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.989437, 40.4490417 ] } }, +{ "type": "Feature", "properties": { "y": 40.4569399, "x": -80.0056358, "osmid": 5253411827, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0056358, 40.4569399 ] } }, +{ "type": "Feature", "properties": { "y": 40.4572054, "x": -80.0057297, "osmid": 5253411828, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057297, 40.4572054 ] } }, { "type": "Feature", "properties": { "y": 40.4570234, "x": -80.005472, "osmid": 5253411829, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005472, 40.4570234 ] } }, { "type": "Feature", "properties": { "y": 40.4569752, "x": -80.0054538, "osmid": 5253411830, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0054538, 40.4569752 ] } }, { "type": "Feature", "properties": { "y": 40.4570358, "x": -80.0054033, "osmid": 5253411831, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0054033, 40.4570358 ] } }, @@ -935,6 +896,7 @@ { "type": "Feature", "properties": { "y": 40.4543859, "x": -79.9825735, "osmid": 6058674555, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9825735, 40.4543859 ] } }, { "type": "Feature", "properties": { "y": 40.4570485, "x": -80.0053337, "osmid": 5253411833, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0053337, 40.4570485 ] } }, { "type": "Feature", "properties": { "y": 40.4433626, "x": -79.9660599, "osmid": 105711998, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9660599, 40.4433626 ] } }, +{ "type": "Feature", "properties": { "y": 40.4570018, "x": -80.0053169, "osmid": 5253411834, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0053169, 40.4570018 ] } }, { "type": "Feature", "properties": { "y": 40.4573815, "x": -79.9642054, "osmid": 107645319, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9642054, 40.4573815 ] } }, { "type": "Feature", "properties": { "y": 40.4570029, "x": -80.005591, "osmid": 5253411835, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005591, 40.4570029 ] } }, { "type": "Feature", "properties": { "y": 40.4584892, "x": -79.9750598, "osmid": 6067259785, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9750598, 40.4584892 ] } }, @@ -969,6 +931,7 @@ { "type": "Feature", "properties": { "y": 40.449284, "x": -80.004463, "osmid": 5716511174, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.004463, 40.449284 ] } }, { "type": "Feature", "properties": { "y": 40.4470322, "x": -80.0120972, "osmid": 5391550920, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0120972, 40.4470322 ] } }, { "type": "Feature", "properties": { "y": 40.4435765, "x": -79.9885423, "osmid": 871729607, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885423, 40.4435765 ] } }, +{ "type": "Feature", "properties": { "y": 40.4514485, "x": -79.9959276, "osmid": 107645386, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9959276, 40.4514485 ] } }, { "type": "Feature", "properties": { "y": 40.4409353, "x": -79.9868102, "osmid": 871729611, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9868102, 40.4409353 ] } }, { "type": "Feature", "properties": { "y": 40.441135, "x": -79.9869559, "osmid": 871729613, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9869559, 40.441135 ] } }, { "type": "Feature", "properties": { "y": 40.4435173, "x": -79.9887086, "osmid": 871729619, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9887086, 40.4435173 ] } }, @@ -990,10 +953,8 @@ { "type": "Feature", "properties": { "y": 40.4260031, "x": -79.9857529, "osmid": 104794655, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9857529, 40.4260031 ] } }, { "type": "Feature", "properties": { "y": 40.4407573, "x": -79.9864627, "osmid": 871729698, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9864627, 40.4407573 ] } }, { "type": "Feature", "properties": { "y": 40.4260072, "x": -79.9852156, "osmid": 104794664, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9852156, 40.4260072 ] } }, -{ "type": "Feature", "properties": { "y": 40.4308869, "x": -79.9962955, "osmid": 7805346258, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9962955, 40.4308869 ] } }, { "type": "Feature", "properties": { "y": 40.4408106, "x": -79.9865081, "osmid": 871729708, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9865081, 40.4408106 ] } }, { "type": "Feature", "properties": { "y": 40.4260154, "x": -79.9846693, "osmid": 104794669, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9846693, 40.4260154 ] } }, -{ "type": "Feature", "properties": { "y": 40.4312075, "x": -79.9984937, "osmid": 7805346259, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9984937, 40.4312075 ] } }, { "type": "Feature", "properties": { "y": 40.453337, "x": -79.9806088, "osmid": 6080432687, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9806088, 40.453337 ] } }, { "type": "Feature", "properties": { "y": 40.4533712, "x": -79.9805601, "osmid": 6080432688, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9805601, 40.4533712 ] } }, { "type": "Feature", "properties": { "y": 40.4534231, "x": -79.9806237, "osmid": 6080432689, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9806237, 40.4534231 ] } }, @@ -1044,8 +1005,8 @@ { "type": "Feature", "properties": { "y": 40.4557298, "x": -80.0057332, "osmid": 5255072428, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057332, 40.4557298 ] } }, { "type": "Feature", "properties": { "y": 40.4594635, "x": -80.0244895, "osmid": 105253549, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0244895, 40.4594635 ] } }, { "type": "Feature", "properties": { "y": 40.4567702, "x": -80.0065336, "osmid": 5255072431, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0065336, 40.4567702 ] } }, -{ "type": "Feature", "properties": { "y": 40.4567058, "x": -80.0069148, "osmid": 5255072433, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0069148, 40.4567058 ] } }, { "type": "Feature", "properties": { "y": 40.4476464, "x": -79.9901675, "osmid": 104565425, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9901675, 40.4476464 ] } }, +{ "type": "Feature", "properties": { "y": 40.4567058, "x": -80.0069148, "osmid": 5255072433, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0069148, 40.4567058 ] } }, { "type": "Feature", "properties": { "y": 40.4572712, "x": -80.0070972, "osmid": 5255072435, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0070972, 40.4572712 ] } }, { "type": "Feature", "properties": { "y": 40.4573439, "x": -80.0067179, "osmid": 5255072436, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0067179, 40.4573439 ] } }, { "type": "Feature", "properties": { "y": 40.4566564, "x": -80.0068999, "osmid": 5255072437, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0068999, 40.4566564 ] } }, @@ -1141,12 +1102,8 @@ { "type": "Feature", "properties": { "y": 40.4588616, "x": -80.0063182, "osmid": 105679899, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063182, 40.4588616 ] } }, { "type": "Feature", "properties": { "y": 40.4451686, "x": -79.942691, "osmid": 7016320031, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.942691, 40.4451686 ] } }, { "type": "Feature", "properties": { "y": 40.4445659, "x": -79.9424831, "osmid": 7016320035, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9424831, 40.4445659 ] } }, -{ "type": "Feature", "properties": { "y": 40.4365536, "x": -80.0004206, "osmid": 7011732524, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0004206, 40.4365536 ] } }, -{ "type": "Feature", "properties": { "y": 40.4367838, "x": -80.0002548, "osmid": 7011732525, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0002548, 40.4367838 ] } }, -{ "type": "Feature", "properties": { "y": 40.4390228, "x": -80.0003301, "osmid": 7011732527, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0003301, 40.4390228 ] } }, { "type": "Feature", "properties": { "y": 40.4421569, "x": -80.0039486, "osmid": 6089215024, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0039486, 40.4421569 ] } }, { "type": "Feature", "properties": { "y": 40.4421936, "x": -80.003962, "osmid": 6089215025, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.003962, 40.4421936 ] } }, -{ "type": "Feature", "properties": { "y": 40.4385196, "x": -80.0006741, "osmid": 7011732528, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0006741, 40.4385196 ] } }, { "type": "Feature", "properties": { "y": 40.4415554, "x": -80.0037316, "osmid": 6089215027, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0037316, 40.4415554 ] } }, { "type": "Feature", "properties": { "y": 40.4424237, "x": -80.0031202, "osmid": 6089215034, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0031202, 40.4424237 ] } }, { "type": "Feature", "properties": { "y": 40.4425461, "x": -80.0031766, "osmid": 6089215036, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0031766, 40.4425461 ] } }, @@ -1164,7 +1121,6 @@ { "type": "Feature", "properties": { "y": 40.4559486, "x": -79.9403423, "osmid": 1788021966, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9403423, 40.4559486 ] } }, { "type": "Feature", "properties": { "y": 40.4404575, "x": -79.9884048, "osmid": 1436093654, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9884048, 40.4404575 ] } }, { "type": "Feature", "properties": { "y": 40.4342305, "x": -79.9516629, "osmid": 105123030, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9516629, 40.4342305 ] } }, -{ "type": "Feature", "properties": { "y": 40.4489622, "x": -79.9753268, "osmid": 106336686, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9753268, 40.4489622 ] } }, { "type": "Feature", "properties": { "y": 40.4440049, "x": -79.997422, "osmid": 104991994, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.997422, 40.4440049 ] } }, { "type": "Feature", "properties": { "y": 40.4524293, "x": -80.014013, "osmid": 105123074, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.014013, 40.4524293 ] } }, { "type": "Feature", "properties": { "y": 40.4435819, "x": -79.9972316, "osmid": 104992004, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9972316, 40.4435819 ] } }, @@ -1210,23 +1166,23 @@ { "type": "Feature", "properties": { "y": 40.4510379, "x": -80.010822, "osmid": 6046715242, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.010822, 40.4510379 ] } }, { "type": "Feature", "properties": { "y": 40.450997, "x": -80.0108076, "osmid": 6046715243, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0108076, 40.450997 ] } }, { "type": "Feature", "properties": { "y": 40.4531059, "x": -79.9492432, "osmid": 1255345515, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9492432, 40.4531059 ] } }, -{ "type": "Feature", "properties": { "y": 40.4585082, "x": -80.0021837, "osmid": 5211622758, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0021837, 40.4585082 ] } }, { "type": "Feature", "properties": { "y": 40.4528526, "x": -79.9487898, "osmid": 1255345514, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9487898, 40.4528526 ] } }, -{ "type": "Feature", "properties": { "y": 40.4519799, "x": -80.0087185, "osmid": 105123183, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0087185, 40.4519799 ] } }, { "type": "Feature", "properties": { "y": 40.4549261, "x": -79.9834956, "osmid": 6058413419, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9834956, 40.4549261 ] } }, +{ "type": "Feature", "properties": { "y": 40.4519799, "x": -80.0087185, "osmid": 105123183, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0087185, 40.4519799 ] } }, +{ "type": "Feature", "properties": { "y": 40.4550393, "x": -79.9833268, "osmid": 6058413415, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9833268, 40.4550393 ] } }, { "type": "Feature", "properties": { "y": 40.4579337, "x": -80.0016633, "osmid": 5211622760, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0016633, 40.4579337 ] } }, { "type": "Feature", "properties": { "y": 40.4551583, "x": -79.9834391, "osmid": 6058413418, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9834391, 40.4551583 ] } }, { "type": "Feature", "properties": { "y": 40.4548458, "x": -79.9831276, "osmid": 6058413427, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9831276, 40.4548458 ] } }, { "type": "Feature", "properties": { "y": 40.4341652, "x": -79.9522457, "osmid": 6582668660, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9522457, 40.4341652 ] } }, -{ "type": "Feature", "properties": { "y": 40.4582228, "x": -80.0021555, "osmid": 5211622773, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0021555, 40.4582228 ] } }, +{ "type": "Feature", "properties": { "y": 40.4550071, "x": -79.9835919, "osmid": 6058413429, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9835919, 40.4550071 ] } }, { "type": "Feature", "properties": { "y": 40.4582456, "x": -80.0022369, "osmid": 5211622774, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0022369, 40.4582456 ] } }, -{ "type": "Feature", "properties": { "y": 40.4582701, "x": -80.0023715, "osmid": 5211622775, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0023715, 40.4582701 ] } }, { "type": "Feature", "properties": { "y": 40.4551533, "x": -79.983766, "osmid": 6058413431, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.983766, 40.4551533 ] } }, { "type": "Feature", "properties": { "y": 40.4551719, "x": -79.9837882, "osmid": 6058413430, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9837882, 40.4551719 ] } }, -{ "type": "Feature", "properties": { "y": 40.4550071, "x": -79.9835919, "osmid": 6058413429, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9835919, 40.4550071 ] } }, +{ "type": "Feature", "properties": { "y": 40.4552705, "x": -79.9835991, "osmid": 6058413432, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9835991, 40.4552705 ] } }, +{ "type": "Feature", "properties": { "y": 40.4582228, "x": -80.0021555, "osmid": 5211622773, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0021555, 40.4582228 ] } }, +{ "type": "Feature", "properties": { "y": 40.4582701, "x": -80.0023715, "osmid": 5211622775, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0023715, 40.4582701 ] } }, { "type": "Feature", "properties": { "y": 40.4580587, "x": -80.0027888, "osmid": 5211622779, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0027888, 40.4580587 ] } }, { "type": "Feature", "properties": { "y": 40.4581581, "x": -80.0028042, "osmid": 5211622780, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0028042, 40.4581581 ] } }, -{ "type": "Feature", "properties": { "y": 40.4552705, "x": -79.9835991, "osmid": 6058413432, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9835991, 40.4552705 ] } }, { "type": "Feature", "properties": { "y": 40.455038, "x": -79.9835465, "osmid": 6058413445, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9835465, 40.455038 ] } }, { "type": "Feature", "properties": { "y": 40.4508786, "x": -80.0061244, "osmid": 5247081505, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061244, 40.4508786 ] } }, { "type": "Feature", "properties": { "y": 40.455185, "x": -79.9483117, "osmid": 104533387, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9483117, 40.455185 ] } }, @@ -1258,7 +1214,6 @@ { "type": "Feature", "properties": { "y": 40.4548112, "x": -80.0133413, "osmid": 5366091254, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0133413, 40.4548112 ] } }, { "type": "Feature", "properties": { "y": 40.4545318, "x": -80.0132304, "osmid": 5366091257, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0132304, 40.4545318 ] } }, { "type": "Feature", "properties": { "y": 40.4466873, "x": -79.9933666, "osmid": 6182014458, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9933666, 40.4466873 ] } }, -{ "type": "Feature", "properties": { "y": 40.446614, "x": -79.9390179, "osmid": 2522975740, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9390179, 40.446614 ] } }, { "type": "Feature", "properties": { "y": 40.4467421, "x": -79.9934191, "osmid": 6182014463, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9934191, 40.4467421 ] } }, { "type": "Feature", "properties": { "y": 40.4470305, "x": -79.9930017, "osmid": 6182014464, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9930017, 40.4470305 ] } }, { "type": "Feature", "properties": { "y": 40.4468175, "x": -79.9933099, "osmid": 6182014467, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9933099, 40.4468175 ] } }, @@ -1380,10 +1335,8 @@ { "type": "Feature", "properties": { "y": 40.4483697, "x": -79.9442196, "osmid": 1832619747, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9442196, 40.4483697 ] } }, { "type": "Feature", "properties": { "y": 40.4391744, "x": -79.9718475, "osmid": 104763108, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9718475, 40.4391744 ] } }, { "type": "Feature", "properties": { "y": 40.4483841, "x": -79.9440351, "osmid": 1832619751, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9440351, 40.4483841 ] } }, -{ "type": "Feature", "properties": { "y": 40.4399776, "x": -79.9371006, "osmid": 105058025, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9371006, 40.4399776 ] } }, { "type": "Feature", "properties": { "y": 40.4484131, "x": -79.9435964, "osmid": 1832619755, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9435964, 40.4484131 ] } }, { "type": "Feature", "properties": { "y": 40.4484363, "x": -79.9432461, "osmid": 1832619756, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9432461, 40.4484363 ] } }, -{ "type": "Feature", "properties": { "y": 40.4396538, "x": -79.9356729, "osmid": 105058029, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9356729, 40.4396538 ] } }, { "type": "Feature", "properties": { "y": 40.4485055, "x": -79.9428866, "osmid": 1832619759, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9428866, 40.4485055 ] } }, { "type": "Feature", "properties": { "y": 40.4485241, "x": -79.9426043, "osmid": 1832619761, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9426043, 40.4485241 ] } }, { "type": "Feature", "properties": { "y": 40.439631, "x": -80.0077474, "osmid": 3833827059, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0077474, 40.439631 ] } }, @@ -1426,9 +1379,8 @@ { "type": "Feature", "properties": { "y": 40.4587238, "x": -80.01461, "osmid": 106008540, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.01461, 40.4587238 ] } }, { "type": "Feature", "properties": { "y": 40.4440292, "x": -79.9881542, "osmid": 104566749, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9881542, 40.4440292 ] } }, { "type": "Feature", "properties": { "y": 40.4577843, "x": -79.9937116, "osmid": 104533982, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9937116, 40.4577843 ] } }, -{ "type": "Feature", "properties": { "y": 40.4322129, "x": -80.0022325, "osmid": 7223381982, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0022325, 40.4322129 ] } }, { "type": "Feature", "properties": { "y": 40.4317367, "x": -80.0012488, "osmid": 7223381983, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0012488, 40.4317367 ] } }, -{ "type": "Feature", "properties": { "y": 40.4316622, "x": -80.0008809, "osmid": 7223381984, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0008809, 40.4316622 ] } }, +{ "type": "Feature", "properties": { "y": 40.4322129, "x": -80.0022325, "osmid": 7223381982, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0022325, 40.4322129 ] } }, { "type": "Feature", "properties": { "y": 40.4432286, "x": -79.9875825, "osmid": 104566757, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9875825, 40.4432286 ] } }, { "type": "Feature", "properties": { "y": 40.4303117, "x": -80.007402, "osmid": 104632293, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.007402, 40.4303117 ] } }, { "type": "Feature", "properties": { "y": 40.4427046, "x": -79.9872045, "osmid": 104566764, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9872045, 40.4427046 ] } }, @@ -1465,19 +1417,17 @@ { "type": "Feature", "properties": { "y": 40.4575164, "x": -80.0062645, "osmid": 5262184497, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062645, 40.4575164 ] } }, { "type": "Feature", "properties": { "y": 40.4469858, "x": -79.9743285, "osmid": 106041392, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9743285, 40.4469858 ] } }, { "type": "Feature", "properties": { "y": 40.4531638, "x": -80.0086018, "osmid": 5249929268, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0086018, 40.4531638 ] } }, +{ "type": "Feature", "properties": { "y": 40.4531862, "x": -80.0084821, "osmid": 5249929269, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084821, 40.4531862 ] } }, +{ "type": "Feature", "properties": { "y": 40.452891, "x": -80.008378, "osmid": 5249929270, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008378, 40.452891 ] } }, { "type": "Feature", "properties": { "y": 40.4577752, "x": -80.0059721, "osmid": 5262184501, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0059721, 40.4577752 ] } }, +{ "type": "Feature", "properties": { "y": 40.4502888, "x": -80.0057776, "osmid": 5247081642, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057776, 40.4502888 ] } }, +{ "type": "Feature", "properties": { "y": 40.453228, "x": -80.0082592, "osmid": 5249929272, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0082592, 40.453228 ] } }, { "type": "Feature", "properties": { "y": 40.4577714, "x": -80.0059957, "osmid": 5262184502, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0059957, 40.4577714 ] } }, { "type": "Feature", "properties": { "y": 40.4577105, "x": -80.0063844, "osmid": 5262184503, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063844, 40.4577105 ] } }, -{ "type": "Feature", "properties": { "y": 40.453228, "x": -80.0082592, "osmid": 5249929272, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0082592, 40.453228 ] } }, -{ "type": "Feature", "properties": { "y": 40.4502888, "x": -80.0057776, "osmid": 5247081642, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057776, 40.4502888 ] } }, -{ "type": "Feature", "properties": { "y": 40.452891, "x": -80.008378, "osmid": 5249929270, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008378, 40.452891 ] } }, -{ "type": "Feature", "properties": { "y": 40.4531862, "x": -80.0084821, "osmid": 5249929269, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084821, 40.4531862 ] } }, { "type": "Feature", "properties": { "y": 40.4532571, "x": -80.0081012, "osmid": 5249929276, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0081012, 40.4532571 ] } }, { "type": "Feature", "properties": { "y": 40.4534559, "x": -80.0091149, "osmid": 5249929277, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0091149, 40.4534559 ] } }, { "type": "Feature", "properties": { "y": 40.448096, "x": -79.9717124, "osmid": 106041400, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9717124, 40.448096 ] } }, { "type": "Feature", "properties": { "y": 40.4563215, "x": -79.9353714, "osmid": 392958008, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9353714, 40.4563215 ] } }, -{ "type": "Feature", "properties": { "y": 40.4409596, "x": -79.9366222, "osmid": 303599688, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9366222, 40.4409596 ] } }, -{ "type": "Feature", "properties": { "y": 40.4412218, "x": -79.9369424, "osmid": 303599692, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9369424, 40.4412218 ] } }, { "type": "Feature", "properties": { "y": 40.4436439, "x": -79.9949423, "osmid": 6624972877, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9949423, 40.4436439 ] } }, { "type": "Feature", "properties": { "y": 40.4496788, "x": -79.9679822, "osmid": 106041422, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9679822, 40.4496788 ] } }, { "type": "Feature", "properties": { "y": 40.4592317, "x": -79.975839, "osmid": 105975885, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.975839, 40.4592317 ] } }, @@ -1494,25 +1444,22 @@ { "type": "Feature", "properties": { "y": 40.4552194, "x": -79.9600183, "osmid": 4320268388, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9600183, 40.4552194 ] } }, { "type": "Feature", "properties": { "y": 40.4585311, "x": -79.9749981, "osmid": 105975903, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9749981, 40.4585311 ] } }, { "type": "Feature", "properties": { "y": 40.4408027, "x": -79.9543545, "osmid": 104861797, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9543545, 40.4408027 ] } }, -{ "type": "Feature", "properties": { "y": 40.4407006, "x": -79.9375996, "osmid": 303599737, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9375996, 40.4407006 ] } }, { "type": "Feature", "properties": { "y": 40.4573122, "x": -80.0157445, "osmid": 104927354, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0157445, 40.4573122 ] } }, { "type": "Feature", "properties": { "y": 40.4418255, "x": -80.001821, "osmid": 689934472, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001821, 40.4418255 ] } }, { "type": "Feature", "properties": { "y": 40.4414273, "x": -79.9528886, "osmid": 104861841, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9528886, 40.4414273 ] } }, { "type": "Feature", "properties": { "y": 40.4570291, "x": -80.0168814, "osmid": 104927382, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0168814, 40.4570291 ] } }, -{ "type": "Feature", "properties": { "y": 40.4510454, "x": -80.0116072, "osmid": 3167104165, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0116072, 40.4510454 ] } }, { "type": "Feature", "properties": { "y": 40.4576213, "x": -79.9979496, "osmid": 107581602, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9979496, 40.4576213 ] } }, { "type": "Feature", "properties": { "y": 40.4535966, "x": -80.0208324, "osmid": 105844902, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0208324, 40.4535966 ] } }, -{ "type": "Feature", "properties": { "y": 40.4448588, "x": -79.986496, "osmid": 7794954407, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.986496, 40.4448588 ] } }, { "type": "Feature", "properties": { "y": 40.4529503, "x": -80.0243054, "osmid": 105844909, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0243054, 40.4529503 ] } }, { "type": "Feature", "properties": { "y": 40.4574062, "x": -80.0152567, "osmid": 104927406, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0152567, 40.4574062 ] } }, { "type": "Feature", "properties": { "y": 40.4518788, "x": -80.0097315, "osmid": 3167104169, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0097315, 40.4518788 ] } }, { "type": "Feature", "properties": { "y": 40.438529, "x": -79.9464766, "osmid": 6582544547, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9464766, 40.438529 ] } }, -{ "type": "Feature", "properties": { "y": 40.4384677, "x": -79.9831609, "osmid": 7409373366, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9831609, 40.4384677 ] } }, { "type": "Feature", "properties": { "y": 40.4523016, "x": -80.0277917, "osmid": 105844921, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0277917, 40.4523016 ] } }, { "type": "Feature", "properties": { "y": 40.4575101, "x": -80.014717, "osmid": 104927417, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.014717, 40.4575101 ] } }, -{ "type": "Feature", "properties": { "y": 40.4383417, "x": -79.9830383, "osmid": 7409373369, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9830383, 40.4383417 ] } }, { "type": "Feature", "properties": { "y": 40.441803, "x": -79.9526593, "osmid": 104861882, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9526593, 40.441803 ] } }, +{ "type": "Feature", "properties": { "y": 40.4541484, "x": -80.0095069, "osmid": 3167104173, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0095069, 40.4541484 ] } }, { "type": "Feature", "properties": { "y": 40.4540714, "x": -80.0197317, "osmid": 105844938, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0197317, 40.4540714 ] } }, +{ "type": "Feature", "properties": { "y": 40.454099, "x": -80.0097716, "osmid": 3167104174, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0097716, 40.454099 ] } }, { "type": "Feature", "properties": { "y": 40.4538414, "x": -80.0209121, "osmid": 105844943, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0209121, 40.4538414 ] } }, { "type": "Feature", "properties": { "y": 40.4522145, "x": -80.0075546, "osmid": 6218584271, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0075546, 40.4522145 ] } }, { "type": "Feature", "properties": { "y": 40.4470456, "x": -80.0119971, "osmid": 5391552721, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0119971, 40.4470456 ] } }, @@ -1536,10 +1483,10 @@ { "type": "Feature", "properties": { "y": 40.4493844, "x": -79.9906041, "osmid": 6181163288, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9906041, 40.4493844 ] } }, { "type": "Feature", "properties": { "y": 40.4355321, "x": -80.0089318, "osmid": 6015881497, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0089318, 40.4355321 ] } }, { "type": "Feature", "properties": { "y": 40.4396228, "x": -79.9580881, "osmid": 106017765, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9580881, 40.4396228 ] } }, +{ "type": "Feature", "properties": { "y": 40.4540476, "x": -80.0062128, "osmid": 3167104190, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062128, 40.4540476 ] } }, { "type": "Feature", "properties": { "y": 40.4496245, "x": -79.9905544, "osmid": 6181163294, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9905544, 40.4496245 ] } }, { "type": "Feature", "properties": { "y": 40.4490136, "x": -79.9915626, "osmid": 6181163295, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9915626, 40.4490136 ] } }, { "type": "Feature", "properties": { "y": 40.448242, "x": -79.9921335, "osmid": 6181163296, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9921335, 40.448242 ] } }, -{ "type": "Feature", "properties": { "y": 40.4538931, "x": -80.0062525, "osmid": 3167104191, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062525, 40.4538931 ] } }, { "type": "Feature", "properties": { "y": 40.4468683, "x": -79.9547902, "osmid": 106008866, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9547902, 40.4468683 ] } }, { "type": "Feature", "properties": { "y": 40.4483386, "x": -79.9919778, "osmid": 6181163299, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9919778, 40.4483386 ] } }, { "type": "Feature", "properties": { "y": 40.4486897, "x": -79.9916611, "osmid": 6181163304, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9916611, 40.4486897 ] } }, @@ -1561,25 +1508,24 @@ { "type": "Feature", "properties": { "y": 40.4444071, "x": -79.9953094, "osmid": 6219305282, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9953094, 40.4444071 ] } }, { "type": "Feature", "properties": { "y": 40.4441937, "x": -79.9955072, "osmid": 6219305283, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9955072, 40.4441937 ] } }, { "type": "Feature", "properties": { "y": 40.4442375, "x": -79.9953279, "osmid": 6219305284, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9953279, 40.4442375 ] } }, +{ "type": "Feature", "properties": { "y": 40.4552246, "x": -80.0100333, "osmid": 5357813928, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0100333, 40.4552246 ] } }, { "type": "Feature", "properties": { "y": 40.4300253, "x": -79.9886334, "osmid": 104534351, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9886334, 40.4300253 ] } }, { "type": "Feature", "properties": { "y": 40.4361972, "x": -80.0085226, "osmid": 6015881553, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085226, 40.4361972 ] } }, { "type": "Feature", "properties": { "y": 40.4356347, "x": -80.0089416, "osmid": 6015881555, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0089416, 40.4356347 ] } }, { "type": "Feature", "properties": { "y": 40.4294271, "x": -79.9886161, "osmid": 104534356, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9886161, 40.4294271 ] } }, { "type": "Feature", "properties": { "y": 40.4410995, "x": -80.0055868, "osmid": 5935829335, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0055868, 40.4410995 ] } }, -{ "type": "Feature", "properties": { "y": 40.4290557, "x": -79.9885901, "osmid": 104534360, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885901, 40.4290557 ] } }, +{ "type": "Feature", "properties": { "y": 40.4552024, "x": -80.0100848, "osmid": 5357813930, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0100848, 40.4552024 ] } }, { "type": "Feature", "properties": { "y": 40.441287, "x": -80.0046269, "osmid": 5935829337, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0046269, 40.441287 ] } }, +{ "type": "Feature", "properties": { "y": 40.4290557, "x": -79.9885901, "osmid": 104534360, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885901, 40.4290557 ] } }, { "type": "Feature", "properties": { "y": 40.440064, "x": -80.0059832, "osmid": 5935829339, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0059832, 40.440064 ] } }, { "type": "Feature", "properties": { "y": 40.4399344, "x": -80.0056307, "osmid": 5935829340, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0056307, 40.4399344 ] } }, { "type": "Feature", "properties": { "y": 40.4287102, "x": -79.9885849, "osmid": 104534366, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885849, 40.4287102 ] } }, -{ "type": "Feature", "properties": { "y": 40.4586114, "x": -80.022746, "osmid": 7588516191, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.022746, 40.4586114 ] } }, { "type": "Feature", "properties": { "y": 40.4404723, "x": -80.0052645, "osmid": 5935829343, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0052645, 40.4404723 ] } }, -{ "type": "Feature", "properties": { "y": 40.4591424, "x": -80.0230261, "osmid": 7588516193, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0230261, 40.4591424 ] } }, { "type": "Feature", "properties": { "y": 40.4402324, "x": -80.0058037, "osmid": 5935829344, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0058037, 40.4402324 ] } }, +{ "type": "Feature", "properties": { "y": 40.4367841, "x": -79.9545797, "osmid": 106017779, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9545797, 40.4367841 ] } }, { "type": "Feature", "properties": { "y": 40.4405417, "x": -80.0054764, "osmid": 5935829347, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0054764, 40.4405417 ] } }, { "type": "Feature", "properties": { "y": 40.4279719, "x": -79.9885614, "osmid": 104534372, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885614, 40.4279719 ] } }, { "type": "Feature", "properties": { "y": 40.4405693, "x": -80.0054576, "osmid": 5935829349, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0054576, 40.4405693 ] } }, -{ "type": "Feature", "properties": { "y": 40.4367841, "x": -79.9545797, "osmid": 106017779, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9545797, 40.4367841 ] } }, -{ "type": "Feature", "properties": { "y": 40.4396751, "x": -79.952368, "osmid": 107574361, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.952368, 40.4396751 ] } }, { "type": "Feature", "properties": { "y": 40.4405866, "x": -80.0052981, "osmid": 5935829353, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0052981, 40.4405866 ] } }, { "type": "Feature", "properties": { "y": 40.443239, "x": -80.0023796, "osmid": 689934698, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0023796, 40.443239 ] } }, { "type": "Feature", "properties": { "y": 40.4276963, "x": -79.9885524, "osmid": 104534381, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885524, 40.4276963 ] } }, @@ -1600,38 +1546,28 @@ { "type": "Feature", "properties": { "y": 40.4359111, "x": -80.0085945, "osmid": 6015881599, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085945, 40.4359111 ] } }, { "type": "Feature", "properties": { "y": 40.4587719, "x": -80.0017596, "osmid": 104534402, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0017596, 40.4587719 ] } }, { "type": "Feature", "properties": { "y": 40.4507053, "x": -79.9500663, "osmid": 6531879298, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9500663, 40.4507053 ] } }, -{ "type": "Feature", "properties": { "y": 40.4506687, "x": -79.9501694, "osmid": 6531879299, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9501694, 40.4506687 ] } }, { "type": "Feature", "properties": { "y": 40.4506086, "x": -79.9500164, "osmid": 6531879300, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9500164, 40.4506086 ] } }, -{ "type": "Feature", "properties": { "y": 40.4434941, "x": -80.0014387, "osmid": 689934726, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0014387, 40.4434941 ] } }, { "type": "Feature", "properties": { "y": 40.4505703, "x": -79.9501156, "osmid": 6531879301, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9501156, 40.4505703 ] } }, +{ "type": "Feature", "properties": { "y": 40.4434941, "x": -80.0014387, "osmid": 689934726, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0014387, 40.4434941 ] } }, +{ "type": "Feature", "properties": { "y": 40.4506687, "x": -79.9501694, "osmid": 6531879299, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9501694, 40.4506687 ] } }, { "type": "Feature", "properties": { "y": 40.4254362, "x": -79.9519859, "osmid": 3164017100, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9519859, 40.4254362 ] } }, { "type": "Feature", "properties": { "y": 40.4437926, "x": -79.9698891, "osmid": 2394460556, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9698891, 40.4437926 ] } }, { "type": "Feature", "properties": { "y": 40.4361869, "x": -79.9636321, "osmid": 6532043150, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9636321, 40.4361869 ] } }, { "type": "Feature", "properties": { "y": 40.4360365, "x": -79.9638565, "osmid": 6532043151, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9638565, 40.4360365 ] } }, -{ "type": "Feature", "properties": { "y": 40.4511265, "x": -79.9823253, "osmid": 6113817698, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9823253, 40.4511265 ] } }, -{ "type": "Feature", "properties": { "y": 40.4511544, "x": -79.9822829, "osmid": 6113817699, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9822829, 40.4511544 ] } }, { "type": "Feature", "properties": { "y": 40.443787, "x": -79.9692783, "osmid": 2394460563, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9692783, 40.443787 ] } }, { "type": "Feature", "properties": { "y": 40.4305393, "x": -79.9321638, "osmid": 5391585687, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9321638, 40.4305393 ] } }, { "type": "Feature", "properties": { "y": 40.42995, "x": -79.9311358, "osmid": 5391585690, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9311358, 40.42995 ] } }, { "type": "Feature", "properties": { "y": 40.4481388, "x": -79.9749553, "osmid": 106336676, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9749553, 40.4481388 ] } }, -{ "type": "Feature", "properties": { "y": 40.4279121, "x": -80.0179724, "osmid": 5312909735, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0179724, 40.4279121 ] } }, { "type": "Feature", "properties": { "y": 40.4340611, "x": -79.9922882, "osmid": 5312909736, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9922882, 40.4340611 ] } }, { "type": "Feature", "properties": { "y": 40.4422446, "x": -79.999821, "osmid": 689934761, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.999821, 40.4422446 ] } }, -{ "type": "Feature", "properties": { "y": 40.4285335, "x": -80.0172655, "osmid": 2632585646, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0172655, 40.4285335 ] } }, +{ "type": "Feature", "properties": { "y": 40.4489622, "x": -79.9753268, "osmid": 106336686, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9753268, 40.4489622 ] } }, { "type": "Feature", "properties": { "y": 40.4331166, "x": -80.0034136, "osmid": 7808291247, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0034136, 40.4331166 ] } }, { "type": "Feature", "properties": { "y": 40.4333056, "x": -80.0032815, "osmid": 7808291248, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0032815, 40.4333056 ] } }, { "type": "Feature", "properties": { "y": 40.4353607, "x": -80.0080994, "osmid": 6015881648, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0080994, 40.4353607 ] } }, -{ "type": "Feature", "properties": { "y": 40.4288171, "x": -80.0168802, "osmid": 2632585648, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0168802, 40.4288171 ] } }, -{ "type": "Feature", "properties": { "y": 40.4289772, "x": -80.017148, "osmid": 2632585647, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.017148, 40.4289772 ] } }, -{ "type": "Feature", "properties": { "y": 40.4288145, "x": -80.0174061, "osmid": 2632585649, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0174061, 40.4288145 ] } }, { "type": "Feature", "properties": { "y": 40.4471611, "x": -79.9900279, "osmid": 6219403701, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9900279, 40.4471611 ] } }, { "type": "Feature", "properties": { "y": 40.4471237, "x": -79.9899876, "osmid": 6219403702, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9899876, 40.4471237 ] } }, { "type": "Feature", "properties": { "y": 40.4471483, "x": -79.990048, "osmid": 6219403703, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.990048, 40.4471483 ] } }, -{ "type": "Feature", "properties": { "y": 40.4295399, "x": -80.0172211, "osmid": 2632585651, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0172211, 40.4295399 ] } }, -{ "type": "Feature", "properties": { "y": 40.42909, "x": -80.0173287, "osmid": 2632585655, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0173287, 40.42909 ] } }, -{ "type": "Feature", "properties": { "y": 40.4295671, "x": -80.0173741, "osmid": 2632585654, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0173741, 40.4295671 ] } }, { "type": "Feature", "properties": { "y": 40.4471291, "x": -79.9899934, "osmid": 6219403707, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9899934, 40.4471291 ] } }, -{ "type": "Feature", "properties": { "y": 40.4291817, "x": -80.0173068, "osmid": 2632585663, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0173068, 40.4291817 ] } }, { "type": "Feature", "properties": { "y": 40.4431299, "x": -79.9971967, "osmid": 5312909762, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9971967, 40.4431299 ] } }, { "type": "Feature", "properties": { "y": 40.4465569, "x": -79.9910016, "osmid": 6219403715, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9910016, 40.4465569 ] } }, { "type": "Feature", "properties": { "y": 40.4432474, "x": -79.996751, "osmid": 5312909764, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.996751, 40.4432474 ] } }, @@ -1643,10 +1579,10 @@ { "type": "Feature", "properties": { "y": 40.4450814, "x": -79.9989768, "osmid": 5312909770, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9989768, 40.4450814 ] } }, { "type": "Feature", "properties": { "y": 40.4319428, "x": -80.0008852, "osmid": 7808291269, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0008852, 40.4319428 ] } }, { "type": "Feature", "properties": { "y": 40.4319922, "x": -80.0009908, "osmid": 7808291270, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0009908, 40.4319922 ] } }, -{ "type": "Feature", "properties": { "y": 40.4322543, "x": -80.0006687, "osmid": 7808291272, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0006687, 40.4322543 ] } }, +{ "type": "Feature", "properties": { "y": 40.4465433, "x": -79.9910228, "osmid": 6219403716, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9910228, 40.4465433 ] } }, { "type": "Feature", "properties": { "y": 40.4429787, "x": -80.0012104, "osmid": 689934798, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0012104, 40.4429787 ] } }, +{ "type": "Feature", "properties": { "y": 40.4322543, "x": -80.0006687, "osmid": 7808291272, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0006687, 40.4322543 ] } }, { "type": "Feature", "properties": { "y": 40.4322165, "x": -80.0005757, "osmid": 7808291274, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0005757, 40.4322165 ] } }, -{ "type": "Feature", "properties": { "y": 40.4445642, "x": -79.9771932, "osmid": 105943503, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9771932, 40.4445642 ] } }, { "type": "Feature", "properties": { "y": 40.4465164, "x": -79.9909611, "osmid": 6219403726, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9909611, 40.4465164 ] } }, { "type": "Feature", "properties": { "y": 40.4465219, "x": -79.9909667, "osmid": 6219403730, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9909667, 40.4465219 ] } }, { "type": "Feature", "properties": { "y": 40.4439584, "x": -80.0028279, "osmid": 5312909779, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0028279, 40.4439584 ] } }, @@ -1692,8 +1628,8 @@ { "type": "Feature", "properties": { "y": 40.4459123, "x": -79.9919404, "osmid": 6219403767, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9919404, 40.4459123 ] } }, { "type": "Feature", "properties": { "y": 40.4533214, "x": -79.9561283, "osmid": 1454510584, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9561283, 40.4533214 ] } }, { "type": "Feature", "properties": { "y": 40.4296628, "x": -79.9652969, "osmid": 3495530999, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9652969, 40.4296628 ] } }, -{ "type": "Feature", "properties": { "y": 40.4433563, "x": -79.9450341, "osmid": 3312325117, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9450341, 40.4433563 ] } }, { "type": "Feature", "properties": { "y": 40.4442122, "x": -79.9451708, "osmid": 3312325112, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9451708, 40.4442122 ] } }, +{ "type": "Feature", "properties": { "y": 40.4433563, "x": -79.9450341, "osmid": 3312325117, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9450341, 40.4433563 ] } }, { "type": "Feature", "properties": { "y": 40.4288296, "x": -79.9638596, "osmid": 3495531010, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9638596, 40.4288296 ] } }, { "type": "Feature", "properties": { "y": 40.4453245, "x": -79.9918268, "osmid": 6219403782, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9918268, 40.4453245 ] } }, { "type": "Feature", "properties": { "y": 40.4452789, "x": -79.9919006, "osmid": 6219403783, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9919006, 40.4452789 ] } }, @@ -1741,11 +1677,11 @@ { "type": "Feature", "properties": { "y": 40.4536036, "x": -79.9981964, "osmid": 5716513336, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9981964, 40.4536036 ] } }, { "type": "Feature", "properties": { "y": 40.4554373, "x": -79.9996585, "osmid": 5716513337, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9996585, 40.4554373 ] } }, { "type": "Feature", "properties": { "y": 40.4516879, "x": -80.0011556, "osmid": 5716513338, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0011556, 40.4516879 ] } }, -{ "type": "Feature", "properties": { "y": 40.45273, "x": -80.0010877, "osmid": 5716513339, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010877, 40.45273 ] } }, +{ "type": "Feature", "properties": { "y": 40.4286974, "x": -79.964911, "osmid": 3495531064, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.964911, 40.4286974 ] } }, { "type": "Feature", "properties": { "y": 40.4494909, "x": -80.0008335, "osmid": 5716513340, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0008335, 40.4494909 ] } }, { "type": "Feature", "properties": { "y": 40.4496854, "x": -80.0008984, "osmid": 5716513341, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0008984, 40.4496854 ] } }, { "type": "Feature", "properties": { "y": 40.4528596, "x": -80.0008607, "osmid": 5716513342, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0008607, 40.4528596 ] } }, -{ "type": "Feature", "properties": { "y": 40.4522856, "x": -80.0009421, "osmid": 5716513343, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0009421, 40.4522856 ] } }, +{ "type": "Feature", "properties": { "y": 40.4549842, "x": -79.976862, "osmid": 6080500284, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976862, 40.4549842 ] } }, { "type": "Feature", "properties": { "y": 40.4514851, "x": -80.0009843, "osmid": 5716513344, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0009843, 40.4514851 ] } }, { "type": "Feature", "properties": { "y": 40.4490203, "x": -80.0006514, "osmid": 5716513345, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0006514, 40.4490203 ] } }, { "type": "Feature", "properties": { "y": 40.4489523, "x": -80.0006266, "osmid": 5716513346, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0006266, 40.4489523 ] } }, @@ -1755,9 +1691,9 @@ { "type": "Feature", "properties": { "y": 40.4495147, "x": -80.0010228, "osmid": 5716513350, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010228, 40.4495147 ] } }, { "type": "Feature", "properties": { "y": 40.4496572, "x": -80.0010682, "osmid": 5716513349, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010682, 40.4496572 ] } }, { "type": "Feature", "properties": { "y": 40.4534726, "x": -80.0006941, "osmid": 5716513351, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0006941, 40.4534726 ] } }, -{ "type": "Feature", "properties": { "y": 40.4532901, "x": -80.0018062, "osmid": 5716513352, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018062, 40.4532901 ] } }, -{ "type": "Feature", "properties": { "y": 40.4532156, "x": -80.0016568, "osmid": 5716513354, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0016568, 40.4532156 ] } }, { "type": "Feature", "properties": { "y": 40.4533154, "x": -80.0015809, "osmid": 5716513353, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0015809, 40.4533154 ] } }, +{ "type": "Feature", "properties": { "y": 40.4532156, "x": -80.0016568, "osmid": 5716513354, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0016568, 40.4532156 ] } }, +{ "type": "Feature", "properties": { "y": 40.4532901, "x": -80.0018062, "osmid": 5716513352, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018062, 40.4532901 ] } }, { "type": "Feature", "properties": { "y": 40.4529811, "x": -80.0014781, "osmid": 5716513356, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0014781, 40.4529811 ] } }, { "type": "Feature", "properties": { "y": 40.455355, "x": -79.9997321, "osmid": 5716513357, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9997321, 40.455355 ] } }, { "type": "Feature", "properties": { "y": 40.4516458, "x": -80.0010307, "osmid": 5716513358, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010307, 40.4516458 ] } }, @@ -1799,17 +1735,17 @@ { "type": "Feature", "properties": { "y": 40.443223, "x": -79.9534234, "osmid": 6715675243, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9534234, 40.443223 ] } }, { "type": "Feature", "properties": { "y": 40.4294285, "x": -79.9898287, "osmid": 105910905, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9898287, 40.4294285 ] } }, { "type": "Feature", "properties": { "y": 40.4521884, "x": -79.982273, "osmid": 6077289085, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.982273, 40.4521884 ] } }, -{ "type": "Feature", "properties": { "y": 40.4457821, "x": -79.9910715, "osmid": 6219403903, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9910715, 40.4457821 ] } }, +{ "type": "Feature", "properties": { "y": 40.4516836, "x": -79.9830101, "osmid": 6077289087, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9830101, 40.4516836 ] } }, { "type": "Feature", "properties": { "y": 40.4516424, "x": -79.983069, "osmid": 6077289088, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.983069, 40.4516424 ] } }, { "type": "Feature", "properties": { "y": 40.4516485, "x": -79.9831949, "osmid": 6077289089, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9831949, 40.4516485 ] } }, { "type": "Feature", "properties": { "y": 40.4261087, "x": -79.9891449, "osmid": 105681538, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9891449, 40.4261087 ] } }, { "type": "Feature", "properties": { "y": 40.4463247, "x": -80.0134078, "osmid": 4297003651, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0134078, 40.4463247 ] } }, { "type": "Feature", "properties": { "y": 40.4464723, "x": -80.0134579, "osmid": 4297003652, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0134579, 40.4464723 ] } }, { "type": "Feature", "properties": { "y": 40.4517338, "x": -79.9830691, "osmid": 6077289090, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9830691, 40.4517338 ] } }, -{ "type": "Feature", "properties": { "y": 40.4516836, "x": -79.9830101, "osmid": 6077289087, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9830101, 40.4516836 ] } }, -{ "type": "Feature", "properties": { "y": 40.4286787, "x": -79.9897923, "osmid": 105910916, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9897923, 40.4286787 ] } }, +{ "type": "Feature", "properties": { "y": 40.4457821, "x": -79.9910715, "osmid": 6219403903, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9910715, 40.4457821 ] } }, { "type": "Feature", "properties": { "y": 40.4514525, "x": -79.9827183, "osmid": 6077289091, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9827183, 40.4514525 ] } }, { "type": "Feature", "properties": { "y": 40.4511835, "x": -79.9825149, "osmid": 6077289093, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9825149, 40.4511835 ] } }, +{ "type": "Feature", "properties": { "y": 40.4286787, "x": -79.9897923, "osmid": 105910916, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9897923, 40.4286787 ] } }, { "type": "Feature", "properties": { "y": 40.4512276, "x": -79.9824509, "osmid": 6077289092, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9824509, 40.4512276 ] } }, { "type": "Feature", "properties": { "y": 40.4514391, "x": -79.9821365, "osmid": 6077289094, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9821365, 40.4514391 ] } }, { "type": "Feature", "properties": { "y": 40.4544371, "x": -79.9917589, "osmid": 107516556, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9917589, 40.4544371 ] } }, @@ -1849,7 +1785,6 @@ { "type": "Feature", "properties": { "y": 40.4272856, "x": -80.0296082, "osmid": 7439618823, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0296082, 40.4272856 ] } }, { "type": "Feature", "properties": { "y": 40.4310105, "x": -79.9384829, "osmid": 7300780808, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9384829, 40.4310105 ] } }, { "type": "Feature", "properties": { "y": 40.430717, "x": -79.9385795, "osmid": 7300780810, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9385795, 40.430717 ] } }, -{ "type": "Feature", "properties": { "y": 40.4286467, "x": -80.0286913, "osmid": 7439618827, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0286913, 40.4286467 ] } }, { "type": "Feature", "properties": { "y": 40.4307904, "x": -79.9387257, "osmid": 7300780818, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9387257, 40.4307904 ] } }, { "type": "Feature", "properties": { "y": 40.4306654, "x": -79.9380265, "osmid": 7300780820, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9380265, 40.4306654 ] } }, { "type": "Feature", "properties": { "y": 40.4311211, "x": -79.9391307, "osmid": 7300780822, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9391307, 40.4311211 ] } }, @@ -1893,10 +1828,7 @@ { "type": "Feature", "properties": { "y": 40.4569965, "x": -80.008218, "osmid": 5337486197, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008218, 40.4569965 ] } }, { "type": "Feature", "properties": { "y": 40.4427541, "x": -79.9772667, "osmid": 5187736438, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9772667, 40.4427541 ] } }, { "type": "Feature", "properties": { "y": 40.4354019, "x": -79.9950095, "osmid": 4501738359, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9950095, 40.4354019 ] } }, -{ "type": "Feature", "properties": { "y": 40.4446163, "x": -79.993655, "osmid": 6219305848, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.993655, 40.4446163 ] } }, { "type": "Feature", "properties": { "y": 40.435365, "x": -79.9948745, "osmid": 4501738361, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9948745, 40.435365 ] } }, -{ "type": "Feature", "properties": { "y": 40.4445884, "x": -79.9937678, "osmid": 6219305847, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9937678, 40.4445884 ] } }, -{ "type": "Feature", "properties": { "y": 40.4446398, "x": -79.9935597, "osmid": 6219305849, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9935597, 40.4446398 ] } }, { "type": "Feature", "properties": { "y": 40.4317846, "x": -79.9590716, "osmid": 686461820, "highway": "motorway_junction", "ref": "73A" }, "geometry": { "type": "Point", "coordinates": [ -79.9590716, 40.4317846 ] } }, { "type": "Feature", "properties": { "y": 40.4455214, "x": -79.9921787, "osmid": 6219305853, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9921787, 40.4455214 ] } }, { "type": "Feature", "properties": { "y": 40.4359213, "x": -79.999022, "osmid": 5312910206, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.999022, 40.4359213 ] } }, @@ -1906,9 +1838,8 @@ { "type": "Feature", "properties": { "y": 40.4456711, "x": -79.9924363, "osmid": 6219305855, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9924363, 40.4456711 ] } }, { "type": "Feature", "properties": { "y": 40.445763, "x": -79.99229, "osmid": 6219305856, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.99229, 40.445763 ] } }, { "type": "Feature", "properties": { "y": 40.4454902, "x": -79.9922299, "osmid": 6219305858, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9922299, 40.4454902 ] } }, -{ "type": "Feature", "properties": { "y": 40.4260724, "x": -79.9369377, "osmid": 1474073473, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9369377, 40.4260724 ] } }, -{ "type": "Feature", "properties": { "y": 40.4454203, "x": -79.9921534, "osmid": 6219305859, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9921534, 40.4454203 ] } }, { "type": "Feature", "properties": { "y": 40.4452357, "x": -79.991975, "osmid": 6219305860, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.991975, 40.4452357 ] } }, +{ "type": "Feature", "properties": { "y": 40.4260724, "x": -79.9369377, "osmid": 1474073473, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9369377, 40.4260724 ] } }, { "type": "Feature", "properties": { "y": 40.4416955, "x": -80.0027106, "osmid": 689935240, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0027106, 40.4416955 ] } }, { "type": "Feature", "properties": { "y": 40.4360296, "x": -79.9990276, "osmid": 5312910219, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9990276, 40.4360296 ] } }, { "type": "Feature", "properties": { "y": 40.436091, "x": -79.999191, "osmid": 5312910222, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.999191, 40.436091 ] } }, @@ -1933,16 +1864,8 @@ { "type": "Feature", "properties": { "y": 40.4364812, "x": -80.0009271, "osmid": 5312910279, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0009271, 40.4364812 ] } }, { "type": "Feature", "properties": { "y": 40.4455283, "x": -79.999299, "osmid": 1510806470, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.999299, 40.4455283 ] } }, { "type": "Feature", "properties": { "y": 40.4360562, "x": -79.9957422, "osmid": 684692422, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9957422, 40.4360562 ] } }, -{ "type": "Feature", "properties": { "y": 40.4460342, "x": -79.9468471, "osmid": 7011439559, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9468471, 40.4460342 ] } }, { "type": "Feature", "properties": { "y": 40.4584424, "x": -79.9335451, "osmid": 393384907, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9335451, 40.4584424 ] } }, -{ "type": "Feature", "properties": { "y": 40.4462918, "x": -79.9458289, "osmid": 7011439561, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9458289, 40.4462918 ] } }, -{ "type": "Feature", "properties": { "y": 40.446351, "x": -79.9453383, "osmid": 7011439563, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9453383, 40.446351 ] } }, -{ "type": "Feature", "properties": { "y": 40.4461838, "x": -79.946254, "osmid": 7011439569, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.946254, 40.4461838 ] } }, -{ "type": "Feature", "properties": { "y": 40.446239, "x": -79.946037, "osmid": 7011439570, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.946037, 40.446239 ] } }, -{ "type": "Feature", "properties": { "y": 40.4460189, "x": -79.9459409, "osmid": 7011439571, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9459409, 40.4460189 ] } }, { "type": "Feature", "properties": { "y": 40.4565793, "x": -79.9352525, "osmid": 393286612, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9352525, 40.4565793 ] } }, -{ "type": "Feature", "properties": { "y": 40.4462359, "x": -79.9458065, "osmid": 7011439572, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9458065, 40.4462359 ] } }, -{ "type": "Feature", "properties": { "y": 40.4472299, "x": -79.9451129, "osmid": 7011439584, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9451129, 40.4472299 ] } }, { "type": "Feature", "properties": { "y": 40.4311161, "x": -79.962344, "osmid": 7348982759, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.962344, 40.4311161 ] } }, { "type": "Feature", "properties": { "y": 40.451626, "x": -80.0011352, "osmid": 104535021, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0011352, 40.451626 ] } }, { "type": "Feature", "properties": { "y": 40.4358832, "x": -79.9952846, "osmid": 684692463, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9952846, 40.4358832 ] } }, @@ -1991,8 +1914,8 @@ { "type": "Feature", "properties": { "y": 40.4589967, "x": -79.9339049, "osmid": 7013143637, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9339049, 40.4589967 ] } }, { "type": "Feature", "properties": { "y": 40.4444716, "x": -79.9956316, "osmid": 104633434, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9956316, 40.4444716 ] } }, { "type": "Feature", "properties": { "y": 40.4389102, "x": -79.993434, "osmid": 3724219488, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.993434, 40.4389102 ] } }, -{ "type": "Feature", "properties": { "y": 40.4373179, "x": -79.9957446, "osmid": 3724219489, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9957446, 40.4373179 ] } }, { "type": "Feature", "properties": { "y": 40.4440683, "x": -79.9954521, "osmid": 104633441, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9954521, 40.4440683 ] } }, +{ "type": "Feature", "properties": { "y": 40.4373179, "x": -79.9957446, "osmid": 3724219489, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9957446, 40.4373179 ] } }, { "type": "Feature", "properties": { "y": 40.447987, "x": -79.9476798, "osmid": 105026656, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9476798, 40.447987 ] } }, { "type": "Feature", "properties": { "y": 40.4363629, "x": -79.9946184, "osmid": 3724219492, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9946184, 40.4363629 ] } }, { "type": "Feature", "properties": { "y": 40.4489016, "x": -79.946697, "osmid": 105026665, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.946697, 40.4489016 ] } }, @@ -2003,7 +1926,6 @@ { "type": "Feature", "properties": { "y": 40.4364767, "x": -79.9623132, "osmid": 106042479, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9623132, 40.4364767 ] } }, { "type": "Feature", "properties": { "y": 40.4360114, "x": -79.9947037, "osmid": 3724219507, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9947037, 40.4360114 ] } }, { "type": "Feature", "properties": { "y": 40.4363349, "x": -79.9947087, "osmid": 3724219508, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9947087, 40.4363349 ] } }, -{ "type": "Feature", "properties": { "y": 40.4501298, "x": -79.94541, "osmid": 105026676, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.94541, 40.4501298 ] } }, { "type": "Feature", "properties": { "y": 40.4429549, "x": -79.9564159, "osmid": 7804359796, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9564159, 40.4429549 ] } }, { "type": "Feature", "properties": { "y": 40.4428993, "x": -79.9563496, "osmid": 7804359793, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9563496, 40.4428993 ] } }, { "type": "Feature", "properties": { "y": 40.4428194, "x": -79.9564271, "osmid": 7804359794, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9564271, 40.4428194 ] } }, @@ -2032,8 +1954,8 @@ { "type": "Feature", "properties": { "y": 40.4475533, "x": -80.002856, "osmid": 5278897296, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.002856, 40.4475533 ] } }, { "type": "Feature", "properties": { "y": 40.4508867, "x": -79.9430243, "osmid": 105026703, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9430243, 40.4508867 ] } }, { "type": "Feature", "properties": { "y": 40.4538063, "x": -79.9908274, "osmid": 7249171603, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9908274, 40.4538063 ] } }, -{ "type": "Feature", "properties": { "y": 40.4349674, "x": -79.9946242, "osmid": 684692628, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9946242, 40.4349674 ] } }, { "type": "Feature", "properties": { "y": 40.4304424, "x": -80.0139419, "osmid": 3724121235, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0139419, 40.4304424 ] } }, +{ "type": "Feature", "properties": { "y": 40.4349674, "x": -79.9946242, "osmid": 684692628, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9946242, 40.4349674 ] } }, { "type": "Feature", "properties": { "y": 40.4329307, "x": -80.0223549, "osmid": 3724121238, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0223549, 40.4329307 ] } }, { "type": "Feature", "properties": { "y": 40.4329544, "x": -80.0228225, "osmid": 3724121239, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0228225, 40.4329544 ] } }, { "type": "Feature", "properties": { "y": 40.4394872, "x": -80.008461, "osmid": 5312910489, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008461, 40.4394872 ] } }, @@ -2060,12 +1982,12 @@ { "type": "Feature", "properties": { "y": 40.4396893, "x": -80.0085948, "osmid": 3775960267, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085948, 40.4396893 ] } }, { "type": "Feature", "properties": { "y": 40.4538433, "x": -80.0062267, "osmid": 3830224076, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062267, 40.4538433 ] } }, { "type": "Feature", "properties": { "y": 40.4538624, "x": -80.0061186, "osmid": 3830224077, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061186, 40.4538624 ] } }, +{ "type": "Feature", "properties": { "y": 40.4424209, "x": -79.969951, "osmid": 2394461389, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.969951, 40.4424209 ] } }, { "type": "Feature", "properties": { "y": 40.4538869, "x": -80.0059793, "osmid": 3830224078, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0059793, 40.4538869 ] } }, { "type": "Feature", "properties": { "y": 40.4540627, "x": -80.0060249, "osmid": 3830224079, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0060249, 40.4540627 ] } }, -{ "type": "Feature", "properties": { "y": 40.4555837, "x": -80.0055129, "osmid": 3830224080, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0055129, 40.4555837 ] } }, -{ "type": "Feature", "properties": { "y": 40.4424209, "x": -79.969951, "osmid": 2394461389, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.969951, 40.4424209 ] } }, -{ "type": "Feature", "properties": { "y": 40.4401606, "x": -80.0098405, "osmid": 3775960274, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0098405, 40.4401606 ] } }, { "type": "Feature", "properties": { "y": 40.4432332, "x": -79.9705065, "osmid": 2394461388, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9705065, 40.4432332 ] } }, +{ "type": "Feature", "properties": { "y": 40.4401606, "x": -80.0098405, "osmid": 3775960274, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0098405, 40.4401606 ] } }, +{ "type": "Feature", "properties": { "y": 40.4555837, "x": -80.0055129, "osmid": 3830224080, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0055129, 40.4555837 ] } }, { "type": "Feature", "properties": { "y": 40.4527072, "x": -80.001973, "osmid": 3830224084, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001973, 40.4527072 ] } }, { "type": "Feature", "properties": { "y": 40.4523772, "x": -79.9377775, "osmid": 105026764, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9377775, 40.4523772 ] } }, { "type": "Feature", "properties": { "y": 40.4531102, "x": -79.9359648, "osmid": 105026777, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9359648, 40.4531102 ] } }, @@ -2090,25 +2012,21 @@ { "type": "Feature", "properties": { "y": 40.4430648, "x": -80.0008825, "osmid": 3675559200, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0008825, 40.4430648 ] } }, { "type": "Feature", "properties": { "y": 40.4561155, "x": -79.9307909, "osmid": 105026849, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9307909, 40.4561155 ] } }, { "type": "Feature", "properties": { "y": 40.4314188, "x": -79.9548794, "osmid": 104731938, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9548794, 40.4314188 ] } }, -{ "type": "Feature", "properties": { "y": 40.4571576, "x": -79.9362657, "osmid": 393778466, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9362657, 40.4571576 ] } }, { "type": "Feature", "properties": { "y": 40.44314, "x": -80.0006167, "osmid": 3675559204, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0006167, 40.44314 ] } }, { "type": "Feature", "properties": { "y": 40.4580063, "x": -79.9331803, "osmid": 393385253, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9331803, 40.4580063 ] } }, +{ "type": "Feature", "properties": { "y": 40.4399083, "x": -79.9854873, "osmid": 7025399079, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9854873, 40.4399083 ] } }, { "type": "Feature", "properties": { "y": 40.4480889, "x": -79.9919762, "osmid": 4501738794, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9919762, 40.4480889 ] } }, { "type": "Feature", "properties": { "y": 40.4428023, "x": -79.9546732, "osmid": 7816451371, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9546732, 40.4428023 ] } }, { "type": "Feature", "properties": { "y": 40.4493779, "x": -79.9901129, "osmid": 4501738796, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9901129, 40.4493779 ] } }, -{ "type": "Feature", "properties": { "y": 40.4566751, "x": -79.9360163, "osmid": 393778474, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9360163, 40.4566751 ] } }, { "type": "Feature", "properties": { "y": 40.4442687, "x": -79.9430464, "osmid": 1707742510, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9430464, 40.4442687 ] } }, { "type": "Feature", "properties": { "y": 40.4502726, "x": -79.988903, "osmid": 4501738800, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.988903, 40.4502726 ] } }, { "type": "Feature", "properties": { "y": 40.4305437, "x": -79.9673335, "osmid": 4833031147, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9673335, 40.4305437 ] } }, { "type": "Feature", "properties": { "y": 40.4436411, "x": -79.952633, "osmid": 1666946369, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.952633, 40.4436411 ] } }, { "type": "Feature", "properties": { "y": 40.4445973, "x": -79.9533915, "osmid": 1356043594, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9533915, 40.4445973 ] } }, -{ "type": "Feature", "properties": { "y": 40.4574138, "x": -79.9384246, "osmid": 7241897306, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9384246, 40.4574138 ] } }, -{ "type": "Feature", "properties": { "y": 40.4575493, "x": -79.9378567, "osmid": 7241897313, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9378567, 40.4575493 ] } }, { "type": "Feature", "properties": { "y": 40.4262887, "x": -79.9385533, "osmid": 455742818, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9385533, 40.4262887 ] } }, { "type": "Feature", "properties": { "y": 40.4559832, "x": -80.0088223, "osmid": 5337650543, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0088223, 40.4559832 ] } }, { "type": "Feature", "properties": { "y": 40.4423564, "x": -80.0073611, "osmid": 5812131191, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0073611, 40.4423564 ] } }, { "type": "Feature", "properties": { "y": 40.4557178, "x": -80.0087343, "osmid": 5337650576, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0087343, 40.4557178 ] } }, -{ "type": "Feature", "properties": { "y": 40.4268085, "x": -80.0173405, "osmid": 1364039057, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0173405, 40.4268085 ] } }, { "type": "Feature", "properties": { "y": 40.4343581, "x": -80.0318608, "osmid": 7129634196, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0318608, 40.4343581 ] } }, { "type": "Feature", "properties": { "y": 40.434166, "x": -80.0313702, "osmid": 7129634197, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0313702, 40.434166 ] } }, { "type": "Feature", "properties": { "y": 40.4395532, "x": -80.0101081, "osmid": 5312910743, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0101081, 40.4395532 ] } }, @@ -2166,8 +2084,8 @@ { "type": "Feature", "properties": { "y": 40.4545481, "x": -80.0139117, "osmid": 5366126223, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0139117, 40.4545481 ] } }, { "type": "Feature", "properties": { "y": 40.4544354, "x": -80.0142547, "osmid": 5366126227, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0142547, 40.4544354 ] } }, { "type": "Feature", "properties": { "y": 40.4542782, "x": -80.0145095, "osmid": 5366126230, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0145095, 40.4542782 ] } }, -{ "type": "Feature", "properties": { "y": 40.4542807, "x": -80.0144907, "osmid": 5366126231, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0144907, 40.4542807 ] } }, { "type": "Feature", "properties": { "y": 40.4455821, "x": -80.0198936, "osmid": 2352486039, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0198936, 40.4455821 ] } }, +{ "type": "Feature", "properties": { "y": 40.4542807, "x": -80.0144907, "osmid": 5366126231, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0144907, 40.4542807 ] } }, { "type": "Feature", "properties": { "y": 40.4557547, "x": -79.976058, "osmid": 6080501401, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976058, 40.4557547 ] } }, { "type": "Feature", "properties": { "y": 40.4397161, "x": -80.0219479, "osmid": 106108570, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0219479, 40.4397161 ] } }, { "type": "Feature", "properties": { "y": 40.4556398, "x": -79.9759095, "osmid": 6080501402, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9759095, 40.4556398 ] } }, @@ -2222,7 +2140,6 @@ { "type": "Feature", "properties": { "y": 40.4387066, "x": -79.9973115, "osmid": 4599846712, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9973115, 40.4387066 ] } }, { "type": "Feature", "properties": { "y": 40.4380509, "x": -79.997757, "osmid": 4599846713, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.997757, 40.4380509 ] } }, { "type": "Feature", "properties": { "y": 40.4464547, "x": -79.9357502, "osmid": 302978872, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9357502, 40.4464547 ] } }, -{ "type": "Feature", "properties": { "y": 40.4292772, "x": -80.0180883, "osmid": 2632128317, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0180883, 40.4292772 ] } }, { "type": "Feature", "properties": { "y": 40.4253774, "x": -79.9448605, "osmid": 3218380608, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9448605, 40.4253774 ] } }, { "type": "Feature", "properties": { "y": 40.4370774, "x": -79.9983694, "osmid": 4599846721, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9983694, 40.4370774 ] } }, { "type": "Feature", "properties": { "y": 40.4285135, "x": -79.976245, "osmid": 105813827, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976245, 40.4285135 ] } }, @@ -2231,10 +2148,8 @@ { "type": "Feature", "properties": { "y": 40.4497334, "x": -79.9846136, "osmid": 6076602188, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9846136, 40.4497334 ] } }, { "type": "Feature", "properties": { "y": 40.4275893, "x": -79.9763396, "osmid": 105813837, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9763396, 40.4275893 ] } }, { "type": "Feature", "properties": { "y": 40.4298109, "x": -79.9578312, "osmid": 3218380626, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9578312, 40.4298109 ] } }, -{ "type": "Feature", "properties": { "y": 40.4289207, "x": -80.0182187, "osmid": 2632128338, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0182187, 40.4289207 ] } }, { "type": "Feature", "properties": { "y": 40.4296165, "x": -79.9577849, "osmid": 3218380628, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9577849, 40.4296165 ] } }, { "type": "Feature", "properties": { "y": 40.4299225, "x": -79.9365407, "osmid": 7300290390, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9365407, 40.4299225 ] } }, -{ "type": "Feature", "properties": { "y": 40.4288134, "x": -80.0179892, "osmid": 2632128343, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0179892, 40.4288134 ] } }, { "type": "Feature", "properties": { "y": 40.4292564, "x": -79.9592167, "osmid": 3218380632, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9592167, 40.4292564 ] } }, { "type": "Feature", "properties": { "y": 40.454991, "x": -80.001651, "osmid": 105781082, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001651, 40.454991 ] } }, { "type": "Feature", "properties": { "y": 40.4547755, "x": -79.9354722, "osmid": 104699739, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9354722, 40.4547755 ] } }, @@ -2243,15 +2158,11 @@ { "type": "Feature", "properties": { "y": 40.4299292, "x": -79.9580617, "osmid": 3218380639, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9580617, 40.4299292 ] } }, { "type": "Feature", "properties": { "y": 40.4298364, "x": -79.9583863, "osmid": 3218380638, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9583863, 40.4298364 ] } }, { "type": "Feature", "properties": { "y": 40.4306289, "x": -79.9377423, "osmid": 7300290398, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9377423, 40.4306289 ] } }, -{ "type": "Feature", "properties": { "y": 40.4282176, "x": -80.0181302, "osmid": 2632128354, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0181302, 40.4282176 ] } }, { "type": "Feature", "properties": { "y": 40.4437795, "x": -79.9533195, "osmid": 1356044125, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9533195, 40.4437795 ] } }, { "type": "Feature", "properties": { "y": 40.4436565, "x": -79.9534802, "osmid": 1356044131, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9534802, 40.4436565 ] } }, -{ "type": "Feature", "properties": { "y": 40.4281513, "x": -80.0180356, "osmid": 2632128358, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0180356, 40.4281513 ] } }, { "type": "Feature", "properties": { "y": 40.4542601, "x": -79.9364631, "osmid": 104699751, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9364631, 40.4542601 ] } }, { "type": "Feature", "properties": { "y": 40.4448799, "x": -79.9939955, "osmid": 5175252840, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9939955, 40.4448799 ] } }, { "type": "Feature", "properties": { "y": 40.4556096, "x": -79.9983893, "osmid": 105781097, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9983893, 40.4556096 ] } }, -{ "type": "Feature", "properties": { "y": 40.4296993, "x": -80.016852, "osmid": 2632128360, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.016852, 40.4296993 ] } }, -{ "type": "Feature", "properties": { "y": 40.4294924, "x": -80.0170424, "osmid": 2632128361, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0170424, 40.4294924 ] } }, { "type": "Feature", "properties": { "y": 40.4329606, "x": -79.9585296, "osmid": 3704985452, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9585296, 40.4329606 ] } }, { "type": "Feature", "properties": { "y": 40.4328911, "x": -79.9585296, "osmid": 3704985453, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9585296, 40.4328911 ] } }, { "type": "Feature", "properties": { "y": 40.4317758, "x": -79.9588066, "osmid": 3704985454, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9588066, 40.4317758 ] } }, @@ -2262,10 +2173,9 @@ { "type": "Feature", "properties": { "y": 40.4540457, "x": -79.9371666, "osmid": 104699760, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9371666, 40.4540457 ] } }, { "type": "Feature", "properties": { "y": 40.444913, "x": -79.993312, "osmid": 5175252852, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.993312, 40.444913 ] } }, { "type": "Feature", "properties": { "y": 40.425012, "x": -79.9985627, "osmid": 104535925, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9985627, 40.425012 ] } }, -{ "type": "Feature", "properties": { "y": 40.4287292, "x": -80.0175506, "osmid": 2632128374, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0175506, 40.4287292 ] } }, +{ "type": "Feature", "properties": { "y": 40.4444714, "x": -79.9419585, "osmid": 104383352, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9419585, 40.4444714 ] } }, { "type": "Feature", "properties": { "y": 40.4562412, "x": -79.9949391, "osmid": 105781111, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9949391, 40.4562412 ] } }, { "type": "Feature", "properties": { "y": 40.4452576, "x": -79.9932322, "osmid": 5175252856, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9932322, 40.4452576 ] } }, -{ "type": "Feature", "properties": { "y": 40.4444714, "x": -79.9419585, "osmid": 104383352, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9419585, 40.4444714 ] } }, { "type": "Feature", "properties": { "y": 40.4452001, "x": -79.993326, "osmid": 5175252860, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.993326, 40.4452001 ] } }, { "type": "Feature", "properties": { "y": 40.4567327, "x": -79.9925364, "osmid": 105781118, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9925364, 40.4567327 ] } }, { "type": "Feature", "properties": { "y": 40.4452248, "x": -79.9918378, "osmid": 5175252868, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9918378, 40.4452248 ] } }, @@ -2273,11 +2183,7 @@ { "type": "Feature", "properties": { "y": 40.4458359, "x": -79.9924476, "osmid": 5175252870, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9924476, 40.4458359 ] } }, { "type": "Feature", "properties": { "y": 40.4458149, "x": -79.9923474, "osmid": 5175252871, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9923474, 40.4458149 ] } }, { "type": "Feature", "properties": { "y": 40.4457426, "x": -79.9924713, "osmid": 5175252872, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9924713, 40.4457426 ] } }, -{ "type": "Feature", "properties": { "y": 40.4287697, "x": -80.0177845, "osmid": 2632128388, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0177845, 40.4287697 ] } }, -{ "type": "Feature", "properties": { "y": 40.4285958, "x": -80.0176867, "osmid": 2632128395, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0176867, 40.4285958 ] } }, { "type": "Feature", "properties": { "y": 40.4488084, "x": -79.992639, "osmid": 6181787534, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.992639, 40.4488084 ] } }, -{ "type": "Feature", "properties": { "y": 40.4285324, "x": -80.0183976, "osmid": 2632128399, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0183976, 40.4285324 ] } }, -{ "type": "Feature", "properties": { "y": 40.4284473, "x": -80.0180795, "osmid": 2632128398, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0180795, 40.4284473 ] } }, { "type": "Feature", "properties": { "y": 40.4434762, "x": -79.9542235, "osmid": 7804360612, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9542235, 40.4434762 ] } }, { "type": "Feature", "properties": { "y": 40.4430899, "x": -79.9329246, "osmid": 105060263, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9329246, 40.4430899 ] } }, { "type": "Feature", "properties": { "y": 40.4416786, "x": -79.9321257, "osmid": 105060275, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9321257, 40.4416786 ] } }, @@ -2393,7 +2299,6 @@ { "type": "Feature", "properties": { "y": 40.4523824, "x": -80.0166608, "osmid": 104208716, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0166608, 40.4523824 ] } }, { "type": "Feature", "properties": { "y": 40.439864, "x": -79.969483, "osmid": 2394462556, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.969483, 40.439864 ] } }, { "type": "Feature", "properties": { "y": 40.4394047, "x": -79.9702087, "osmid": 2394462557, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9702087, 40.4394047 ] } }, -{ "type": "Feature", "properties": { "y": 40.4299989, "x": -80.0204797, "osmid": 105748836, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0204797, 40.4299989 ] } }, { "type": "Feature", "properties": { "y": 40.4380448, "x": -79.9952827, "osmid": 684792169, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9952827, 40.4380448 ] } }, { "type": "Feature", "properties": { "y": 40.4397231, "x": -79.9704977, "osmid": 107649398, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9704977, 40.4397231 ] } }, { "type": "Feature", "properties": { "y": 40.4394244, "x": -79.9885956, "osmid": 4626749818, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885956, 40.4394244 ] } }, @@ -2423,8 +2328,8 @@ { "type": "Feature", "properties": { "y": 40.4437816, "x": -79.9937185, "osmid": 4493613518, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9937185, 40.4437816 ] } }, { "type": "Feature", "properties": { "y": 40.4330237, "x": -80.0196367, "osmid": 105748942, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0196367, 40.4330237 ] } }, { "type": "Feature", "properties": { "y": 40.4598926, "x": -79.9419048, "osmid": 104831442, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9419048, 40.4598926 ] } }, -{ "type": "Feature", "properties": { "y": 40.4390826, "x": -79.9358525, "osmid": 924785113, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9358525, 40.4390826 ] } }, { "type": "Feature", "properties": { "y": 40.4598477, "x": -79.941299, "osmid": 104831449, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.941299, 40.4598477 ] } }, +{ "type": "Feature", "properties": { "y": 40.4390826, "x": -79.9358525, "osmid": 924785113, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9358525, 40.4390826 ] } }, { "type": "Feature", "properties": { "y": 40.4390573, "x": -79.9360997, "osmid": 924785116, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9360997, 40.4390573 ] } }, { "type": "Feature", "properties": { "y": 40.439047, "x": -79.9359238, "osmid": 924785117, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9359238, 40.439047 ] } }, { "type": "Feature", "properties": { "y": 40.4532054, "x": -79.9925873, "osmid": 6206986718, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9925873, 40.4532054 ] } }, @@ -2559,8 +2464,8 @@ { "type": "Feature", "properties": { "y": 40.4459514, "x": -79.9964802, "osmid": 3689978661, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9964802, 40.4459514 ] } }, { "type": "Feature", "properties": { "y": 40.4474948, "x": -79.9942173, "osmid": 6181788453, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9942173, 40.4474948 ] } }, { "type": "Feature", "properties": { "y": 40.4471483, "x": -79.9937326, "osmid": 6181788456, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9937326, 40.4471483 ] } }, -{ "type": "Feature", "properties": { "y": 40.4475068, "x": -79.9934875, "osmid": 6181788457, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9934875, 40.4475068 ] } }, { "type": "Feature", "properties": { "y": 40.4448762, "x": -80.0008384, "osmid": 6285564713, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0008384, 40.4448762 ] } }, +{ "type": "Feature", "properties": { "y": 40.4475068, "x": -79.9934875, "osmid": 6181788457, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9934875, 40.4475068 ] } }, { "type": "Feature", "properties": { "y": 40.4453353, "x": -79.9992155, "osmid": 6285564715, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9992155, 40.4453353 ] } }, { "type": "Feature", "properties": { "y": 40.4481679, "x": -79.9995117, "osmid": 5271231276, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9995117, 40.4481679 ] } }, { "type": "Feature", "properties": { "y": 40.4452873, "x": -79.9991945, "osmid": 6285564717, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9991945, 40.4452873 ] } }, @@ -2591,7 +2496,6 @@ { "type": "Feature", "properties": { "y": 40.4517982, "x": -79.9987196, "osmid": 5201271650, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9987196, 40.4517982 ] } }, { "type": "Feature", "properties": { "y": 40.452071, "x": -79.9987884, "osmid": 5201271651, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9987884, 40.452071 ] } }, { "type": "Feature", "properties": { "y": 40.4518723, "x": -79.9986393, "osmid": 5201271652, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9986393, 40.4518723 ] } }, -{ "type": "Feature", "properties": { "y": 40.4499254, "x": -79.9428441, "osmid": 1839216723, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9428441, 40.4499254 ] } }, { "type": "Feature", "properties": { "y": 40.4496828, "x": -80.0183425, "osmid": 104504169, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0183425, 40.4496828 ] } }, { "type": "Feature", "properties": { "y": 40.4565145, "x": -79.9336141, "osmid": 393223018, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9336141, 40.4565145 ] } }, { "type": "Feature", "properties": { "y": 40.4470495, "x": -79.9952525, "osmid": 6181788525, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9952525, 40.4470495 ] } }, @@ -2686,10 +2590,10 @@ { "type": "Feature", "properties": { "y": 40.4436429, "x": -80.0003527, "osmid": 6375119967, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0003527, 40.4436429 ] } }, { "type": "Feature", "properties": { "y": 40.4436957, "x": -79.9935463, "osmid": 6221241442, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9935463, 40.4436957 ] } }, { "type": "Feature", "properties": { "y": 40.439083, "x": -79.988695, "osmid": 104635492, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.988695, 40.439083 ] } }, +{ "type": "Feature", "properties": { "y": 40.4298365, "x": -80.0166936, "osmid": 104504426, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0166936, 40.4298365 ] } }, { "type": "Feature", "properties": { "y": 40.4389798, "x": -79.98642, "osmid": 104635498, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.98642, 40.4389798 ] } }, { "type": "Feature", "properties": { "y": 40.4433871, "x": -80.0068228, "osmid": 271195243, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0068228, 40.4433871 ] } }, { "type": "Feature", "properties": { "y": 40.4430485, "x": -80.0083166, "osmid": 271195244, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083166, 40.4430485 ] } }, -{ "type": "Feature", "properties": { "y": 40.4298365, "x": -80.0166936, "osmid": 104504426, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0166936, 40.4298365 ] } }, { "type": "Feature", "properties": { "y": 40.4580641, "x": -79.9409101, "osmid": 107519085, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9409101, 40.4580641 ] } }, { "type": "Feature", "properties": { "y": 40.4298113, "x": -80.0179314, "osmid": 104504431, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0179314, 40.4298113 ] } }, { "type": "Feature", "properties": { "y": 40.4434057, "x": -80.0025628, "osmid": 5455256689, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025628, 40.4434057 ] } }, @@ -2724,18 +2628,18 @@ { "type": "Feature", "properties": { "y": 40.4502524, "x": -80.0056707, "osmid": 5247081637, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0056707, 40.4502524 ] } }, { "type": "Feature", "properties": { "y": 40.4501788, "x": -80.005647, "osmid": 5247081638, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005647, 40.4501788 ] } }, { "type": "Feature", "properties": { "y": 40.4502985, "x": -80.0057183, "osmid": 5247081639, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057183, 40.4502985 ] } }, +{ "type": "Feature", "properties": { "y": 40.4510497, "x": -80.0111555, "osmid": 3115687079, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0111555, 40.4510497 ] } }, { "type": "Feature", "properties": { "y": 40.4574341, "x": -80.028987, "osmid": 104537256, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.028987, 40.4574341 ] } }, -{ "type": "Feature", "properties": { "y": 40.4501729, "x": -80.0056779, "osmid": 5247081641, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0056779, 40.4501729 ] } }, { "type": "Feature", "properties": { "y": 40.4508559, "x": -80.0120192, "osmid": 3115687081, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0120192, 40.4508559 ] } }, +{ "type": "Feature", "properties": { "y": 40.4501729, "x": -80.0056779, "osmid": 5247081641, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0056779, 40.4501729 ] } }, { "type": "Feature", "properties": { "y": 40.4502467, "x": -80.0057015, "osmid": 5247081640, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057015, 40.4502467 ] } }, { "type": "Feature", "properties": { "y": 40.4501613, "x": -80.005738, "osmid": 5247081644, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005738, 40.4501613 ] } }, -{ "type": "Feature", "properties": { "y": 40.4510497, "x": -80.0111555, "osmid": 3115687079, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0111555, 40.4510497 ] } }, { "type": "Feature", "properties": { "y": 40.4502289, "x": -80.005798, "osmid": 5247081646, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005798, 40.4502289 ] } }, -{ "type": "Feature", "properties": { "y": 40.4501538, "x": -80.0057766, "osmid": 5247081647, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057766, 40.4501538 ] } }, { "type": "Feature", "properties": { "y": 40.4504467, "x": -80.013173, "osmid": 3115687087, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.013173, 40.4504467 ] } }, +{ "type": "Feature", "properties": { "y": 40.4501538, "x": -80.0057766, "osmid": 5247081647, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057766, 40.4501538 ] } }, { "type": "Feature", "properties": { "y": 40.4504277, "x": -80.0123175, "osmid": 3115687089, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0123175, 40.4504277 ] } }, -{ "type": "Feature", "properties": { "y": 40.4502357, "x": -80.0057611, "osmid": 5247081643, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057611, 40.4502357 ] } }, { "type": "Feature", "properties": { "y": 40.4502801, "x": -80.0130309, "osmid": 3115687090, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0130309, 40.4502801 ] } }, +{ "type": "Feature", "properties": { "y": 40.4502357, "x": -80.0057611, "osmid": 5247081643, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057611, 40.4502357 ] } }, { "type": "Feature", "properties": { "y": 40.4502829, "x": -80.0058136, "osmid": 5247081645, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0058136, 40.4502829 ] } }, { "type": "Feature", "properties": { "y": 40.4494779, "x": -79.9333784, "osmid": 105796916, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9333784, 40.4494779 ] } }, { "type": "Feature", "properties": { "y": 40.4503138, "x": -80.0070066, "osmid": 5247081654, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0070066, 40.4503138 ] } }, @@ -2776,9 +2680,10 @@ { "type": "Feature", "properties": { "y": 40.4364576, "x": -79.9638445, "osmid": 6789537004, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9638445, 40.4364576 ] } }, { "type": "Feature", "properties": { "y": 40.4326886, "x": -80.0125836, "osmid": 104537319, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0125836, 40.4326886 ] } }, { "type": "Feature", "properties": { "y": 40.4366124, "x": -79.9709675, "osmid": 6789537005, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9709675, 40.4366124 ] } }, -{ "type": "Feature", "properties": { "y": 40.4346053, "x": -79.9305881, "osmid": 105749738, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9305881, 40.4346053 ] } }, +{ "type": "Feature", "properties": { "y": 40.43099, "x": -79.9966958, "osmid": 3500317931, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9966958, 40.43099 ] } }, { "type": "Feature", "properties": { "y": 40.4357587, "x": -80.0075804, "osmid": 3500317936, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0075804, 40.4357587 ] } }, { "type": "Feature", "properties": { "y": 40.4315905, "x": -80.0129473, "osmid": 104537328, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0129473, 40.4315905 ] } }, +{ "type": "Feature", "properties": { "y": 40.4346053, "x": -79.9305881, "osmid": 105749738, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9305881, 40.4346053 ] } }, { "type": "Feature", "properties": { "y": 40.4372708, "x": -79.9744948, "osmid": 6789537017, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9744948, 40.4372708 ] } }, { "type": "Feature", "properties": { "y": 40.4487571, "x": -80.0038241, "osmid": 5269232891, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0038241, 40.4487571 ] } }, { "type": "Feature", "properties": { "y": 40.437144, "x": -79.9745022, "osmid": 6789537020, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9745022, 40.437144 ] } }, @@ -2797,7 +2702,6 @@ { "type": "Feature", "properties": { "y": 40.4485504, "x": -80.0027787, "osmid": 5269232918, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0027787, 40.4485504 ] } }, { "type": "Feature", "properties": { "y": 40.4420005, "x": -80.0213548, "osmid": 6013426967, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0213548, 40.4420005 ] } }, { "type": "Feature", "properties": { "y": 40.4420248, "x": -80.0214258, "osmid": 6013426968, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0214258, 40.4420248 ] } }, -{ "type": "Feature", "properties": { "y": 40.4463656, "x": -79.931969, "osmid": 7491624216, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.931969, 40.4463656 ] } }, { "type": "Feature", "properties": { "y": 40.4417738, "x": -80.0215325, "osmid": 6013426970, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0215325, 40.4417738 ] } }, { "type": "Feature", "properties": { "y": 40.4539284, "x": -79.9611996, "osmid": 104668457, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9611996, 40.4539284 ] } }, { "type": "Feature", "properties": { "y": 40.4441394, "x": -79.9442953, "osmid": 1726848298, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9442953, 40.4441394 ] } }, @@ -2865,7 +2769,6 @@ { "type": "Feature", "properties": { "y": 40.4581981, "x": -80.0020795, "osmid": 5213003267, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0020795, 40.4581981 ] } }, { "type": "Feature", "properties": { "y": 40.4313323, "x": -79.9975639, "osmid": 3786972677, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9975639, 40.4313323 ] } }, { "type": "Feature", "properties": { "y": 40.431247, "x": -79.9964999, "osmid": 3786972679, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9964999, 40.431247 ] } }, -{ "type": "Feature", "properties": { "y": 40.4314527, "x": -79.9963648, "osmid": 3786972681, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9963648, 40.4314527 ] } }, { "type": "Feature", "properties": { "y": 40.4303534, "x": -80.0007064, "osmid": 3786972691, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0007064, 40.4303534 ] } }, { "type": "Feature", "properties": { "y": 40.4302588, "x": -80.0012086, "osmid": 3786972697, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0012086, 40.4302588 ] } }, { "type": "Feature", "properties": { "y": 40.4301341, "x": -79.9991196, "osmid": 3786972698, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9991196, 40.4301341 ] } }, @@ -2887,12 +2790,8 @@ { "type": "Feature", "properties": { "y": 40.4445896, "x": -79.9923896, "osmid": 6221274695, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9923896, 40.4445896 ] } }, { "type": "Feature", "properties": { "y": 40.4560965, "x": -80.0020131, "osmid": 5207596616, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0020131, 40.4560965 ] } }, { "type": "Feature", "properties": { "y": 40.4561911, "x": -80.00149, "osmid": 5207596617, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.00149, 40.4561911 ] } }, -{ "type": "Feature", "properties": { "y": 40.4383049, "x": -80.0207666, "osmid": 7011343946, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0207666, 40.4383049 ] } }, { "type": "Feature", "properties": { "y": 40.4442342, "x": -79.9929535, "osmid": 6221274697, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9929535, 40.4442342 ] } }, { "type": "Feature", "properties": { "y": 40.4446874, "x": -79.9922297, "osmid": 6221274696, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9922297, 40.4446874 ] } }, -{ "type": "Feature", "properties": { "y": 40.4382914, "x": -80.0206774, "osmid": 7011343949, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0206774, 40.4382914 ] } }, -{ "type": "Feature", "properties": { "y": 40.438276, "x": -80.020586, "osmid": 7011343952, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.020586, 40.438276 ] } }, -{ "type": "Feature", "properties": { "y": 40.4383491, "x": -80.0210856, "osmid": 7011343953, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0210856, 40.4383491 ] } }, { "type": "Feature", "properties": { "y": 40.4550291, "x": -79.9527117, "osmid": 7116136018, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9527117, 40.4550291 ] } }, { "type": "Feature", "properties": { "y": 40.4553476, "x": -79.9519593, "osmid": 7116136019, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9519593, 40.4553476 ] } }, { "type": "Feature", "properties": { "y": 40.4560703, "x": -79.9487505, "osmid": 7116136020, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9487505, 40.4560703 ] } }, @@ -2925,23 +2824,19 @@ { "type": "Feature", "properties": { "y": 40.4466521, "x": -80.011542, "osmid": 5391523498, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.011542, 40.4466521 ] } }, { "type": "Feature", "properties": { "y": 40.4466088, "x": -80.0118151, "osmid": 5391523499, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0118151, 40.4466088 ] } }, { "type": "Feature", "properties": { "y": 40.4468311, "x": -80.0103965, "osmid": 5391523500, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0103965, 40.4468311 ] } }, -{ "type": "Feature", "properties": { "y": 40.4508887, "x": -79.9529926, "osmid": 1823547051, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9529926, 40.4508887 ] } }, +{ "type": "Feature", "properties": { "y": 40.4462188, "x": -79.9505191, "osmid": 104930984, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9505191, 40.4462188 ] } }, { "type": "Feature", "properties": { "y": 40.4468253, "x": -80.0115875, "osmid": 5391523502, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0115875, 40.4468253 ] } }, { "type": "Feature", "properties": { "y": 40.4467835, "x": -80.0118644, "osmid": 5391523503, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0118644, 40.4467835 ] } }, -{ "type": "Feature", "properties": { "y": 40.4506905, "x": -79.9528701, "osmid": 1823547050, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9528701, 40.4506905 ] } }, -{ "type": "Feature", "properties": { "y": 40.4462188, "x": -79.9505191, "osmid": 104930984, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9505191, 40.4462188 ] } }, -{ "type": "Feature", "properties": { "y": 40.4289064, "x": -79.9993366, "osmid": 517873330, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9993366, 40.4289064 ] } }, { "type": "Feature", "properties": { "y": 40.4435857, "x": -79.9523708, "osmid": 5716549291, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9523708, 40.4435857 ] } }, +{ "type": "Feature", "properties": { "y": 40.4289064, "x": -79.9993366, "osmid": 517873330, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9993366, 40.4289064 ] } }, { "type": "Feature", "properties": { "y": 40.4463571, "x": -79.9489127, "osmid": 104930999, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9489127, 40.4463571 ] } }, { "type": "Feature", "properties": { "y": 40.4463495, "x": -80.0118761, "osmid": 5391523512, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0118761, 40.4463495 ] } }, { "type": "Feature", "properties": { "y": 40.4464194, "x": -80.0118989, "osmid": 5391523514, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0118989, 40.4464194 ] } }, { "type": "Feature", "properties": { "y": 40.4465073, "x": -79.9470489, "osmid": 104931010, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9470489, 40.4465073 ] } }, -{ "type": "Feature", "properties": { "y": 40.4495927, "x": -79.9446442, "osmid": 7116103363, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9446442, 40.4495927 ] } }, { "type": "Feature", "properties": { "y": 40.4466792, "x": -80.010125, "osmid": 5391523529, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.010125, 40.4466792 ] } }, { "type": "Feature", "properties": { "y": 40.4467254, "x": -80.0101435, "osmid": 5391523530, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0101435, 40.4467254 ] } }, -{ "type": "Feature", "properties": { "y": 40.4498607, "x": -79.9439778, "osmid": 7116103371, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9439778, 40.4498607 ] } }, { "type": "Feature", "properties": { "y": 40.4579931, "x": -80.0259479, "osmid": 105979596, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0259479, 40.4579931 ] } }, -{ "type": "Feature", "properties": { "y": 40.4478235, "x": -79.9441935, "osmid": 7116103372, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9441935, 40.4478235 ] } }, +{ "type": "Feature", "properties": { "y": 40.4478148, "x": -79.9444193, "osmid": 7116103373, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9444193, 40.4478148 ] } }, { "type": "Feature", "properties": { "y": 40.4471471, "x": -80.0103742, "osmid": 5391523534, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0103742, 40.4471471 ] } }, { "type": "Feature", "properties": { "y": 40.4477258, "x": -79.9454401, "osmid": 7116103375, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9454401, 40.4477258 ] } }, { "type": "Feature", "properties": { "y": 40.4468746, "x": -80.0119433, "osmid": 5391523536, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0119433, 40.4468746 ] } }, @@ -2979,7 +2874,6 @@ { "type": "Feature", "properties": { "y": 40.440466, "x": -79.9422576, "osmid": 3192430398, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9422576, 40.440466 ] } }, { "type": "Feature", "properties": { "y": 40.4539271, "x": -80.0107627, "osmid": 5335883585, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0107627, 40.4539271 ] } }, { "type": "Feature", "properties": { "y": 40.4404366, "x": -79.9502456, "osmid": 3192430402, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9502456, 40.4404366 ] } }, -{ "type": "Feature", "properties": { "y": 40.4405881, "x": -79.9399056, "osmid": 3192430401, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9399056, 40.4405881 ] } }, { "type": "Feature", "properties": { "y": 40.4408161, "x": -79.9498987, "osmid": 3192430405, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9498987, 40.4408161 ] } }, { "type": "Feature", "properties": { "y": 40.441608, "x": -79.9491985, "osmid": 3192430408, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9491985, 40.441608 ] } }, { "type": "Feature", "properties": { "y": 40.4530524, "x": -80.0026189, "osmid": 2867994449, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0026189, 40.4530524 ] } }, @@ -3043,7 +2937,6 @@ { "type": "Feature", "properties": { "y": 40.441129, "x": -80.0038562, "osmid": 5166276688, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0038562, 40.441129 ] } }, { "type": "Feature", "properties": { "y": 40.4413649, "x": -80.0041685, "osmid": 5166276690, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0041685, 40.4413649 ] } }, { "type": "Feature", "properties": { "y": 40.4414671, "x": -80.0041408, "osmid": 5166276691, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0041408, 40.4414671 ] } }, -{ "type": "Feature", "properties": { "y": 40.4465608, "x": -79.9374519, "osmid": 104472678, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9374519, 40.4465608 ] } }, { "type": "Feature", "properties": { "y": 40.4525733, "x": -79.9811016, "osmid": 6080307319, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9811016, 40.4525733 ] } }, { "type": "Feature", "properties": { "y": 40.4528016, "x": -79.9813805, "osmid": 6080307321, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9813805, 40.4528016 ] } }, { "type": "Feature", "properties": { "y": 40.4533093, "x": -79.9806509, "osmid": 6080307323, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9806509, 40.4533093 ] } }, @@ -3073,10 +2966,10 @@ { "type": "Feature", "properties": { "y": 40.4369682, "x": -79.9795372, "osmid": 105128097, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9795372, 40.4369682 ] } }, { "type": "Feature", "properties": { "y": 40.4563653, "x": -79.9986379, "osmid": 7465279652, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9986379, 40.4563653 ] } }, { "type": "Feature", "properties": { "y": 40.4563969, "x": -79.9987363, "osmid": 7465279653, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9987363, 40.4563969 ] } }, -{ "type": "Feature", "properties": { "y": 40.4365395, "x": -79.9795577, "osmid": 105128102, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9795577, 40.4365395 ] } }, { "type": "Feature", "properties": { "y": 40.4564674, "x": -79.9987588, "osmid": 7465279654, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9987588, 40.4564674 ] } }, -{ "type": "Feature", "properties": { "y": 40.4564738, "x": -79.9987705, "osmid": 7465279656, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9987705, 40.4564738 ] } }, { "type": "Feature", "properties": { "y": 40.4564843, "x": -79.9986773, "osmid": 7465279655, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9986773, 40.4564843 ] } }, +{ "type": "Feature", "properties": { "y": 40.4564738, "x": -79.9987705, "osmid": 7465279656, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9987705, 40.4564738 ] } }, +{ "type": "Feature", "properties": { "y": 40.4365395, "x": -79.9795577, "osmid": 105128102, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9795577, 40.4365395 ] } }, { "type": "Feature", "properties": { "y": 40.4529128, "x": -79.93834, "osmid": 104931497, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.93834, 40.4529128 ] } }, { "type": "Feature", "properties": { "y": 40.4360453, "x": -79.9795931, "osmid": 105128108, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9795931, 40.4360453 ] } }, { "type": "Feature", "properties": { "y": 40.4598531, "x": -79.9749392, "osmid": 104865967, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9749392, 40.4598531 ] } }, @@ -3086,13 +2979,13 @@ { "type": "Feature", "properties": { "y": 40.4548179, "x": -79.9943087, "osmid": 7465279674, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9943087, 40.4548179 ] } }, { "type": "Feature", "properties": { "y": 40.4565295, "x": -79.9383677, "osmid": 393912506, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9383677, 40.4565295 ] } }, { "type": "Feature", "properties": { "y": 40.4548729, "x": -79.9942956, "osmid": 7465279676, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9942956, 40.4548729 ] } }, -{ "type": "Feature", "properties": { "y": 40.4566731, "x": -79.9384449, "osmid": 393912509, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9384449, 40.4566731 ] } }, +{ "type": "Feature", "properties": { "y": 40.4522985, "x": -79.9380125, "osmid": 104931517, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9380125, 40.4522985 ] } }, { "type": "Feature", "properties": { "y": 40.4306349, "x": -80.0212635, "osmid": 107585726, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0212635, 40.4306349 ] } }, { "type": "Feature", "properties": { "y": 40.4567399, "x": -79.9385583, "osmid": 393912511, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9385583, 40.4567399 ] } }, { "type": "Feature", "properties": { "y": 40.4544907, "x": -79.9940578, "osmid": 7465279680, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9940578, 40.4544907 ] } }, { "type": "Feature", "properties": { "y": 40.4549356, "x": -79.9924775, "osmid": 7465279681, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9924775, 40.4549356 ] } }, { "type": "Feature", "properties": { "y": 40.4549365, "x": -79.9923892, "osmid": 7465279682, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9923892, 40.4549365 ] } }, -{ "type": "Feature", "properties": { "y": 40.4522985, "x": -79.9380125, "osmid": 104931517, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9380125, 40.4522985 ] } }, +{ "type": "Feature", "properties": { "y": 40.4566731, "x": -79.9384449, "osmid": 393912509, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9384449, 40.4566731 ] } }, { "type": "Feature", "properties": { "y": 40.4278072, "x": -80.0137627, "osmid": 106012880, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0137627, 40.4278072 ] } }, { "type": "Feature", "properties": { "y": 40.4289857, "x": -79.9989665, "osmid": 1242800341, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9989665, 40.4289857 ] } }, { "type": "Feature", "properties": { "y": 40.4531766, "x": -79.9451129, "osmid": 107487445, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9451129, 40.4531766 ] } }, @@ -3116,7 +3009,6 @@ { "type": "Feature", "properties": { "y": 40.4506857, "x": -80.0082789, "osmid": 5247508748, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0082789, 40.4506857 ] } }, { "type": "Feature", "properties": { "y": 40.4504576, "x": -80.0082058, "osmid": 5247508749, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0082058, 40.4504576 ] } }, { "type": "Feature", "properties": { "y": 40.4504392, "x": -80.0083038, "osmid": 5247508750, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083038, 40.4504392 ] } }, -{ "type": "Feature", "properties": { "y": 40.4548, "x": -79.9413516, "osmid": 566337806, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9413516, 40.4548 ] } }, { "type": "Feature", "properties": { "y": 40.4504124, "x": -80.0079646, "osmid": 5247508755, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0079646, 40.4504124 ] } }, { "type": "Feature", "properties": { "y": 40.4278552, "x": -79.9806296, "osmid": 104866067, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9806296, 40.4278552 ] } }, { "type": "Feature", "properties": { "y": 40.4501125, "x": -80.0079315, "osmid": 5247508760, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0079315, 40.4501125 ] } }, @@ -3215,13 +3107,13 @@ { "type": "Feature", "properties": { "y": 40.4331303, "x": -80.0024641, "osmid": 7805346263, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0024641, 40.4331303 ] } }, { "type": "Feature", "properties": { "y": 40.4430562, "x": -80.0062021, "osmid": 271196633, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062021, 40.4430562 ] } }, { "type": "Feature", "properties": { "y": 40.4321557, "x": -80.0019089, "osmid": 7805346266, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0019089, 40.4321557 ] } }, -{ "type": "Feature", "properties": { "y": 40.4550147, "x": -80.0071354, "osmid": 2867995099, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0071354, 40.4550147 ] } }, -{ "type": "Feature", "properties": { "y": 40.4551985, "x": -80.0075593, "osmid": 2867995100, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0075593, 40.4551985 ] } }, +{ "type": "Feature", "properties": { "y": 40.4308869, "x": -79.9962955, "osmid": 7805346258, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9962955, 40.4308869 ] } }, +{ "type": "Feature", "properties": { "y": 40.4312075, "x": -79.9984937, "osmid": 7805346259, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9984937, 40.4312075 ] } }, { "type": "Feature", "properties": { "y": 40.4313575, "x": -79.9985291, "osmid": 7805346261, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9985291, 40.4313575 ] } }, { "type": "Feature", "properties": { "y": 40.4328687, "x": -80.0019466, "osmid": 7805346270, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0019466, 40.4328687 ] } }, { "type": "Feature", "properties": { "y": 40.4561016, "x": -80.0068382, "osmid": 5335982559, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0068382, 40.4561016 ] } }, { "type": "Feature", "properties": { "y": 40.4491242, "x": -80.0024451, "osmid": 5269234144, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0024451, 40.4491242 ] } }, -{ "type": "Feature", "properties": { "y": 40.4551089, "x": -80.0066377, "osmid": 2867995103, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0066377, 40.4551089 ] } }, +{ "type": "Feature", "properties": { "y": 40.4520458, "x": -80.0031711, "osmid": 2867995105, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0031711, 40.4520458 ] } }, { "type": "Feature", "properties": { "y": 40.449071, "x": -80.0027743, "osmid": 5269234146, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0027743, 40.449071 ] } }, { "type": "Feature", "properties": { "y": 40.449113, "x": -80.0025179, "osmid": 5269234147, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025179, 40.449113 ] } }, { "type": "Feature", "properties": { "y": 40.4490824, "x": -80.002133, "osmid": 5269234148, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.002133, 40.4490824 ] } }, @@ -3229,14 +3121,13 @@ { "type": "Feature", "properties": { "y": 40.4491987, "x": -80.0021679, "osmid": 5269234150, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0021679, 40.4491987 ] } }, { "type": "Feature", "properties": { "y": 40.4310945, "x": -80.0004592, "osmid": 7805346276, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0004592, 40.4310945 ] } }, { "type": "Feature", "properties": { "y": 40.4309785, "x": -80.0001684, "osmid": 7805346277, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0001684, 40.4309785 ] } }, -{ "type": "Feature", "properties": { "y": 40.4520458, "x": -80.0031711, "osmid": 2867995105, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0031711, 40.4520458 ] } }, { "type": "Feature", "properties": { "y": 40.4305715, "x": -79.9989672, "osmid": 7805346279, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9989672, 40.4305715 ] } }, { "type": "Feature", "properties": { "y": 40.4305498, "x": -79.998875, "osmid": 7805346280, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.998875, 40.4305498 ] } }, +{ "type": "Feature", "properties": { "y": 40.4305348, "x": -79.998813, "osmid": 7805346281, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.998813, 40.4305348 ] } }, { "type": "Feature", "properties": { "y": 40.4305309, "x": -79.9990017, "osmid": 7805346284, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9990017, 40.4305309 ] } }, { "type": "Feature", "properties": { "y": 40.4549371, "x": -80.0075451, "osmid": 2867995117, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0075451, 40.4549371 ] } }, -{ "type": "Feature", "properties": { "y": 40.4305348, "x": -79.998813, "osmid": 7805346281, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.998813, 40.4305348 ] } }, -{ "type": "Feature", "properties": { "y": 40.4520196, "x": -80.0033567, "osmid": 2867995119, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0033567, 40.4520196 ] } }, { "type": "Feature", "properties": { "y": 40.4598531, "x": -79.9474824, "osmid": 2867995115, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9474824, 40.4598531 ] } }, +{ "type": "Feature", "properties": { "y": 40.4520196, "x": -80.0033567, "osmid": 2867995119, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0033567, 40.4520196 ] } }, { "type": "Feature", "properties": { "y": 40.4584266, "x": -80.0260889, "osmid": 105685492, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0260889, 40.4584266 ] } }, { "type": "Feature", "properties": { "y": 40.4490372, "x": -80.0019006, "osmid": 5269234165, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0019006, 40.4490372 ] } }, { "type": "Feature", "properties": { "y": 40.448732, "x": -80.0018073, "osmid": 5269234166, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018073, 40.448732 ] } }, @@ -3268,7 +3159,6 @@ { "type": "Feature", "properties": { "y": 40.4588007, "x": -79.9480506, "osmid": 2867995201, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9480506, 40.4588007 ] } }, { "type": "Feature", "properties": { "y": 40.4536328, "x": -80.0080971, "osmid": 2867995210, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0080971, 40.4536328 ] } }, { "type": "Feature", "properties": { "y": 40.4548694, "x": -80.0079024, "osmid": 2867995211, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0079024, 40.4548694 ] } }, -{ "type": "Feature", "properties": { "y": 40.4435248, "x": -79.9439266, "osmid": 1706009163, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9439266, 40.4435248 ] } }, { "type": "Feature", "properties": { "y": 40.4540145, "x": -80.0063073, "osmid": 2867995219, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063073, 40.4540145 ] } }, { "type": "Feature", "properties": { "y": 40.4504564, "x": -79.9850526, "osmid": 6074311255, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9850526, 40.4504564 ] } }, { "type": "Feature", "properties": { "y": 40.450433, "x": -79.9850897, "osmid": 6074311256, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9850897, 40.450433 ] } }, @@ -3297,8 +3187,6 @@ { "type": "Feature", "properties": { "y": 40.4262673, "x": -79.9410149, "osmid": 105783952, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9410149, 40.4262673 ] } }, { "type": "Feature", "properties": { "y": 40.4476255, "x": -79.9593897, "osmid": 6531981971, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9593897, 40.4476255 ] } }, { "type": "Feature", "properties": { "y": 40.4475151, "x": -79.9591635, "osmid": 6531981973, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9591635, 40.4475151 ] } }, -{ "type": "Feature", "properties": { "y": 40.4502117, "x": -79.9430906, "osmid": 1891672726, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9430906, 40.4502117 ] } }, -{ "type": "Feature", "properties": { "y": 40.4502311, "x": -79.9429014, "osmid": 1891672730, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9429014, 40.4502311 ] } }, { "type": "Feature", "properties": { "y": 40.4563264, "x": -79.9380092, "osmid": 393912991, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9380092, 40.4563264 ] } }, { "type": "Feature", "properties": { "y": 40.4595123, "x": -79.9476596, "osmid": 2867995297, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9476596, 40.4595123 ] } }, { "type": "Feature", "properties": { "y": 40.4584997, "x": -79.9568088, "osmid": 339255971, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9568088, 40.4584997 ] } }, @@ -3308,8 +3196,8 @@ { "type": "Feature", "properties": { "y": 40.4582409, "x": -79.9897741, "osmid": 104637100, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9897741, 40.4582409 ] } }, { "type": "Feature", "properties": { "y": 40.4579161, "x": -79.976596, "osmid": 6066578092, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976596, 40.4579161 ] } }, { "type": "Feature", "properties": { "y": 40.4341805, "x": -80.0248047, "osmid": 105030319, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0248047, 40.4341805 ] } }, -{ "type": "Feature", "properties": { "y": 40.4548904, "x": -80.0077913, "osmid": 2867995311, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0077913, 40.4548904 ] } }, { "type": "Feature", "properties": { "y": 40.4588132, "x": -79.9581085, "osmid": 339255983, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9581085, 40.4588132 ] } }, +{ "type": "Feature", "properties": { "y": 40.4548904, "x": -80.0077913, "osmid": 2867995311, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0077913, 40.4548904 ] } }, { "type": "Feature", "properties": { "y": 40.4430372, "x": -79.9699195, "osmid": 6531949231, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9699195, 40.4430372 ] } }, { "type": "Feature", "properties": { "y": 40.4430279, "x": -79.9694492, "osmid": 6531949232, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9694492, 40.4430279 ] } }, { "type": "Feature", "properties": { "y": 40.4591413, "x": -79.9757324, "osmid": 6066578099, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9757324, 40.4591413 ] } }, @@ -3370,8 +3258,8 @@ { "type": "Feature", "properties": { "y": 40.4536607, "x": -79.9750787, "osmid": 6113895151, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9750787, 40.4536607 ] } }, { "type": "Feature", "properties": { "y": 40.448345, "x": -79.9870108, "osmid": 6076408560, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9870108, 40.448345 ] } }, { "type": "Feature", "properties": { "y": 40.457862, "x": -79.9606261, "osmid": 339256049, "highway": "motorway_junction", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9606261, 40.457862 ] } }, -{ "type": "Feature", "properties": { "y": 40.4487567, "x": -79.9863096, "osmid": 6076408561, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9863096, 40.4487567 ] } }, { "type": "Feature", "properties": { "y": 40.4494088, "x": -79.9857757, "osmid": 6076408562, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9857757, 40.4494088 ] } }, +{ "type": "Feature", "properties": { "y": 40.4487567, "x": -79.9863096, "osmid": 6076408561, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9863096, 40.4487567 ] } }, { "type": "Feature", "properties": { "y": 40.4491791, "x": -79.9855025, "osmid": 6076408563, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9855025, 40.4491791 ] } }, { "type": "Feature", "properties": { "y": 40.4394085, "x": -79.9482729, "osmid": 2173674224, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9482729, 40.4394085 ] } }, { "type": "Feature", "properties": { "y": 40.4483274, "x": -79.986874, "osmid": 6076408566, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.986874, 40.4483274 ] } }, @@ -3379,15 +3267,18 @@ { "type": "Feature", "properties": { "y": 40.4255343, "x": -79.9794386, "osmid": 105095928, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9794386, 40.4255343 ] } }, { "type": "Feature", "properties": { "y": 40.4485717, "x": -79.9871319, "osmid": 6076408570, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9871319, 40.4485717 ] } }, { "type": "Feature", "properties": { "y": 40.4253751, "x": -79.9765085, "osmid": 105095940, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9765085, 40.4253751 ] } }, +{ "type": "Feature", "properties": { "y": 40.4568291, "x": -80.0072013, "osmid": 5336003146, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0072013, 40.4568291 ] } }, { "type": "Feature", "properties": { "y": 40.4478, "x": -79.9372958, "osmid": 104538887, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9372958, 40.4478 ] } }, { "type": "Feature", "properties": { "y": 40.4395158, "x": -79.9628501, "osmid": 6532014856, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9628501, 40.4395158 ] } }, -{ "type": "Feature", "properties": { "y": 40.4475311, "x": -79.9363817, "osmid": 104538894, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9363817, 40.4475311 ] } }, +{ "type": "Feature", "properties": { "y": 40.4566594, "x": -80.0071465, "osmid": 5336003148, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0071465, 40.4566594 ] } }, { "type": "Feature", "properties": { "y": 40.4538842, "x": -79.9748265, "osmid": 6113895184, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9748265, 40.4538842 ] } }, +{ "type": "Feature", "properties": { "y": 40.4566797, "x": -80.0070249, "osmid": 5336003149, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0070249, 40.4566797 ] } }, { "type": "Feature", "properties": { "y": 40.442368, "x": -80.0001052, "osmid": 104571669, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0001052, 40.442368 ] } }, { "type": "Feature", "properties": { "y": 40.4251365, "x": -80.0137949, "osmid": 760849175, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0137949, 40.4251365 ] } }, { "type": "Feature", "properties": { "y": 40.425165, "x": -80.0151736, "osmid": 760849176, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0151736, 40.425165 ] } }, { "type": "Feature", "properties": { "y": 40.4456374, "x": -79.9842592, "osmid": 7794926361, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9842592, 40.4456374 ] } }, { "type": "Feature", "properties": { "y": 40.4590042, "x": -79.9572334, "osmid": 339256090, "highway": "motorway_junction", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9572334, 40.4590042 ] } }, +{ "type": "Feature", "properties": { "y": 40.4566972, "x": -80.0069122, "osmid": 5336003150, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0069122, 40.4566972 ] } }, { "type": "Feature", "properties": { "y": 40.4502727, "x": -79.9352963, "osmid": 7069573912, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9352963, 40.4502727 ] } }, { "type": "Feature", "properties": { "y": 40.4499055, "x": -79.9344816, "osmid": 7069573916, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9344816, 40.4499055 ] } }, { "type": "Feature", "properties": { "y": 40.4472435, "x": -79.9353562, "osmid": 104538910, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9353562, 40.4472435 ] } }, @@ -3406,7 +3297,6 @@ { "type": "Feature", "properties": { "y": 40.4374323, "x": -79.9698069, "osmid": 2588517199, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9698069, 40.4374323 ] } }, { "type": "Feature", "properties": { "y": 40.4575935, "x": -79.9892371, "osmid": 105685840, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9892371, 40.4575935 ] } }, { "type": "Feature", "properties": { "y": 40.4443685, "x": -79.9956948, "osmid": 6271902563, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9956948, 40.4443685 ] } }, -{ "type": "Feature", "properties": { "y": 40.4550393, "x": -79.9833268, "osmid": 6058413415, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9833268, 40.4550393 ] } }, { "type": "Feature", "properties": { "y": 40.4442658, "x": -79.9960861, "osmid": 6271902578, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9960861, 40.4442658 ] } }, { "type": "Feature", "properties": { "y": 40.4537985, "x": -79.9747046, "osmid": 6113895285, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9747046, 40.4537985 ] } }, { "type": "Feature", "properties": { "y": 40.4348892, "x": -80.0185665, "osmid": 760849279, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0185665, 40.4348892 ] } }, @@ -3440,8 +3330,8 @@ { "type": "Feature", "properties": { "y": 40.4326893, "x": -80.0202551, "osmid": 760849340, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0202551, 40.4326893 ] } }, { "type": "Feature", "properties": { "y": 40.4318498, "x": -79.9618966, "osmid": 3490292669, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9618966, 40.4318498 ] } }, { "type": "Feature", "properties": { "y": 40.4317471, "x": -79.9619898, "osmid": 3490292670, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9619898, 40.4317471 ] } }, -{ "type": "Feature", "properties": { "y": 40.4314049, "x": -79.9610512, "osmid": 3490292671, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9610512, 40.4314049 ] } }, { "type": "Feature", "properties": { "y": 40.4283588, "x": -79.9690685, "osmid": 2141266879, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9690685, 40.4283588 ] } }, +{ "type": "Feature", "properties": { "y": 40.4314049, "x": -79.9610512, "osmid": 3490292671, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9610512, 40.4314049 ] } }, { "type": "Feature", "properties": { "y": 40.4316264, "x": -79.961472, "osmid": 3490292673, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.961472, 40.4316264 ] } }, { "type": "Feature", "properties": { "y": 40.4303291, "x": -80.013376, "osmid": 760849346, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.013376, 40.4303291 ] } }, { "type": "Feature", "properties": { "y": 40.4315023, "x": -79.9615816, "osmid": 3490292674, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9615816, 40.4315023 ] } }, @@ -3481,12 +3371,12 @@ { "type": "Feature", "properties": { "y": 40.4536639, "x": -80.0092751, "osmid": 5249934329, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0092751, 40.4536639 ] } }, { "type": "Feature", "properties": { "y": 40.4346441, "x": -79.9620669, "osmid": 105128954, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9620669, 40.4346441 ] } }, { "type": "Feature", "properties": { "y": 40.453676, "x": -80.009189, "osmid": 5249934330, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.009189, 40.453676 ] } }, -{ "type": "Feature", "properties": { "y": 40.453726, "x": -80.0089417, "osmid": 5249934331, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0089417, 40.453726 ] } }, { "type": "Feature", "properties": { "y": 40.4322261, "x": -80.0170473, "osmid": 760849401, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0170473, 40.4322261 ] } }, -{ "type": "Feature", "properties": { "y": 40.4431654, "x": -79.956728, "osmid": 6715675208, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.956728, 40.4431654 ] } }, +{ "type": "Feature", "properties": { "y": 40.453726, "x": -80.0089417, "osmid": 5249934331, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0089417, 40.453726 ] } }, { "type": "Feature", "properties": { "y": 40.4485897, "x": -79.9499894, "osmid": 6531884029, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9499894, 40.4485897 ] } }, -{ "type": "Feature", "properties": { "y": 40.4431076, "x": -79.9566357, "osmid": 6715675209, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9566357, 40.4431076 ] } }, { "type": "Feature", "properties": { "y": 40.4484173, "x": -79.9498817, "osmid": 6531884024, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9498817, 40.4484173 ] } }, +{ "type": "Feature", "properties": { "y": 40.4431076, "x": -79.9566357, "osmid": 6715675209, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9566357, 40.4431076 ] } }, +{ "type": "Feature", "properties": { "y": 40.4431654, "x": -79.956728, "osmid": 6715675208, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.956728, 40.4431654 ] } }, { "type": "Feature", "properties": { "y": 40.446862, "x": -79.949746, "osmid": 1824760832, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.949746, 40.446862 ] } }, { "type": "Feature", "properties": { "y": 40.4470403, "x": -79.9497646, "osmid": 1824760833, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9497646, 40.4470403 ] } }, { "type": "Feature", "properties": { "y": 40.4475345, "x": -79.9493399, "osmid": 1824760835, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9493399, 40.4475345 ] } }, @@ -3497,7 +3387,6 @@ { "type": "Feature", "properties": { "y": 40.4278389, "x": -79.9662208, "osmid": 422355978, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9662208, 40.4278389 ] } }, { "type": "Feature", "properties": { "y": 40.4405512, "x": -79.9892775, "osmid": 736437260, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9892775, 40.4405512 ] } }, { "type": "Feature", "properties": { "y": 40.4493181, "x": -80.0080618, "osmid": 5394965518, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0080618, 40.4493181 ] } }, -{ "type": "Feature", "properties": { "y": 40.429467, "x": -80.0206464, "osmid": 760849422, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0206464, 40.429467 ] } }, { "type": "Feature", "properties": { "y": 40.4405346, "x": -79.9914796, "osmid": 736437264, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9914796, 40.4405346 ] } }, { "type": "Feature", "properties": { "y": 40.4490246, "x": -80.0077704, "osmid": 5394965520, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0077704, 40.4490246 ] } }, { "type": "Feature", "properties": { "y": 40.4285804, "x": -79.9653736, "osmid": 422355985, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9653736, 40.4285804 ] } }, @@ -3551,9 +3440,9 @@ { "type": "Feature", "properties": { "y": 40.445835, "x": -80.011708, "osmid": 271197324, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.011708, 40.445835 ] } }, { "type": "Feature", "properties": { "y": 40.4461912, "x": -80.0098395, "osmid": 271197325, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0098395, 40.4461912 ] } }, { "type": "Feature", "properties": { "y": 40.4466367, "x": -80.007329, "osmid": 271197326, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.007329, 40.4466367 ] } }, -{ "type": "Feature", "properties": { "y": 40.4404559, "x": -79.9878287, "osmid": 736437389, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9878287, 40.4404559 ] } }, -{ "type": "Feature", "properties": { "y": 40.4594987, "x": -80.0153684, "osmid": 104866960, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0153684, 40.4594987 ] } }, { "type": "Feature", "properties": { "y": 40.4556588, "x": -79.9625852, "osmid": 2584519820, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9625852, 40.4556588 ] } }, +{ "type": "Feature", "properties": { "y": 40.4594987, "x": -80.0153684, "osmid": 104866960, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0153684, 40.4594987 ] } }, +{ "type": "Feature", "properties": { "y": 40.4404559, "x": -79.9878287, "osmid": 736437389, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9878287, 40.4404559 ] } }, { "type": "Feature", "properties": { "y": 40.4567905, "x": -79.9382439, "osmid": 393913483, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9382439, 40.4567905 ] } }, { "type": "Feature", "properties": { "y": 40.4562408, "x": -79.9565463, "osmid": 2584519828, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9565463, 40.4562408 ] } }, { "type": "Feature", "properties": { "y": 40.44049, "x": -79.9873221, "osmid": 736437398, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9873221, 40.44049 ] } }, @@ -3598,7 +3487,6 @@ { "type": "Feature", "properties": { "y": 40.4392869, "x": -79.965496, "osmid": 105133022, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.965496, 40.4392869 ] } }, { "type": "Feature", "properties": { "y": 40.452241, "x": -80.0024229, "osmid": 5240009694, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0024229, 40.452241 ] } }, { "type": "Feature", "properties": { "y": 40.4264218, "x": -79.9793475, "osmid": 104670450, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9793475, 40.4264218 ] } }, -{ "type": "Feature", "properties": { "y": 40.4358527, "x": -79.9934165, "osmid": 2356454649, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9934165, 40.4358527 ] } }, { "type": "Feature", "properties": { "y": 40.4263385, "x": -79.9778345, "osmid": 104670458, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9778345, 40.4263385 ] } }, { "type": "Feature", "properties": { "y": 40.4468644, "x": -80.0205704, "osmid": 271197435, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0205704, 40.4468644 ] } }, { "type": "Feature", "properties": { "y": 40.4521332, "x": -80.0025693, "osmid": 5240009698, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025693, 40.4521332 ] } }, @@ -3638,7 +3526,6 @@ { "type": "Feature", "properties": { "y": 40.4552248, "x": -79.9660181, "osmid": 339256649, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9660181, 40.4552248 ] } }, { "type": "Feature", "properties": { "y": 40.4386141, "x": -79.9864419, "osmid": 105096521, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9864419, 40.4386141 ] } }, { "type": "Feature", "properties": { "y": 40.452802, "x": -80.0026926, "osmid": 5240009711, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0026926, 40.452802 ] } }, -{ "type": "Feature", "properties": { "y": 40.4356542, "x": -79.9934615, "osmid": 2356454732, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9934615, 40.4356542 ] } }, { "type": "Feature", "properties": { "y": 40.4362282, "x": -79.9827595, "osmid": 106046797, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9827595, 40.4362282 ] } }, { "type": "Feature", "properties": { "y": 40.4528707, "x": -80.0028526, "osmid": 5240009712, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0028526, 40.4528707 ] } }, { "type": "Feature", "properties": { "y": 40.4519779, "x": -79.9434103, "osmid": 1705321808, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9434103, 40.4519779 ] } }, @@ -3660,26 +3547,23 @@ { "type": "Feature", "properties": { "y": 40.4383917, "x": -79.9813642, "osmid": 105096565, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9813642, 40.4383917 ] } }, { "type": "Feature", "properties": { "y": 40.4566156, "x": -79.975223, "osmid": 6080603510, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.975223, 40.4566156 ] } }, { "type": "Feature", "properties": { "y": 40.4509246, "x": -80.0030097, "osmid": 275752311, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0030097, 40.4509246 ] } }, -{ "type": "Feature", "properties": { "y": 40.4526566, "x": -80.0026039, "osmid": 5240009720, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0026039, 40.4526566 ] } }, { "type": "Feature", "properties": { "y": 40.4568193, "x": -79.9755599, "osmid": 6080603512, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9755599, 40.4568193 ] } }, { "type": "Feature", "properties": { "y": 40.4568594, "x": -79.9755045, "osmid": 6080603511, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9755045, 40.4568594 ] } }, { "type": "Feature", "properties": { "y": 40.4570974, "x": -79.97516, "osmid": 6080603513, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.97516, 40.4570974 ] } }, { "type": "Feature", "properties": { "y": 40.457225, "x": -79.9745796, "osmid": 6080603508, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9745796, 40.457225 ] } }, { "type": "Feature", "properties": { "y": 40.457549, "x": -79.9745123, "osmid": 6080603516, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9745123, 40.457549 ] } }, { "type": "Feature", "properties": { "y": 40.4577559, "x": -79.9741999, "osmid": 6080603517, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9741999, 40.4577559 ] } }, +{ "type": "Feature", "properties": { "y": 40.4578043, "x": -79.9742632, "osmid": 6080603518, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9742632, 40.4578043 ] } }, { "type": "Feature", "properties": { "y": 40.4598, "x": -80.0171426, "osmid": 4392854911, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0171426, 40.4598 ] } }, { "type": "Feature", "properties": { "y": 40.4598006, "x": -80.0171324, "osmid": 4392854912, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0171324, 40.4598006 ] } }, { "type": "Feature", "properties": { "y": 40.4383694, "x": -79.9807658, "osmid": 105096576, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9807658, 40.4383694 ] } }, { "type": "Feature", "properties": { "y": 40.4541337, "x": -80.0040641, "osmid": 275752320, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0040641, 40.4541337 ] } }, { "type": "Feature", "properties": { "y": 40.457528, "x": -79.9739233, "osmid": 6080603519, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9739233, 40.457528 ] } }, -{ "type": "Feature", "properties": { "y": 40.4578043, "x": -79.9742632, "osmid": 6080603518, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9742632, 40.4578043 ] } }, { "type": "Feature", "properties": { "y": 40.4292144, "x": -79.939522, "osmid": 2712374940, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.939522, 40.4292144 ] } }, { "type": "Feature", "properties": { "y": 40.4383035, "x": -79.9794274, "osmid": 105096583, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9794274, 40.4383035 ] } }, { "type": "Feature", "properties": { "y": 40.4599054, "x": -80.0173346, "osmid": 4392854921, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0173346, 40.4599054 ] } }, { "type": "Feature", "properties": { "y": 40.4599515, "x": -80.0171411, "osmid": 4392854923, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0171411, 40.4599515 ] } }, { "type": "Feature", "properties": { "y": 40.4599701, "x": -80.0172603, "osmid": 4392854924, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0172603, 40.4599701 ] } }, -{ "type": "Feature", "properties": { "y": 40.449417, "x": -79.9430518, "osmid": 1839223754, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9430518, 40.449417 ] } }, -{ "type": "Feature", "properties": { "y": 40.4494547, "x": -79.9427559, "osmid": 1839223755, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9427559, 40.4494547 ] } }, { "type": "Feature", "properties": { "y": 40.438226, "x": -79.9776573, "osmid": 105096602, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9776573, 40.438226 ] } }, { "type": "Feature", "properties": { "y": 40.4539877, "x": -80.0057821, "osmid": 275752348, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057821, 40.4539877 ] } }, { "type": "Feature", "properties": { "y": 40.4538375, "x": -80.0065288, "osmid": 275752349, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0065288, 40.4538375 ] } }, @@ -3776,6 +3660,7 @@ { "type": "Feature", "properties": { "y": 40.449696, "x": -79.9859724, "osmid": 6076540529, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9859724, 40.449696 ] } }, { "type": "Feature", "properties": { "y": 40.4434784, "x": -80.0046554, "osmid": 271197824, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0046554, 40.4434784 ] } }, { "type": "Feature", "properties": { "y": 40.441547, "x": -80.003904, "osmid": 271197826, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.003904, 40.441547 ] } }, +{ "type": "Feature", "properties": { "y": 40.4401886, "x": -79.9387515, "osmid": 107685511, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9387515, 40.4401886 ] } }, { "type": "Feature", "properties": { "y": 40.4405531, "x": -80.0043734, "osmid": 271197833, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0043734, 40.4405531 ] } }, { "type": "Feature", "properties": { "y": 40.4400473, "x": -80.0047306, "osmid": 271197834, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0047306, 40.4400473 ] } }, { "type": "Feature", "properties": { "y": 40.4329538, "x": -79.9366622, "osmid": 2173707920, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9366622, 40.4329538 ] } }, @@ -3869,17 +3754,13 @@ { "type": "Feature", "properties": { "y": 40.4397594, "x": -80.0072872, "osmid": 6047279008, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0072872, 40.4397594 ] } }, { "type": "Feature", "properties": { "y": 40.4264586, "x": -79.9402355, "osmid": 104638369, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9402355, 40.4264586 ] } }, { "type": "Feature", "properties": { "y": 40.4261094, "x": -79.9400819, "osmid": 104638375, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9400819, 40.4261094 ] } }, -{ "type": "Feature", "properties": { "y": 40.4286974, "x": -79.964911, "osmid": 3495531064, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.964911, 40.4286974 ] } }, { "type": "Feature", "properties": { "y": 40.4391743, "x": -80.007211, "osmid": 6047279019, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.007211, 40.4391743 ] } }, -{ "type": "Feature", "properties": { "y": 40.4310321, "x": -80.0175805, "osmid": 2632132522, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0175805, 40.4310321 ] } }, { "type": "Feature", "properties": { "y": 40.442493, "x": -80.0239015, "osmid": 6015362990, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0239015, 40.442493 ] } }, { "type": "Feature", "properties": { "y": 40.4289229, "x": -79.9652539, "osmid": 3495531065, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9652539, 40.4289229 ] } }, { "type": "Feature", "properties": { "y": 40.4422706, "x": -80.0237158, "osmid": 6015362992, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0237158, 40.4422706 ] } }, { "type": "Feature", "properties": { "y": 40.4288541, "x": -79.9653259, "osmid": 3495531066, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9653259, 40.4288541 ] } }, { "type": "Feature", "properties": { "y": 40.4275474, "x": -79.9621229, "osmid": 3703547829, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9621229, 40.4275474 ] } }, -{ "type": "Feature", "properties": { "y": 40.4311122, "x": -80.0175578, "osmid": 2632132536, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0175578, 40.4311122 ] } }, { "type": "Feature", "properties": { "y": 40.4296349, "x": -79.966983, "osmid": 3495531067, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.966983, 40.4296349 ] } }, -{ "type": "Feature", "properties": { "y": 40.4310366, "x": -80.0173574, "osmid": 2632132537, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0173574, 40.4310366 ] } }, { "type": "Feature", "properties": { "y": 40.4419171, "x": -80.02221, "osmid": 6015363006, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.02221, 40.4419171 ] } }, { "type": "Feature", "properties": { "y": 40.4324689, "x": -80.0046899, "osmid": 6018148286, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0046899, 40.4324689 ] } }, { "type": "Feature", "properties": { "y": 40.4325242, "x": -80.0049734, "osmid": 6018148288, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0049734, 40.4325242 ] } }, @@ -3916,7 +3797,6 @@ { "type": "Feature", "properties": { "y": 40.4409626, "x": -80.0253013, "osmid": 104474663, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0253013, 40.4409626 ] } }, { "type": "Feature", "properties": { "y": 40.4562579, "x": -79.9970258, "osmid": 105064495, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9970258, 40.4562579 ] } }, { "type": "Feature", "properties": { "y": 40.4466527, "x": -80.0125575, "osmid": 5388544053, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0125575, 40.4466527 ] } }, -{ "type": "Feature", "properties": { "y": 40.4470978, "x": -79.9343351, "osmid": 6735630932, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9343351, 40.4470978 ] } }, { "type": "Feature", "properties": { "y": 40.4566749, "x": -79.9971596, "osmid": 105064506, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9971596, 40.4566749 ] } }, { "type": "Feature", "properties": { "y": 40.437431, "x": -80.0010779, "osmid": 7071508542, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010779, 40.437431 ] } }, { "type": "Feature", "properties": { "y": 40.4285299, "x": -80.0063698, "osmid": 104933439, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063698, 40.4285299 ] } }, @@ -4029,15 +3909,15 @@ { "type": "Feature", "properties": { "y": 40.4466045, "x": -80.0039819, "osmid": 4470909146, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0039819, 40.4466045 ] } }, { "type": "Feature", "properties": { "y": 40.4585192, "x": -79.9748962, "osmid": 6067169498, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9748962, 40.4585192 ] } }, { "type": "Feature", "properties": { "y": 40.447404, "x": -79.9829284, "osmid": 106047708, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9829284, 40.447404 ] } }, -{ "type": "Feature", "properties": { "y": 40.4355912, "x": -80.008949, "osmid": 3500353757, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008949, 40.4355912 ] } }, { "type": "Feature", "properties": { "y": 40.4466656, "x": -80.0040008, "osmid": 4470909149, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0040008, 40.4466656 ] } }, +{ "type": "Feature", "properties": { "y": 40.4355912, "x": -80.008949, "osmid": 3500353757, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008949, 40.4355912 ] } }, { "type": "Feature", "properties": { "y": 40.4389051, "x": -80.0146499, "osmid": 3500353759, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0146499, 40.4389051 ] } }, -{ "type": "Feature", "properties": { "y": 40.4387404, "x": -80.0143357, "osmid": 3500353760, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0143357, 40.4387404 ] } }, { "type": "Feature", "properties": { "y": 40.4467247, "x": -80.0040191, "osmid": 4470909152, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0040191, 40.4467247 ] } }, +{ "type": "Feature", "properties": { "y": 40.4387404, "x": -80.0143357, "osmid": 3500353760, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0143357, 40.4387404 ] } }, { "type": "Feature", "properties": { "y": 40.4380179, "x": -79.9742644, "osmid": 105097439, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9742644, 40.4380179 ] } }, { "type": "Feature", "properties": { "y": 40.4383233, "x": -80.0135881, "osmid": 3500353761, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0135881, 40.4383233 ] } }, -{ "type": "Feature", "properties": { "y": 40.4540545, "x": -80.0061141, "osmid": 275753185, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061141, 40.4540545 ] } }, { "type": "Feature", "properties": { "y": 40.4438565, "x": -79.9816811, "osmid": 105883870, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9816811, 40.4438565 ] } }, +{ "type": "Feature", "properties": { "y": 40.4540545, "x": -80.0061141, "osmid": 275753185, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061141, 40.4540545 ] } }, { "type": "Feature", "properties": { "y": 40.4436452, "x": -79.9815459, "osmid": 105883878, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9815459, 40.4436452 ] } }, { "type": "Feature", "properties": { "y": 40.4434247, "x": -79.9813416, "osmid": 105883886, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9813416, 40.4434247 ] } }, { "type": "Feature", "properties": { "y": 40.4377606, "x": -79.972812, "osmid": 105097457, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.972812, 40.4377606 ] } }, @@ -4048,23 +3928,17 @@ { "type": "Feature", "properties": { "y": 40.4572843, "x": -79.9959548, "osmid": 105163013, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9959548, 40.4572843 ] } }, { "type": "Feature", "properties": { "y": 40.4405871, "x": -79.9873412, "osmid": 871704838, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9873412, 40.4405871 ] } }, { "type": "Feature", "properties": { "y": 40.4586678, "x": -80.0022872, "osmid": 7455648007, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0022872, 40.4586678 ] } }, -{ "type": "Feature", "properties": { "y": 40.4398744, "x": -79.9855653, "osmid": 7505094920, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9855653, 40.4398744 ] } }, +{ "type": "Feature", "properties": { "y": 40.4560042, "x": -79.9752357, "osmid": 6113649557, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9752357, 40.4560042 ] } }, { "type": "Feature", "properties": { "y": 40.4581959, "x": -79.9585187, "osmid": 106047753, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9585187, 40.4581959 ] } }, -{ "type": "Feature", "properties": { "y": 40.4400898, "x": -79.9857203, "osmid": 7505094921, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9857203, 40.4400898 ] } }, { "type": "Feature", "properties": { "y": 40.4405696, "x": -79.9874855, "osmid": 871704843, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9874855, 40.4405696 ] } }, { "type": "Feature", "properties": { "y": 40.4586313, "x": -80.0024832, "osmid": 7455648011, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0024832, 40.4586313 ] } }, { "type": "Feature", "properties": { "y": 40.4405635, "x": -79.9875821, "osmid": 871704845, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9875821, 40.4405635 ] } }, { "type": "Feature", "properties": { "y": 40.4591077, "x": -80.0026321, "osmid": 7455648014, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0026321, 40.4591077 ] } }, -{ "type": "Feature", "properties": { "y": 40.4397992, "x": -79.9857381, "osmid": 7505094927, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9857381, 40.4397992 ] } }, +{ "type": "Feature", "properties": { "y": 40.446561, "x": -79.966815, "osmid": 105261323, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.966815, 40.446561 ] } }, { "type": "Feature", "properties": { "y": 40.4589234, "x": -80.0008161, "osmid": 7455648016, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0008161, 40.4589234 ] } }, -{ "type": "Feature", "properties": { "y": 40.4397629, "x": -79.9858216, "osmid": 7505094925, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9858216, 40.4397629 ] } }, +{ "type": "Feature", "properties": { "y": 40.446288, "x": -79.966515, "osmid": 105261328, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.966515, 40.446288 ] } }, { "type": "Feature", "properties": { "y": 40.4584462, "x": -80.0006406, "osmid": 7455648018, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0006406, 40.4584462 ] } }, -{ "type": "Feature", "properties": { "y": 40.4400817, "x": -79.9859648, "osmid": 7505094928, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9859648, 40.4400817 ] } }, -{ "type": "Feature", "properties": { "y": 40.446561, "x": -79.966815, "osmid": 105261323, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.966815, 40.446561 ] } }, -{ "type": "Feature", "properties": { "y": 40.4400008, "x": -79.9861381, "osmid": 7505094924, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9861381, 40.4400008 ] } }, -{ "type": "Feature", "properties": { "y": 40.4400453, "x": -79.9860435, "osmid": 7505094926, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9860435, 40.4400453 ] } }, { "type": "Feature", "properties": { "y": 40.4592073, "x": -80.0053893, "osmid": 7455648023, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0053893, 40.4592073 ] } }, -{ "type": "Feature", "properties": { "y": 40.446288, "x": -79.966515, "osmid": 105261328, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.966515, 40.446288 ] } }, { "type": "Feature", "properties": { "y": 40.4405463, "x": -79.9896506, "osmid": 871704858, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9896506, 40.4405463 ] } }, { "type": "Feature", "properties": { "y": 40.4405401, "x": -79.9904714, "osmid": 871704861, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9904714, 40.4405401 ] } }, { "type": "Feature", "properties": { "y": 40.4378486, "x": -79.9639177, "osmid": 105097503, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9639177, 40.4378486 ] } }, @@ -4079,22 +3953,16 @@ { "type": "Feature", "properties": { "y": 40.4466152, "x": -79.9530329, "osmid": 6531787087, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9530329, 40.4466152 ] } }, { "type": "Feature", "properties": { "y": 40.4294374, "x": -79.9853506, "osmid": 104802641, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9853506, 40.4294374 ] } }, { "type": "Feature", "properties": { "y": 40.4375194, "x": -79.9980626, "osmid": 107653462, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9980626, 40.4375194 ] } }, -{ "type": "Feature", "properties": { "y": 40.4291036, "x": -80.0173254, "osmid": 2632585666, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0173254, 40.4291036 ] } }, { "type": "Feature", "properties": { "y": 40.4425184, "x": -79.9574644, "osmid": 105097564, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9574644, 40.4425184 ] } }, -{ "type": "Feature", "properties": { "y": 40.4516711, "x": -79.9961931, "osmid": 6968060254, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9961931, 40.4516711 ] } }, -{ "type": "Feature", "properties": { "y": 40.454612, "x": -79.9616632, "osmid": 107555167, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9616632, 40.454612 ] } }, { "type": "Feature", "properties": { "y": 40.4287818, "x": -79.985321, "osmid": 104802654, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.985321, 40.4287818 ] } }, -{ "type": "Feature", "properties": { "y": 40.4291814, "x": -80.0175359, "osmid": 2632585667, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0175359, 40.4291814 ] } }, +{ "type": "Feature", "properties": { "y": 40.454612, "x": -79.9616632, "osmid": 107555167, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9616632, 40.454612 ] } }, { "type": "Feature", "properties": { "y": 40.4472407, "x": -79.9749321, "osmid": 105982305, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9749321, 40.4472407 ] } }, -{ "type": "Feature", "properties": { "y": 40.4314422, "x": -80.0169097, "osmid": 2632585668, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0169097, 40.4314422 ] } }, -{ "type": "Feature", "properties": { "y": 40.4369972, "x": -79.9725139, "osmid": 4075333988, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9725139, 40.4369972 ] } }, { "type": "Feature", "properties": { "y": 40.4522704, "x": -79.9349912, "osmid": 105195874, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9349912, 40.4522704 ] } }, +{ "type": "Feature", "properties": { "y": 40.4369972, "x": -79.9725139, "osmid": 4075333988, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9725139, 40.4369972 ] } }, { "type": "Feature", "properties": { "y": 40.4437849, "x": -79.9556927, "osmid": 105097575, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9556927, 40.4437849 ] } }, { "type": "Feature", "properties": { "y": 40.4276761, "x": -79.9852946, "osmid": 104802664, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9852946, 40.4276761 ] } }, { "type": "Feature", "properties": { "y": 40.4510228, "x": -79.934261, "osmid": 105195880, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.934261, 40.4510228 ] } }, -{ "type": "Feature", "properties": { "y": 40.431533, "x": -80.01743, "osmid": 2632585670, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.01743, 40.431533 ] } }, { "type": "Feature", "properties": { "y": 40.4444185, "x": -79.954785, "osmid": 105097584, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.954785, 40.4444185 ] } }, -{ "type": "Feature", "properties": { "y": 40.4315004, "x": -79.9320949, "osmid": 104737143, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9320949, 40.4315004 ] } }, { "type": "Feature", "properties": { "y": 40.4450263, "x": -79.9539361, "osmid": 105097592, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9539361, 40.4450263 ] } }, { "type": "Feature", "properties": { "y": 40.4414433, "x": -80.0020693, "osmid": 2126784895, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0020693, 40.4414433 ] } }, { "type": "Feature", "properties": { "y": 40.4455862, "x": -79.9531565, "osmid": 105097604, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9531565, 40.4455862 ] } }, @@ -4109,7 +3977,6 @@ { "type": "Feature", "properties": { "y": 40.4576945, "x": -80.0005529, "osmid": 5211531687, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0005529, 40.4576945 ] } }, { "type": "Feature", "properties": { "y": 40.4393678, "x": -80.0301405, "osmid": 2323720618, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0301405, 40.4393678 ] } }, { "type": "Feature", "properties": { "y": 40.4574537, "x": -80.0018336, "osmid": 5211531690, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018336, 40.4574537 ] } }, -{ "type": "Feature", "properties": { "y": 40.4314561, "x": -79.93043, "osmid": 104737196, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.93043, 40.4314561 ] } }, { "type": "Feature", "properties": { "y": 40.4391269, "x": -80.0300705, "osmid": 2323720622, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0300705, 40.4391269 ] } }, { "type": "Feature", "properties": { "y": 40.450059, "x": -79.9485919, "osmid": 6535915958, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9485919, 40.450059 ] } }, { "type": "Feature", "properties": { "y": 40.4496818, "x": -79.9490224, "osmid": 6535915960, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9490224, 40.4496818 ] } }, @@ -4215,12 +4082,11 @@ { "type": "Feature", "properties": { "y": 40.4509045, "x": -80.0014325, "osmid": 5249903221, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0014325, 40.4509045 ] } }, { "type": "Feature", "properties": { "y": 40.4571836, "x": -80.0103422, "osmid": 104770166, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0103422, 40.4571836 ] } }, { "type": "Feature", "properties": { "y": 40.4510518, "x": -80.0018518, "osmid": 5249903222, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018518, 40.4510518 ] } }, -{ "type": "Feature", "properties": { "y": 40.4510617, "x": -80.001796, "osmid": 5249903223, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001796, 40.4510617 ] } }, { "type": "Feature", "properties": { "y": 40.4511282, "x": -80.0018773, "osmid": 5249903224, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018773, 40.4511282 ] } }, +{ "type": "Feature", "properties": { "y": 40.4510617, "x": -80.001796, "osmid": 5249903223, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001796, 40.4510617 ] } }, { "type": "Feature", "properties": { "y": 40.4476115, "x": -80.0132749, "osmid": 4310018682, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0132749, 40.4476115 ] } }, { "type": "Feature", "properties": { "y": 40.4511356, "x": -80.0018326, "osmid": 5249903225, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018326, 40.4511356 ] } }, { "type": "Feature", "properties": { "y": 40.451, "x": -79.9659682, "osmid": 104835707, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9659682, 40.451 ] } }, -{ "type": "Feature", "properties": { "y": 40.443857, "x": -79.9439733, "osmid": 1706011260, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9439733, 40.443857 ] } }, { "type": "Feature", "properties": { "y": 40.4350018, "x": -79.9678103, "osmid": 7349217931, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9678103, 40.4350018 ] } }, { "type": "Feature", "properties": { "y": 40.4333064, "x": -79.9654896, "osmid": 7349217932, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9654896, 40.4333064 ] } }, { "type": "Feature", "properties": { "y": 40.4301102, "x": -79.9592184, "osmid": 7349217933, "highway": "turning_circle", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9592184, 40.4301102 ] } }, @@ -4256,13 +4122,10 @@ { "type": "Feature", "properties": { "y": 40.4576845, "x": -80.0003208, "osmid": 104770235, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0003208, 40.4576845 ] } }, { "type": "Feature", "properties": { "y": 40.4503156, "x": -79.937895, "osmid": 105032379, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.937895, 40.4503156 ] } }, { "type": "Feature", "properties": { "y": 40.4334447, "x": -79.9656236, "osmid": 7349217982, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9656236, 40.4334447 ] } }, -{ "type": "Feature", "properties": { "y": 40.4304455, "x": -79.9913803, "osmid": 7014263487, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9913803, 40.4304455 ] } }, -{ "type": "Feature", "properties": { "y": 40.4304536, "x": -79.9910875, "osmid": 7014263489, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9910875, 40.4304536 ] } }, +{ "type": "Feature", "properties": { "y": 40.4336219, "x": -79.9659626, "osmid": 7349217985, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9659626, 40.4336219 ] } }, { "type": "Feature", "properties": { "y": 40.4335657, "x": -79.9658297, "osmid": 7349217986, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9658297, 40.4335657 ] } }, { "type": "Feature", "properties": { "y": 40.4337276, "x": -79.9657226, "osmid": 7349217987, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9657226, 40.4337276 ] } }, { "type": "Feature", "properties": { "y": 40.4335528, "x": -79.9654764, "osmid": 7349217988, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9654764, 40.4335528 ] } }, -{ "type": "Feature", "properties": { "y": 40.4336219, "x": -79.9659626, "osmid": 7349217985, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9659626, 40.4336219 ] } }, -{ "type": "Feature", "properties": { "y": 40.4303791, "x": -79.9936736, "osmid": 7014263490, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9936736, 40.4303791 ] } }, { "type": "Feature", "properties": { "y": 40.4506851, "x": -79.9367938, "osmid": 105032391, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9367938, 40.4506851 ] } }, { "type": "Feature", "properties": { "y": 40.4338808, "x": -79.9651078, "osmid": 7349217995, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9651078, 40.4338808 ] } }, { "type": "Feature", "properties": { "y": 40.4337693, "x": -79.965902, "osmid": 7349217996, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.965902, 40.4337693 ] } }, @@ -4276,23 +4139,18 @@ { "type": "Feature", "properties": { "y": 40.431541, "x": -79.9615474, "osmid": 7349218033, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9615474, 40.431541 ] } }, { "type": "Feature", "properties": { "y": 40.4313001, "x": -79.9611535, "osmid": 7349218035, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9611535, 40.4313001 ] } }, { "type": "Feature", "properties": { "y": 40.4394853, "x": -79.9483659, "osmid": 2173674182, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9483659, 40.4394853 ] } }, -{ "type": "Feature", "properties": { "y": 40.4469468, "x": -79.9379811, "osmid": 105261815, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9379811, 40.4469468 ] } }, { "type": "Feature", "properties": { "y": 40.4311518, "x": -79.9605877, "osmid": 7349218040, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9605877, 40.4311518 ] } }, { "type": "Feature", "properties": { "y": 40.4311284, "x": -79.9604703, "osmid": 7349218042, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9604703, 40.4311284 ] } }, -{ "type": "Feature", "properties": { "y": 40.4511584, "x": -79.9416993, "osmid": 7013640964, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9416993, 40.4511584 ] } }, { "type": "Feature", "properties": { "y": 40.4398588, "x": -79.9484236, "osmid": 2173674185, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9484236, 40.4398588 ] } }, { "type": "Feature", "properties": { "y": 40.4308891, "x": -79.9596568, "osmid": 7349218054, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9596568, 40.4308891 ] } }, -{ "type": "Feature", "properties": { "y": 40.450829, "x": -79.9414751, "osmid": 7013640968, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9414751, 40.450829 ] } }, { "type": "Feature", "properties": { "y": 40.4308578, "x": -79.9596919, "osmid": 7349218057, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9596919, 40.4308578 ] } }, { "type": "Feature", "properties": { "y": 40.4309927, "x": -79.9601421, "osmid": 7349218058, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9601421, 40.4309927 ] } }, { "type": "Feature", "properties": { "y": 40.4307107, "x": -79.9597075, "osmid": 7349218059, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9597075, 40.4307107 ] } }, { "type": "Feature", "properties": { "y": 40.4477899, "x": -80.0189673, "osmid": 6218590988, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0189673, 40.4477899 ] } }, { "type": "Feature", "properties": { "y": 40.4464891, "x": -79.9744708, "osmid": 105786124, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9744708, 40.4464891 ] } }, { "type": "Feature", "properties": { "y": 40.429754, "x": -79.9819325, "osmid": 104934158, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9819325, 40.429754 ] } }, -{ "type": "Feature", "properties": { "y": 40.4509642, "x": -79.940742, "osmid": 7013640969, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.940742, 40.4509642 ] } }, -{ "type": "Feature", "properties": { "y": 40.43105, "x": -79.9593362, "osmid": 7349218064, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9593362, 40.43105 ] } }, -{ "type": "Feature", "properties": { "y": 40.4509178, "x": -79.9410826, "osmid": 7013640972, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9410826, 40.4509178 ] } }, { "type": "Feature", "properties": { "y": 40.4398531, "x": -79.9483542, "osmid": 2173674187, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9483542, 40.4398531 ] } }, +{ "type": "Feature", "properties": { "y": 40.43105, "x": -79.9593362, "osmid": 7349218064, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9593362, 40.43105 ] } }, { "type": "Feature", "properties": { "y": 40.4397804, "x": -79.9482726, "osmid": 2173674188, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9482726, 40.4397804 ] } }, { "type": "Feature", "properties": { "y": 40.4295942, "x": -79.979041, "osmid": 104934164, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.979041, 40.4295942 ] } }, { "type": "Feature", "properties": { "y": 40.4310432, "x": -79.959888, "osmid": 7349218070, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.959888, 40.4310432 ] } }, @@ -4332,11 +4190,9 @@ { "type": "Feature", "properties": { "y": 40.4281655, "x": -79.9785119, "osmid": 2137959256, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9785119, 40.4281655 ] } }, { "type": "Feature", "properties": { "y": 40.4498856, "x": -79.9345429, "osmid": 105163609, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9345429, 40.4498856 ] } }, { "type": "Feature", "properties": { "y": 40.4362187, "x": -79.9527872, "osmid": 105917274, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9527872, 40.4362187 ] } }, -{ "type": "Feature", "properties": { "y": 40.4354934, "x": -80.0137077, "osmid": 7565454172, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0137077, 40.4354934 ] } }, -{ "type": "Feature", "properties": { "y": 40.4358696, "x": -80.0143467, "osmid": 7565454178, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0143467, 40.4358696 ] } }, { "type": "Feature", "properties": { "y": 40.4378059, "x": -79.9521229, "osmid": 105917282, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9521229, 40.4378059 ] } }, -{ "type": "Feature", "properties": { "y": 40.4292374, "x": -79.9729513, "osmid": 104934244, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9729513, 40.4292374 ] } }, { "type": "Feature", "properties": { "y": 40.4492324, "x": -79.9341757, "osmid": 105163619, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9341757, 40.4492324 ] } }, +{ "type": "Feature", "properties": { "y": 40.4292374, "x": -79.9729513, "osmid": 104934244, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9729513, 40.4292374 ] } }, { "type": "Feature", "properties": { "y": 40.4282591, "x": -79.9801602, "osmid": 2137959272, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9801602, 40.4282591 ] } }, { "type": "Feature", "properties": { "y": 40.4282722, "x": -79.9803877, "osmid": 2137959273, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9803877, 40.4282722 ] } }, { "type": "Feature", "properties": { "y": 40.4291106, "x": -79.9709027, "osmid": 104934254, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9709027, 40.4291106 ] } }, @@ -4411,8 +4267,8 @@ { "type": "Feature", "properties": { "y": 40.4407983, "x": -80.006921, "osmid": 3292048387, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.006921, 40.4407983 ] } }, { "type": "Feature", "properties": { "y": 40.4368548, "x": -79.9983512, "osmid": 2014391299, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9983512, 40.4368548 ] } }, { "type": "Feature", "properties": { "y": 40.4411375, "x": -79.961296, "osmid": 104639490, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.961296, 40.4411375 ] } }, -{ "type": "Feature", "properties": { "y": 40.4578904, "x": -80.007975, "osmid": 105917446, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.007975, 40.4578904 ] } }, { "type": "Feature", "properties": { "y": 40.4512678, "x": -80.0010175, "osmid": 5201210374, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010175, 40.4512678 ] } }, +{ "type": "Feature", "properties": { "y": 40.4578904, "x": -80.007975, "osmid": 105917446, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.007975, 40.4578904 ] } }, { "type": "Feature", "properties": { "y": 40.451372, "x": -80.0004475, "osmid": 5201210375, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0004475, 40.451372 ] } }, { "type": "Feature", "properties": { "y": 40.4276053, "x": -79.9828651, "osmid": 105851915, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9828651, 40.4276053 ] } }, { "type": "Feature", "properties": { "y": 40.45134, "x": -80.0006224, "osmid": 5201210381, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0006224, 40.45134 ] } }, @@ -4450,8 +4306,8 @@ { "type": "Feature", "properties": { "y": 40.4398438, "x": -79.9540734, "osmid": 6532082748, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9540734, 40.4398438 ] } }, { "type": "Feature", "properties": { "y": 40.4252763, "x": -79.9475603, "osmid": 2845584450, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9475603, 40.4252763 ] } }, { "type": "Feature", "properties": { "y": 40.4256175, "x": -79.9474608, "osmid": 2845584452, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9474608, 40.4256175 ] } }, -{ "type": "Feature", "properties": { "y": 40.4553119, "x": -80.0107872, "osmid": 105720902, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0107872, 40.4553119 ] } }, { "type": "Feature", "properties": { "y": 40.4384364, "x": -80.0019432, "osmid": 106343494, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0019432, 40.4384364 ] } }, +{ "type": "Feature", "properties": { "y": 40.4553119, "x": -80.0107872, "osmid": 105720902, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0107872, 40.4553119 ] } }, { "type": "Feature", "properties": { "y": 40.4301878, "x": -80.003634, "osmid": 690564171, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.003634, 40.4301878 ] } }, { "type": "Feature", "properties": { "y": 40.455205, "x": -80.0112669, "osmid": 105720908, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0112669, 40.455205 ] } }, { "type": "Feature", "properties": { "y": 40.4301265, "x": -80.0040685, "osmid": 690564175, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0040685, 40.4301265 ] } }, @@ -4517,29 +4373,29 @@ { "type": "Feature", "properties": { "y": 40.4362021, "x": -79.9975187, "osmid": 7231384745, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9975187, 40.4362021 ] } }, { "type": "Feature", "properties": { "y": 40.4364544, "x": -79.9999893, "osmid": 7231384748, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9999893, 40.4364544 ] } }, { "type": "Feature", "properties": { "y": 40.4364433, "x": -79.9999586, "osmid": 7231384749, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9999586, 40.4364433 ] } }, -{ "type": "Feature", "properties": { "y": 40.454099, "x": -80.0097716, "osmid": 3167104174, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0097716, 40.454099 ] } }, +{ "type": "Feature", "properties": { "y": 40.4510454, "x": -80.0116072, "osmid": 3167104165, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0116072, 40.4510454 ] } }, { "type": "Feature", "properties": { "y": 40.452526, "x": -80.014047, "osmid": 3167104175, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.014047, 40.452526 ] } }, { "type": "Feature", "properties": { "y": 40.4524426, "x": -80.0138842, "osmid": 3167104176, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0138842, 40.4524426 ] } }, { "type": "Feature", "properties": { "y": 40.4523192, "x": -80.0139771, "osmid": 3167104177, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0139771, 40.4523192 ] } }, { "type": "Feature", "properties": { "y": 40.4539326, "x": -80.0149627, "osmid": 3167104178, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0149627, 40.4539326 ] } }, { "type": "Feature", "properties": { "y": 40.4536952, "x": -80.0144589, "osmid": 3167104179, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0144589, 40.4536952 ] } }, -{ "type": "Feature", "properties": { "y": 40.4541484, "x": -80.0095069, "osmid": 3167104173, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0095069, 40.4541484 ] } }, +{ "type": "Feature", "properties": { "y": 40.4274083, "x": -79.9731195, "osmid": 105852078, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9731195, 40.4274083 ] } }, { "type": "Feature", "properties": { "y": 40.4364954, "x": -79.9970762, "osmid": 7231384757, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9970762, 40.4364954 ] } }, { "type": "Feature", "properties": { "y": 40.453887, "x": -80.0148624, "osmid": 3167104182, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0148624, 40.453887 ] } }, { "type": "Feature", "properties": { "y": 40.4537446, "x": -80.0145629, "osmid": 3167104183, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0145629, 40.4537446 ] } }, { "type": "Feature", "properties": { "y": 40.4357983, "x": -79.9815484, "osmid": 106343607, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9815484, 40.4357983 ] } }, { "type": "Feature", "properties": { "y": 40.4367191, "x": -79.9970217, "osmid": 7231384761, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9970217, 40.4367191 ] } }, -{ "type": "Feature", "properties": { "y": 40.4543436, "x": -80.0083709, "osmid": 3167104186, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083709, 40.4543436 ] } }, -{ "type": "Feature", "properties": { "y": 40.4543161, "x": -80.0085006, "osmid": 3167104185, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085006, 40.4543161 ] } }, -{ "type": "Feature", "properties": { "y": 40.4543566, "x": -80.0083254, "osmid": 3167104188, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083254, 40.4543566 ] } }, { "type": "Feature", "properties": { "y": 40.4365388, "x": -79.9970499, "osmid": 7231384760, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9970499, 40.4365388 ] } }, { "type": "Feature", "properties": { "y": 40.4366292, "x": -79.9969915, "osmid": 7231384758, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9969915, 40.4366292 ] } }, -{ "type": "Feature", "properties": { "y": 40.4540476, "x": -80.0062128, "osmid": 3167104190, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062128, 40.4540476 ] } }, +{ "type": "Feature", "properties": { "y": 40.4273122, "x": -79.9714095, "osmid": 105852092, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9714095, 40.4273122 ] } }, +{ "type": "Feature", "properties": { "y": 40.4543436, "x": -80.0083709, "osmid": 3167104186, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083709, 40.4543436 ] } }, +{ "type": "Feature", "properties": { "y": 40.4543566, "x": -80.0083254, "osmid": 3167104188, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083254, 40.4543566 ] } }, +{ "type": "Feature", "properties": { "y": 40.4543161, "x": -80.0085006, "osmid": 3167104185, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085006, 40.4543161 ] } }, { "type": "Feature", "properties": { "y": 40.4351365, "x": -79.9951074, "osmid": 7231384768, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9951074, 40.4351365 ] } }, { "type": "Feature", "properties": { "y": 40.4350961, "x": -79.9951362, "osmid": 7231384769, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9951362, 40.4350961 ] } }, { "type": "Feature", "properties": { "y": 40.43512, "x": -79.9952033, "osmid": 7231384770, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9952033, 40.43512 ] } }, -{ "type": "Feature", "properties": { "y": 40.4273122, "x": -79.9714095, "osmid": 105852092, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9714095, 40.4273122 ] } }, { "type": "Feature", "properties": { "y": 40.4540401, "x": -80.0062968, "osmid": 3167104189, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062968, 40.4540401 ] } }, +{ "type": "Feature", "properties": { "y": 40.4538931, "x": -80.0062525, "osmid": 3167104191, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062525, 40.4538931 ] } }, { "type": "Feature", "properties": { "y": 40.4358136, "x": -79.9953302, "osmid": 7231384773, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9953302, 40.4358136 ] } }, { "type": "Feature", "properties": { "y": 40.453953, "x": -80.0062799, "osmid": 3167104192, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062799, 40.453953 ] } }, { "type": "Feature", "properties": { "y": 40.4356717, "x": -79.9949758, "osmid": 7231384775, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9949758, 40.4356717 ] } }, @@ -4627,6 +4483,7 @@ { "type": "Feature", "properties": { "y": 40.4313717, "x": -79.9368645, "osmid": 104213848, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9368645, 40.4313717 ] } }, { "type": "Feature", "properties": { "y": 40.4412522, "x": -79.9468266, "osmid": 302755163, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9468266, 40.4412522 ] } }, { "type": "Feature", "properties": { "y": 40.4589442, "x": -79.9479739, "osmid": 105262434, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9479739, 40.4589442 ] } }, +{ "type": "Feature", "properties": { "y": 40.4432993, "x": -79.945245, "osmid": 1727245666, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.945245, 40.4432993 ] } }, { "type": "Feature", "properties": { "y": 40.4564467, "x": -79.9351904, "osmid": 393227621, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9351904, 40.4564467 ] } }, { "type": "Feature", "properties": { "y": 40.4411065, "x": -79.991938, "osmid": 871705972, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.991938, 40.4411065 ] } }, { "type": "Feature", "properties": { "y": 40.4370785, "x": -79.9934124, "osmid": 104738167, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9934124, 40.4370785 ] } }, @@ -4656,12 +4513,8 @@ { "type": "Feature", "properties": { "y": 40.4538179, "x": -79.9475095, "osmid": 1828171208, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9475095, 40.4538179 ] } }, { "type": "Feature", "properties": { "y": 40.4442024, "x": -79.9496381, "osmid": 6535917007, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9496381, 40.4442024 ] } }, { "type": "Feature", "properties": { "y": 40.4256996, "x": -79.9980786, "osmid": 105262563, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9980786, 40.4256996 ] } }, -{ "type": "Feature", "properties": { "y": 40.4306473, "x": -79.9898793, "osmid": 7278571004, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9898793, 40.4306473 ] } }, { "type": "Feature", "properties": { "y": 40.4407196, "x": -80.0189005, "osmid": 1510780413, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0189005, 40.4407196 ] } }, -{ "type": "Feature", "properties": { "y": 40.4306524, "x": -79.98966, "osmid": 7278571013, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.98966, 40.4306524 ] } }, -{ "type": "Feature", "properties": { "y": 40.4306612, "x": -79.9892784, "osmid": 7278571015, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9892784, 40.4306612 ] } }, { "type": "Feature", "properties": { "y": 40.4255571, "x": -80.0031554, "osmid": 105885196, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0031554, 40.4255571 ] } }, -{ "type": "Feature", "properties": { "y": 40.4304755, "x": -79.9892732, "osmid": 7278571022, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9892732, 40.4304755 ] } }, { "type": "Feature", "properties": { "y": 40.4383413, "x": -80.0143712, "osmid": 1510780446, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0143712, 40.4383413 ] } }, { "type": "Feature", "properties": { "y": 40.4385177, "x": -80.0143595, "osmid": 1510780448, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0143595, 40.4385177 ] } }, { "type": "Feature", "properties": { "y": 40.4291691, "x": -79.9992591, "osmid": 271199778, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9992591, 40.4291691 ] } }, @@ -4680,16 +4533,13 @@ { "type": "Feature", "properties": { "y": 40.4353108, "x": -80.0279773, "osmid": 7866723946, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0279773, 40.4353108 ] } }, { "type": "Feature", "properties": { "y": 40.4471457, "x": -79.9917932, "osmid": 105983593, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9917932, 40.4471457 ] } }, { "type": "Feature", "properties": { "y": 40.4416036, "x": -80.0343034, "osmid": 106081907, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0343034, 40.4416036 ] } }, +{ "type": "Feature", "properties": { "y": 40.4384431, "x": -80.0284319, "osmid": 7866723957, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0284319, 40.4384431 ] } }, { "type": "Feature", "properties": { "y": 40.4383232, "x": -80.0284646, "osmid": 7866723961, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0284646, 40.4383232 ] } }, { "type": "Feature", "properties": { "y": 40.4383722, "x": -80.0287981, "osmid": 7866723962, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0287981, 40.4383722 ] } }, { "type": "Feature", "properties": { "y": 40.4384517, "x": -80.0287715, "osmid": 7866723963, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0287715, 40.4384517 ] } }, { "type": "Feature", "properties": { "y": 40.435455, "x": -80.0147169, "osmid": 104705659, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0147169, 40.435455 ] } }, { "type": "Feature", "properties": { "y": 40.4355196, "x": -80.0152391, "osmid": 104705664, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0152391, 40.4355196 ] } }, { "type": "Feature", "properties": { "y": 40.4364083, "x": -80.0293354, "osmid": 7866723969, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0293354, 40.4364083 ] } }, -{ "type": "Feature", "properties": { "y": 40.4363433, "x": -80.0292803, "osmid": 7866723970, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0292803, 40.4363433 ] } }, -{ "type": "Feature", "properties": { "y": 40.4368305, "x": -80.0289076, "osmid": 7866723976, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0289076, 40.4368305 ] } }, -{ "type": "Feature", "properties": { "y": 40.4367076, "x": -80.028902, "osmid": 7866723977, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.028902, 40.4367076 ] } }, -{ "type": "Feature", "properties": { "y": 40.4361424, "x": -80.0289671, "osmid": 7866723980, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0289671, 40.4361424 ] } }, { "type": "Feature", "properties": { "y": 40.4364271, "x": -80.0297588, "osmid": 7866723982, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0297588, 40.4364271 ] } }, { "type": "Feature", "properties": { "y": 40.4366829, "x": -80.0295765, "osmid": 7866723984, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0295765, 40.4366829 ] } }, { "type": "Feature", "properties": { "y": 40.4369291, "x": -80.0101776, "osmid": 6015692434, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0101776, 40.4369291 ] } }, @@ -4708,8 +4558,8 @@ { "type": "Feature", "properties": { "y": 40.4553752, "x": -80.0076366, "osmid": 5336805061, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0076366, 40.4553752 ] } }, { "type": "Feature", "properties": { "y": 40.4552018, "x": -80.0085595, "osmid": 5336805063, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085595, 40.4552018 ] } }, { "type": "Feature", "properties": { "y": 40.4552643, "x": -80.0084418, "osmid": 5336805064, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084418, 40.4552643 ] } }, -{ "type": "Feature", "properties": { "y": 40.4552259, "x": -80.0084312, "osmid": 5336805065, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084312, 40.4552259 ] } }, { "type": "Feature", "properties": { "y": 40.4397495, "x": -79.9910823, "osmid": 5760233161, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9910823, 40.4397495 ] } }, +{ "type": "Feature", "properties": { "y": 40.4552259, "x": -80.0084312, "osmid": 5336805065, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084312, 40.4552259 ] } }, { "type": "Feature", "properties": { "y": 40.4287556, "x": -79.9864096, "osmid": 105688775, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9864096, 40.4287556 ] } }, { "type": "Feature", "properties": { "y": 40.4277437, "x": -79.9863528, "osmid": 105688778, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9863528, 40.4277437 ] } }, { "type": "Feature", "properties": { "y": 40.4271804, "x": -79.9863335, "osmid": 105688785, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9863335, 40.4271804 ] } }, @@ -4722,13 +4572,11 @@ { "type": "Feature", "properties": { "y": 40.4485413, "x": -79.9509329, "osmid": 6535851742, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9509329, 40.4485413 ] } }, { "type": "Feature", "properties": { "y": 40.4377397, "x": -80.0018991, "osmid": 7011020512, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018991, 40.4377397 ] } }, { "type": "Feature", "properties": { "y": 40.4372391, "x": -80.0022432, "osmid": 7011020513, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0022432, 40.4372391 ] } }, -{ "type": "Feature", "properties": { "y": 40.4387164, "x": -80.0044746, "osmid": 7011020514, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0044746, 40.4387164 ] } }, { "type": "Feature", "properties": { "y": 40.4376039, "x": -79.9910871, "osmid": 3213635298, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9910871, 40.4376039 ] } }, { "type": "Feature", "properties": { "y": 40.4261473, "x": -79.9862821, "osmid": 105688801, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9862821, 40.4261473 ] } }, -{ "type": "Feature", "properties": { "y": 40.4392032, "x": -80.0039834, "osmid": 7011020517, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0039834, 40.4392032 ] } }, +{ "type": "Feature", "properties": { "y": 40.4411844, "x": -79.9636355, "osmid": 7157460707, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9636355, 40.4411844 ] } }, { "type": "Feature", "properties": { "y": 40.4348958, "x": -80.0080838, "osmid": 6015823589, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0080838, 40.4348958 ] } }, { "type": "Feature", "properties": { "y": 40.4398071, "x": -79.9623274, "osmid": 7157460711, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9623274, 40.4398071 ] } }, -{ "type": "Feature", "properties": { "y": 40.4411844, "x": -79.9636355, "osmid": 7157460707, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9636355, 40.4411844 ] } }, { "type": "Feature", "properties": { "y": 40.4354003, "x": -80.009063, "osmid": 6015823595, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.009063, 40.4354003 ] } }, { "type": "Feature", "properties": { "y": 40.4425784, "x": -79.9984679, "osmid": 105983726, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9984679, 40.4425784 ] } }, { "type": "Feature", "properties": { "y": 40.434961, "x": -80.0082077, "osmid": 6015823603, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0082077, 40.434961 ] } }, @@ -4816,12 +4664,10 @@ { "type": "Feature", "properties": { "y": 40.4261678, "x": -79.9685794, "osmid": 7011020754, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9685794, 40.4261678 ] } }, { "type": "Feature", "properties": { "y": 40.4267418, "x": -79.9693671, "osmid": 7011020755, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9693671, 40.4267418 ] } }, { "type": "Feature", "properties": { "y": 40.4263173, "x": -79.9695518, "osmid": 7011020758, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9695518, 40.4263173 ] } }, -{ "type": "Feature", "properties": { "y": 40.4424086, "x": -79.9523967, "osmid": 2173733049, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9523967, 40.4424086 ] } }, { "type": "Feature", "properties": { "y": 40.4355424, "x": -79.9947012, "osmid": 684666857, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9947012, 40.4355424 ] } }, { "type": "Feature", "properties": { "y": 40.4482777, "x": -80.0042714, "osmid": 275754986, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0042714, 40.4482777 ] } }, { "type": "Feature", "properties": { "y": 40.4582295, "x": -79.9920258, "osmid": 1253650418, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9920258, 40.4582295 ] } }, { "type": "Feature", "properties": { "y": 40.4357864, "x": -79.9946692, "osmid": 684666869, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9946692, 40.4357864 ] } }, -{ "type": "Feature", "properties": { "y": 40.4492951, "x": -79.944514, "osmid": 7491694582, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.944514, 40.4492951 ] } }, { "type": "Feature", "properties": { "y": 40.4347642, "x": -79.9669366, "osmid": 3682840567, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9669366, 40.4347642 ] } }, { "type": "Feature", "properties": { "y": 40.4582399, "x": -79.9909034, "osmid": 1253650427, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9909034, 40.4582399 ] } }, { "type": "Feature", "properties": { "y": 40.4361534, "x": -79.9657715, "osmid": 3682840571, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9657715, 40.4361534 ] } }, @@ -4909,28 +4755,20 @@ { "type": "Feature", "properties": { "y": 40.4386092, "x": -79.9438358, "osmid": 302985526, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9438358, 40.4386092 ] } }, { "type": "Feature", "properties": { "y": 40.4486425, "x": -80.0022888, "osmid": 275755344, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0022888, 40.4486425 ] } }, { "type": "Feature", "properties": { "y": 40.4587544, "x": -79.9493887, "osmid": 104378722, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9493887, 40.4587544 ] } }, -{ "type": "Feature", "properties": { "y": 40.4564929, "x": -79.976177, "osmid": 6080525402, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976177, 40.4564929 ] } }, { "type": "Feature", "properties": { "y": 40.4590861, "x": -79.9491526, "osmid": 104378729, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9491526, 40.4590861 ] } }, -{ "type": "Feature", "properties": { "y": 40.456204, "x": -79.975831, "osmid": 6080525403, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.975831, 40.456204 ] } }, -{ "type": "Feature", "properties": { "y": 40.4566582, "x": -79.9759325, "osmid": 6080525406, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9759325, 40.4566582 ] } }, -{ "type": "Feature", "properties": { "y": 40.4558792, "x": -79.9769193, "osmid": 6080525408, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9769193, 40.4558792 ] } }, { "type": "Feature", "properties": { "y": 40.455849, "x": -79.9769627, "osmid": 6080525409, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9769627, 40.455849 ] } }, { "type": "Feature", "properties": { "y": 40.4262635, "x": -79.9764169, "osmid": 6904172089, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9764169, 40.4262635 ] } }, { "type": "Feature", "properties": { "y": 40.445118, "x": -79.9556407, "osmid": 2174857615, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9556407, 40.445118 ] } }, { "type": "Feature", "properties": { "y": 40.4410583, "x": -80.0027531, "osmid": 105197971, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0027531, 40.4410583 ] } }, { "type": "Feature", "properties": { "y": 40.4258077, "x": -79.9764669, "osmid": 6904172090, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9764669, 40.4258077 ] } }, -{ "type": "Feature", "properties": { "y": 40.4564382, "x": -79.9761115, "osmid": 6080525411, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9761115, 40.4564382 ] } }, -{ "type": "Feature", "properties": { "y": 40.4566052, "x": -79.9758701, "osmid": 6080525412, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9758701, 40.4566052 ] } }, { "type": "Feature", "properties": { "y": 40.444218, "x": -79.955417, "osmid": 2174857624, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.955417, 40.444218 ] } }, { "type": "Feature", "properties": { "y": 40.4357665, "x": -79.9942132, "osmid": 684667294, "highway": "motorway_junction", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9942132, 40.4357665 ] } }, { "type": "Feature", "properties": { "y": 40.4566728, "x": -80.0112188, "osmid": 105165220, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0112188, 40.4566728 ] } }, { "type": "Feature", "properties": { "y": 40.4444656, "x": -79.9565328, "osmid": 2174857641, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9565328, 40.4444656 ] } }, { "type": "Feature", "properties": { "y": 40.4408182, "x": -80.0021009, "osmid": 105197994, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0021009, 40.4408182 ] } }, { "type": "Feature", "properties": { "y": 40.4565735, "x": -80.0117408, "osmid": 105165227, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0117408, 40.4565735 ] } }, -{ "type": "Feature", "properties": { "y": 40.4254678, "x": -79.9782536, "osmid": 6904172096, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9782536, 40.4254678 ] } }, { "type": "Feature", "properties": { "y": 40.4563836, "x": -80.0127394, "osmid": 105165237, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0127394, 40.4563836 ] } }, { "type": "Feature", "properties": { "y": 40.440168, "x": -79.9423976, "osmid": 1673572790, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9423976, 40.440168 ] } }, -{ "type": "Feature", "properties": { "y": 40.4253253, "x": -79.9756143, "osmid": 6904172097, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9756143, 40.4253253 ] } }, { "type": "Feature", "properties": { "y": 40.4560228, "x": -79.9746178, "osmid": 3277894073, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9746178, 40.4560228 ] } }, { "type": "Feature", "properties": { "y": 40.4559985, "x": -80.0147638, "osmid": 105165247, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0147638, 40.4559985 ] } }, { "type": "Feature", "properties": { "y": 40.44465, "x": -79.9698736, "osmid": 107557315, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9698736, 40.44465 ] } }, @@ -4977,8 +4815,8 @@ { "type": "Feature", "properties": { "y": 40.4364005, "x": -80.0011514, "osmid": 6391968409, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0011514, 40.4364005 ] } }, { "type": "Feature", "properties": { "y": 40.4363707, "x": -80.0188332, "osmid": 104837786, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0188332, 40.4363707 ] } }, { "type": "Feature", "properties": { "y": 40.4338563, "x": -79.9734764, "osmid": 339260059, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9734764, 40.4338563 ] } }, -{ "type": "Feature", "properties": { "y": 40.4572898, "x": -80.0072258, "osmid": 107557537, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0072258, 40.4572898 ] } }, { "type": "Feature", "properties": { "y": 40.4365246, "x": -80.0199137, "osmid": 104837793, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0199137, 40.4365246 ] } }, +{ "type": "Feature", "properties": { "y": 40.4572898, "x": -80.0072258, "osmid": 107557537, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0072258, 40.4572898 ] } }, { "type": "Feature", "properties": { "y": 40.456438, "x": -79.9378613, "osmid": 393917089, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9378613, 40.456438 ] } }, { "type": "Feature", "properties": { "y": 40.4420519, "x": -79.9444982, "osmid": 302756522, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9444982, 40.4420519 ] } }, { "type": "Feature", "properties": { "y": 40.4417731, "x": -79.9445988, "osmid": 302756523, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9445988, 40.4417731 ] } }, @@ -5093,8 +4931,8 @@ { "type": "Feature", "properties": { "y": 40.4551609, "x": -80.0087309, "osmid": 5353518027, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0087309, 40.4551609 ] } }, { "type": "Feature", "properties": { "y": 40.4551807, "x": -80.0086447, "osmid": 5353518028, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0086447, 40.4551807 ] } }, { "type": "Feature", "properties": { "y": 40.4422585, "x": -80.0042624, "osmid": 5472105421, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0042624, 40.4422585 ] } }, -{ "type": "Feature", "properties": { "y": 40.4550068, "x": -80.0095648, "osmid": 5353518030, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0095648, 40.4550068 ] } }, { "type": "Feature", "properties": { "y": 40.4422103, "x": -80.0042437, "osmid": 5472105422, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0042437, 40.4422103 ] } }, +{ "type": "Feature", "properties": { "y": 40.4550068, "x": -80.0095648, "osmid": 5353518030, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0095648, 40.4550068 ] } }, { "type": "Feature", "properties": { "y": 40.4391092, "x": -79.9820362, "osmid": 107557838, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9820362, 40.4391092 ] } }, { "type": "Feature", "properties": { "y": 40.4398804, "x": -79.9660847, "osmid": 105133007, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9660847, 40.4398804 ] } }, { "type": "Feature", "properties": { "y": 40.4518574, "x": -80.0024211, "osmid": 5240009680, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0024211, 40.4518574 ] } }, @@ -5143,7 +4981,7 @@ { "type": "Feature", "properties": { "y": 40.4421724, "x": -80.0060026, "osmid": 5472105470, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0060026, 40.4421724 ] } }, { "type": "Feature", "properties": { "y": 40.443057, "x": -80.005987, "osmid": 5472105471, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005987, 40.443057 ] } }, { "type": "Feature", "properties": { "y": 40.442379, "x": -80.005758, "osmid": 5472105468, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005758, 40.442379 ] } }, -{ "type": "Feature", "properties": { "y": 40.4570018, "x": -80.0053169, "osmid": 5253411834, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0053169, 40.4570018 ] } }, +{ "type": "Feature", "properties": { "y": 40.4526566, "x": -80.0026039, "osmid": 5240009720, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0026039, 40.4526566 ] } }, { "type": "Feature", "properties": { "y": 40.4429467, "x": -80.0064412, "osmid": 5472105474, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0064412, 40.4429467 ] } }, { "type": "Feature", "properties": { "y": 40.4430092, "x": -80.0061827, "osmid": 5472105475, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061827, 40.4430092 ] } }, { "type": "Feature", "properties": { "y": 40.4433265, "x": -80.0052608, "osmid": 5472105476, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0052608, 40.4433265 ] } }, @@ -5153,8 +4991,6 @@ { "type": "Feature", "properties": { "y": 40.4361209, "x": -79.9522864, "osmid": 106017800, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9522864, 40.4361209 ] } }, { "type": "Feature", "properties": { "y": 40.4551556, "x": -79.9309559, "osmid": 104608776, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9309559, 40.4551556 ] } }, { "type": "Feature", "properties": { "y": 40.440762, "x": -79.9434387, "osmid": 302756874, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9434387, 40.440762 ] } }, -{ "type": "Feature", "properties": { "y": 40.4317105, "x": -79.978816, "osmid": 7011546127, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.978816, 40.4317105 ] } }, -{ "type": "Feature", "properties": { "y": 40.4317536, "x": -79.979542, "osmid": 7011546128, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.979542, 40.4317536 ] } }, { "type": "Feature", "properties": { "y": 40.4295206, "x": -79.9804733, "osmid": 7011546129, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9804733, 40.4295206 ] } }, { "type": "Feature", "properties": { "y": 40.4558438, "x": -79.9743291, "osmid": 2588521489, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9743291, 40.4558438 ] } }, { "type": "Feature", "properties": { "y": 40.4293606, "x": -79.9804891, "osmid": 7011546132, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9804891, 40.4293606 ] } }, @@ -5162,8 +4998,8 @@ { "type": "Feature", "properties": { "y": 40.4554312, "x": -79.9303825, "osmid": 104608788, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9303825, 40.4554312 ] } }, { "type": "Feature", "properties": { "y": 40.4294464, "x": -79.9765271, "osmid": 7011546135, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9765271, 40.4294464 ] } }, { "type": "Feature", "properties": { "y": 40.4596517, "x": -79.9686705, "osmid": 2588521496, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9686705, 40.4596517 ] } }, -{ "type": "Feature", "properties": { "y": 40.4557998, "x": -80.0053404, "osmid": 5251478560, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0053404, 40.4557998 ] } }, { "type": "Feature", "properties": { "y": 40.4301358, "x": -79.9760791, "osmid": 2142352416, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9760791, 40.4301358 ] } }, +{ "type": "Feature", "properties": { "y": 40.4557998, "x": -80.0053404, "osmid": 5251478560, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0053404, 40.4557998 ] } }, { "type": "Feature", "properties": { "y": 40.455941, "x": -80.0047045, "osmid": 5251478562, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0047045, 40.455941 ] } }, { "type": "Feature", "properties": { "y": 40.4562651, "x": -80.0047717, "osmid": 5251478565, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0047717, 40.4562651 ] } }, { "type": "Feature", "properties": { "y": 40.4598094, "x": -79.9857537, "osmid": 7016395817, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9857537, 40.4598094 ] } }, @@ -5171,8 +5007,8 @@ { "type": "Feature", "properties": { "y": 40.4559627, "x": -80.0045728, "osmid": 5251478570, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0045728, 40.4559627 ] } }, { "type": "Feature", "properties": { "y": 40.456139, "x": -80.005451, "osmid": 5251478571, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005451, 40.456139 ] } }, { "type": "Feature", "properties": { "y": 40.4302151, "x": -79.977461, "osmid": 2142352430, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.977461, 40.4302151 ] } }, -{ "type": "Feature", "properties": { "y": 40.4436537, "x": -79.9448713, "osmid": 1715713071, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9448713, 40.4436537 ] } }, { "type": "Feature", "properties": { "y": 40.4443248, "x": -79.94463, "osmid": 1715713070, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.94463, 40.4443248 ] } }, +{ "type": "Feature", "properties": { "y": 40.4436537, "x": -79.9448713, "osmid": 1715713071, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9448713, 40.4436537 ] } }, { "type": "Feature", "properties": { "y": 40.4573398, "x": -80.0050836, "osmid": 5253411891, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0050836, 40.4573398 ] } }, { "type": "Feature", "properties": { "y": 40.4438802, "x": -79.9447735, "osmid": 1715713076, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9447735, 40.4438802 ] } }, { "type": "Feature", "properties": { "y": 40.4438374, "x": -79.9446662, "osmid": 1715713082, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9446662, 40.4438374 ] } }, @@ -5202,6 +5038,7 @@ { "type": "Feature", "properties": { "y": 40.4447972, "x": -79.9998703, "osmid": 6291666032, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9998703, 40.4447972 ] } }, { "type": "Feature", "properties": { "y": 40.4443492, "x": -79.999675, "osmid": 6291666033, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.999675, 40.4443492 ] } }, { "type": "Feature", "properties": { "y": 40.4427316, "x": -80.0304634, "osmid": 3661870199, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0304634, 40.4427316 ] } }, +{ "type": "Feature", "properties": { "y": 40.4477001, "x": -79.9312188, "osmid": 2716677242, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9312188, 40.4477001 ] } }, { "type": "Feature", "properties": { "y": 40.4472967, "x": -79.9664893, "osmid": 6186513532, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9664893, 40.4472967 ] } }, { "type": "Feature", "properties": { "y": 40.4464494, "x": -79.9673407, "osmid": 6186513535, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9673407, 40.4464494 ] } }, { "type": "Feature", "properties": { "y": 40.4438926, "x": -79.9995251, "osmid": 6291666053, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9995251, 40.4438926 ] } }, @@ -5212,11 +5049,12 @@ { "type": "Feature", "properties": { "y": 40.4451237, "x": -79.962781, "osmid": 6186513545, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.962781, 40.4451237 ] } }, { "type": "Feature", "properties": { "y": 40.4439827, "x": -79.9991713, "osmid": 6291666060, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9991713, 40.4439827 ] } }, { "type": "Feature", "properties": { "y": 40.4252555, "x": -79.9513305, "osmid": 3564516493, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9513305, 40.4252555 ] } }, -{ "type": "Feature", "properties": { "y": 40.447408, "x": -79.9492636, "osmid": 5853099149, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9492636, 40.447408 ] } }, +{ "type": "Feature", "properties": { "y": 40.4481735, "x": -79.9490586, "osmid": 5853099147, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9490586, 40.4481735 ] } }, { "type": "Feature", "properties": { "y": 40.4439995, "x": -79.9993952, "osmid": 6291666063, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9993952, 40.4439995 ] } }, +{ "type": "Feature", "properties": { "y": 40.447408, "x": -79.9492636, "osmid": 5853099149, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9492636, 40.447408 ] } }, +{ "type": "Feature", "properties": { "y": 40.4484646, "x": -79.9478883, "osmid": 5853099144, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9478883, 40.4484646 ] } }, { "type": "Feature", "properties": { "y": 40.447624, "x": -79.9484611, "osmid": 5853099151, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9484611, 40.447624 ] } }, -{ "type": "Feature", "properties": { "y": 40.4476288, "x": -79.9482466, "osmid": 5853099152, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9482466, 40.4476288 ] } }, -{ "type": "Feature", "properties": { "y": 40.4481735, "x": -79.9490586, "osmid": 5853099147, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9490586, 40.4481735 ] } }, +{ "type": "Feature", "properties": { "y": 40.4479373, "x": -79.9478414, "osmid": 5853099155, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9478414, 40.4479373 ] } }, { "type": "Feature", "properties": { "y": 40.4258666, "x": -79.9509224, "osmid": 3564516500, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9509224, 40.4258666 ] } }, { "type": "Feature", "properties": { "y": 40.4455911, "x": -79.9613824, "osmid": 6186513566, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9613824, 40.4455911 ] } }, { "type": "Feature", "properties": { "y": 40.4459005, "x": -79.9612576, "osmid": 6186513569, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9612576, 40.4459005 ] } }, @@ -5329,8 +5167,8 @@ { "type": "Feature", "properties": { "y": 40.4492798, "x": -80.0089124, "osmid": 5394970009, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0089124, 40.4492798 ] } }, { "type": "Feature", "properties": { "y": 40.4275727, "x": -79.9655229, "osmid": 4020843926, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9655229, 40.4275727 ] } }, { "type": "Feature", "properties": { "y": 40.4279577, "x": -79.9656781, "osmid": 4020843927, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9656781, 40.4279577 ] } }, -{ "type": "Feature", "properties": { "y": 40.4448377, "x": -79.946557, "osmid": 302757274, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.946557, 40.4448377 ] } }, { "type": "Feature", "properties": { "y": 40.444577, "x": -79.9465347, "osmid": 302757272, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9465347, 40.444577 ] } }, +{ "type": "Feature", "properties": { "y": 40.4448377, "x": -79.946557, "osmid": 302757274, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.946557, 40.4448377 ] } }, { "type": "Feature", "properties": { "y": 40.4485849, "x": -80.0105345, "osmid": 5394970015, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0105345, 40.4485849 ] } }, { "type": "Feature", "properties": { "y": 40.4483701, "x": -80.0105647, "osmid": 5394970016, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0105647, 40.4483701 ] } }, { "type": "Feature", "properties": { "y": 40.4483715, "x": -80.0104478, "osmid": 5394970017, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0104478, 40.4483715 ] } }, @@ -5363,10 +5201,10 @@ { "type": "Feature", "properties": { "y": 40.444435, "x": -79.9872978, "osmid": 2978788825, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9872978, 40.444435 ] } }, { "type": "Feature", "properties": { "y": 40.4465358, "x": -79.9573966, "osmid": 2978788826, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9573966, 40.4465358 ] } }, { "type": "Feature", "properties": { "y": 40.4482399, "x": -80.0104438, "osmid": 684996060, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0104438, 40.4482399 ] } }, +{ "type": "Feature", "properties": { "y": 40.4423271, "x": -79.9394735, "osmid": 302757340, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9394735, 40.4423271 ] } }, { "type": "Feature", "properties": { "y": 40.4419733, "x": -79.9391931, "osmid": 302757341, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9391931, 40.4419733 ] } }, { "type": "Feature", "properties": { "y": 40.4423195, "x": -79.9398304, "osmid": 302757342, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9398304, 40.4423195 ] } }, { "type": "Feature", "properties": { "y": 40.4418503, "x": -79.9394889, "osmid": 302757343, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9394889, 40.4418503 ] } }, -{ "type": "Feature", "properties": { "y": 40.4423271, "x": -79.9394735, "osmid": 302757340, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9394735, 40.4423271 ] } }, { "type": "Feature", "properties": { "y": 40.4562591, "x": -79.9994631, "osmid": 5207537126, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9994631, 40.4562591 ] } }, { "type": "Feature", "properties": { "y": 40.4565344, "x": -79.9995506, "osmid": 5207537127, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9995506, 40.4565344 ] } }, { "type": "Feature", "properties": { "y": 40.4482166, "x": -80.0090548, "osmid": 684996077, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0090548, 40.4482166 ] } }, @@ -5375,9 +5213,7 @@ { "type": "Feature", "properties": { "y": 40.4568467, "x": -79.9988963, "osmid": 5207537137, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9988963, 40.4568467 ] } }, { "type": "Feature", "properties": { "y": 40.4293928, "x": -79.9875257, "osmid": 106051058, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9875257, 40.4293928 ] } }, { "type": "Feature", "properties": { "y": 40.4464713, "x": -80.0099115, "osmid": 684996085, "highway": "motorway_junction", "ref": "1B;1C" }, "geometry": { "type": "Point", "coordinates": [ -80.0099115, 40.4464713 ] } }, -{ "type": "Feature", "properties": { "y": 40.4375016, "x": -80.0012705, "osmid": 7271790069, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0012705, 40.4375016 ] } }, { "type": "Feature", "properties": { "y": 40.4562604, "x": -79.999847, "osmid": 5207537142, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.999847, 40.4562604 ] } }, -{ "type": "Feature", "properties": { "y": 40.437009, "x": -80.001631, "osmid": 7271790072, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001631, 40.437009 ] } }, { "type": "Feature", "properties": { "y": 40.4253648, "x": -79.9876465, "osmid": 105985529, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9876465, 40.4253648 ] } }, { "type": "Feature", "properties": { "y": 40.4266116, "x": -79.98744, "osmid": 106051068, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.98744, 40.4266116 ] } }, { "type": "Feature", "properties": { "y": 40.4592347, "x": -80.0164, "osmid": 105690632, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0164, 40.4592347 ] } }, @@ -5431,8 +5267,8 @@ { "type": "Feature", "properties": { "y": 40.4537045, "x": -79.9906872, "osmid": 104871561, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9906872, 40.4537045 ] } }, { "type": "Feature", "properties": { "y": 40.4478751, "x": -80.0206893, "osmid": 684996237, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0206893, 40.4478751 ] } }, { "type": "Feature", "properties": { "y": 40.4478137, "x": -80.0209207, "osmid": 684996239, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0209207, 40.4478137 ] } }, -{ "type": "Feature", "properties": { "y": 40.4427689, "x": -79.9620152, "osmid": 104707727, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9620152, 40.4427689 ] } }, { "type": "Feature", "properties": { "y": 40.4479297, "x": -80.0208371, "osmid": 684996244, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0208371, 40.4479297 ] } }, +{ "type": "Feature", "properties": { "y": 40.4501262, "x": -80.0159229, "osmid": 105993621, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0159229, 40.4501262 ] } }, { "type": "Feature", "properties": { "y": 40.457869, "x": -80.0041019, "osmid": 5716522647, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0041019, 40.457869 ] } }, { "type": "Feature", "properties": { "y": 40.457875, "x": -80.0040578, "osmid": 5716522648, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0040578, 40.457875 ] } }, { "type": "Feature", "properties": { "y": 40.4483992, "x": -80.0211249, "osmid": 684996249, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0211249, 40.4483992 ] } }, @@ -5606,8 +5442,6 @@ { "type": "Feature", "properties": { "y": 40.4402643, "x": -79.9577724, "osmid": 6773913550, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9577724, 40.4402643 ] } }, { "type": "Feature", "properties": { "y": 40.4402463, "x": -79.957918, "osmid": 6773913551, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.957918, 40.4402463 ] } }, { "type": "Feature", "properties": { "y": 40.4403112, "x": -79.9578308, "osmid": 6773913552, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9578308, 40.4403112 ] } }, -{ "type": "Feature", "properties": { "y": 40.440308, "x": -79.9579945, "osmid": 6773913553, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9579945, 40.440308 ] } }, -{ "type": "Feature", "properties": { "y": 40.4408238, "x": -79.9572824, "osmid": 6773913554, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9572824, 40.4408238 ] } }, { "type": "Feature", "properties": { "y": 40.4543727, "x": -79.9476706, "osmid": 106051546, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9476706, 40.4543727 ] } }, { "type": "Feature", "properties": { "y": 40.4507993, "x": -79.9754817, "osmid": 2978789338, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9754817, 40.4507993 ] } }, { "type": "Feature", "properties": { "y": 40.4520859, "x": -79.9544447, "osmid": 2978789341, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9544447, 40.4520859 ] } }, @@ -5637,6 +5471,7 @@ { "type": "Feature", "properties": { "y": 40.4567281, "x": -80.0065201, "osmid": 104577031, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0065201, 40.4567281 ] } }, { "type": "Feature", "properties": { "y": 40.4579442, "x": -79.9351888, "osmid": 106051591, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9351888, 40.4579442 ] } }, { "type": "Feature", "properties": { "y": 40.4573895, "x": -80.0067325, "osmid": 104577036, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0067325, 40.4573895 ] } }, +{ "type": "Feature", "properties": { "y": 40.4295915, "x": -79.9653359, "osmid": 1437170697, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9653359, 40.4295915 ] } }, { "type": "Feature", "properties": { "y": 40.4562048, "x": -80.0027433, "osmid": 5716523024, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0027433, 40.4562048 ] } }, { "type": "Feature", "properties": { "y": 40.4592303, "x": -79.9923457, "osmid": 105035796, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9923457, 40.4592303 ] } }, { "type": "Feature", "properties": { "y": 40.4522548, "x": -80.014953, "osmid": 104675349, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.014953, 40.4522548 ] } }, @@ -5756,7 +5591,6 @@ { "type": "Feature", "properties": { "y": 40.4505761, "x": -79.9760486, "osmid": 1252047072, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9760486, 40.4505761 ] } }, { "type": "Feature", "properties": { "y": 40.4278661, "x": -79.9452149, "osmid": 1855961314, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9452149, 40.4278661 ] } }, { "type": "Feature", "properties": { "y": 40.4364041, "x": -80.0156207, "osmid": 517880037, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0156207, 40.4364041 ] } }, -{ "type": "Feature", "properties": { "y": 40.4438783, "x": -79.9434443, "osmid": 1832663272, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9434443, 40.4438783 ] } }, { "type": "Feature", "properties": { "y": 40.4519942, "x": -80.0060616, "osmid": 5247174894, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0060616, 40.4519942 ] } }, { "type": "Feature", "properties": { "y": 40.4256151, "x": -80.001177, "osmid": 105789683, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001177, 40.4256151 ] } }, { "type": "Feature", "properties": { "y": 40.4497741, "x": -79.9746495, "osmid": 1252047091, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9746495, 40.4497741 ] } }, @@ -5804,12 +5638,8 @@ { "type": "Feature", "properties": { "y": 40.4418016, "x": -79.9635357, "osmid": 6532086139, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9635357, 40.4418016 ] } }, { "type": "Feature", "properties": { "y": 40.4525162, "x": -80.0287508, "osmid": 7130200448, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0287508, 40.4525162 ] } }, { "type": "Feature", "properties": { "y": 40.4381852, "x": -79.9726831, "osmid": 104774017, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9726831, 40.4381852 ] } }, -{ "type": "Feature", "properties": { "y": 40.4537194, "x": -80.0307024, "osmid": 7130200450, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0307024, 40.4537194 ] } }, -{ "type": "Feature", "properties": { "y": 40.4535723, "x": -80.0306536, "osmid": 7130200453, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0306536, 40.4535723 ] } }, { "type": "Feature", "properties": { "y": 40.4299742, "x": -79.9577602, "osmid": 1685862790, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9577602, 40.4299742 ] } }, -{ "type": "Feature", "properties": { "y": 40.4540364, "x": -80.0292399, "osmid": 7130200456, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0292399, 40.4540364 ] } }, { "type": "Feature", "properties": { "y": 40.4596261, "x": -80.034282, "osmid": 6966557065, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.034282, 40.4596261 ] } }, -{ "type": "Feature", "properties": { "y": 40.4538687, "x": -80.0291866, "osmid": 7130200460, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0291866, 40.4538687 ] } }, { "type": "Feature", "properties": { "y": 40.4294233, "x": -79.9990869, "osmid": 1025849742, "highway": "motorway_junction", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9990869, 40.4294233 ] } }, { "type": "Feature", "properties": { "y": 40.4293091, "x": -79.9996288, "osmid": 1025849748, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9996288, 40.4293091 ] } }, { "type": "Feature", "properties": { "y": 40.4401684, "x": -79.9426392, "osmid": 270186904, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9426392, 40.4401684 ] } }, @@ -5853,10 +5683,7 @@ { "type": "Feature", "properties": { "y": 40.4499355, "x": -79.9673773, "osmid": 105986585, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9673773, 40.4499355 ] } }, { "type": "Feature", "properties": { "y": 40.4572982, "x": -79.9664233, "osmid": 104675869, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9664233, 40.4572982 ] } }, { "type": "Feature", "properties": { "y": 40.4566433, "x": -80.0149726, "osmid": 5847661089, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0149726, 40.4566433 ] } }, -{ "type": "Feature", "properties": { "y": 40.4312552, "x": -79.9825909, "osmid": 7013808679, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9825909, 40.4312552 ] } }, { "type": "Feature", "properties": { "y": 40.457601, "x": -79.9657965, "osmid": 104675882, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9657965, 40.457601 ] } }, -{ "type": "Feature", "properties": { "y": 40.4315647, "x": -79.9843104, "osmid": 7013808683, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9843104, 40.4315647 ] } }, -{ "type": "Feature", "properties": { "y": 40.4316315, "x": -79.9835851, "osmid": 7013808682, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9835851, 40.4316315 ] } }, { "type": "Feature", "properties": { "y": 40.4293283, "x": -80.0107554, "osmid": 104839727, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0107554, 40.4293283 ] } }, { "type": "Feature", "properties": { "y": 40.4362783, "x": -80.0010625, "osmid": 5919160882, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010625, 40.4362783 ] } }, { "type": "Feature", "properties": { "y": 40.4429501, "x": -79.9426864, "osmid": 6224820788, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9426864, 40.4429501 ] } }, @@ -5866,9 +5693,12 @@ { "type": "Feature", "properties": { "y": 40.4287117, "x": -80.0104716, "osmid": 104839752, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0104716, 40.4287117 ] } }, { "type": "Feature", "properties": { "y": 40.4583173, "x": -79.9641905, "osmid": 104675914, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9641905, 40.4583173 ] } }, { "type": "Feature", "properties": { "y": 40.4284238, "x": -80.0103563, "osmid": 104839761, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0103563, 40.4284238 ] } }, +{ "type": "Feature", "properties": { "y": 40.4550147, "x": -80.0071354, "osmid": 2867995099, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0071354, 40.4550147 ] } }, { "type": "Feature", "properties": { "y": 40.4468474, "x": -79.9954411, "osmid": 3276159578, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9954411, 40.4468474 ] } }, +{ "type": "Feature", "properties": { "y": 40.4551985, "x": -80.0075593, "osmid": 2867995100, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0075593, 40.4551985 ] } }, { "type": "Feature", "properties": { "y": 40.4491125, "x": -79.9854732, "osmid": 3276159583, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9854732, 40.4491125 ] } }, { "type": "Feature", "properties": { "y": 40.4557154, "x": -80.0030744, "osmid": 2867995102, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0030744, 40.4557154 ] } }, +{ "type": "Feature", "properties": { "y": 40.4551089, "x": -80.0066377, "osmid": 2867995103, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0066377, 40.4551089 ] } }, { "type": "Feature", "properties": { "y": 40.4426033, "x": -79.9666607, "osmid": 105953900, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9666607, 40.4426033 ] } }, { "type": "Feature", "properties": { "y": 40.4441899, "x": -80.0027963, "osmid": 3582442094, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0027963, 40.4441899 ] } }, { "type": "Feature", "properties": { "y": 40.444221, "x": -80.0026713, "osmid": 3582442096, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0026713, 40.444221 ] } }, @@ -5904,10 +5734,10 @@ { "type": "Feature", "properties": { "y": 40.4393739, "x": -80.0298938, "osmid": 2323725014, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0298938, 40.4393739 ] } }, { "type": "Feature", "properties": { "y": 40.4574975, "x": -80.0063708, "osmid": 5265111770, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063708, 40.4574975 ] } }, { "type": "Feature", "properties": { "y": 40.4362709, "x": -79.9637348, "osmid": 6532872926, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9637348, 40.4362709 ] } }, -{ "type": "Feature", "properties": { "y": 40.4574177, "x": -80.0065867, "osmid": 5265111775, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0065867, 40.4574177 ] } }, -{ "type": "Feature", "properties": { "y": 40.4362356, "x": -79.9636917, "osmid": 6532872928, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9636917, 40.4362356 ] } }, { "type": "Feature", "properties": { "y": 40.4363388, "x": -79.9636257, "osmid": 6532872927, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9636257, 40.4363388 ] } }, +{ "type": "Feature", "properties": { "y": 40.4362356, "x": -79.9636917, "osmid": 6532872928, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9636917, 40.4362356 ] } }, { "type": "Feature", "properties": { "y": 40.4363153, "x": -79.9635879, "osmid": 6532872929, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9635879, 40.4363153 ] } }, +{ "type": "Feature", "properties": { "y": 40.4574177, "x": -80.0065867, "osmid": 5265111775, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0065867, 40.4574177 ] } }, { "type": "Feature", "properties": { "y": 40.4576174, "x": -80.0066545, "osmid": 5265111776, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0066545, 40.4576174 ] } }, { "type": "Feature", "properties": { "y": 40.4574577, "x": -80.0066003, "osmid": 5265111780, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0066003, 40.4574577 ] } }, { "type": "Feature", "properties": { "y": 40.4561577, "x": -79.9953674, "osmid": 104676077, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9953674, 40.4561577 ] } }, @@ -5929,9 +5759,7 @@ { "type": "Feature", "properties": { "y": 40.4440908, "x": -79.9482059, "osmid": 5521619737, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9482059, 40.4440908 ] } }, { "type": "Feature", "properties": { "y": 40.4535648, "x": -80.0195717, "osmid": 7543208731, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0195717, 40.4535648 ] } }, { "type": "Feature", "properties": { "y": 40.4534673, "x": -80.0200947, "osmid": 7543208733, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0200947, 40.4534673 ] } }, -{ "type": "Feature", "properties": { "y": 40.4537014, "x": -80.0162197, "osmid": 7543208734, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0162197, 40.4537014 ] } }, { "type": "Feature", "properties": { "y": 40.4441949, "x": -79.9483741, "osmid": 5521619741, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9483741, 40.4441949 ] } }, -{ "type": "Feature", "properties": { "y": 40.453954, "x": -80.0163123, "osmid": 7543208736, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0163123, 40.453954 ] } }, { "type": "Feature", "properties": { "y": 40.4574051, "x": -79.9320679, "osmid": 393558819, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9320679, 40.4574051 ] } }, { "type": "Feature", "properties": { "y": 40.4573477, "x": -79.9322316, "osmid": 393558820, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9322316, 40.4573477 ] } }, { "type": "Feature", "properties": { "y": 40.4357722, "x": -79.9622129, "osmid": 339262253, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9622129, 40.4357722 ] } }, @@ -5995,13 +5823,13 @@ { "type": "Feature", "properties": { "y": 40.4407002, "x": -79.9947171, "osmid": 684800917, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9947171, 40.4407002 ] } }, { "type": "Feature", "properties": { "y": 40.4387383, "x": -79.9598714, "osmid": 105921429, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9598714, 40.4387383 ] } }, { "type": "Feature", "properties": { "y": 40.4588608, "x": -79.9702244, "osmid": 6113377173, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9702244, 40.4588608 ] } }, -{ "type": "Feature", "properties": { "y": 40.4409294, "x": -79.9554572, "osmid": 7172930456, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9554572, 40.4409294 ] } }, +{ "type": "Feature", "properties": { "y": 40.4408345, "x": -79.9552292, "osmid": 7172930454, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9552292, 40.4408345 ] } }, { "type": "Feature", "properties": { "y": 40.4409233, "x": -79.9556033, "osmid": 7172930457, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9556033, 40.4409233 ] } }, { "type": "Feature", "properties": { "y": 40.4482963, "x": -80.021097, "osmid": 1459469210, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.021097, 40.4482963 ] } }, { "type": "Feature", "properties": { "y": 40.4482976, "x": -80.0225585, "osmid": 1459469211, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0225585, 40.4482976 ] } }, { "type": "Feature", "properties": { "y": 40.4407102, "x": -79.9559021, "osmid": 7172930458, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9559021, 40.4407102 ] } }, { "type": "Feature", "properties": { "y": 40.4483127, "x": -80.0211637, "osmid": 1459469213, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0211637, 40.4483127 ] } }, -{ "type": "Feature", "properties": { "y": 40.4408345, "x": -79.9552292, "osmid": 7172930454, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9552292, 40.4408345 ] } }, +{ "type": "Feature", "properties": { "y": 40.4409294, "x": -79.9554572, "osmid": 7172930456, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9554572, 40.4409294 ] } }, { "type": "Feature", "properties": { "y": 40.4483397, "x": -80.0215055, "osmid": 1459469215, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0215055, 40.4483397 ] } }, { "type": "Feature", "properties": { "y": 40.4454378, "x": -79.9465624, "osmid": 105692069, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9465624, 40.4454378 ] } }, { "type": "Feature", "properties": { "y": 40.4486028, "x": -80.0241613, "osmid": 1459469233, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0241613, 40.4486028 ] } }, @@ -6047,8 +5875,6 @@ { "type": "Feature", "properties": { "y": 40.4358408, "x": -79.9866892, "osmid": 1687141460, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9866892, 40.4358408 ] } }, { "type": "Feature", "properties": { "y": 40.4567421, "x": -79.941649, "osmid": 393428053, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.941649, 40.4567421 ] } }, { "type": "Feature", "properties": { "y": 40.4485272, "x": -79.9872043, "osmid": 105888865, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9872043, 40.4485272 ] } }, -{ "type": "Feature", "properties": { "y": 40.4558587, "x": -80.0303053, "osmid": 7241776229, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0303053, 40.4558587 ] } }, -{ "type": "Feature", "properties": { "y": 40.4562402, "x": -80.0304323, "osmid": 7241776230, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0304323, 40.4562402 ] } }, { "type": "Feature", "properties": { "y": 40.4547736, "x": -80.0277303, "osmid": 7241776231, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0277303, 40.4547736 ] } }, { "type": "Feature", "properties": { "y": 40.4553142, "x": -80.0278967, "osmid": 7241776232, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0278967, 40.4553142 ] } }, { "type": "Feature", "properties": { "y": 40.4353079, "x": -80.0329259, "osmid": 7129611369, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0329259, 40.4353079 ] } }, @@ -6090,6 +5916,7 @@ { "type": "Feature", "properties": { "y": 40.4556051, "x": -79.9791633, "osmid": 6073629863, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9791633, 40.4556051 ] } }, { "type": "Feature", "properties": { "y": 40.4556357, "x": -79.9791945, "osmid": 6073629864, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9791945, 40.4556357 ] } }, { "type": "Feature", "properties": { "y": 40.45627, "x": -79.9779764, "osmid": 6073629858, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9779764, 40.45627 ] } }, +{ "type": "Feature", "properties": { "y": 40.4363337, "x": -79.9494528, "osmid": 303191346, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9494528, 40.4363337 ] } }, { "type": "Feature", "properties": { "y": 40.4358207, "x": -79.9616279, "osmid": 3240934571, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9616279, 40.4358207 ] } }, { "type": "Feature", "properties": { "y": 40.4551125, "x": -79.9789226, "osmid": 6073629878, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9789226, 40.4551125 ] } }, { "type": "Feature", "properties": { "y": 40.4552699, "x": -79.9791043, "osmid": 6073629879, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9791043, 40.4552699 ] } }, @@ -6097,6 +5924,7 @@ { "type": "Feature", "properties": { "y": 40.4555472, "x": -79.9793223, "osmid": 6073629881, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9793223, 40.4555472 ] } }, { "type": "Feature", "properties": { "y": 40.45552, "x": -79.9792865, "osmid": 6073629882, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9792865, 40.45552 ] } }, { "type": "Feature", "properties": { "y": 40.4555729, "x": -79.9792092, "osmid": 6073629883, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9792092, 40.4555729 ] } }, +{ "type": "Feature", "properties": { "y": 40.4362619, "x": -79.949633, "osmid": 303191351, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.949633, 40.4362619 ] } }, { "type": "Feature", "properties": { "y": 40.4301503, "x": -79.9819045, "osmid": 104774864, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9819045, 40.4301503 ] } }, { "type": "Feature", "properties": { "y": 40.4532171, "x": -79.9475868, "osmid": 1828175058, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9475868, 40.4532171 ] } }, { "type": "Feature", "properties": { "y": 40.4533644, "x": -79.9479605, "osmid": 1828175063, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9479605, 40.4533644 ] } }, @@ -6142,32 +5970,27 @@ { "type": "Feature", "properties": { "y": 40.4540974, "x": -79.9814369, "osmid": 6073695506, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9814369, 40.4540974 ] } }, { "type": "Feature", "properties": { "y": 40.4598155, "x": -79.969715, "osmid": 6113377567, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.969715, 40.4598155 ] } }, { "type": "Feature", "properties": { "y": 40.4510244, "x": -79.9539409, "osmid": 6531693856, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9539409, 40.4510244 ] } }, -{ "type": "Feature", "properties": { "y": 40.4526509, "x": -79.9438653, "osmid": 1892630687, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9438653, 40.4526509 ] } }, { "type": "Feature", "properties": { "y": 40.4264825, "x": -79.9528266, "osmid": 3464936738, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9528266, 40.4264825 ] } }, { "type": "Feature", "properties": { "y": 40.4496892, "x": -79.9546307, "osmid": 6531693861, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9546307, 40.4496892 ] } }, { "type": "Feature", "properties": { "y": 40.4458848, "x": -80.0085206, "osmid": 2469805360, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085206, 40.4458848 ] } }, -{ "type": "Feature", "properties": { "y": 40.4527197, "x": -79.943893, "osmid": 1892630690, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.943893, 40.4527197 ] } }, { "type": "Feature", "properties": { "y": 40.4448297, "x": -80.0134117, "osmid": 2469805362, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0134117, 40.4448297 ] } }, { "type": "Feature", "properties": { "y": 40.4304443, "x": -80.0137536, "osmid": 5838028085, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0137536, 40.4304443 ] } }, { "type": "Feature", "properties": { "y": 40.4307514, "x": -80.0137014, "osmid": 5838028087, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0137014, 40.4307514 ] } }, { "type": "Feature", "properties": { "y": 40.4515989, "x": -79.9819042, "osmid": 6077289095, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9819042, 40.4515989 ] } }, -{ "type": "Feature", "properties": { "y": 40.452765, "x": -79.9437318, "osmid": 1892630692, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9437318, 40.452765 ] } }, { "type": "Feature", "properties": { "y": 40.4451617, "x": -80.0104204, "osmid": 2469805371, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0104204, 40.4451617 ] } }, { "type": "Feature", "properties": { "y": 40.4517322, "x": -79.981714, "osmid": 6077289096, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.981714, 40.4517322 ] } }, { "type": "Feature", "properties": { "y": 40.4516451, "x": -79.9819625, "osmid": 6077289097, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9819625, 40.4516451 ] } }, { "type": "Feature", "properties": { "y": 40.4454256, "x": -80.0086025, "osmid": 2469805382, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0086025, 40.4454256 ] } }, { "type": "Feature", "properties": { "y": 40.4477995, "x": -79.9475981, "osmid": 6532840774, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9475981, 40.4477995 ] } }, { "type": "Feature", "properties": { "y": 40.4477691, "x": -79.9477313, "osmid": 6532840775, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9477313, 40.4477691 ] } }, -{ "type": "Feature", "properties": { "y": 40.4589374, "x": -79.9657991, "osmid": 7014006092, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9657991, 40.4589374 ] } }, { "type": "Feature", "properties": { "y": 40.4323206, "x": -79.9757292, "osmid": 2469805389, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9757292, 40.4323206 ] } }, -{ "type": "Feature", "properties": { "y": 40.4594526, "x": -79.9653559, "osmid": 7014006101, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9653559, 40.4594526 ] } }, { "type": "Feature", "properties": { "y": 40.4294496, "x": -79.9841358, "osmid": 105069913, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9841358, 40.4294496 ] } }, { "type": "Feature", "properties": { "y": 40.4449805, "x": -80.0115524, "osmid": 2469805407, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0115524, 40.4449805 ] } }, { "type": "Feature", "properties": { "y": 40.4288101, "x": -79.9841432, "osmid": 105069923, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9841432, 40.4288101 ] } }, { "type": "Feature", "properties": { "y": 40.4459127, "x": -80.0069863, "osmid": 2469805416, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0069863, 40.4459127 ] } }, { "type": "Feature", "properties": { "y": 40.4276322, "x": -79.9840642, "osmid": 105069928, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9840642, 40.4276322 ] } }, -{ "type": "Feature", "properties": { "y": 40.4282469, "x": -79.9718501, "osmid": 7244103027, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9718501, 40.4282469 ] } }, { "type": "Feature", "properties": { "y": 40.4277753, "x": -79.9719059, "osmid": 7244103029, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9719059, 40.4277753 ] } }, +{ "type": "Feature", "properties": { "y": 40.4280608, "x": -79.9718702, "osmid": 7244103030, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9718702, 40.4280608 ] } }, { "type": "Feature", "properties": { "y": 40.445487, "x": -80.008239, "osmid": 2469805431, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008239, 40.445487 ] } }, { "type": "Feature", "properties": { "y": 40.4566238, "x": -79.991535, "osmid": 1659911547, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.991535, 40.4566238 ] } }, { "type": "Feature", "properties": { "y": 40.4449024, "x": -80.010332, "osmid": 2469805436, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.010332, 40.4449024 ] } }, @@ -6180,9 +6003,6 @@ { "type": "Feature", "properties": { "y": 40.4541807, "x": -79.9991677, "osmid": 5205507528, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9991677, 40.4541807 ] } }, { "type": "Feature", "properties": { "y": 40.45439, "x": -79.9980635, "osmid": 5205507532, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9980635, 40.45439 ] } }, { "type": "Feature", "properties": { "y": 40.454731, "x": -79.9738343, "osmid": 105233880, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9738343, 40.454731 ] } }, -{ "type": "Feature", "properties": { "y": 40.4348737, "x": -80.0341518, "osmid": 2993405401, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0341518, 40.4348737 ] } }, -{ "type": "Feature", "properties": { "y": 40.4402419, "x": -80.0012137, "osmid": 2394144217, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0012137, 40.4402419 ] } }, -{ "type": "Feature", "properties": { "y": 40.4408918, "x": -80.0008015, "osmid": 2394144218, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0008015, 40.4408918 ] } }, { "type": "Feature", "properties": { "y": 40.4371642, "x": -79.9842471, "osmid": 105758174, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9842471, 40.4371642 ] } }, { "type": "Feature", "properties": { "y": 40.4565476, "x": -79.9701181, "osmid": 105233891, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9701181, 40.4565476 ] } }, { "type": "Feature", "properties": { "y": 40.4367748, "x": -79.9842834, "osmid": 105758181, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9842834, 40.4367748 ] } }, @@ -6199,10 +6019,8 @@ { "type": "Feature", "properties": { "y": 40.4369022, "x": -79.9651645, "osmid": 339262989, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9651645, 40.4369022 ] } }, { "type": "Feature", "properties": { "y": 40.4406655, "x": -79.9429814, "osmid": 302759445, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9429814, 40.4406655 ] } }, { "type": "Feature", "properties": { "y": 40.4265032, "x": -80.0044386, "osmid": 104381983, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0044386, 40.4265032 ] } }, -{ "type": "Feature", "properties": { "y": 40.4556003, "x": -79.9384025, "osmid": 1791835683, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9384025, 40.4556003 ] } }, -{ "type": "Feature", "properties": { "y": 40.455723, "x": -79.9391552, "osmid": 1791835684, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9391552, 40.455723 ] } }, -{ "type": "Feature", "properties": { "y": 40.4329874, "x": -79.930534, "osmid": 104250917, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.930534, 40.4329874 ] } }, { "type": "Feature", "properties": { "y": 40.4411852, "x": -79.944178, "osmid": 302759459, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.944178, 40.4411852 ] } }, +{ "type": "Feature", "properties": { "y": 40.4329874, "x": -79.930534, "osmid": 104250917, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.930534, 40.4329874 ] } }, { "type": "Feature", "properties": { "y": 40.4264836, "x": -80.0034258, "osmid": 104381991, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0034258, 40.4264836 ] } }, { "type": "Feature", "properties": { "y": 40.4377229, "x": -79.9860125, "osmid": 4677451331, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9860125, 40.4377229 ] } }, { "type": "Feature", "properties": { "y": 40.4374669, "x": -79.9860403, "osmid": 4677451332, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9860403, 40.4374669 ] } }, @@ -6283,9 +6101,9 @@ { "type": "Feature", "properties": { "y": 40.4485428, "x": -79.9477727, "osmid": 6789873507, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9477727, 40.4485428 ] } }, { "type": "Feature", "properties": { "y": 40.43777, "x": -79.9645518, "osmid": 6532087659, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9645518, 40.43777 ] } }, { "type": "Feature", "properties": { "y": 40.4548804, "x": -79.9355181, "osmid": 105824108, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9355181, 40.4548804 ] } }, -{ "type": "Feature", "properties": { "y": 40.4415528, "x": -79.9406089, "osmid": 1781186411, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9406089, 40.4415528 ] } }, -{ "type": "Feature", "properties": { "y": 40.4383358, "x": -79.9645672, "osmid": 6532087662, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9645672, 40.4383358 ] } }, { "type": "Feature", "properties": { "y": 40.4415823, "x": -79.9407609, "osmid": 1781186412, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9407609, 40.4415823 ] } }, +{ "type": "Feature", "properties": { "y": 40.4383358, "x": -79.9645672, "osmid": 6532087662, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9645672, 40.4383358 ] } }, +{ "type": "Feature", "properties": { "y": 40.4415528, "x": -79.9406089, "osmid": 1781186411, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9406089, 40.4415528 ] } }, { "type": "Feature", "properties": { "y": 40.4416317, "x": -79.9404195, "osmid": 1781186415, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9404195, 40.4416317 ] } }, { "type": "Feature", "properties": { "y": 40.445049, "x": -79.9515889, "osmid": 339263345, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9515889, 40.445049 ] } }, { "type": "Feature", "properties": { "y": 40.445049, "x": -79.9520352, "osmid": 339263346, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9520352, 40.445049 ] } }, @@ -6322,8 +6140,8 @@ { "type": "Feature", "properties": { "y": 40.4439051, "x": -79.9535007, "osmid": 339263374, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9535007, 40.4439051 ] } }, { "type": "Feature", "properties": { "y": 40.4400447, "x": -80.0329595, "osmid": 2993405842, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0329595, 40.4400447 ] } }, { "type": "Feature", "properties": { "y": 40.4541757, "x": -79.9350498, "osmid": 105824140, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9350498, 40.4541757 ] } }, -{ "type": "Feature", "properties": { "y": 40.4420373, "x": -79.9397123, "osmid": 1781186444, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9397123, 40.4420373 ] } }, { "type": "Feature", "properties": { "y": 40.4420676, "x": -79.9392679, "osmid": 1781186446, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9392679, 40.4420676 ] } }, +{ "type": "Feature", "properties": { "y": 40.4420373, "x": -79.9397123, "osmid": 1781186444, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9397123, 40.4420373 ] } }, { "type": "Feature", "properties": { "y": 40.4470629, "x": -79.9920689, "osmid": 6181961622, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9920689, 40.4470629 ] } }, { "type": "Feature", "properties": { "y": 40.4468573, "x": -79.9924029, "osmid": 6181961623, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9924029, 40.4468573 ] } }, { "type": "Feature", "properties": { "y": 40.4467215, "x": -79.9926216, "osmid": 6181961624, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9926216, 40.4467215 ] } }, @@ -6348,7 +6166,6 @@ { "type": "Feature", "properties": { "y": 40.4448336, "x": -79.9537065, "osmid": 339263408, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9537065, 40.4448336 ] } }, { "type": "Feature", "properties": { "y": 40.4547234, "x": -80.0138041, "osmid": 105070513, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0138041, 40.4547234 ] } }, { "type": "Feature", "properties": { "y": 40.4448399, "x": -79.9533999, "osmid": 339263409, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9533999, 40.4448399 ] } }, -{ "type": "Feature", "properties": { "y": 40.4380235, "x": -79.9471601, "osmid": 3781721893, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9471601, 40.4380235 ] } }, { "type": "Feature", "properties": { "y": 40.4449406, "x": -79.9532836, "osmid": 339263412, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9532836, 40.4449406 ] } }, { "type": "Feature", "properties": { "y": 40.4560956, "x": -80.0142536, "osmid": 105070525, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0142536, 40.4560956 ] } }, { "type": "Feature", "properties": { "y": 40.4561188, "x": -80.0204068, "osmid": 105856964, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0204068, 40.4561188 ] } }, @@ -6392,7 +6209,6 @@ { "type": "Feature", "properties": { "y": 40.4425399, "x": -79.9957468, "osmid": 5317312523, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9957468, 40.4425399 ] } }, { "type": "Feature", "properties": { "y": 40.454976, "x": -79.9785, "osmid": 6073630731, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9785, 40.454976 ] } }, { "type": "Feature", "properties": { "y": 40.4546801, "x": -79.9795529, "osmid": 6073630736, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9795529, 40.4546801 ] } }, -{ "type": "Feature", "properties": { "y": 40.4583997, "x": -80.0333965, "osmid": 104677393, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0333965, 40.4583997 ] } }, { "type": "Feature", "properties": { "y": 40.4543921, "x": -79.9792116, "osmid": 6073630737, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9792116, 40.4543921 ] } }, { "type": "Feature", "properties": { "y": 40.4430859, "x": -80.0291658, "osmid": 5000839190, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0291658, 40.4430859 ] } }, { "type": "Feature", "properties": { "y": 40.4317797, "x": -80.0034394, "osmid": 6033850401, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0034394, 40.4317797 ] } }, @@ -6415,10 +6231,7 @@ { "type": "Feature", "properties": { "y": 40.4554699, "x": -80.0088255, "osmid": 5357813829, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0088255, 40.4554699 ] } }, { "type": "Feature", "properties": { "y": 40.4441357, "x": -80.0294661, "osmid": 5000839238, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0294661, 40.4441357 ] } }, { "type": "Feature", "properties": { "y": 40.4556863, "x": -80.0088964, "osmid": 5357813830, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0088964, 40.4556863 ] } }, -{ "type": "Feature", "properties": { "y": 40.4481865, "x": -79.9494848, "osmid": 1837809730, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9494848, 40.4481865 ] } }, -{ "type": "Feature", "properties": { "y": 40.4484931, "x": -79.9491829, "osmid": 1837809735, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9491829, 40.4484931 ] } }, { "type": "Feature", "properties": { "y": 40.4500435, "x": -79.9760377, "osmid": 104939594, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9760377, 40.4500435 ] } }, -{ "type": "Feature", "properties": { "y": 40.4486722, "x": -79.9490533, "osmid": 1837809738, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9490533, 40.4486722 ] } }, { "type": "Feature", "properties": { "y": 40.4556321, "x": -80.0091859, "osmid": 5357813837, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0091859, 40.4556321 ] } }, { "type": "Feature", "properties": { "y": 40.4554917, "x": -80.0091377, "osmid": 5357813838, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0091377, 40.4554917 ] } }, { "type": "Feature", "properties": { "y": 40.4556212, "x": -80.009244, "osmid": 5357813839, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.009244, 40.4556212 ] } }, @@ -6426,13 +6239,8 @@ { "type": "Feature", "properties": { "y": 40.4333507, "x": -80.0114999, "osmid": 104644685, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0114999, 40.4333507 ] } }, { "type": "Feature", "properties": { "y": 40.4554281, "x": -80.0092569, "osmid": 5357813842, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0092569, 40.4554281 ] } }, { "type": "Feature", "properties": { "y": 40.445238, "x": -79.9493656, "osmid": 106119248, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9493656, 40.445238 ] } }, -{ "type": "Feature", "properties": { "y": 40.4489538, "x": -79.9481025, "osmid": 1837809746, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9481025, 40.4489538 ] } }, -{ "type": "Feature", "properties": { "y": 40.4488874, "x": -79.9491776, "osmid": 1837809743, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9491776, 40.4488874 ] } }, -{ "type": "Feature", "properties": { "y": 40.4492659, "x": -79.9493709, "osmid": 1837809750, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9493709, 40.4492659 ] } }, { "type": "Feature", "properties": { "y": 40.4430229, "x": -80.029146, "osmid": 5000839255, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.029146, 40.4430229 ] } }, -{ "type": "Feature", "properties": { "y": 40.4486771, "x": -79.9428547, "osmid": 1839284310, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9428547, 40.4486771 ] } }, { "type": "Feature", "properties": { "y": 40.4325479, "x": -80.0117618, "osmid": 104644697, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0117618, 40.4325479 ] } }, -{ "type": "Feature", "properties": { "y": 40.4486915, "x": -79.9426278, "osmid": 1839284316, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9426278, 40.4486915 ] } }, { "type": "Feature", "properties": { "y": 40.4457328, "x": -79.9572171, "osmid": 1356087389, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9572171, 40.4457328 ] } }, { "type": "Feature", "properties": { "y": 40.4426041, "x": -80.0306646, "osmid": 5000839266, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0306646, 40.4426041 ] } }, { "type": "Feature", "properties": { "y": 40.443876, "x": -80.0272977, "osmid": 7330283621, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0272977, 40.443876 ] } }, @@ -6460,20 +6268,19 @@ { "type": "Feature", "properties": { "y": 40.4433858, "x": -80.0251052, "osmid": 7330283661, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0251052, 40.4433858 ] } }, { "type": "Feature", "properties": { "y": 40.4445297, "x": -80.0284715, "osmid": 7330283662, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0284715, 40.4445297 ] } }, { "type": "Feature", "properties": { "y": 40.4445628, "x": -80.0284344, "osmid": 7330283663, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0284344, 40.4445628 ] } }, -{ "type": "Feature", "properties": { "y": 40.4434585, "x": -79.9630917, "osmid": 6532808840, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9630917, 40.4434585 ] } }, +{ "type": "Feature", "properties": { "y": 40.4434861, "x": -79.9630689, "osmid": 6532808842, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9630689, 40.4434861 ] } }, { "type": "Feature", "properties": { "y": 40.4447811, "x": -80.0281935, "osmid": 7330283665, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0281935, 40.4447811 ] } }, { "type": "Feature", "properties": { "y": 40.450681, "x": -79.9853326, "osmid": 104939665, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9853326, 40.450681 ] } }, -{ "type": "Feature", "properties": { "y": 40.4434861, "x": -79.9630689, "osmid": 6532808842, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9630689, 40.4434861 ] } }, { "type": "Feature", "properties": { "y": 40.4458916, "x": -79.9422658, "osmid": 281362581, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9422658, 40.4458916 ] } }, { "type": "Feature", "properties": { "y": 40.4435273, "x": -79.952593, "osmid": 1668235599, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.952593, 40.4435273 ] } }, { "type": "Feature", "properties": { "y": 40.4463385, "x": -79.9942676, "osmid": 6181961879, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9942676, 40.4463385 ] } }, { "type": "Feature", "properties": { "y": 40.44638, "x": -79.9942122, "osmid": 6181961880, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9942122, 40.44638 ] } }, { "type": "Feature", "properties": { "y": 40.4459701, "x": -79.9429497, "osmid": 281362585, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9429497, 40.4459701 ] } }, +{ "type": "Feature", "properties": { "y": 40.4459056, "x": -79.9432184, "osmid": 281362583, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9432184, 40.4459056 ] } }, { "type": "Feature", "properties": { "y": 40.4443814, "x": -80.028952, "osmid": 5000839324, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.028952, 40.4443814 ] } }, { "type": "Feature", "properties": { "y": 40.4446297, "x": -79.9440372, "osmid": 281362588, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9440372, 40.4446297 ] } }, { "type": "Feature", "properties": { "y": 40.444544, "x": -80.028882, "osmid": 5000839327, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.028882, 40.444544 ] } }, { "type": "Feature", "properties": { "y": 40.4504092, "x": -79.9849938, "osmid": 104939679, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9849938, 40.4504092 ] } }, -{ "type": "Feature", "properties": { "y": 40.4526988, "x": -79.943695, "osmid": 1892630689, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.943695, 40.4526988 ] } }, { "type": "Feature", "properties": { "y": 40.4280951, "x": -80.0086767, "osmid": 104874146, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0086767, 40.4280951 ] } }, { "type": "Feature", "properties": { "y": 40.4443828, "x": -80.0284876, "osmid": 5000839331, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0284876, 40.4443828 ] } }, { "type": "Feature", "properties": { "y": 40.4555076, "x": -80.0098499, "osmid": 5357813923, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0098499, 40.4555076 ] } }, @@ -6487,18 +6294,17 @@ { "type": "Feature", "properties": { "y": 40.455205, "x": -80.0100708, "osmid": 5357813931, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0100708, 40.455205 ] } }, { "type": "Feature", "properties": { "y": 40.455082, "x": -80.0099828, "osmid": 5357813933, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0099828, 40.455082 ] } }, { "type": "Feature", "properties": { "y": 40.4549573, "x": -80.0101115, "osmid": 5357813934, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0101115, 40.4549573 ] } }, -{ "type": "Feature", "properties": { "y": 40.4552024, "x": -80.0100848, "osmid": 5357813930, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0100848, 40.4552024 ] } }, +{ "type": "Feature", "properties": { "y": 40.4358456, "x": -79.9940682, "osmid": 1252114607, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9940682, 40.4358456 ] } }, { "type": "Feature", "properties": { "y": 40.4438988, "x": -80.0277378, "osmid": 5000839344, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0277378, 40.4438988 ] } }, -{ "type": "Feature", "properties": { "y": 40.4552246, "x": -80.0100333, "osmid": 5357813928, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0100333, 40.4552246 ] } }, -{ "type": "Feature", "properties": { "y": 40.4371901, "x": -79.9736045, "osmid": 5317312690, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9736045, 40.4371901 ] } }, { "type": "Feature", "properties": { "y": 40.4368934, "x": -79.9896901, "osmid": 1252114608, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9896901, 40.4368934 ] } }, -{ "type": "Feature", "properties": { "y": 40.4358456, "x": -79.9940682, "osmid": 1252114607, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9940682, 40.4358456 ] } }, +{ "type": "Feature", "properties": { "y": 40.4371901, "x": -79.9736045, "osmid": 5317312690, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9736045, 40.4371901 ] } }, +{ "type": "Feature", "properties": { "y": 40.4283691, "x": -80.0092362, "osmid": 104874157, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0092362, 40.4283691 ] } }, +{ "type": "Feature", "properties": { "y": 40.4571723, "x": -79.939589, "osmid": 7014236337, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.939589, 40.4571723 ] } }, +{ "type": "Feature", "properties": { "y": 40.4274294, "x": -80.0117586, "osmid": 104874165, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0117586, 40.4274294 ] } }, { "type": "Feature", "properties": { "y": 40.4370339, "x": -79.9926046, "osmid": 1252114613, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9926046, 40.4370339 ] } }, -{ "type": "Feature", "properties": { "y": 40.4390306, "x": -79.9876356, "osmid": 1252114614, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9876356, 40.4390306 ] } }, { "type": "Feature", "properties": { "y": 40.4437185, "x": -80.0272637, "osmid": 5000839351, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0272637, 40.4437185 ] } }, +{ "type": "Feature", "properties": { "y": 40.4390306, "x": -79.9876356, "osmid": 1252114614, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9876356, 40.4390306 ] } }, { "type": "Feature", "properties": { "y": 40.4386709, "x": -79.9876663, "osmid": 1252114615, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9876663, 40.4386709 ] } }, -{ "type": "Feature", "properties": { "y": 40.4274294, "x": -80.0117586, "osmid": 104874165, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0117586, 40.4274294 ] } }, -{ "type": "Feature", "properties": { "y": 40.4571723, "x": -79.939589, "osmid": 7014236337, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.939589, 40.4571723 ] } }, { "type": "Feature", "properties": { "y": 40.4436432, "x": -80.0279114, "osmid": 5000839355, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0279114, 40.4436432 ] } }, { "type": "Feature", "properties": { "y": 40.4370895, "x": -79.9735069, "osmid": 5317312700, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9735069, 40.4370895 ] } }, { "type": "Feature", "properties": { "y": 40.4370798, "x": -79.9732305, "osmid": 5317312701, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9732305, 40.4370798 ] } }, @@ -6507,8 +6313,8 @@ { "type": "Feature", "properties": { "y": 40.4549042, "x": -80.0100947, "osmid": 5357813952, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0100947, 40.4549042 ] } }, { "type": "Feature", "properties": { "y": 40.4431979, "x": -80.0287649, "osmid": 5000839361, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0287649, 40.4431979 ] } }, { "type": "Feature", "properties": { "y": 40.442945, "x": -80.029065, "osmid": 5000839362, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.029065, 40.442945 ] } }, -{ "type": "Feature", "properties": { "y": 40.4548189, "x": -80.0105366, "osmid": 5357813954, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0105366, 40.4548189 ] } }, { "type": "Feature", "properties": { "y": 40.45516, "x": -80.0103588, "osmid": 5357813953, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0103588, 40.45516 ] } }, +{ "type": "Feature", "properties": { "y": 40.4548189, "x": -80.0105366, "osmid": 5357813954, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0105366, 40.4548189 ] } }, { "type": "Feature", "properties": { "y": 40.4570339, "x": -80.0048973, "osmid": 106021056, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0048973, 40.4570339 ] } }, { "type": "Feature", "properties": { "y": 40.4573969, "x": -79.9390875, "osmid": 7014236350, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9390875, 40.4573969 ] } }, { "type": "Feature", "properties": { "y": 40.457439, "x": -79.9390364, "osmid": 7014236351, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9390364, 40.457439 ] } }, @@ -6559,9 +6365,9 @@ { "type": "Feature", "properties": { "y": 40.4332786, "x": -80.0099151, "osmid": 3235594580, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0099151, 40.4332786 ] } }, { "type": "Feature", "properties": { "y": 40.4340835, "x": -80.0110002, "osmid": 3235594579, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0110002, 40.4340835 ] } }, { "type": "Feature", "properties": { "y": 40.4323227, "x": -80.0080998, "osmid": 3235594582, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0080998, 40.4323227 ] } }, +{ "type": "Feature", "properties": { "y": 40.4333617, "x": -80.0099324, "osmid": 3235594581, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0099324, 40.4333617 ] } }, { "type": "Feature", "properties": { "y": 40.4316439, "x": -80.0067833, "osmid": 3235594583, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0067833, 40.4316439 ] } }, { "type": "Feature", "properties": { "y": 40.4315496, "x": -80.0066134, "osmid": 3235594584, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0066134, 40.4315496 ] } }, -{ "type": "Feature", "properties": { "y": 40.4333617, "x": -80.0099324, "osmid": 3235594581, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0099324, 40.4333617 ] } }, { "type": "Feature", "properties": { "y": 40.4306021, "x": -80.0283207, "osmid": 5000839514, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0283207, 40.4306021 ] } }, { "type": "Feature", "properties": { "y": 40.4575623, "x": -79.976434, "osmid": 106316118, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976434, 40.4575623 ] } }, { "type": "Feature", "properties": { "y": 40.4309525, "x": -80.028605, "osmid": 5000839516, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.028605, 40.4309525 ] } }, @@ -6581,16 +6387,13 @@ { "type": "Feature", "properties": { "y": 40.4336811, "x": -80.0103048, "osmid": 3235594611, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0103048, 40.4336811 ] } }, { "type": "Feature", "properties": { "y": 40.434117, "x": -80.010952, "osmid": 3235594612, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.010952, 40.434117 ] } }, { "type": "Feature", "properties": { "y": 40.4322668, "x": -79.9755436, "osmid": 1460617586, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9755436, 40.4322668 ] } }, -{ "type": "Feature", "properties": { "y": 40.4394007, "x": -79.9373152, "osmid": 104382834, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9373152, 40.4394007 ] } }, { "type": "Feature", "properties": { "y": 40.4344633, "x": -80.0113924, "osmid": 3235594616, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0113924, 40.4344633 ] } }, { "type": "Feature", "properties": { "y": 40.430229, "x": -80.0252458, "osmid": 5000839545, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0252458, 40.430229 ] } }, { "type": "Feature", "properties": { "y": 40.4386925, "x": -79.9464587, "osmid": 2173649273, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9464587, 40.4386925 ] } }, { "type": "Feature", "properties": { "y": 40.4433477, "x": -79.9532662, "osmid": 1668235643, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9532662, 40.4433477 ] } }, -{ "type": "Feature", "properties": { "y": 40.4397314, "x": -79.9371968, "osmid": 104382840, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9371968, 40.4397314 ] } }, { "type": "Feature", "properties": { "y": 40.4424062, "x": -79.9451982, "osmid": 303350136, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9451982, 40.4424062 ] } }, { "type": "Feature", "properties": { "y": 40.4424585, "x": -79.9451209, "osmid": 303350140, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9451209, 40.4424585 ] } }, { "type": "Feature", "properties": { "y": 40.4391786, "x": -79.947382, "osmid": 2173649279, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.947382, 40.4391786 ] } }, -{ "type": "Feature", "properties": { "y": 40.446633, "x": -79.9638267, "osmid": 106021248, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9638267, 40.446633 ] } }, { "type": "Feature", "properties": { "y": 40.4355058, "x": -80.0125006, "osmid": 3235594625, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0125006, 40.4355058 ] } }, { "type": "Feature", "properties": { "y": 40.4341669, "x": -80.0112327, "osmid": 3235594626, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0112327, 40.4341669 ] } }, { "type": "Feature", "properties": { "y": 40.4387346, "x": -79.9466215, "osmid": 2173649290, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9466215, 40.4387346 ] } }, @@ -6603,13 +6406,13 @@ { "type": "Feature", "properties": { "y": 40.428775, "x": -80.0238528, "osmid": 5000839612, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0238528, 40.428775 ] } }, { "type": "Feature", "properties": { "y": 40.428937, "x": -80.0239027, "osmid": 5000839614, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0239027, 40.428937 ] } }, { "type": "Feature", "properties": { "y": 40.4563984, "x": -80.0291226, "osmid": 3690054079, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0291226, 40.4563984 ] } }, -{ "type": "Feature", "properties": { "y": 40.4579796, "x": -80.0025595, "osmid": 5211603391, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025595, 40.4579796 ] } }, +{ "type": "Feature", "properties": { "y": 40.4273135, "x": -79.942693, "osmid": 105726397, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.942693, 40.4273135 ] } }, { "type": "Feature", "properties": { "y": 40.4565045, "x": -80.0291572, "osmid": 3690054081, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0291572, 40.4565045 ] } }, -{ "type": "Feature", "properties": { "y": 40.4580815, "x": -80.0024682, "osmid": 5211603393, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0024682, 40.4580815 ] } }, -{ "type": "Feature", "properties": { "y": 40.4580609, "x": -80.0025851, "osmid": 5211603390, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025851, 40.4580609 ] } }, { "type": "Feature", "properties": { "y": 40.427573, "x": -79.9415599, "osmid": 105726402, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9415599, 40.427573 ] } }, +{ "type": "Feature", "properties": { "y": 40.4580609, "x": -80.0025851, "osmid": 5211603390, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025851, 40.4580609 ] } }, +{ "type": "Feature", "properties": { "y": 40.4579796, "x": -80.0025595, "osmid": 5211603391, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025595, 40.4579796 ] } }, +{ "type": "Feature", "properties": { "y": 40.4580815, "x": -80.0024682, "osmid": 5211603393, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0024682, 40.4580815 ] } }, { "type": "Feature", "properties": { "y": 40.4580014, "x": -80.0024448, "osmid": 5211603392, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0024448, 40.4580014 ] } }, -{ "type": "Feature", "properties": { "y": 40.4273135, "x": -79.942693, "osmid": 105726397, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.942693, 40.4273135 ] } }, { "type": "Feature", "properties": { "y": 40.443575, "x": -79.9524113, "osmid": 7859290567, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9524113, 40.443575 ] } }, { "type": "Feature", "properties": { "y": 40.4279823, "x": -79.9397741, "osmid": 105726408, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9397741, 40.4279823 ] } }, { "type": "Feature", "properties": { "y": 40.4422429, "x": -79.9444343, "osmid": 303350214, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9444343, 40.4422429 ] } }, @@ -6682,6 +6485,7 @@ { "type": "Feature", "properties": { "y": 40.4544515, "x": -79.9434423, "osmid": 104383287, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9434423, 40.4544515 ] } }, { "type": "Feature", "properties": { "y": 40.4350313, "x": -80.019488, "osmid": 2877113145, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.019488, 40.4350313 ] } }, { "type": "Feature", "properties": { "y": 40.4579838, "x": -80.0234857, "osmid": 104874812, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0234857, 40.4579838 ] } }, +{ "type": "Feature", "properties": { "y": 40.4536225, "x": -79.9412451, "osmid": 104383297, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9412451, 40.4536225 ] } }, { "type": "Feature", "properties": { "y": 40.4328399, "x": -79.9367085, "osmid": 3117499210, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9367085, 40.4328399 ] } }, { "type": "Feature", "properties": { "y": 40.4491269, "x": -80.0134992, "osmid": 2315731793, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0134992, 40.4491269 ] } }, { "type": "Feature", "properties": { "y": 40.4569665, "x": -79.9790934, "osmid": 6050501872, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9790934, 40.4569665 ] } }, @@ -6722,14 +6526,14 @@ { "type": "Feature", "properties": { "y": 40.4345404, "x": -79.9847557, "osmid": 3519988656, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9847557, 40.4345404 ] } }, { "type": "Feature", "properties": { "y": 40.4465156, "x": -79.9823638, "osmid": 7794934709, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9823638, 40.4465156 ] } }, { "type": "Feature", "properties": { "y": 40.4439949, "x": -79.9921144, "osmid": 5173461943, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9921144, 40.4439949 ] } }, +{ "type": "Feature", "properties": { "y": 40.426193, "x": -80.0131302, "osmid": 105235384, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0131302, 40.426193 ] } }, { "type": "Feature", "properties": { "y": 40.4443781, "x": -79.9914783, "osmid": 5173461944, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9914783, 40.4443781 ] } }, { "type": "Feature", "properties": { "y": 40.4445057, "x": -79.9912298, "osmid": 5173461945, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9912298, 40.4445057 ] } }, -{ "type": "Feature", "properties": { "y": 40.426193, "x": -80.0131302, "osmid": 105235384, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0131302, 40.426193 ] } }, { "type": "Feature", "properties": { "y": 40.4394786, "x": -80.0281466, "osmid": 104448955, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0281466, 40.4394786 ] } }, { "type": "Feature", "properties": { "y": 40.4371434, "x": -79.9471297, "osmid": 3401237435, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9471297, 40.4371434 ] } }, { "type": "Feature", "properties": { "y": 40.4578602, "x": -79.9370311, "osmid": 104940473, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9370311, 40.4578602 ] } }, -{ "type": "Feature", "properties": { "y": 40.4549842, "x": -79.976862, "osmid": 6080500284, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976862, 40.4549842 ] } }, { "type": "Feature", "properties": { "y": 40.4535067, "x": -79.9441053, "osmid": 106087360, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9441053, 40.4535067 ] } }, +{ "type": "Feature", "properties": { "y": 40.4397433, "x": -79.9766765, "osmid": 7467629563, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9766765, 40.4397433 ] } }, { "type": "Feature", "properties": { "y": 40.4526185, "x": -79.9436504, "osmid": 106087370, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9436504, 40.4526185 ] } }, { "type": "Feature", "properties": { "y": 40.4403428, "x": -80.0279335, "osmid": 104448971, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0279335, 40.4403428 ] } }, { "type": "Feature", "properties": { "y": 40.4418261, "x": -80.0019398, "osmid": 5173461964, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0019398, 40.4418261 ] } }, @@ -6740,6 +6544,7 @@ { "type": "Feature", "properties": { "y": 40.4414591, "x": -80.0021122, "osmid": 5173461969, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0021122, 40.4414591 ] } }, { "type": "Feature", "properties": { "y": 40.4414057, "x": -80.0021704, "osmid": 5173461972, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0021704, 40.4414057 ] } }, { "type": "Feature", "properties": { "y": 40.441451, "x": -80.0021397, "osmid": 5173461973, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0021397, 40.441451 ] } }, +{ "type": "Feature", "properties": { "y": 40.4397549, "x": -79.977365, "osmid": 7467629566, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.977365, 40.4397549 ] } }, { "type": "Feature", "properties": { "y": 40.441957, "x": -80.0017156, "osmid": 5173461975, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0017156, 40.441957 ] } }, { "type": "Feature", "properties": { "y": 40.4410916, "x": -80.0265593, "osmid": 5105402840, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0265593, 40.4410916 ] } }, { "type": "Feature", "properties": { "y": 40.441801, "x": -80.001905, "osmid": 5173461977, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001905, 40.441801 ] } }, @@ -6804,9 +6609,9 @@ { "type": "Feature", "properties": { "y": 40.4408604, "x": -80.0067132, "osmid": 1598833801, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0067132, 40.4408604 ] } }, { "type": "Feature", "properties": { "y": 40.436111, "x": -80.0336768, "osmid": 7147570312, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0336768, 40.436111 ] } }, { "type": "Feature", "properties": { "y": 40.4408743, "x": -80.0066674, "osmid": 1598833803, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0066674, 40.4408743 ] } }, -{ "type": "Feature", "properties": { "y": 40.4359801, "x": -80.0333575, "osmid": 7147570315, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0333575, 40.4359801 ] } }, -{ "type": "Feature", "properties": { "y": 40.440919, "x": -80.0064921, "osmid": 1598833805, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0064921, 40.440919 ] } }, { "type": "Feature", "properties": { "y": 40.438433, "x": -80.0345177, "osmid": 7147570316, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0345177, 40.438433 ] } }, +{ "type": "Feature", "properties": { "y": 40.440919, "x": -80.0064921, "osmid": 1598833805, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0064921, 40.440919 ] } }, +{ "type": "Feature", "properties": { "y": 40.4359801, "x": -80.0333575, "osmid": 7147570315, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0333575, 40.4359801 ] } }, { "type": "Feature", "properties": { "y": 40.4384201, "x": -80.0343309, "osmid": 7147570317, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0343309, 40.4384201 ] } }, { "type": "Feature", "properties": { "y": 40.4285157, "x": -79.9820559, "osmid": 104776847, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9820559, 40.4285157 ] } }, { "type": "Feature", "properties": { "y": 40.4409733, "x": -80.0062777, "osmid": 1598833809, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062777, 40.4409733 ] } }, @@ -6819,9 +6624,9 @@ { "type": "Feature", "properties": { "y": 40.434594, "x": -79.9951173, "osmid": 3519988894, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9951173, 40.434594 ] } }, { "type": "Feature", "properties": { "y": 40.4410898, "x": -80.0067468, "osmid": 1598833824, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0067468, 40.4410898 ] } }, { "type": "Feature", "properties": { "y": 40.4344286, "x": -79.9956635, "osmid": 3519988897, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9956635, 40.4344286 ] } }, -{ "type": "Feature", "properties": { "y": 40.4403541, "x": -80.0061365, "osmid": 5935776929, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061365, 40.4403541 ] } }, -{ "type": "Feature", "properties": { "y": 40.4402675, "x": -80.0060896, "osmid": 5935776931, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0060896, 40.4402675 ] } }, { "type": "Feature", "properties": { "y": 40.4403121, "x": -80.0062097, "osmid": 5935776930, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062097, 40.4403121 ] } }, +{ "type": "Feature", "properties": { "y": 40.4402675, "x": -80.0060896, "osmid": 5935776931, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0060896, 40.4402675 ] } }, +{ "type": "Feature", "properties": { "y": 40.4403541, "x": -80.0061365, "osmid": 5935776929, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061365, 40.4403541 ] } }, { "type": "Feature", "properties": { "y": 40.4363994, "x": -79.9986125, "osmid": 3519988901, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9986125, 40.4363994 ] } }, { "type": "Feature", "properties": { "y": 40.4345748, "x": -79.9951276, "osmid": 3519988896, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9951276, 40.4345748 ] } }, { "type": "Feature", "properties": { "y": 40.4365558, "x": -79.9985653, "osmid": 3519988903, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9985653, 40.4365558 ] } }, @@ -6844,17 +6649,15 @@ { "type": "Feature", "properties": { "y": 40.4403889, "x": -80.0067806, "osmid": 5935776962, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0067806, 40.4403889 ] } }, { "type": "Feature", "properties": { "y": 40.4411932, "x": -80.0055405, "osmid": 1598833858, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0055405, 40.4411932 ] } }, { "type": "Feature", "properties": { "y": 40.4360652, "x": -79.9686194, "osmid": 5317313732, "highway": "motorway_junction", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9686194, 40.4360652 ] } }, -{ "type": "Feature", "properties": { "y": 40.4561894, "x": -80.004587, "osmid": 5211571388, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.004587, 40.4561894 ] } }, -{ "type": "Feature", "properties": { "y": 40.4561276, "x": -80.0036488, "osmid": 5211571394, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0036488, 40.4561276 ] } }, -{ "type": "Feature", "properties": { "y": 40.4562326, "x": -80.0031298, "osmid": 5211571395, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0031298, 40.4562326 ] } }, { "type": "Feature", "properties": { "y": 40.4563015, "x": -80.0027502, "osmid": 5211571396, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0027502, 40.4563015 ] } }, { "type": "Feature", "properties": { "y": 40.4563336, "x": -80.0025759, "osmid": 5211571397, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025759, 40.4563336 ] } }, +{ "type": "Feature", "properties": { "y": 40.4565056, "x": -80.0017055, "osmid": 5211571399, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0017055, 40.4565056 ] } }, +{ "type": "Feature", "properties": { "y": 40.4564428, "x": -80.0020167, "osmid": 5211571398, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0020167, 40.4564428 ] } }, +{ "type": "Feature", "properties": { "y": 40.4561276, "x": -80.0036488, "osmid": 5211571394, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0036488, 40.4561276 ] } }, { "type": "Feature", "properties": { "y": 40.4561189, "x": -80.0036934, "osmid": 5211571402, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0036934, 40.4561189 ] } }, { "type": "Feature", "properties": { "y": 40.4408657, "x": -80.0063735, "osmid": 5935776971, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063735, 40.4408657 ] } }, { "type": "Feature", "properties": { "y": 40.4365795, "x": -79.9747209, "osmid": 5317313740, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9747209, 40.4365795 ] } }, { "type": "Feature", "properties": { "y": 40.4411737, "x": -80.003973, "osmid": 1598833868, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.003973, 40.4411737 ] } }, -{ "type": "Feature", "properties": { "y": 40.4564428, "x": -80.0020167, "osmid": 5211571398, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0020167, 40.4564428 ] } }, -{ "type": "Feature", "properties": { "y": 40.4565056, "x": -80.0017055, "osmid": 5211571399, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0017055, 40.4565056 ] } }, { "type": "Feature", "properties": { "y": 40.4568887, "x": -80.0018191, "osmid": 5211571401, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018191, 40.4568887 ] } }, { "type": "Feature", "properties": { "y": 40.4408073, "x": -80.0065213, "osmid": 5935776981, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0065213, 40.4408073 ] } }, { "type": "Feature", "properties": { "y": 40.4408001, "x": -80.0061839, "osmid": 5935776983, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061839, 40.4408001 ] } }, @@ -6867,13 +6670,11 @@ { "type": "Feature", "properties": { "y": 40.4452596, "x": -79.9426363, "osmid": 1703822564, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9426363, 40.4452596 ] } }, { "type": "Feature", "properties": { "y": 40.445727, "x": -79.9423624, "osmid": 1703822565, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9423624, 40.445727 ] } }, { "type": "Feature", "properties": { "y": 40.445611, "x": -79.9425687, "osmid": 1703822566, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9425687, 40.445611 ] } }, -{ "type": "Feature", "properties": { "y": 40.4575765, "x": -79.9329717, "osmid": 393561319, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9329717, 40.4575765 ] } }, { "type": "Feature", "properties": { "y": 40.4454222, "x": -79.9426787, "osmid": 1703822568, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9426787, 40.4454222 ] } }, { "type": "Feature", "properties": { "y": 40.4413212, "x": -80.0041804, "osmid": 1598833897, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0041804, 40.4413212 ] } }, { "type": "Feature", "properties": { "y": 40.4397877, "x": -80.0073571, "osmid": 104842474, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0073571, 40.4397877 ] } }, { "type": "Feature", "properties": { "y": 40.4394181, "x": -80.0061163, "osmid": 2107884780, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061163, 40.4394181 ] } }, { "type": "Feature", "properties": { "y": 40.4390541, "x": -79.9807286, "osmid": 106087665, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9807286, 40.4390541 ] } }, -{ "type": "Feature", "properties": { "y": 40.4578949, "x": -79.9331322, "osmid": 393561329, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9331322, 40.4578949 ] } }, { "type": "Feature", "properties": { "y": 40.4413489, "x": -80.0058891, "osmid": 1598833908, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0058891, 40.4413489 ] } }, { "type": "Feature", "properties": { "y": 40.4385429, "x": -80.0040164, "osmid": 104842485, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0040164, 40.4385429 ] } }, { "type": "Feature", "properties": { "y": 40.4414163, "x": -80.0039035, "osmid": 1598833910, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0039035, 40.4414163 ] } }, @@ -6885,11 +6686,11 @@ { "type": "Feature", "properties": { "y": 40.4483346, "x": -79.9891028, "osmid": 6080808189, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9891028, 40.4483346 ] } }, { "type": "Feature", "properties": { "y": 40.4480847, "x": -79.9888389, "osmid": 6080808190, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9888389, 40.4480847 ] } }, { "type": "Feature", "properties": { "y": 40.4481236, "x": -79.9887748, "osmid": 6080808191, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9887748, 40.4481236 ] } }, -{ "type": "Feature", "properties": { "y": 40.4409045, "x": -80.0057819, "osmid": 5935777021, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057819, 40.4409045 ] } }, { "type": "Feature", "properties": { "y": 40.4479901, "x": -79.9889921, "osmid": 6080808192, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9889921, 40.4479901 ] } }, { "type": "Feature", "properties": { "y": 40.4476716, "x": -79.9895015, "osmid": 6080808193, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9895015, 40.4476716 ] } }, -{ "type": "Feature", "properties": { "y": 40.4378957, "x": -80.0023058, "osmid": 104842499, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0023058, 40.4378957 ] } }, { "type": "Feature", "properties": { "y": 40.4410547, "x": -80.0057556, "osmid": 5935777019, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057556, 40.4410547 ] } }, +{ "type": "Feature", "properties": { "y": 40.4378957, "x": -80.0023058, "osmid": 104842499, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0023058, 40.4378957 ] } }, +{ "type": "Feature", "properties": { "y": 40.4409045, "x": -80.0057819, "osmid": 5935777021, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057819, 40.4409045 ] } }, { "type": "Feature", "properties": { "y": 40.4355971, "x": -79.9722478, "osmid": 5317313790, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9722478, 40.4355971 ] } }, { "type": "Feature", "properties": { "y": 40.4414206, "x": -80.0056517, "osmid": 1598833926, "highway": "bus_stop", "ref": "4126" }, "geometry": { "type": "Point", "coordinates": [ -80.0056517, 40.4414206 ] } }, { "type": "Feature", "properties": { "y": 40.4377024, "x": -79.9759131, "osmid": 104645892, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9759131, 40.4377024 ] } }, @@ -6929,7 +6730,6 @@ { "type": "Feature", "properties": { "y": 40.4326083, "x": -80.0036805, "osmid": 1446495580, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0036805, 40.4326083 ] } }, { "type": "Feature", "properties": { "y": 40.4329686, "x": -80.0036708, "osmid": 1446495590, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0036708, 40.4329686 ] } }, { "type": "Feature", "properties": { "y": 40.4327034, "x": -80.0038701, "osmid": 1446495591, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0038701, 40.4327034 ] } }, -{ "type": "Feature", "properties": { "y": 40.4283691, "x": -80.0092362, "osmid": 104874157, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0092362, 40.4283691 ] } }, { "type": "Feature", "properties": { "y": 40.4452389, "x": -80.0136411, "osmid": 1598834025, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0136411, 40.4452389 ] } }, { "type": "Feature", "properties": { "y": 40.4453345, "x": -80.0134183, "osmid": 1598834026, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0134183, 40.4453345 ] } }, { "type": "Feature", "properties": { "y": 40.4349877, "x": -79.9811997, "osmid": 5317313911, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9811997, 40.4349877 ] } }, @@ -6973,11 +6773,9 @@ { "type": "Feature", "properties": { "y": 40.4444313, "x": -79.975603, "osmid": 105170427, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.975603, 40.4444313 ] } }, { "type": "Feature", "properties": { "y": 40.4315687, "x": -79.9808686, "osmid": 4833035772, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9808686, 40.4315687 ] } }, { "type": "Feature", "properties": { "y": 40.4316078, "x": -79.9809146, "osmid": 4833035771, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9809146, 40.4316078 ] } }, -{ "type": "Feature", "properties": { "y": 40.4386142, "x": -79.9466143, "osmid": 3955655571, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9466143, 40.4386142 ] } }, { "type": "Feature", "properties": { "y": 40.4315707, "x": -79.9811487, "osmid": 4833035775, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9811487, 40.4315707 ] } }, { "type": "Feature", "properties": { "y": 40.4497583, "x": -79.9349894, "osmid": 104547839, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9349894, 40.4497583 ] } }, { "type": "Feature", "properties": { "y": 40.4500708, "x": -79.9616806, "osmid": 1454458369, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9616806, 40.4500708 ] } }, -{ "type": "Feature", "properties": { "y": 40.4393704, "x": -79.9467907, "osmid": 3955655572, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9467907, 40.4393704 ] } }, { "type": "Feature", "properties": { "y": 40.4479226, "x": -79.9629672, "osmid": 1454458371, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9629672, 40.4479226 ] } }, { "type": "Feature", "properties": { "y": 40.4393851, "x": -79.9467171, "osmid": 3955655573, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9467171, 40.4393851 ] } }, { "type": "Feature", "properties": { "y": 40.4260151, "x": -79.9531876, "osmid": 686507528, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9531876, 40.4260151 ] } }, @@ -7018,7 +6816,7 @@ { "type": "Feature", "properties": { "y": 40.4561204, "x": -79.9387448, "osmid": 104547939, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9387448, 40.4561204 ] } }, { "type": "Feature", "properties": { "y": 40.4598876, "x": -80.0285058, "osmid": 104187495, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0285058, 40.4598876 ] } }, { "type": "Feature", "properties": { "y": 40.4566938, "x": -80.0328465, "osmid": 7145113194, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0328465, 40.4566938 ] } }, -{ "type": "Feature", "properties": { "y": 40.456074, "x": -80.0314726, "osmid": 7145113195, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0314726, 40.456074 ] } }, +{ "type": "Feature", "properties": { "y": 40.456055, "x": -80.0315756, "osmid": 7145113196, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0315756, 40.456055 ] } }, { "type": "Feature", "properties": { "y": 40.4596963, "x": -80.0295215, "osmid": 104187503, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0295215, 40.4596963 ] } }, { "type": "Feature", "properties": { "y": 40.4568293, "x": -80.032316, "osmid": 7145113200, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.032316, 40.4568293 ] } }, { "type": "Feature", "properties": { "y": 40.4411177, "x": -79.9869988, "osmid": 2802959983, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9869988, 40.4411177 ] } }, @@ -7032,7 +6830,6 @@ { "type": "Feature", "properties": { "y": 40.4522328, "x": -79.9688704, "osmid": 104449671, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9688704, 40.4522328 ] } }, { "type": "Feature", "properties": { "y": 40.4567386, "x": -80.0001726, "osmid": 5207606925, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0001726, 40.4567386 ] } }, { "type": "Feature", "properties": { "y": 40.4535052, "x": -79.9822993, "osmid": 106088080, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9822993, 40.4535052 ] } }, -{ "type": "Feature", "properties": { "y": 40.443706, "x": -79.9441105, "osmid": 303351444, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9441105, 40.443706 ] } }, { "type": "Feature", "properties": { "y": 40.4344975, "x": -80.008033, "osmid": 539281047, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008033, 40.4344975 ] } }, { "type": "Feature", "properties": { "y": 40.4344338, "x": -80.0063653, "osmid": 539281058, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063653, 40.4344338 ] } }, { "type": "Feature", "properties": { "y": 40.4400407, "x": -79.9486251, "osmid": 3955655605, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9486251, 40.4400407 ] } }, @@ -7114,14 +6911,12 @@ { "type": "Feature", "properties": { "y": 40.4256574, "x": -79.9998835, "osmid": 104843167, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9998835, 40.4256574 ] } }, { "type": "Feature", "properties": { "y": 40.4575621, "x": -79.9738727, "osmid": 104351648, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9738727, 40.4575621 ] } }, { "type": "Feature", "properties": { "y": 40.4578803, "x": -79.9598332, "osmid": 105760676, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9598332, 40.4578803 ] } }, -{ "type": "Feature", "properties": { "y": 40.4554401, "x": -79.9530316, "osmid": 7189317541, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9530316, 40.4554401 ] } }, -{ "type": "Feature", "properties": { "y": 40.4557057, "x": -79.9524276, "osmid": 7189317542, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9524276, 40.4557057 ] } }, +{ "type": "Feature", "properties": { "y": 40.4548416, "x": -79.9456768, "osmid": 7011026852, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9456768, 40.4548416 ] } }, { "type": "Feature", "properties": { "y": 40.4556405, "x": -79.9531875, "osmid": 7189317543, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9531875, 40.4556405 ] } }, { "type": "Feature", "properties": { "y": 40.4547676, "x": -79.9459271, "osmid": 7011026856, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9459271, 40.4547676 ] } }, { "type": "Feature", "properties": { "y": 40.4559532, "x": -79.9524692, "osmid": 7189317545, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9524692, 40.4559532 ] } }, { "type": "Feature", "properties": { "y": 40.4565789, "x": -79.9752755, "osmid": 104351658, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9752755, 40.4565789 ] } }, { "type": "Feature", "properties": { "y": 40.4481221, "x": -79.9698789, "osmid": 104613801, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9698789, 40.4481221 ] } }, -{ "type": "Feature", "properties": { "y": 40.4548416, "x": -79.9456768, "osmid": 7011026852, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9456768, 40.4548416 ] } }, { "type": "Feature", "properties": { "y": 40.4546846, "x": -79.944931, "osmid": 7011026855, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.944931, 40.4546846 ] } }, { "type": "Feature", "properties": { "y": 40.4546783, "x": -79.946229, "osmid": 7011026862, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.946229, 40.4546783 ] } }, { "type": "Feature", "properties": { "y": 40.4452837, "x": -79.976217, "osmid": 104613810, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976217, 40.4452837 ] } }, @@ -7178,7 +6973,6 @@ { "type": "Feature", "properties": { "y": 40.4371377, "x": -79.9513381, "osmid": 104548441, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9513381, 40.4371377 ] } }, { "type": "Feature", "properties": { "y": 40.4297149, "x": -80.0089144, "osmid": 7013353569, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0089144, 40.4297149 ] } }, { "type": "Feature", "properties": { "y": 40.437478, "x": -79.9511954, "osmid": 104548449, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9511954, 40.437478 ] } }, -{ "type": "Feature", "properties": { "y": 40.4431827, "x": -79.9449599, "osmid": 1705953379, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9449599, 40.4431827 ] } }, { "type": "Feature", "properties": { "y": 40.4296578, "x": -80.0080806, "osmid": 7013353572, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0080806, 40.4296578 ] } }, { "type": "Feature", "properties": { "y": 40.4297972, "x": -80.0079619, "osmid": 7013353573, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0079619, 40.4297972 ] } }, { "type": "Feature", "properties": { "y": 40.4516873, "x": -80.0096732, "osmid": 2865711206, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0096732, 40.4516873 ] } }, @@ -7229,11 +7023,11 @@ { "type": "Feature", "properties": { "y": 40.4511492, "x": -80.0109976, "osmid": 2865711331, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0109976, 40.4511492 ] } }, { "type": "Feature", "properties": { "y": 40.4559135, "x": -80.0077566, "osmid": 5336811747, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0077566, 40.4559135 ] } }, { "type": "Feature", "properties": { "y": 40.45589, "x": -80.0078648, "osmid": 5336811748, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0078648, 40.45589 ] } }, -{ "type": "Feature", "properties": { "y": 40.454103, "x": -80.0101603, "osmid": 2865711333, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0101603, 40.454103 ] } }, +{ "type": "Feature", "properties": { "y": 40.4557503, "x": -80.0079012, "osmid": 5336811750, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0079012, 40.4557503 ] } }, { "type": "Feature", "properties": { "y": 40.4557625, "x": -80.0078227, "osmid": 5336811751, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0078227, 40.4557625 ] } }, { "type": "Feature", "properties": { "y": 40.4557717, "x": -80.0077634, "osmid": 5336811752, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0077634, 40.4557717 ] } }, { "type": "Feature", "properties": { "y": 40.456148, "x": -80.007939, "osmid": 5336811753, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.007939, 40.456148 ] } }, -{ "type": "Feature", "properties": { "y": 40.4557503, "x": -80.0079012, "osmid": 5336811750, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0079012, 40.4557503 ] } }, +{ "type": "Feature", "properties": { "y": 40.454103, "x": -80.0101603, "osmid": 2865711333, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0101603, 40.454103 ] } }, { "type": "Feature", "properties": { "y": 40.4486742, "x": -79.9797266, "osmid": 2394278127, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9797266, 40.4486742 ] } }, { "type": "Feature", "properties": { "y": 40.4532774, "x": -80.012636, "osmid": 2865711344, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.012636, 40.4532774 ] } }, { "type": "Feature", "properties": { "y": 40.4548429, "x": -80.0095615, "osmid": 2865711354, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0095615, 40.4548429 ] } }, @@ -7251,7 +7045,6 @@ { "type": "Feature", "properties": { "y": 40.4545867, "x": -80.0105465, "osmid": 2865711401, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0105465, 40.4545867 ] } }, { "type": "Feature", "properties": { "y": 40.4418855, "x": -79.9469296, "osmid": 302434601, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9469296, 40.4418855 ] } }, { "type": "Feature", "properties": { "y": 40.4525486, "x": -80.0136997, "osmid": 2865711421, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0136997, 40.4525486 ] } }, -{ "type": "Feature", "properties": { "y": 40.445917, "x": -79.9434684, "osmid": 1726957891, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9434684, 40.445917 ] } }, { "type": "Feature", "properties": { "y": 40.445256, "x": -80.016859, "osmid": 5406542158, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.016859, 40.445256 ] } }, { "type": "Feature", "properties": { "y": 40.4451552, "x": -80.016673, "osmid": 5406542159, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.016673, 40.4451552 ] } }, { "type": "Feature", "properties": { "y": 40.4516839, "x": -79.9321787, "osmid": 105892184, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9321787, 40.4516839 ] } }, @@ -7320,14 +7113,14 @@ { "type": "Feature", "properties": { "y": 40.4364882, "x": -79.9981782, "osmid": 3830139386, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9981782, 40.4364882 ] } }, { "type": "Feature", "properties": { "y": 40.4316461, "x": -79.980261, "osmid": 2588527098, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.980261, 40.4316461 ] } }, { "type": "Feature", "properties": { "y": 40.4316569, "x": -79.9806046, "osmid": 2588527100, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9806046, 40.4316569 ] } }, -{ "type": "Feature", "properties": { "y": 40.4550906, "x": -80.0086152, "osmid": 104712701, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0086152, 40.4550906 ] } }, { "type": "Feature", "properties": { "y": 40.4367102, "x": -79.9983552, "osmid": 3830139389, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9983552, 40.4367102 ] } }, +{ "type": "Feature", "properties": { "y": 40.4550906, "x": -80.0086152, "osmid": 104712701, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0086152, 40.4550906 ] } }, { "type": "Feature", "properties": { "y": 40.4372497, "x": -79.9865631, "osmid": 2588527102, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9865631, 40.4372497 ] } }, { "type": "Feature", "properties": { "y": 40.4372907, "x": -79.9874868, "osmid": 2588527104, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9874868, 40.4372907 ] } }, { "type": "Feature", "properties": { "y": 40.4432465, "x": -79.9711694, "osmid": 6531959294, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9711694, 40.4432465 ] } }, { "type": "Feature", "properties": { "y": 40.442459, "x": -79.971187, "osmid": 6531959295, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.971187, 40.442459 ] } }, -{ "type": "Feature", "properties": { "y": 40.4549053, "x": -80.0095939, "osmid": 104712707, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0095939, 40.4549053 ] } }, { "type": "Feature", "properties": { "y": 40.4365805, "x": -79.9984574, "osmid": 3830139395, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9984574, 40.4365805 ] } }, +{ "type": "Feature", "properties": { "y": 40.4549053, "x": -80.0095939, "osmid": 104712707, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0095939, 40.4549053 ] } }, { "type": "Feature", "properties": { "y": 40.4547155, "x": -80.0105981, "osmid": 104712716, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0105981, 40.4547155 ] } }, { "type": "Feature", "properties": { "y": 40.4587599, "x": -79.9470868, "osmid": 106088974, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9470868, 40.4587599 ] } }, { "type": "Feature", "properties": { "y": 40.4362911, "x": -79.9977502, "osmid": 3830139408, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9977502, 40.4362911 ] } }, @@ -7362,11 +7155,9 @@ { "type": "Feature", "properties": { "y": 40.4296015, "x": -80.0090833, "osmid": 4837657162, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0090833, 40.4296015 ] } }, { "type": "Feature", "properties": { "y": 40.4531525, "x": -80.0206879, "osmid": 104712785, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0206879, 40.4531525 ] } }, { "type": "Feature", "properties": { "y": 40.4320466, "x": -80.024618, "osmid": 5309155922, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.024618, 40.4320466 ] } }, -{ "type": "Feature", "properties": { "y": 40.4318812, "x": -80.0244666, "osmid": 5309155923, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0244666, 40.4318812 ] } }, { "type": "Feature", "properties": { "y": 40.4528584, "x": -80.0222888, "osmid": 104712791, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0222888, 40.4528584 ] } }, { "type": "Feature", "properties": { "y": 40.4316191, "x": -80.0243819, "osmid": 5309155927, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0243819, 40.4316191 ] } }, { "type": "Feature", "properties": { "y": 40.4315124, "x": -80.0249681, "osmid": 5309155930, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0249681, 40.4315124 ] } }, -{ "type": "Feature", "properties": { "y": 40.4317904, "x": -80.0246373, "osmid": 5309155931, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0246373, 40.4317904 ] } }, { "type": "Feature", "properties": { "y": 40.431722, "x": -80.0245745, "osmid": 5309155932, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0245745, 40.431722 ] } }, { "type": "Feature", "properties": { "y": 40.4319476, "x": -80.0247332, "osmid": 5309155933, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0247332, 40.4319476 ] } }, { "type": "Feature", "properties": { "y": 40.452514, "x": -80.0241631, "osmid": 104712798, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0241631, 40.452514 ] } }, @@ -7454,20 +7245,20 @@ { "type": "Feature", "properties": { "y": 40.4488698, "x": -79.964904, "osmid": 104844001, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.964904, 40.4488698 ] } }, { "type": "Feature", "properties": { "y": 40.4290322, "x": -79.9687477, "osmid": 7838485217, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9687477, 40.4290322 ] } }, { "type": "Feature", "properties": { "y": 40.4454625, "x": -80.017848, "osmid": 5406542565, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.017848, 40.4454625 ] } }, -{ "type": "Feature", "properties": { "y": 40.448865, "x": -79.9644447, "osmid": 104844006, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9644447, 40.448865 ] } }, -{ "type": "Feature", "properties": { "y": 40.4453469, "x": -80.0176766, "osmid": 5406542567, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0176766, 40.4453469 ] } }, { "type": "Feature", "properties": { "y": 40.4291143, "x": -79.9701675, "osmid": 7838485222, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9701675, 40.4291143 ] } }, +{ "type": "Feature", "properties": { "y": 40.4453469, "x": -80.0176766, "osmid": 5406542567, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0176766, 40.4453469 ] } }, +{ "type": "Feature", "properties": { "y": 40.448865, "x": -79.9644447, "osmid": 104844006, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9644447, 40.448865 ] } }, { "type": "Feature", "properties": { "y": 40.4289034, "x": -79.9694846, "osmid": 7838485225, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9694846, 40.4289034 ] } }, { "type": "Feature", "properties": { "y": 40.4294489, "x": -79.9705932, "osmid": 7838485227, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9705932, 40.4294489 ] } }, { "type": "Feature", "properties": { "y": 40.4426523, "x": -79.9963183, "osmid": 105990892, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9963183, 40.4426523 ] } }, { "type": "Feature", "properties": { "y": 40.4452592, "x": -80.0179916, "osmid": 5406542573, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0179916, 40.4452592 ] } }, -{ "type": "Feature", "properties": { "y": 40.4487409, "x": -79.9615429, "osmid": 104844013, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9615429, 40.4487409 ] } }, -{ "type": "Feature", "properties": { "y": 40.4301697, "x": -79.9689084, "osmid": 7838485231, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9689084, 40.4301697 ] } }, { "type": "Feature", "properties": { "y": 40.4293046, "x": -79.9700772, "osmid": 7838485228, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9700772, 40.4293046 ] } }, -{ "type": "Feature", "properties": { "y": 40.4295146, "x": -79.9705669, "osmid": 7838485230, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9705669, 40.4295146 ] } }, +{ "type": "Feature", "properties": { "y": 40.4301697, "x": -79.9689084, "osmid": 7838485231, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9689084, 40.4301697 ] } }, +{ "type": "Feature", "properties": { "y": 40.4487409, "x": -79.9615429, "osmid": 104844013, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9615429, 40.4487409 ] } }, +{ "type": "Feature", "properties": { "y": 40.42922, "x": -79.9697665, "osmid": 7838485229, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9697665, 40.42922 ] } }, { "type": "Feature", "properties": { "y": 40.4301122, "x": -79.9731014, "osmid": 7838485234, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9731014, 40.4301122 ] } }, { "type": "Feature", "properties": { "y": 40.4306621, "x": -79.9732248, "osmid": 7838485235, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9732248, 40.4306621 ] } }, -{ "type": "Feature", "properties": { "y": 40.42922, "x": -79.9697665, "osmid": 7838485229, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9697665, 40.42922 ] } }, +{ "type": "Feature", "properties": { "y": 40.4295146, "x": -79.9705669, "osmid": 7838485230, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9705669, 40.4295146 ] } }, { "type": "Feature", "properties": { "y": 40.4483369, "x": -79.9587347, "osmid": 104844024, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9587347, 40.4483369 ] } }, { "type": "Feature", "properties": { "y": 40.4307939, "x": -79.9727785, "osmid": 7838485241, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9727785, 40.4307939 ] } }, { "type": "Feature", "properties": { "y": 40.4308927, "x": -79.973178, "osmid": 7838485242, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.973178, 40.4308927 ] } }, @@ -7503,10 +7294,8 @@ { "type": "Feature", "properties": { "y": 40.4418722, "x": -79.9941964, "osmid": 106056485, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9941964, 40.4418722 ] } }, { "type": "Feature", "properties": { "y": 40.4281496, "x": -79.9485638, "osmid": 3353332518, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9485638, 40.4281496 ] } }, { "type": "Feature", "properties": { "y": 40.4541533, "x": -79.9444228, "osmid": 104844063, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9444228, 40.4541533 ] } }, -{ "type": "Feature", "properties": { "y": 40.4529886, "x": -79.9527111, "osmid": 7226398843, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9527111, 40.4529886 ] } }, { "type": "Feature", "properties": { "y": 40.4400229, "x": -79.9915873, "osmid": 3264957230, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9915873, 40.4400229 ] } }, { "type": "Feature", "properties": { "y": 40.4421789, "x": -80.0100409, "osmid": 1510755123, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0100409, 40.4421789 ] } }, -{ "type": "Feature", "properties": { "y": 40.4529667, "x": -79.9529606, "osmid": 7226398845, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9529606, 40.4529667 ] } }, { "type": "Feature", "properties": { "y": 40.438286, "x": -80.0050253, "osmid": 2394442550, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0050253, 40.438286 ] } }, { "type": "Feature", "properties": { "y": 40.4393221, "x": -80.0042998, "osmid": 2394442551, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0042998, 40.4393221 ] } }, { "type": "Feature", "properties": { "y": 40.4559019, "x": -79.9385798, "osmid": 104844089, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9385798, 40.4559019 ] } }, @@ -7584,8 +7373,6 @@ { "type": "Feature", "properties": { "y": 40.4267505, "x": -79.9490216, "osmid": 7011585086, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9490216, 40.4267505 ] } }, { "type": "Feature", "properties": { "y": 40.4426659, "x": -79.9763596, "osmid": 7265864767, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9763596, 40.4426659 ] } }, { "type": "Feature", "properties": { "y": 40.4360624, "x": -79.994541, "osmid": 1364118592, "highway": "motorway_junction", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.994541, 40.4360624 ] } }, -{ "type": "Feature", "properties": { "y": 40.4293992, "x": -79.9515883, "osmid": 7011585087, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9515883, 40.4293992 ] } }, -{ "type": "Feature", "properties": { "y": 40.4292458, "x": -79.9517799, "osmid": 7011585089, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9517799, 40.4292458 ] } }, { "type": "Feature", "properties": { "y": 40.441888, "x": -80.0132422, "osmid": 1510755397, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0132422, 40.441888 ] } }, { "type": "Feature", "properties": { "y": 40.4527107, "x": -80.0077977, "osmid": 3573206093, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0077977, 40.4527107 ] } }, { "type": "Feature", "properties": { "y": 40.4531596, "x": -80.0061731, "osmid": 3573206097, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061731, 40.4531596 ] } }, @@ -7637,17 +7424,14 @@ { "type": "Feature", "properties": { "y": 40.4463808, "x": -79.9655799, "osmid": 656067801, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9655799, 40.4463808 ] } }, { "type": "Feature", "properties": { "y": 40.4314476, "x": -79.9735644, "osmid": 422399197, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9735644, 40.4314476 ] } }, { "type": "Feature", "properties": { "y": 40.4462729, "x": -79.9657797, "osmid": 656067806, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9657797, 40.4462729 ] } }, -{ "type": "Feature", "properties": { "y": 40.4521593, "x": -79.9706353, "osmid": 656067812, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9706353, 40.4521593 ] } }, { "type": "Feature", "properties": { "y": 40.429414, "x": -79.9671248, "osmid": 523029734, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9671248, 40.429414 ] } }, { "type": "Feature", "properties": { "y": 40.4338887, "x": -80.0308843, "osmid": 104582375, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0308843, 40.4338887 ] } }, -{ "type": "Feature", "properties": { "y": 40.4520438, "x": -79.9714019, "osmid": 656067815, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9714019, 40.4520438 ] } }, { "type": "Feature", "properties": { "y": 40.432973, "x": -79.9365565, "osmid": 7543082219, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9365565, 40.432973 ] } }, { "type": "Feature", "properties": { "y": 40.4329194, "x": -79.9364271, "osmid": 7543082222, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9364271, 40.4329194 ] } }, { "type": "Feature", "properties": { "y": 40.4327963, "x": -80.0296456, "osmid": 104582383, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0296456, 40.4327963 ] } }, { "type": "Feature", "properties": { "y": 40.4329262, "x": -79.9363157, "osmid": 7543082223, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9363157, 40.4329262 ] } }, { "type": "Feature", "properties": { "y": 40.4329795, "x": -79.9365628, "osmid": 7543082230, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9365628, 40.4329795 ] } }, { "type": "Feature", "properties": { "y": 40.4329175, "x": -79.9367634, "osmid": 7543082236, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9367634, 40.4329175 ] } }, -{ "type": "Feature", "properties": { "y": 40.4524981, "x": -79.9702973, "osmid": 656067837, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9702973, 40.4524981 ] } }, { "type": "Feature", "properties": { "y": 40.4510799, "x": -79.9667977, "osmid": 656067844, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9667977, 40.4510799 ] } }, { "type": "Feature", "properties": { "y": 40.426042, "x": -79.9489776, "osmid": 2715045129, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9489776, 40.426042 ] } }, { "type": "Feature", "properties": { "y": 40.4259186, "x": -79.9502537, "osmid": 2715045132, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9502537, 40.4259186 ] } }, @@ -7655,8 +7439,6 @@ { "type": "Feature", "properties": { "y": 40.4449255, "x": -79.9480745, "osmid": 2715045149, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9480745, 40.4449255 ] } }, { "type": "Feature", "properties": { "y": 40.4453561, "x": -79.9476541, "osmid": 2715045150, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9476541, 40.4453561 ] } }, { "type": "Feature", "properties": { "y": 40.4458916, "x": -79.9477262, "osmid": 2715045151, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9477262, 40.4458916 ] } }, -{ "type": "Feature", "properties": { "y": 40.4457497, "x": -79.9495208, "osmid": 2715045152, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9495208, 40.4457497 ] } }, -{ "type": "Feature", "properties": { "y": 40.4452303, "x": -79.9494616, "osmid": 2715045153, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9494616, 40.4452303 ] } }, { "type": "Feature", "properties": { "y": 40.4462773, "x": -79.9498923, "osmid": 2715045154, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9498923, 40.4462773 ] } }, { "type": "Feature", "properties": { "y": 40.4457298, "x": -79.9498156, "osmid": 2715045155, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9498156, 40.4457298 ] } }, { "type": "Feature", "properties": { "y": 40.4293029, "x": -79.937683, "osmid": 7543082276, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.937683, 40.4293029 ] } }, @@ -7701,18 +7483,10 @@ { "type": "Feature", "properties": { "y": 40.4518355, "x": -79.9332281, "osmid": 4309601668, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9332281, 40.4518355 ] } }, { "type": "Feature", "properties": { "y": 40.4422856, "x": -79.936098, "osmid": 105729413, "highway": "turning_circle", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.936098, 40.4422856 ] } }, { "type": "Feature", "properties": { "y": 40.4591996, "x": -79.9309872, "osmid": 105916634, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9309872, 40.4591996 ] } }, -{ "type": "Feature", "properties": { "y": 40.4586961, "x": -79.9441298, "osmid": 7011093908, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9441298, 40.4586961 ] } }, -{ "type": "Feature", "properties": { "y": 40.4585748, "x": -79.9439308, "osmid": 7011093912, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9439308, 40.4585748 ] } }, -{ "type": "Feature", "properties": { "y": 40.4591035, "x": -79.9449394, "osmid": 7011093915, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9449394, 40.4591035 ] } }, -{ "type": "Feature", "properties": { "y": 40.4591975, "x": -79.9451106, "osmid": 7011093917, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9451106, 40.4591975 ] } }, -{ "type": "Feature", "properties": { "y": 40.4576672, "x": -79.9409708, "osmid": 7011093918, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9409708, 40.4576672 ] } }, { "type": "Feature", "properties": { "y": 40.4468881, "x": -79.9366295, "osmid": 7011061154, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9366295, 40.4468881 ] } }, -{ "type": "Feature", "properties": { "y": 40.4572545, "x": -79.9401737, "osmid": 7011093923, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9401737, 40.4572545 ] } }, -{ "type": "Feature", "properties": { "y": 40.4395719, "x": -79.9943573, "osmid": 5417356708, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9943573, 40.4395719 ] } }, -{ "type": "Feature", "properties": { "y": 40.4572118, "x": -79.9395847, "osmid": 7011093925, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9395847, 40.4572118 ] } }, { "type": "Feature", "properties": { "y": 40.4477348, "x": -79.9381976, "osmid": 7011061155, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9381976, 40.4477348 ] } }, +{ "type": "Feature", "properties": { "y": 40.4395719, "x": -79.9943573, "osmid": 5417356708, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9943573, 40.4395719 ] } }, { "type": "Feature", "properties": { "y": 40.44777, "x": -79.9377103, "osmid": 7011061158, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9377103, 40.44777 ] } }, -{ "type": "Feature", "properties": { "y": 40.4569751, "x": -79.9402806, "osmid": 7011093928, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9402806, 40.4569751 ] } }, { "type": "Feature", "properties": { "y": 40.4483567, "x": -79.9372909, "osmid": 7011061159, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9372909, 40.4483567 ] } }, { "type": "Feature", "properties": { "y": 40.4478456, "x": -79.9366647, "osmid": 7011061162, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9366647, 40.4478456 ] } }, { "type": "Feature", "properties": { "y": 40.4275018, "x": -80.0055583, "osmid": 105762222, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0055583, 40.4275018 ] } }, @@ -7720,16 +7494,19 @@ { "type": "Feature", "properties": { "y": 40.4479354, "x": -79.9356993, "osmid": 7011061170, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9356993, 40.4479354 ] } }, { "type": "Feature", "properties": { "y": 40.4489343, "x": -79.9345102, "osmid": 7011061171, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9345102, 40.4489343 ] } }, { "type": "Feature", "properties": { "y": 40.4569794, "x": -80.0048198, "osmid": 5211582983, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0048198, 40.4569794 ] } }, -{ "type": "Feature", "properties": { "y": 40.4487196, "x": -79.9331824, "osmid": 7011061173, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9331824, 40.4487196 ] } }, { "type": "Feature", "properties": { "y": 40.4491648, "x": -79.9338395, "osmid": 7011061172, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9338395, 40.4491648 ] } }, +{ "type": "Feature", "properties": { "y": 40.4487196, "x": -79.9331824, "osmid": 7011061173, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9331824, 40.4487196 ] } }, { "type": "Feature", "properties": { "y": 40.4482365, "x": -79.9322513, "osmid": 7011061176, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9322513, 40.4482365 ] } }, +{ "type": "Feature", "properties": { "y": 40.4569682, "x": -80.0048774, "osmid": 5211582984, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0048774, 40.4569682 ] } }, { "type": "Feature", "properties": { "y": 40.450286, "x": -79.9307873, "osmid": 7011061177, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9307873, 40.450286 ] } }, -{ "type": "Feature", "properties": { "y": 40.4495906, "x": -79.9303898, "osmid": 7011061178, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9303898, 40.4495906 ] } }, { "type": "Feature", "properties": { "y": 40.4535617, "x": -79.96773, "osmid": 104844731, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.96773, 40.4535617 ] } }, { "type": "Feature", "properties": { "y": 40.4510415, "x": -79.9309578, "osmid": 7011061179, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9309578, 40.4510415 ] } }, { "type": "Feature", "properties": { "y": 40.4507553, "x": -79.9307987, "osmid": 7011061180, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9307987, 40.4507553 ] } }, +{ "type": "Feature", "properties": { "y": 40.4570164, "x": -80.0048304, "osmid": 5211582985, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0048304, 40.4570164 ] } }, +{ "type": "Feature", "properties": { "y": 40.4495906, "x": -79.9303898, "osmid": 7011061178, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9303898, 40.4495906 ] } }, { "type": "Feature", "properties": { "y": 40.453628, "x": -79.9675714, "osmid": 104844737, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9675714, 40.453628 ] } }, { "type": "Feature", "properties": { "y": 40.4570303, "x": -80.0047331, "osmid": 5211582986, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0047331, 40.4570303 ] } }, +{ "type": "Feature", "properties": { "y": 40.4569609, "x": -80.0047095, "osmid": 5211582987, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0047095, 40.4569609 ] } }, { "type": "Feature", "properties": { "y": 40.458943, "x": -80.0068453, "osmid": 5265083849, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0068453, 40.458943 ] } }, { "type": "Feature", "properties": { "y": 40.4587977, "x": -80.0067985, "osmid": 5265083850, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0067985, 40.4587977 ] } }, { "type": "Feature", "properties": { "y": 40.4350835, "x": -80.0080649, "osmid": 6016060887, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0080649, 40.4350835 ] } }, @@ -7765,13 +7542,11 @@ { "type": "Feature", "properties": { "y": 40.4332477, "x": -80.0042057, "osmid": 6033100283, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0042057, 40.4332477 ] } }, { "type": "Feature", "properties": { "y": 40.4329575, "x": -80.003743, "osmid": 6033100284, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.003743, 40.4329575 ] } }, { "type": "Feature", "properties": { "y": 40.4358701, "x": -79.9596461, "osmid": 3198340604, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9596461, 40.4358701 ] } }, -{ "type": "Feature", "properties": { "y": 40.4360136, "x": -79.9596691, "osmid": 3198340603, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9596691, 40.4360136 ] } }, -{ "type": "Feature", "properties": { "y": 40.4366002, "x": -79.9593566, "osmid": 3198340606, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9593566, 40.4366002 ] } }, { "type": "Feature", "properties": { "y": 40.4520145, "x": -79.9819051, "osmid": 6080286201, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9819051, 40.4520145 ] } }, -{ "type": "Feature", "properties": { "y": 40.4271887, "x": -79.9625177, "osmid": 422366721, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9625177, 40.4271887 ] } }, -{ "type": "Feature", "properties": { "y": 40.4361176, "x": -79.9590696, "osmid": 3198340610, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9590696, 40.4361176 ] } }, { "type": "Feature", "properties": { "y": 40.4519003, "x": -79.9817723, "osmid": 6080286203, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9817723, 40.4519003 ] } }, { "type": "Feature", "properties": { "y": 40.4517578, "x": -79.981678, "osmid": 6080286205, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.981678, 40.4517578 ] } }, +{ "type": "Feature", "properties": { "y": 40.4271887, "x": -79.9625177, "osmid": 422366721, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9625177, 40.4271887 ] } }, +{ "type": "Feature", "properties": { "y": 40.4361176, "x": -79.9590696, "osmid": 3198340610, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9590696, 40.4361176 ] } }, { "type": "Feature", "properties": { "y": 40.4517877, "x": -79.9816348, "osmid": 6080286204, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9816348, 40.4517877 ] } }, { "type": "Feature", "properties": { "y": 40.4519604, "x": -79.9813796, "osmid": 6080286206, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9813796, 40.4519604 ] } }, { "type": "Feature", "properties": { "y": 40.4270685, "x": -79.9488789, "osmid": 104680959, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9488789, 40.4270685 ] } }, @@ -7889,7 +7664,6 @@ { "type": "Feature", "properties": { "y": 40.4477742, "x": -80.0075609, "osmid": 5353426685, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0075609, 40.4477742 ] } }, { "type": "Feature", "properties": { "y": 40.4478655, "x": -80.0076185, "osmid": 5353426689, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0076185, 40.4478655 ] } }, { "type": "Feature", "properties": { "y": 40.4557942, "x": -80.0019141, "osmid": 106352386, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0019141, 40.4557942 ] } }, -{ "type": "Feature", "properties": { "y": 40.4342033, "x": -80.0112918, "osmid": 7286610748, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0112918, 40.4342033 ] } }, { "type": "Feature", "properties": { "y": 40.4565974, "x": -79.9497416, "osmid": 105893639, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9497416, 40.4565974 ] } }, { "type": "Feature", "properties": { "y": 40.4482151, "x": -80.0076196, "osmid": 5353426697, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0076196, 40.4482151 ] } }, { "type": "Feature", "properties": { "y": 40.4323821, "x": -80.003942, "osmid": 6033100555, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.003942, 40.4323821 ] } }, @@ -7921,8 +7695,8 @@ { "type": "Feature", "properties": { "y": 40.4465097, "x": -80.0174735, "osmid": 5417586484, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0174735, 40.4465097 ] } }, { "type": "Feature", "properties": { "y": 40.4482723, "x": -80.0072442, "osmid": 3382660917, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0072442, 40.4482723 ] } }, { "type": "Feature", "properties": { "y": 40.4342186, "x": -80.0064431, "osmid": 6033100596, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0064431, 40.4342186 ] } }, +{ "type": "Feature", "properties": { "y": 40.4486577, "x": -80.0050632, "osmid": 3382660919, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0050632, 40.4486577 ] } }, { "type": "Feature", "properties": { "y": 40.4341657, "x": -80.0063514, "osmid": 6033100599, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063514, 40.4341657 ] } }, -{ "type": "Feature", "properties": { "y": 40.4341248, "x": -80.0062804, "osmid": 6033100595, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062804, 40.4341248 ] } }, { "type": "Feature", "properties": { "y": 40.4466433, "x": -80.018436, "osmid": 5417586489, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.018436, 40.4466433 ] } }, { "type": "Feature", "properties": { "y": 40.4474112, "x": -80.0106037, "osmid": 3382660922, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0106037, 40.4474112 ] } }, { "type": "Feature", "properties": { "y": 40.4341013, "x": -80.0064186, "osmid": 6033100603, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0064186, 40.4341013 ] } }, @@ -8018,9 +7792,7 @@ { "type": "Feature", "properties": { "y": 40.4291019, "x": -79.9376149, "osmid": 5320855614, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9376149, 40.4291019 ] } }, { "type": "Feature", "properties": { "y": 40.4294447, "x": -79.9377048, "osmid": 5320855615, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9377048, 40.4294447 ] } }, { "type": "Feature", "properties": { "y": 40.4371167, "x": -79.9472195, "osmid": 303190079, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9472195, 40.4371167 ] } }, -{ "type": "Feature", "properties": { "y": 40.4582814, "x": -79.9306646, "osmid": 7072108614, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9306646, 40.4582814 ] } }, { "type": "Feature", "properties": { "y": 40.4453377, "x": -79.9349006, "osmid": 104583238, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9349006, 40.4453377 ] } }, -{ "type": "Feature", "properties": { "y": 40.4582214, "x": -79.9308648, "osmid": 7072108617, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9308648, 40.4582214 ] } }, { "type": "Feature", "properties": { "y": 40.4454557, "x": -79.9332622, "osmid": 104583248, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9332622, 40.4454557 ] } }, { "type": "Feature", "properties": { "y": 40.4412021, "x": -80.0311735, "osmid": 810373213, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0311735, 40.4412021 ] } }, { "type": "Feature", "properties": { "y": 40.4404681, "x": -80.0250789, "osmid": 104550535, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0250789, 40.4404681 ] } }, @@ -8063,10 +7835,10 @@ { "type": "Feature", "properties": { "y": 40.4472319, "x": -80.0184515, "osmid": 5406478616, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0184515, 40.4472319 ] } }, { "type": "Feature", "properties": { "y": 40.4472875, "x": -80.0178672, "osmid": 5406478617, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0178672, 40.4472875 ] } }, { "type": "Feature", "properties": { "y": 40.4470731, "x": -80.0182536, "osmid": 5406478618, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0182536, 40.4470731 ] } }, -{ "type": "Feature", "properties": { "y": 40.4434113, "x": -79.9849437, "osmid": 105009435, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9849437, 40.4434113 ] } }, -{ "type": "Feature", "properties": { "y": 40.446952, "x": -80.0178212, "osmid": 5406478620, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0178212, 40.446952 ] } }, { "type": "Feature", "properties": { "y": 40.4400671, "x": -80.0031053, "osmid": 6466261275, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0031053, 40.4400671 ] } }, +{ "type": "Feature", "properties": { "y": 40.446952, "x": -80.0178212, "osmid": 5406478620, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0178212, 40.446952 ] } }, { "type": "Feature", "properties": { "y": 40.4399949, "x": -80.0029154, "osmid": 6466261276, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0029154, 40.4399949 ] } }, +{ "type": "Feature", "properties": { "y": 40.4434113, "x": -79.9849437, "osmid": 105009435, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9849437, 40.4434113 ] } }, { "type": "Feature", "properties": { "y": 40.4523202, "x": -80.0127307, "osmid": 6044897567, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0127307, 40.4523202 ] } }, { "type": "Feature", "properties": { "y": 40.4525637, "x": -80.0130293, "osmid": 6044897568, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0130293, 40.4525637 ] } }, { "type": "Feature", "properties": { "y": 40.4292771, "x": -79.9686362, "osmid": 3250540837, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9686362, 40.4292771 ] } }, @@ -8106,8 +7878,6 @@ { "type": "Feature", "properties": { "y": 40.4427862, "x": -79.9561981, "osmid": 7835439552, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9561981, 40.4427862 ] } }, { "type": "Feature", "properties": { "y": 40.4409133, "x": -80.0348106, "osmid": 104649156, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0348106, 40.4409133 ] } }, { "type": "Feature", "properties": { "y": 40.4547571, "x": -79.942401, "osmid": 1790005701, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.942401, 40.4547571 ] } }, -{ "type": "Feature", "properties": { "y": 40.4374604, "x": -80.0184999, "osmid": 6854431219, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0184999, 40.4374604 ] } }, -{ "type": "Feature", "properties": { "y": 40.4380087, "x": -80.0195094, "osmid": 6854431227, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0195094, 40.4380087 ] } }, { "type": "Feature", "properties": { "y": 40.4465209, "x": -79.9912174, "osmid": 5716529667, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9912174, 40.4465209 ] } }, { "type": "Feature", "properties": { "y": 40.4466071, "x": -79.9912194, "osmid": 5716529668, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9912194, 40.4466071 ] } }, { "type": "Feature", "properties": { "y": 40.446582, "x": -79.9911181, "osmid": 5716529669, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9911181, 40.446582 ] } }, @@ -8122,10 +7892,7 @@ { "type": "Feature", "properties": { "y": 40.4432865, "x": -79.9588436, "osmid": 6588617246, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9588436, 40.4432865 ] } }, { "type": "Feature", "properties": { "y": 40.4450728, "x": -79.9703376, "osmid": 6535934696, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9703376, 40.4450728 ] } }, { "type": "Feature", "properties": { "y": 40.4432247, "x": -79.9590857, "osmid": 6588617248, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9590857, 40.4432247 ] } }, -{ "type": "Feature", "properties": { "y": 40.4460418, "x": -79.9437625, "osmid": 6784143905, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9437625, 40.4460418 ] } }, -{ "type": "Feature", "properties": { "y": 40.4460493, "x": -79.9438776, "osmid": 6784143906, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9438776, 40.4460493 ] } }, -{ "type": "Feature", "properties": { "y": 40.4455882, "x": -79.9442006, "osmid": 6784143907, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9442006, 40.4455882 ] } }, -{ "type": "Feature", "properties": { "y": 40.4460528, "x": -79.9440932, "osmid": 6784143908, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9440932, 40.4460528 ] } }, +{ "type": "Feature", "properties": { "y": 40.4456555, "x": -79.9443831, "osmid": 6784143909, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9443831, 40.4456555 ] } }, { "type": "Feature", "properties": { "y": 40.4448221, "x": -79.9439943, "osmid": 6784143910, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9439943, 40.4448221 ] } }, { "type": "Feature", "properties": { "y": 40.4535701, "x": -79.9365362, "osmid": 105042469, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9365362, 40.4535701 ] } }, { "type": "Feature", "properties": { "y": 40.4448969, "x": -79.9706201, "osmid": 6535934698, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9706201, 40.4448969 ] } }, @@ -8139,7 +7906,6 @@ { "type": "Feature", "properties": { "y": 40.4548162, "x": -80.0059062, "osmid": 5237428826, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0059062, 40.4548162 ] } }, { "type": "Feature", "properties": { "y": 40.454777, "x": -80.0061175, "osmid": 5237428827, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061175, 40.454777 ] } }, { "type": "Feature", "properties": { "y": 40.4516728, "x": -80.0109419, "osmid": 6044897886, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0109419, 40.4516728 ] } }, -{ "type": "Feature", "properties": { "y": 40.4397787, "x": -79.9381585, "osmid": 105796204, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9381585, 40.4397787 ] } }, { "type": "Feature", "properties": { "y": 40.4533369, "x": -80.0048623, "osmid": 5237428845, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0048623, 40.4533369 ] } }, { "type": "Feature", "properties": { "y": 40.4533614, "x": -80.0048642, "osmid": 5237428846, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0048642, 40.4533614 ] } }, { "type": "Feature", "properties": { "y": 40.4463053, "x": -79.9803472, "osmid": 104616564, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9803472, 40.4463053 ] } }, @@ -8183,6 +7949,7 @@ { "type": "Feature", "properties": { "y": 40.4580112, "x": -79.9639559, "osmid": 1252119216, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9639559, 40.4580112 ] } }, { "type": "Feature", "properties": { "y": 40.4579919, "x": -79.9628633, "osmid": 1252119225, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9628633, 40.4579919 ] } }, { "type": "Feature", "properties": { "y": 40.4585028, "x": -79.9348142, "osmid": 105845256, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9348142, 40.4585028 ] } }, +{ "type": "Feature", "properties": { "y": 40.4590338, "x": -79.9641391, "osmid": 1252119227, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9641391, 40.4590338 ] } }, { "type": "Feature", "properties": { "y": 40.4501503, "x": -79.9535435, "osmid": 6531699390, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9535435, 40.4501503 ] } }, { "type": "Feature", "properties": { "y": 40.4494334, "x": -79.9532176, "osmid": 6531699393, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9532176, 40.4494334 ] } }, { "type": "Feature", "properties": { "y": 40.4574626, "x": -79.9688481, "osmid": 1252119238, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9688481, 40.4574626 ] } }, @@ -8210,9 +7977,9 @@ { "type": "Feature", "properties": { "y": 40.4575052, "x": -79.9763679, "osmid": 6067311417, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9763679, 40.4575052 ] } }, { "type": "Feature", "properties": { "y": 40.4377556, "x": -79.9557731, "osmid": 6535926586, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9557731, 40.4377556 ] } }, { "type": "Feature", "properties": { "y": 40.4361727, "x": -79.9654052, "osmid": 3639923515, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9654052, 40.4361727 ] } }, -{ "type": "Feature", "properties": { "y": 40.4379182, "x": -79.9555479, "osmid": 6535926587, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9555479, 40.4379182 ] } }, -{ "type": "Feature", "properties": { "y": 40.4349664, "x": -79.955063, "osmid": 3639923517, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.955063, 40.4349664 ] } }, { "type": "Feature", "properties": { "y": 40.4585997, "x": -79.948158, "osmid": 104977208, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.948158, 40.4585997 ] } }, +{ "type": "Feature", "properties": { "y": 40.4349664, "x": -79.955063, "osmid": 3639923517, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.955063, 40.4349664 ] } }, +{ "type": "Feature", "properties": { "y": 40.4379182, "x": -79.9555479, "osmid": 6535926587, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9555479, 40.4379182 ] } }, { "type": "Feature", "properties": { "y": 40.4575169, "x": -79.9765001, "osmid": 6067311416, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9765001, 40.4575169 ] } }, { "type": "Feature", "properties": { "y": 40.4584494, "x": -79.9482402, "osmid": 104977223, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9482402, 40.4584494 ] } }, { "type": "Feature", "properties": { "y": 40.4502212, "x": -79.957037, "osmid": 104649544, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.957037, 40.4502212 ] } }, @@ -8235,15 +8002,8 @@ { "type": "Feature", "properties": { "y": 40.4567142, "x": -79.9769963, "osmid": 6067311562, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9769963, 40.4567142 ] } }, { "type": "Feature", "properties": { "y": 40.457184, "x": -79.9768679, "osmid": 6067311563, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9768679, 40.457184 ] } }, { "type": "Feature", "properties": { "y": 40.4568912, "x": -79.9772848, "osmid": 6067311564, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9772848, 40.4568912 ] } }, -{ "type": "Feature", "properties": { "y": 40.4495785, "x": -79.9427791, "osmid": 1839223757, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9427791, 40.4495785 ] } }, { "type": "Feature", "properties": { "y": 40.4465728, "x": -80.0199091, "osmid": 5421683662, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0199091, 40.4465728 ] } }, -{ "type": "Feature", "properties": { "y": 40.4496666, "x": -79.9427956, "osmid": 1839223759, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9427956, 40.4496666 ] } }, -{ "type": "Feature", "properties": { "y": 40.4496394, "x": -79.943066, "osmid": 1839223758, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.943066, 40.4496394 ] } }, -{ "type": "Feature", "properties": { "y": 40.4495558, "x": -79.9430309, "osmid": 1839223756, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9430309, 40.4495558 ] } }, { "type": "Feature", "properties": { "y": 40.4466534, "x": -80.0201572, "osmid": 5421683666, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0201572, 40.4466534 ] } }, -{ "type": "Feature", "properties": { "y": 40.4498005, "x": -79.9428207, "osmid": 1839223763, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9428207, 40.4498005 ] } }, -{ "type": "Feature", "properties": { "y": 40.4497952, "x": -79.9430594, "osmid": 1839223762, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9430594, 40.4497952 ] } }, -{ "type": "Feature", "properties": { "y": 40.4499048, "x": -79.9435054, "osmid": 1839223766, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9435054, 40.4499048 ] } }, { "type": "Feature", "properties": { "y": 40.4467442, "x": -80.0207299, "osmid": 5421683672, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0207299, 40.4467442 ] } }, { "type": "Feature", "properties": { "y": 40.4473735, "x": -80.0200206, "osmid": 5421683673, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0200206, 40.4473735 ] } }, { "type": "Feature", "properties": { "y": 40.4464025, "x": -79.9400154, "osmid": 302977601, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9400154, 40.4464025 ] } }, @@ -8378,10 +8138,8 @@ { "type": "Feature", "properties": { "y": 40.4313773, "x": -80.0013646, "osmid": 7223399694, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0013646, 40.4313773 ] } }, { "type": "Feature", "properties": { "y": 40.4540182, "x": -79.9814162, "osmid": 6073799950, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9814162, 40.4540182 ] } }, { "type": "Feature", "properties": { "y": 40.4345392, "x": -79.9905098, "osmid": 686445840, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9905098, 40.4345392 ] } }, -{ "type": "Feature", "properties": { "y": 40.4315036, "x": -80.0014034, "osmid": 7223399697, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0014034, 40.4315036 ] } }, -{ "type": "Feature", "properties": { "y": 40.4315895, "x": -80.0011958, "osmid": 7223399698, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0011958, 40.4315895 ] } }, -{ "type": "Feature", "properties": { "y": 40.4314614, "x": -80.0012991, "osmid": 7223399699, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0012991, 40.4314614 ] } }, { "type": "Feature", "properties": { "y": 40.4368433, "x": -79.9467491, "osmid": 303191312, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9467491, 40.4368433 ] } }, +{ "type": "Feature", "properties": { "y": 40.4315895, "x": -80.0011958, "osmid": 7223399698, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0011958, 40.4315895 ] } }, { "type": "Feature", "properties": { "y": 40.44492, "x": -79.9435736, "osmid": 303453454, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9435736, 40.44492 ] } }, { "type": "Feature", "properties": { "y": 40.4448827, "x": -79.9434634, "osmid": 303453456, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9434634, 40.4448827 ] } }, { "type": "Feature", "properties": { "y": 40.4448466, "x": -79.9434429, "osmid": 303453457, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9434429, 40.4448466 ] } }, @@ -8410,8 +8168,8 @@ { "type": "Feature", "properties": { "y": 40.4449854, "x": -79.9937152, "osmid": 1285248312, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9937152, 40.4449854 ] } }, { "type": "Feature", "properties": { "y": 40.4348058, "x": -79.9928199, "osmid": 686445881, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9928199, 40.4348058 ] } }, { "type": "Feature", "properties": { "y": 40.448867, "x": -79.987447, "osmid": 1285248314, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.987447, 40.448867 ] } }, -{ "type": "Feature", "properties": { "y": 40.4500054, "x": -79.9873536, "osmid": 1285248313, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9873536, 40.4500054 ] } }, { "type": "Feature", "properties": { "y": 40.4474442, "x": -79.9897334, "osmid": 1285248315, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9897334, 40.4474442 ] } }, +{ "type": "Feature", "properties": { "y": 40.4500054, "x": -79.9873536, "osmid": 1285248313, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9873536, 40.4500054 ] } }, { "type": "Feature", "properties": { "y": 40.4467779, "x": -79.989321, "osmid": 1285248316, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.989321, 40.4467779 ] } }, { "type": "Feature", "properties": { "y": 40.4360486, "x": -79.9464172, "osmid": 2766492986, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9464172, 40.4360486 ] } }, { "type": "Feature", "properties": { "y": 40.4362303, "x": -79.9463999, "osmid": 2766492989, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9463999, 40.4362303 ] } }, @@ -8467,8 +8225,8 @@ { "type": "Feature", "properties": { "y": 40.4385432, "x": -79.9444083, "osmid": 3527071108, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9444083, 40.4385432 ] } }, { "type": "Feature", "properties": { "y": 40.4392559, "x": -79.9439458, "osmid": 3527071109, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9439458, 40.4392559 ] } }, { "type": "Feature", "properties": { "y": 40.4390522, "x": -79.9436488, "osmid": 3527071113, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9436488, 40.4390522 ] } }, -{ "type": "Feature", "properties": { "y": 40.4389956, "x": -79.9435309, "osmid": 3527071112, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9435309, 40.4389956 ] } }, { "type": "Feature", "properties": { "y": 40.4389567, "x": -79.9437147, "osmid": 3527071114, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9437147, 40.4389567 ] } }, +{ "type": "Feature", "properties": { "y": 40.4389956, "x": -79.9435309, "osmid": 3527071112, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9435309, 40.4389956 ] } }, { "type": "Feature", "properties": { "y": 40.4386601, "x": -79.9464827, "osmid": 3527071117, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9464827, 40.4386601 ] } }, { "type": "Feature", "properties": { "y": 40.4573721, "x": -79.9927371, "osmid": 104781198, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9927371, 40.4573721 ] } }, { "type": "Feature", "properties": { "y": 40.4455054, "x": -79.9504161, "osmid": 6588781967, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9504161, 40.4455054 ] } }, @@ -8479,36 +8237,36 @@ { "type": "Feature", "properties": { "y": 40.4590827, "x": -80.0330892, "osmid": 6967842197, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0330892, 40.4590827 ] } }, { "type": "Feature", "properties": { "y": 40.4519296, "x": -80.0085174, "osmid": 5247554966, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085174, 40.4519296 ] } }, { "type": "Feature", "properties": { "y": 40.459464, "x": -80.0332135, "osmid": 6967842198, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0332135, 40.459464 ] } }, +{ "type": "Feature", "properties": { "y": 40.4331222, "x": -80.0028386, "osmid": 7223399832, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0028386, 40.4331222 ] } }, { "type": "Feature", "properties": { "y": 40.4570716, "x": -80.0310531, "osmid": 6967842199, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0310531, 40.4570716 ] } }, -{ "type": "Feature", "properties": { "y": 40.4572595, "x": -80.0311199, "osmid": 6967842200, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0311199, 40.4572595 ] } }, -{ "type": "Feature", "properties": { "y": 40.4501262, "x": -80.0159229, "osmid": 105993621, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0159229, 40.4501262 ] } }, +{ "type": "Feature", "properties": { "y": 40.4333367, "x": -80.0028233, "osmid": 7223399834, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0028233, 40.4333367 ] } }, { "type": "Feature", "properties": { "y": 40.4513136, "x": -80.0083163, "osmid": 5247554971, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083163, 40.4513136 ] } }, { "type": "Feature", "properties": { "y": 40.4332275, "x": -80.0028928, "osmid": 7223399835, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0028928, 40.4332275 ] } }, { "type": "Feature", "properties": { "y": 40.4332486, "x": -80.0029407, "osmid": 7223399836, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0029407, 40.4332486 ] } }, +{ "type": "Feature", "properties": { "y": 40.4572595, "x": -80.0311199, "osmid": 6967842200, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0311199, 40.4572595 ] } }, { "type": "Feature", "properties": { "y": 40.4505793, "x": -80.0160757, "osmid": 105993628, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0160757, 40.4505793 ] } }, -{ "type": "Feature", "properties": { "y": 40.4331222, "x": -80.0028386, "osmid": 7223399832, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0028386, 40.4331222 ] } }, -{ "type": "Feature", "properties": { "y": 40.4333367, "x": -80.0028233, "osmid": 7223399834, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0028233, 40.4333367 ] } }, -{ "type": "Feature", "properties": { "y": 40.4329797, "x": -80.0031181, "osmid": 7223399841, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0031181, 40.4329797 ] } }, { "type": "Feature", "properties": { "y": 40.4329154, "x": -80.0029516, "osmid": 7223399840, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0029516, 40.4329154 ] } }, +{ "type": "Feature", "properties": { "y": 40.4329797, "x": -80.0031181, "osmid": 7223399841, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0031181, 40.4329797 ] } }, { "type": "Feature", "properties": { "y": 40.4332122, "x": -80.00273, "osmid": 7223399839, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.00273, 40.4332122 ] } }, { "type": "Feature", "properties": { "y": 40.451288, "x": -80.008488, "osmid": 5247554972, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008488, 40.451288 ] } }, { "type": "Feature", "properties": { "y": 40.4513273, "x": -80.0085004, "osmid": 5247554973, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085004, 40.4513273 ] } }, { "type": "Feature", "properties": { "y": 40.451336, "x": -80.0085551, "osmid": 5247554975, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0085551, 40.451336 ] } }, -{ "type": "Feature", "properties": { "y": 40.4545362, "x": -80.0096365, "osmid": 1459443111, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0096365, 40.4545362 ] } }, { "type": "Feature", "properties": { "y": 40.4513303, "x": -80.0084859, "osmid": 5247554978, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084859, 40.4513303 ] } }, +{ "type": "Feature", "properties": { "y": 40.4545362, "x": -80.0096365, "osmid": 1459443111, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0096365, 40.4545362 ] } }, { "type": "Feature", "properties": { "y": 40.4513535, "x": -80.0084424, "osmid": 5247554977, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084424, 40.4513535 ] } }, +{ "type": "Feature", "properties": { "y": 40.4513462, "x": -80.0084893, "osmid": 5247554979, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084893, 40.4513462 ] } }, { "type": "Feature", "properties": { "y": 40.4440426, "x": -79.9856666, "osmid": 105731498, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9856666, 40.4440426 ] } }, -{ "type": "Feature", "properties": { "y": 40.4531601, "x": -80.0125427, "osmid": 1459443115, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0125427, 40.4531601 ] } }, { "type": "Feature", "properties": { "y": 40.4320163, "x": -80.0035162, "osmid": 7223399851, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0035162, 40.4320163 ] } }, -{ "type": "Feature", "properties": { "y": 40.4545746, "x": -80.0094763, "osmid": 1459443116, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0094763, 40.4545746 ] } }, +{ "type": "Feature", "properties": { "y": 40.4531601, "x": -80.0125427, "osmid": 1459443115, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0125427, 40.4531601 ] } }, +{ "type": "Feature", "properties": { "y": 40.4512998, "x": -80.0084088, "osmid": 5247554989, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084088, 40.4512998 ] } }, { "type": "Feature", "properties": { "y": 40.4321611, "x": -80.0035981, "osmid": 7223399854, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0035981, 40.4321611 ] } }, { "type": "Feature", "properties": { "y": 40.4321793, "x": -80.0034987, "osmid": 7223399855, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0034987, 40.4321793 ] } }, { "type": "Feature", "properties": { "y": 40.4513075, "x": -80.0083573, "osmid": 5247554991, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083573, 40.4513075 ] } }, -{ "type": "Feature", "properties": { "y": 40.4512998, "x": -80.0084088, "osmid": 5247554989, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084088, 40.4512998 ] } }, +{ "type": "Feature", "properties": { "y": 40.4512954, "x": -80.0083529, "osmid": 5247554992, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083529, 40.4512954 ] } }, { "type": "Feature", "properties": { "y": 40.4311103, "x": -80.0016824, "osmid": 7223399858, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0016824, 40.4311103 ] } }, { "type": "Feature", "properties": { "y": 40.4444023, "x": -79.9848443, "osmid": 105731504, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9848443, 40.4444023 ] } }, -{ "type": "Feature", "properties": { "y": 40.4512954, "x": -80.0083529, "osmid": 5247554992, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083529, 40.4512954 ] } }, { "type": "Feature", "properties": { "y": 40.4512859, "x": -80.0084035, "osmid": 5247554990, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084035, 40.4512859 ] } }, +{ "type": "Feature", "properties": { "y": 40.4545746, "x": -80.0094763, "osmid": 1459443116, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0094763, 40.4545746 ] } }, { "type": "Feature", "properties": { "y": 40.4452711, "x": -79.9432587, "osmid": 303453617, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9432587, 40.4452711 ] } }, { "type": "Feature", "properties": { "y": 40.4310694, "x": -80.0015951, "osmid": 7223399864, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0015951, 40.4310694 ] } }, { "type": "Feature", "properties": { "y": 40.4309453, "x": -80.0013017, "osmid": 7223399865, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0013017, 40.4309453 ] } }, @@ -8517,11 +8275,10 @@ { "type": "Feature", "properties": { "y": 40.4315365, "x": -80.0014796, "osmid": 7223399869, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0014796, 40.4315365 ] } }, { "type": "Feature", "properties": { "y": 40.4315418, "x": -80.0017428, "osmid": 7223399872, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0017428, 40.4315418 ] } }, { "type": "Feature", "properties": { "y": 40.4315792, "x": -80.0018297, "osmid": 7223399873, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018297, 40.4315792 ] } }, -{ "type": "Feature", "properties": { "y": 40.431507, "x": -80.0019242, "osmid": 7223399874, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0019242, 40.431507 ] } }, -{ "type": "Feature", "properties": { "y": 40.4537959, "x": -80.0115167, "osmid": 1459443139, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0115167, 40.4537959 ] } }, { "type": "Feature", "properties": { "y": 40.4298298, "x": -79.9426524, "osmid": 104715712, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9426524, 40.4298298 ] } }, -{ "type": "Feature", "properties": { "y": 40.4458468, "x": -79.9814109, "osmid": 105731525, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9814109, 40.4458468 ] } }, +{ "type": "Feature", "properties": { "y": 40.4537959, "x": -80.0115167, "osmid": 1459443139, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0115167, 40.4537959 ] } }, { "type": "Feature", "properties": { "y": 40.4453038, "x": -79.9429754, "osmid": 303453634, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9429754, 40.4453038 ] } }, +{ "type": "Feature", "properties": { "y": 40.4458468, "x": -79.9814109, "osmid": 105731525, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9814109, 40.4458468 ] } }, { "type": "Feature", "properties": { "y": 40.4409631, "x": -80.0034503, "osmid": 1307334087, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0034503, 40.4409631 ] } }, { "type": "Feature", "properties": { "y": 40.4355722, "x": -79.9860106, "osmid": 7007753672, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9860106, 40.4355722 ] } }, { "type": "Feature", "properties": { "y": 40.4510271, "x": -80.0269689, "osmid": 104486348, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0269689, 40.4510271 ] } }, @@ -8583,7 +8340,6 @@ { "type": "Feature", "properties": { "y": 40.4264146, "x": -79.9930611, "osmid": 105207391, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9930611, 40.4264146 ] } }, { "type": "Feature", "properties": { "y": 40.4380179, "x": -79.9976688, "osmid": 104650336, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9976688, 40.4380179 ] } }, { "type": "Feature", "properties": { "y": 40.4294318, "x": -79.9857415, "osmid": 2135250527, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9857415, 40.4294318 ] } }, -{ "type": "Feature", "properties": { "y": 40.4485072, "x": -79.933872, "osmid": 5842754535, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.933872, 40.4485072 ] } }, { "type": "Feature", "properties": { "y": 40.4272569, "x": -79.9624137, "osmid": 2888291940, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9624137, 40.4272569 ] } }, { "type": "Feature", "properties": { "y": 40.451681, "x": -79.9676541, "osmid": 105731685, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9676541, 40.451681 ] } }, { "type": "Feature", "properties": { "y": 40.4577272, "x": -79.9725386, "osmid": 6093207890, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9725386, 40.4577272 ] } }, @@ -8591,12 +8347,13 @@ { "type": "Feature", "properties": { "y": 40.4375831, "x": -79.9964623, "osmid": 104650348, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9964623, 40.4375831 ] } }, { "type": "Feature", "properties": { "y": 40.4508525, "x": -80.0117302, "osmid": 3583825519, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0117302, 40.4508525 ] } }, { "type": "Feature", "properties": { "y": 40.4372702, "x": -79.9956005, "osmid": 104650352, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9956005, 40.4372702 ] } }, -{ "type": "Feature", "properties": { "y": 40.4481061, "x": -79.933485, "osmid": 5842754538, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.933485, 40.4481061 ] } }, { "type": "Feature", "properties": { "y": 40.4511638, "x": -80.0105483, "osmid": 3583825525, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0105483, 40.4511638 ] } }, { "type": "Feature", "properties": { "y": 40.4512575, "x": -80.0100389, "osmid": 3583825527, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0100389, 40.4512575 ] } }, { "type": "Feature", "properties": { "y": 40.4528801, "x": -79.964925, "osmid": 105731704, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.964925, 40.4528801 ] } }, +{ "type": "Feature", "properties": { "y": 40.4485099, "x": -79.931609, "osmid": 5842754539, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.931609, 40.4485099 ] } }, { "type": "Feature", "properties": { "y": 40.4515583, "x": -80.0110681, "osmid": 3583825533, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0110681, 40.4515583 ] } }, { "type": "Feature", "properties": { "y": 40.4540574, "x": -79.9631781, "osmid": 105731715, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9631781, 40.4540574 ] } }, +{ "type": "Feature", "properties": { "y": 40.4486775, "x": -79.9309959, "osmid": 5842754544, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9309959, 40.4486775 ] } }, { "type": "Feature", "properties": { "y": 40.4492504, "x": -79.9901654, "osmid": 6181443218, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9901654, 40.4492504 ] } }, { "type": "Feature", "properties": { "y": 40.4492713, "x": -79.9900777, "osmid": 6181443219, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9900777, 40.4492713 ] } }, { "type": "Feature", "properties": { "y": 40.4472023, "x": -80.0022815, "osmid": 5278881454, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0022815, 40.4472023 ] } }, @@ -8605,7 +8362,6 @@ { "type": "Feature", "properties": { "y": 40.4524484, "x": -79.9541239, "osmid": 6887659193, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9541239, 40.4524484 ] } }, { "type": "Feature", "properties": { "y": 40.456195, "x": -79.9558745, "osmid": 105731769, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9558745, 40.456195 ] } }, { "type": "Feature", "properties": { "y": 40.4481767, "x": -80.0197791, "osmid": 2353256131, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0197791, 40.4481767 ] } }, -{ "type": "Feature", "properties": { "y": 40.4481185, "x": -79.9496952, "osmid": 560977609, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9496952, 40.4481185 ] } }, { "type": "Feature", "properties": { "y": 40.4310181, "x": -80.0281827, "osmid": 683661030, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0281827, 40.4310181 ] } }, { "type": "Feature", "properties": { "y": 40.4439956, "x": -79.9504667, "osmid": 6535895862, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9504667, 40.4439956 ] } }, { "type": "Feature", "properties": { "y": 40.4563304, "x": -79.9371637, "osmid": 393893618, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9371637, 40.4563304 ] } }, @@ -8724,7 +8480,6 @@ { "type": "Feature", "properties": { "y": 40.4404431, "x": -79.9365934, "osmid": 105142357, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9365934, 40.4404431 ] } }, { "type": "Feature", "properties": { "y": 40.4363014, "x": -80.0297569, "osmid": 7866734685, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0297569, 40.4363014 ] } }, { "type": "Feature", "properties": { "y": 40.4449341, "x": -79.9933879, "osmid": 4493465694, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9933879, 40.4449341 ] } }, -{ "type": "Feature", "properties": { "y": 40.4361655, "x": -80.0294247, "osmid": 7866734687, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0294247, 40.4361655 ] } }, { "type": "Feature", "properties": { "y": 40.4349721, "x": -80.0223707, "osmid": 106322027, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0223707, 40.4349721 ] } }, { "type": "Feature", "properties": { "y": 40.4351004, "x": -79.9970819, "osmid": 3298482287, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9970819, 40.4351004 ] } }, { "type": "Feature", "properties": { "y": 40.430673, "x": -79.976152, "osmid": 2142263412, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976152, 40.430673 ] } }, @@ -8742,10 +8497,9 @@ { "type": "Feature", "properties": { "y": 40.4310379, "x": -79.9786142, "osmid": 2142263440, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9786142, 40.4310379 ] } }, { "type": "Feature", "properties": { "y": 40.4311005, "x": -79.9770706, "osmid": 2142263441, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9770706, 40.4311005 ] } }, { "type": "Feature", "properties": { "y": 40.4369486, "x": -80.0288397, "osmid": 5202892948, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0288397, 40.4369486 ] } }, -{ "type": "Feature", "properties": { "y": 40.4311528, "x": -79.977911, "osmid": 2142263444, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.977911, 40.4311528 ] } }, { "type": "Feature", "properties": { "y": 40.43119, "x": -79.9785974, "osmid": 2142263445, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9785974, 40.43119 ] } }, +{ "type": "Feature", "properties": { "y": 40.4311528, "x": -79.977911, "osmid": 2142263444, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.977911, 40.4311528 ] } }, { "type": "Feature", "properties": { "y": 40.4313192, "x": -79.9778973, "osmid": 2142263449, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9778973, 40.4313192 ] } }, -{ "type": "Feature", "properties": { "y": 40.4399332, "x": -79.937696, "osmid": 105142425, "highway": "turning_circle", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.937696, 40.4399332 ] } }, { "type": "Feature", "properties": { "y": 40.4506695, "x": -79.9500478, "osmid": 6531831963, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9500478, 40.4506695 ] } }, { "type": "Feature", "properties": { "y": 40.4313544, "x": -79.9785792, "osmid": 2142263452, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9785792, 40.4313544 ] } }, { "type": "Feature", "properties": { "y": 40.4313682, "x": -79.9788564, "osmid": 2142263453, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9788564, 40.4313682 ] } }, @@ -8753,13 +8507,13 @@ { "type": "Feature", "properties": { "y": 40.430099, "x": -79.9577276, "osmid": 422271136, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9577276, 40.430099 ] } }, { "type": "Feature", "properties": { "y": 40.4307123, "x": -79.95833, "osmid": 422271138, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.95833, 40.4307123 ] } }, { "type": "Feature", "properties": { "y": 40.4295597, "x": -79.9571331, "osmid": 422271140, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9571331, 40.4295597 ] } }, +{ "type": "Feature", "properties": { "y": 40.4434585, "x": -79.9630917, "osmid": 6532808840, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9630917, 40.4434585 ] } }, { "type": "Feature", "properties": { "y": 40.4253147, "x": -80.0179776, "osmid": 3814840495, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0179776, 40.4253147 ] } }, { "type": "Feature", "properties": { "y": 40.4253279, "x": -80.0174385, "osmid": 3814840496, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0174385, 40.4253279 ] } }, { "type": "Feature", "properties": { "y": 40.4435688, "x": -79.9630007, "osmid": 6532808841, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9630007, 40.4435688 ] } }, { "type": "Feature", "properties": { "y": 40.4469384, "x": -80.0120685, "osmid": 1687214263, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0120685, 40.4469384 ] } }, { "type": "Feature", "properties": { "y": 40.4255059, "x": -80.017068, "osmid": 3814840512, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.017068, 40.4255059 ] } }, { "type": "Feature", "properties": { "y": 40.4561085, "x": -79.9378971, "osmid": 1821857994, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9378971, 40.4561085 ] } }, -{ "type": "Feature", "properties": { "y": 40.4274083, "x": -79.9731195, "osmid": 105852078, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9731195, 40.4274083 ] } }, { "type": "Feature", "properties": { "y": 40.4482232, "x": -79.9513935, "osmid": 6531766478, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9513935, 40.4482232 ] } }, { "type": "Feature", "properties": { "y": 40.4481784, "x": -79.9515295, "osmid": 6531766479, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9515295, 40.4481784 ] } }, { "type": "Feature", "properties": { "y": 40.4564675, "x": -79.9367108, "osmid": 1821857999, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9367108, 40.4564675 ] } }, @@ -8779,7 +8533,6 @@ { "type": "Feature", "properties": { "y": 40.4466283, "x": -80.0088794, "osmid": 5394946347, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0088794, 40.4466283 ] } }, { "type": "Feature", "properties": { "y": 40.4465744, "x": -80.0088063, "osmid": 5394946352, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0088063, 40.4465744 ] } }, { "type": "Feature", "properties": { "y": 40.4465927, "x": -80.0087196, "osmid": 5394946353, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0087196, 40.4465927 ] } }, -{ "type": "Feature", "properties": { "y": 40.439061, "x": -79.9882495, "osmid": 6925015346, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9882495, 40.439061 ] } }, { "type": "Feature", "properties": { "y": 40.445049, "x": -79.9516121, "osmid": 7859329334, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9516121, 40.445049 ] } }, { "type": "Feature", "properties": { "y": 40.4451977, "x": -79.9517219, "osmid": 7859329335, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9517219, 40.4451977 ] } }, { "type": "Feature", "properties": { "y": 40.4451692, "x": -79.9516075, "osmid": 7859329336, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9516075, 40.4451692 ] } }, @@ -8833,9 +8586,9 @@ { "type": "Feature", "properties": { "y": 40.4466652, "x": -80.0083907, "osmid": 5394946407, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083907, 40.4466652 ] } }, { "type": "Feature", "properties": { "y": 40.446454, "x": -80.0083524, "osmid": 5394946409, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083524, 40.446454 ] } }, { "type": "Feature", "properties": { "y": 40.4521907, "x": -80.0019174, "osmid": 3830208869, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0019174, 40.4521907 ] } }, +{ "type": "Feature", "properties": { "y": 40.4496356, "x": -79.9399518, "osmid": 104585578, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9399518, 40.4496356 ] } }, { "type": "Feature", "properties": { "y": 40.4566426, "x": -79.9414616, "osmid": 7461820776, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9414616, 40.4566426 ] } }, { "type": "Feature", "properties": { "y": 40.4572944, "x": -79.940859, "osmid": 7461820774, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.940859, 40.4572944 ] } }, -{ "type": "Feature", "properties": { "y": 40.4496356, "x": -79.9399518, "osmid": 104585578, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9399518, 40.4496356 ] } }, { "type": "Feature", "properties": { "y": 40.4471399, "x": -80.0076947, "osmid": 5394946414, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0076947, 40.4471399 ] } }, { "type": "Feature", "properties": { "y": 40.447292, "x": -80.0077631, "osmid": 5394946415, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0077631, 40.447292 ] } }, { "type": "Feature", "properties": { "y": 40.4470947, "x": -80.0090032, "osmid": 5394946416, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0090032, 40.4470947 ] } }, @@ -8844,12 +8597,10 @@ { "type": "Feature", "properties": { "y": 40.4468317, "x": -80.0084804, "osmid": 5394946419, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084804, 40.4468317 ] } }, { "type": "Feature", "properties": { "y": 40.446981, "x": -80.0076338, "osmid": 5394946420, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0076338, 40.446981 ] } }, { "type": "Feature", "properties": { "y": 40.4492452, "x": -79.9397301, "osmid": 104585589, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9397301, 40.4492452 ] } }, +{ "type": "Feature", "properties": { "y": 40.4314088, "x": -79.9953751, "osmid": 1460623735, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9953751, 40.4314088 ] } }, { "type": "Feature", "properties": { "y": 40.4269493, "x": -80.005943, "osmid": 104946041, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005943, 40.4269493 ] } }, -{ "type": "Feature", "properties": { "y": 40.431312, "x": -79.998431, "osmid": 1460623738, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.998431, 40.431312 ] } }, -{ "type": "Feature", "properties": { "y": 40.4447919, "x": -79.9864478, "osmid": 7166646655, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9864478, 40.4447919 ] } }, { "type": "Feature", "properties": { "y": 40.43133, "x": -79.9953716, "osmid": 1460623743, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9953716, 40.43133 ] } }, { "type": "Feature", "properties": { "y": 40.426869, "x": -80.0062605, "osmid": 104946051, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062605, 40.426869 ] } }, -{ "type": "Feature", "properties": { "y": 40.4448277, "x": -79.9873329, "osmid": 7166646660, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9873329, 40.4448277 ] } }, { "type": "Feature", "properties": { "y": 40.4310337, "x": -79.9953958, "osmid": 1460623747, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9953958, 40.4310337 ] } }, { "type": "Feature", "properties": { "y": 40.4441721, "x": -79.9870175, "osmid": 7166646662, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9870175, 40.4441721 ] } }, { "type": "Feature", "properties": { "y": 40.4441104, "x": -79.9871095, "osmid": 7166646663, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9871095, 40.4441104 ] } }, @@ -8881,8 +8632,8 @@ { "type": "Feature", "properties": { "y": 40.4482316, "x": -79.990755, "osmid": 6181444026, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.990755, 40.4482316 ] } }, { "type": "Feature", "properties": { "y": 40.4489856, "x": -79.9901804, "osmid": 6181444028, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9901804, 40.4489856 ] } }, { "type": "Feature", "properties": { "y": 40.4484811, "x": -79.9910067, "osmid": 6181444027, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9910067, 40.4484811 ] } }, -{ "type": "Feature", "properties": { "y": 40.4582291, "x": -79.9334609, "osmid": 393927100, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9334609, 40.4582291 ] } }, { "type": "Feature", "properties": { "y": 40.4476893, "x": -79.9388282, "osmid": 104585657, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9388282, 40.4476893 ] } }, +{ "type": "Feature", "properties": { "y": 40.4582291, "x": -79.9334609, "osmid": 393927100, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9334609, 40.4582291 ] } }, { "type": "Feature", "properties": { "y": 40.4584425, "x": -80.0022275, "osmid": 1686624708, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0022275, 40.4584425 ] } }, { "type": "Feature", "properties": { "y": 40.4597429, "x": -80.0154484, "osmid": 1686624709, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0154484, 40.4597429 ] } }, { "type": "Feature", "properties": { "y": 40.4597533, "x": -80.0170499, "osmid": 1686624710, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0170499, 40.4597533 ] } }, @@ -8917,18 +8668,18 @@ { "type": "Feature", "properties": { "y": 40.453415, "x": -79.9820546, "osmid": 6073801186, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9820546, 40.453415 ] } }, { "type": "Feature", "properties": { "y": 40.4534898, "x": -79.9816673, "osmid": 6073801189, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9816673, 40.4534898 ] } }, { "type": "Feature", "properties": { "y": 40.4533109, "x": -79.9819262, "osmid": 6073801188, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9819262, 40.4533109 ] } }, -{ "type": "Feature", "properties": { "y": 40.4291052, "x": -79.933773, "osmid": 6165027304, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.933773, 40.4291052 ] } }, { "type": "Feature", "properties": { "y": 40.4536373, "x": -79.9814494, "osmid": 6073801190, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9814494, 40.4536373 ] } }, -{ "type": "Feature", "properties": { "y": 40.4294151, "x": -79.9338571, "osmid": 6165027306, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9338571, 40.4294151 ] } }, +{ "type": "Feature", "properties": { "y": 40.4533824, "x": -79.9815351, "osmid": 6073801192, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9815351, 40.4533824 ] } }, { "type": "Feature", "properties": { "y": 40.4490339, "x": -79.9906602, "osmid": 6181444074, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9906602, 40.4490339 ] } }, { "type": "Feature", "properties": { "y": 40.4490653, "x": -79.9906942, "osmid": 6181444075, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9906942, 40.4490653 ] } }, -{ "type": "Feature", "properties": { "y": 40.4533824, "x": -79.9815351, "osmid": 6073801192, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9815351, 40.4533824 ] } }, -{ "type": "Feature", "properties": { "y": 40.4531789, "x": -79.9812846, "osmid": 6073801198, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9812846, 40.4531789 ] } }, { "type": "Feature", "properties": { "y": 40.4532827, "x": -79.9814123, "osmid": 6073801195, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9814123, 40.4532827 ] } }, { "type": "Feature", "properties": { "y": 40.4529939, "x": -79.9815535, "osmid": 6073801197, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9815535, 40.4529939 ] } }, +{ "type": "Feature", "properties": { "y": 40.4531789, "x": -79.9812846, "osmid": 6073801198, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9812846, 40.4531789 ] } }, { "type": "Feature", "properties": { "y": 40.4533723, "x": -79.9810044, "osmid": 6073801199, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9810044, 40.4533723 ] } }, -{ "type": "Feature", "properties": { "y": 40.4349373, "x": -79.9447755, "osmid": 105142770, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9447755, 40.4349373 ] } }, +{ "type": "Feature", "properties": { "y": 40.4535328, "x": -79.9813227, "osmid": 6073801193, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9813227, 40.4535328 ] } }, { "type": "Feature", "properties": { "y": 40.4534737, "x": -79.981129, "osmid": 6073801196, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.981129, 40.4534737 ] } }, +{ "type": "Feature", "properties": { "y": 40.4349373, "x": -79.9447755, "osmid": 105142770, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9447755, 40.4349373 ] } }, +{ "type": "Feature", "properties": { "y": 40.4531, "x": -79.9816732, "osmid": 6073801194, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9816732, 40.4531 ] } }, { "type": "Feature", "properties": { "y": 40.4489333, "x": -79.9905494, "osmid": 6181444092, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9905494, 40.4489333 ] } }, { "type": "Feature", "properties": { "y": 40.448903, "x": -79.9905148, "osmid": 6181444093, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9905148, 40.448903 ] } }, { "type": "Feature", "properties": { "y": 40.432836, "x": -79.9365657, "osmid": 105142790, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9365657, 40.432836 ] } }, @@ -8958,7 +8709,6 @@ { "type": "Feature", "properties": { "y": 40.4556414, "x": -80.0057041, "osmid": 656071237, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057041, 40.4556414 ] } }, { "type": "Feature", "properties": { "y": 40.4342663, "x": -80.0257399, "osmid": 104716870, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0257399, 40.4342663 ] } }, { "type": "Feature", "properties": { "y": 40.455715, "x": -80.0053159, "osmid": 656071236, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0053159, 40.455715 ] } }, -{ "type": "Feature", "properties": { "y": 40.4547922, "x": -80.0064034, "osmid": 656071240, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0064034, 40.4547922 ] } }, { "type": "Feature", "properties": { "y": 40.4541445, "x": -80.0061855, "osmid": 656071239, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061855, 40.4541445 ] } }, { "type": "Feature", "properties": { "y": 40.4537543, "x": -79.9991943, "osmid": 656071247, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9991943, 40.4537543 ] } }, { "type": "Feature", "properties": { "y": 40.4558617, "x": -80.0045422, "osmid": 656071248, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0045422, 40.4558617 ] } }, @@ -8970,11 +8720,11 @@ { "type": "Feature", "properties": { "y": 40.4580358, "x": -79.9942506, "osmid": 104651367, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9942506, 40.4580358 ] } }, { "type": "Feature", "properties": { "y": 40.431109, "x": -79.9606195, "osmid": 5320858219, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9606195, 40.431109 ] } }, { "type": "Feature", "properties": { "y": 40.4368319, "x": -79.9852074, "osmid": 107600492, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9852074, 40.4368319 ] } }, -{ "type": "Feature", "properties": { "y": 40.4566483, "x": -80.0259515, "osmid": 7456447085, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0259515, 40.4566483 ] } }, { "type": "Feature", "properties": { "y": 40.4359674, "x": -79.9633635, "osmid": 6532061806, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9633635, 40.4359674 ] } }, { "type": "Feature", "properties": { "y": 40.4358524, "x": -79.9635167, "osmid": 6532061807, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9635167, 40.4358524 ] } }, { "type": "Feature", "properties": { "y": 40.4292518, "x": -79.9737633, "osmid": 1584945779, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9737633, 40.4292518 ] } }, { "type": "Feature", "properties": { "y": 40.4596033, "x": -79.9924748, "osmid": 104651380, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9924748, 40.4596033 ] } }, +{ "type": "Feature", "properties": { "y": 40.4341248, "x": -80.0062804, "osmid": 6033100595, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0062804, 40.4341248 ] } }, { "type": "Feature", "properties": { "y": 40.4340412, "x": -79.9421206, "osmid": 303192699, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9421206, 40.4340412 ] } }, { "type": "Feature", "properties": { "y": 40.4597941, "x": -79.9914676, "osmid": 104651388, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9914676, 40.4597941 ] } }, { "type": "Feature", "properties": { "y": 40.4491849, "x": -79.9986367, "osmid": 684907137, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9986367, 40.4491849 ] } }, @@ -9022,7 +8772,6 @@ { "type": "Feature", "properties": { "y": 40.4519493, "x": -80.0083983, "osmid": 5249882839, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083983, 40.4519493 ] } }, { "type": "Feature", "properties": { "y": 40.4473728, "x": -79.9898469, "osmid": 105175769, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9898469, 40.4473728 ] } }, { "type": "Feature", "properties": { "y": 40.4287171, "x": -79.9718296, "osmid": 2142001880, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9718296, 40.4287171 ] } }, -{ "type": "Feature", "properties": { "y": 40.4476376, "x": -79.9395443, "osmid": 1832245972, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9395443, 40.4476376 ] } }, { "type": "Feature", "properties": { "y": 40.4519115, "x": -80.0081876, "osmid": 5249882844, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0081876, 40.4519115 ] } }, { "type": "Feature", "properties": { "y": 40.4518646, "x": -80.0081741, "osmid": 5249882845, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0081741, 40.4518646 ] } }, { "type": "Feature", "properties": { "y": 40.4287343, "x": -79.972127, "osmid": 2142001886, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.972127, 40.4287343 ] } }, @@ -9086,8 +8835,8 @@ { "type": "Feature", "properties": { "y": 40.4312264, "x": -80.0057702, "osmid": 7286610730, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057702, 40.4312264 ] } }, { "type": "Feature", "properties": { "y": 40.4309522, "x": -80.0053333, "osmid": 7286610731, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0053333, 40.4309522 ] } }, { "type": "Feature", "properties": { "y": 40.4277802, "x": -79.9935385, "osmid": 6635707181, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9935385, 40.4277802 ] } }, -{ "type": "Feature", "properties": { "y": 40.4277297, "x": -79.9935451, "osmid": 6635707182, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9935451, 40.4277297 ] } }, { "type": "Feature", "properties": { "y": 40.4380501, "x": -80.030417, "osmid": 2322619182, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.030417, 40.4380501 ] } }, +{ "type": "Feature", "properties": { "y": 40.4277297, "x": -79.9935451, "osmid": 6635707182, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9935451, 40.4277297 ] } }, { "type": "Feature", "properties": { "y": 40.4276797, "x": -79.993551, "osmid": 6635707183, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.993551, 40.4276797 ] } }, { "type": "Feature", "properties": { "y": 40.4299963, "x": -80.0057958, "osmid": 7286610734, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057958, 40.4299963 ] } }, { "type": "Feature", "properties": { "y": 40.4307117, "x": -80.0055452, "osmid": 7286610739, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0055452, 40.4307117 ] } }, @@ -9099,7 +8848,7 @@ { "type": "Feature", "properties": { "y": 40.4371069, "x": -80.0301077, "osmid": 2322619194, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0301077, 40.4371069 ] } }, { "type": "Feature", "properties": { "y": 40.4309556, "x": -79.9612621, "osmid": 5320858426, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9612621, 40.4309556 ] } }, { "type": "Feature", "properties": { "y": 40.432183, "x": -79.9627166, "osmid": 5320858428, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9627166, 40.432183 ] } }, -{ "type": "Feature", "properties": { "y": 40.4322454, "x": -79.9628299, "osmid": 5320858429, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9628299, 40.4322454 ] } }, +{ "type": "Feature", "properties": { "y": 40.4342033, "x": -80.0112918, "osmid": 7286610748, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0112918, 40.4342033 ] } }, { "type": "Feature", "properties": { "y": 40.4392844, "x": -80.0214047, "osmid": 2322619198, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0214047, 40.4392844 ] } }, { "type": "Feature", "properties": { "y": 40.4291655, "x": -79.9717898, "osmid": 2142001983, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9717898, 40.4291655 ] } }, { "type": "Feature", "properties": { "y": 40.4329982, "x": -79.9623737, "osmid": 5320858432, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9623737, 40.4329982 ] } }, @@ -9143,6 +8892,7 @@ { "type": "Feature", "properties": { "y": 40.4333621, "x": -80.0227304, "osmid": 3712965482, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0227304, 40.4333621 ] } }, { "type": "Feature", "properties": { "y": 40.4411526, "x": -79.9700336, "osmid": 2029509480, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9700336, 40.4411526 ] } }, { "type": "Feature", "properties": { "y": 40.4508423, "x": -79.9976041, "osmid": 684907374, "highway": "motorway_junction", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9976041, 40.4508423 ] } }, +{ "type": "Feature", "properties": { "y": 40.4585082, "x": -80.0021837, "osmid": 5211622758, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0021837, 40.4585082 ] } }, { "type": "Feature", "properties": { "y": 40.4414096, "x": -79.97119, "osmid": 2029509489, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.97119, 40.4414096 ] } }, { "type": "Feature", "properties": { "y": 40.4317453, "x": -79.9586935, "osmid": 5320858482, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9586935, 40.4317453 ] } }, { "type": "Feature", "properties": { "y": 40.432557, "x": -79.9585779, "osmid": 5320858484, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9585779, 40.432557 ] } }, @@ -9204,14 +8954,14 @@ { "type": "Feature", "properties": { "y": 40.4441811, "x": -79.996745, "osmid": 6281321448, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.996745, 40.4441811 ] } }, { "type": "Feature", "properties": { "y": 40.4416761, "x": -79.9696349, "osmid": 2029509607, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9696349, 40.4416761 ] } }, { "type": "Feature", "properties": { "y": 40.4442322, "x": -79.9967662, "osmid": 6281321453, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9967662, 40.4442322 ] } }, -{ "type": "Feature", "properties": { "y": 40.4444219, "x": -79.9455655, "osmid": 4076231657, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9455655, 40.4444219 ] } }, +{ "type": "Feature", "properties": { "y": 40.4485072, "x": -79.933872, "osmid": 5842754535, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.933872, 40.4485072 ] } }, { "type": "Feature", "properties": { "y": 40.4461052, "x": -80.0098132, "osmid": 5716532207, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0098132, 40.4461052 ] } }, -{ "type": "Feature", "properties": { "y": 40.4485099, "x": -79.931609, "osmid": 5842754539, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.931609, 40.4485099 ] } }, +{ "type": "Feature", "properties": { "y": 40.4444219, "x": -79.9455655, "osmid": 4076231657, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9455655, 40.4444219 ] } }, +{ "type": "Feature", "properties": { "y": 40.4481061, "x": -79.933485, "osmid": 5842754538, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.933485, 40.4481061 ] } }, { "type": "Feature", "properties": { "y": 40.4493226, "x": -79.9312491, "osmid": 5842754545, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9312491, 40.4493226 ] } }, -{ "type": "Feature", "properties": { "y": 40.4483629, "x": -79.9320753, "osmid": 5842754541, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9320753, 40.4483629 ] } }, { "type": "Feature", "properties": { "y": 40.448763, "x": -79.9305174, "osmid": 5842754547, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9305174, 40.448763 ] } }, { "type": "Feature", "properties": { "y": 40.4409365, "x": -79.9918554, "osmid": 871717876, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9918554, 40.4409365 ] } }, -{ "type": "Feature", "properties": { "y": 40.4486775, "x": -79.9309959, "osmid": 5842754544, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9309959, 40.4486775 ] } }, +{ "type": "Feature", "properties": { "y": 40.4483629, "x": -79.9320753, "osmid": 5842754541, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9320753, 40.4483629 ] } }, { "type": "Feature", "properties": { "y": 40.4444096, "x": -79.9976061, "osmid": 6281321462, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9976061, 40.4444096 ] } }, { "type": "Feature", "properties": { "y": 40.444489, "x": -79.9972926, "osmid": 6281321463, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9972926, 40.444489 ] } }, { "type": "Feature", "properties": { "y": 40.4446096, "x": -79.9973499, "osmid": 6281321464, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9973499, 40.4446096 ] } }, @@ -9283,8 +9033,6 @@ { "type": "Feature", "properties": { "y": 40.4565262, "x": -79.9903403, "osmid": 684907658, "highway": "motorway_junction", "ref": "1B" }, "geometry": { "type": "Point", "coordinates": [ -79.9903403, 40.4565262 ] } }, { "type": "Feature", "properties": { "y": 40.4424605, "x": -79.9958006, "osmid": 105012363, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9958006, 40.4424605 ] } }, { "type": "Feature", "properties": { "y": 40.4351511, "x": -79.9867305, "osmid": 104717459, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9867305, 40.4351511 ] } }, -{ "type": "Feature", "properties": { "y": 40.4383341, "x": -79.9800499, "osmid": 7698177171, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9800499, 40.4383341 ] } }, -{ "type": "Feature", "properties": { "y": 40.4381753, "x": -79.9800701, "osmid": 7698177173, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9800701, 40.4381753 ] } }, { "type": "Feature", "properties": { "y": 40.4588317, "x": -79.9322478, "osmid": 392944791, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9322478, 40.4588317 ] } }, { "type": "Feature", "properties": { "y": 40.4430671, "x": -79.9554026, "osmid": 7804312728, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9554026, 40.4430671 ] } }, { "type": "Feature", "properties": { "y": 40.4432701, "x": -79.9551209, "osmid": 7804312729, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9551209, 40.4432701 ] } }, @@ -9307,13 +9055,12 @@ { "type": "Feature", "properties": { "y": 40.4366749, "x": -79.9842948, "osmid": 5308505309, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9842948, 40.4366749 ] } }, { "type": "Feature", "properties": { "y": 40.4519769, "x": -79.999581, "osmid": 6466264288, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.999581, 40.4519769 ] } }, { "type": "Feature", "properties": { "y": 40.4524082, "x": -79.9997223, "osmid": 6466264289, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9997223, 40.4524082 ] } }, -{ "type": "Feature", "properties": { "y": 40.4540404, "x": -79.9936981, "osmid": 3830209762, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9936981, 40.4540404 ] } }, { "type": "Feature", "properties": { "y": 40.4262489, "x": -80.0209955, "osmid": 6994189538, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0209955, 40.4262489 ] } }, +{ "type": "Feature", "properties": { "y": 40.426147, "x": -80.0210986, "osmid": 6994189539, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0210986, 40.426147 ] } }, { "type": "Feature", "properties": { "y": 40.4262056, "x": -80.0210393, "osmid": 6994189540, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0210393, 40.4262056 ] } }, { "type": "Feature", "properties": { "y": 40.4346714, "x": -80.0315494, "osmid": 1808948453, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0315494, 40.4346714 ] } }, -{ "type": "Feature", "properties": { "y": 40.426147, "x": -80.0210986, "osmid": 6994189539, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0210986, 40.426147 ] } }, -{ "type": "Feature", "properties": { "y": 40.4258532, "x": -80.0205323, "osmid": 6994189543, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0205323, 40.4258532 ] } }, { "type": "Feature", "properties": { "y": 40.4559944, "x": -80.0034158, "osmid": 5224946912, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0034158, 40.4559944 ] } }, +{ "type": "Feature", "properties": { "y": 40.4258532, "x": -80.0205323, "osmid": 6994189543, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0205323, 40.4258532 ] } }, { "type": "Feature", "properties": { "y": 40.4558704, "x": -80.0030893, "osmid": 5224946913, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0030893, 40.4558704 ] } }, { "type": "Feature", "properties": { "y": 40.4451716, "x": -79.9517094, "osmid": 7859329337, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9517094, 40.4451716 ] } }, { "type": "Feature", "properties": { "y": 40.4511111, "x": -80.008219, "osmid": 1687280878, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008219, 40.4511111 ] } }, @@ -9329,6 +9076,7 @@ { "type": "Feature", "properties": { "y": 40.4504441, "x": -79.996952, "osmid": 684907776, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.996952, 40.4504441 ] } }, { "type": "Feature", "properties": { "y": 40.4404053, "x": -80.017404, "osmid": 6012656896, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.017404, 40.4404053 ] } }, { "type": "Feature", "properties": { "y": 40.4509178, "x": -79.996212, "osmid": 684907780, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.996212, 40.4509178 ] } }, +{ "type": "Feature", "properties": { "y": 40.4548642, "x": -79.9924673, "osmid": 3830209799, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9924673, 40.4548642 ] } }, { "type": "Feature", "properties": { "y": 40.4448881, "x": -79.996243, "osmid": 3295862026, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.996243, 40.4448881 ] } }, { "type": "Feature", "properties": { "y": 40.4449312, "x": -79.9960805, "osmid": 3295862028, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9960805, 40.4449312 ] } }, { "type": "Feature", "properties": { "y": 40.4489788, "x": -79.9977569, "osmid": 684907789, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9977569, 40.4489788 ] } }, @@ -9373,6 +9121,7 @@ { "type": "Feature", "properties": { "y": 40.44393, "x": -79.9694883, "osmid": 6531964299, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9694883, 40.44393 ] } }, { "type": "Feature", "properties": { "y": 40.442842, "x": -79.991214, "osmid": 684842389, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.991214, 40.442842 ] } }, { "type": "Feature", "properties": { "y": 40.442746, "x": -79.9908677, "osmid": 684842393, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9908677, 40.442746 ] } }, +{ "type": "Feature", "properties": { "y": 40.4445642, "x": -79.9771932, "osmid": 105943503, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9771932, 40.4445642 ] } }, { "type": "Feature", "properties": { "y": 40.4478443, "x": -80.0075468, "osmid": 5353430432, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0075468, 40.4478443 ] } }, { "type": "Feature", "properties": { "y": 40.4440624, "x": -79.9606241, "osmid": 6535941795, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9606241, 40.4440624 ] } }, { "type": "Feature", "properties": { "y": 40.4437469, "x": -79.9610034, "osmid": 6535941797, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9610034, 40.4437469 ] } }, @@ -9515,7 +9264,6 @@ { "type": "Feature", "properties": { "y": 40.4468234, "x": -80.0207953, "osmid": 5421653796, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0207953, 40.4468234 ] } }, { "type": "Feature", "properties": { "y": 40.4382944, "x": -79.9335587, "osmid": 105013029, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9335587, 40.4382944 ] } }, { "type": "Feature", "properties": { "y": 40.4570909, "x": -80.0140443, "osmid": 104685353, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0140443, 40.4570909 ] } }, -{ "type": "Feature", "properties": { "y": 40.436783, "x": -79.9626886, "osmid": 6531871314, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9626886, 40.436783 ] } }, { "type": "Feature", "properties": { "y": 40.4377979, "x": -79.9330303, "osmid": 105013041, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9330303, 40.4377979 ] } }, { "type": "Feature", "properties": { "y": 40.4367126, "x": -79.9627877, "osmid": 6531871315, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9627877, 40.4367126 ] } }, { "type": "Feature", "properties": { "y": 40.4569985, "x": -80.0145494, "osmid": 104685363, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0145494, 40.4569985 ] } }, @@ -9558,6 +9306,7 @@ { "type": "Feature", "properties": { "y": 40.4446148, "x": -79.9444118, "osmid": 302964641, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9444118, 40.4446148 ] } }, { "type": "Feature", "properties": { "y": 40.4587922, "x": -79.9578053, "osmid": 1519280038, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9578053, 40.4587922 ] } }, { "type": "Feature", "properties": { "y": 40.4371296, "x": -79.9513044, "osmid": 3215544582, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9513044, 40.4371296 ] } }, +{ "type": "Feature", "properties": { "y": 40.4440756, "x": -79.944078, "osmid": 302964648, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.944078, 40.4440756 ] } }, { "type": "Feature", "properties": { "y": 40.4434938, "x": -79.9805119, "osmid": 5725806505, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9805119, 40.4434938 ] } }, { "type": "Feature", "properties": { "y": 40.4432448, "x": -79.9804298, "osmid": 5725806506, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9804298, 40.4432448 ] } }, { "type": "Feature", "properties": { "y": 40.4589894, "x": -79.9570918, "osmid": 1519280043, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9570918, 40.4589894 ] } }, @@ -9568,7 +9317,6 @@ { "type": "Feature", "properties": { "y": 40.4555239, "x": -79.9358948, "osmid": 105806840, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9358948, 40.4555239 ] } }, { "type": "Feature", "properties": { "y": 40.4385003, "x": -79.9533013, "osmid": 7079157691, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9533013, 40.4385003 ] } }, { "type": "Feature", "properties": { "y": 40.4387287, "x": -79.9530597, "osmid": 7079157692, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9530597, 40.4387287 ] } }, -{ "type": "Feature", "properties": { "y": 40.4439784, "x": -79.9439045, "osmid": 302964667, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9439045, 40.4439784 ] } }, { "type": "Feature", "properties": { "y": 40.4549615, "x": -79.9995026, "osmid": 104914880, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9995026, 40.4549615 ] } }, { "type": "Feature", "properties": { "y": 40.4591678, "x": -80.0079843, "osmid": 104619973, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0079843, 40.4591678 ] } }, { "type": "Feature", "properties": { "y": 40.4551982, "x": -79.998254, "osmid": 104914890, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.998254, 40.4551982 ] } }, @@ -9718,14 +9466,13 @@ { "type": "Feature", "properties": { "y": 40.4487485, "x": -79.9690691, "osmid": 105767196, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9690691, 40.4487485 ] } }, { "type": "Feature", "properties": { "y": 40.4480037, "x": -79.9680282, "osmid": 105767214, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9680282, 40.4480037 ] } }, { "type": "Feature", "properties": { "y": 40.4482305, "x": -79.9868925, "osmid": 105963824, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9868925, 40.4482305 ] } }, -{ "type": "Feature", "properties": { "y": 40.4267214, "x": -80.0172036, "osmid": 3261260081, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0172036, 40.4267214 ] } }, +{ "type": "Feature", "properties": { "y": 40.4500822, "x": -80.004707, "osmid": 5247426865, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.004707, 40.4500822 ] } }, { "type": "Feature", "properties": { "y": 40.4499922, "x": -80.0046815, "osmid": 5247426866, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0046815, 40.4499922 ] } }, { "type": "Feature", "properties": { "y": 40.4486708, "x": -80.0042664, "osmid": 5247426867, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0042664, 40.4486708 ] } }, -{ "type": "Feature", "properties": { "y": 40.4500822, "x": -80.004707, "osmid": 5247426865, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.004707, 40.4500822 ] } }, -{ "type": "Feature", "properties": { "y": 40.4501499, "x": -80.0050304, "osmid": 5247426869, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0050304, 40.4501499 ] } }, { "type": "Feature", "properties": { "y": 40.4502169, "x": -80.0046946, "osmid": 5247426868, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0046946, 40.4502169 ] } }, -{ "type": "Feature", "properties": { "y": 40.4505585, "x": -79.9832913, "osmid": 105963831, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9832913, 40.4505585 ] } }, +{ "type": "Feature", "properties": { "y": 40.4501499, "x": -80.0050304, "osmid": 5247426869, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0050304, 40.4501499 ] } }, { "type": "Feature", "properties": { "y": 40.4475855, "x": -79.9502156, "osmid": 1355997494, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9502156, 40.4475855 ] } }, +{ "type": "Feature", "properties": { "y": 40.4505585, "x": -79.9832913, "osmid": 105963831, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9832913, 40.4505585 ] } }, { "type": "Feature", "properties": { "y": 40.4522705, "x": -79.9808061, "osmid": 105963839, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9808061, 40.4522705 ] } }, { "type": "Feature", "properties": { "y": 40.4533761, "x": -79.9791834, "osmid": 105963848, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9791834, 40.4533761 ] } }, { "type": "Feature", "properties": { "y": 40.4468337, "x": -79.9500602, "osmid": 1355997513, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9500602, 40.4468337 ] } }, @@ -9794,15 +9541,14 @@ { "type": "Feature", "properties": { "y": 40.4465118, "x": -80.0139565, "osmid": 5406319182, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0139565, 40.4465118 ] } }, { "type": "Feature", "properties": { "y": 40.4466166, "x": -80.0138711, "osmid": 5406319183, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0138711, 40.4466166 ] } }, { "type": "Feature", "properties": { "y": 40.446688, "x": -80.0140153, "osmid": 5406319184, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0140153, 40.446688 ] } }, -{ "type": "Feature", "properties": { "y": 40.4569272, "x": -80.005702, "osmid": 5253423692, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005702, 40.4569272 ] } }, { "type": "Feature", "properties": { "y": 40.4596408, "x": -79.9587144, "osmid": 105964113, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9587144, 40.4596408 ] } }, +{ "type": "Feature", "properties": { "y": 40.4569272, "x": -80.005702, "osmid": 5253423692, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005702, 40.4569272 ] } }, { "type": "Feature", "properties": { "y": 40.4548111, "x": -79.9981266, "osmid": 105210452, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9981266, 40.4548111 ] } }, { "type": "Feature", "properties": { "y": 40.4354076, "x": -79.9588162, "osmid": 3164004953, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9588162, 40.4354076 ] } }, { "type": "Feature", "properties": { "y": 40.4351203, "x": -79.9579556, "osmid": 3164004957, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9579556, 40.4351203 ] } }, { "type": "Feature", "properties": { "y": 40.4480847, "x": -79.9304431, "osmid": 105046639, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9304431, 40.4480847 ] } }, { "type": "Feature", "properties": { "y": 40.4586004, "x": -79.9663786, "osmid": 105734774, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9663786, 40.4586004 ] } }, { "type": "Feature", "properties": { "y": 40.4404467, "x": -79.9555738, "osmid": 6531834493, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9555738, 40.4404467 ] } }, -{ "type": "Feature", "properties": { "y": 40.4476314, "x": -79.9315393, "osmid": 105046654, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9315393, 40.4476314 ] } }, { "type": "Feature", "properties": { "y": 40.4561485, "x": -79.964953, "osmid": 105734785, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.964953, 40.4561485 ] } }, { "type": "Feature", "properties": { "y": 40.4559834, "x": -79.9642723, "osmid": 105734791, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9642723, 40.4559834 ] } }, { "type": "Feature", "properties": { "y": 40.4556648, "x": -79.9639894, "osmid": 105734796, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9639894, 40.4556648 ] } }, @@ -9833,8 +9579,6 @@ { "type": "Feature", "properties": { "y": 40.4559477, "x": -80.0066701, "osmid": 5255062256, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0066701, 40.4559477 ] } }, { "type": "Feature", "properties": { "y": 40.4566072, "x": -80.0068814, "osmid": 5255062257, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0068814, 40.4566072 ] } }, { "type": "Feature", "properties": { "y": 40.4566814, "x": -80.0065044, "osmid": 5255062259, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0065044, 40.4566814 ] } }, -{ "type": "Feature", "properties": { "y": 40.4314989, "x": -79.9835817, "osmid": 7166812918, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9835817, 40.4314989 ] } }, -{ "type": "Feature", "properties": { "y": 40.4315225, "x": -79.9827381, "osmid": 7166812919, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9827381, 40.4315225 ] } }, { "type": "Feature", "properties": { "y": 40.4536389, "x": -79.931906, "osmid": 7025550078, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.931906, 40.4536389 ] } }, { "type": "Feature", "properties": { "y": 40.4534508, "x": -79.932447, "osmid": 7025550079, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.932447, 40.4534508 ] } }, { "type": "Feature", "properties": { "y": 40.4425296, "x": -79.9834872, "osmid": 1252057867, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9834872, 40.4425296 ] } }, @@ -9891,11 +9635,9 @@ { "type": "Feature", "properties": { "y": 40.4458072, "x": -79.9602907, "osmid": 1252057971, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9602907, 40.4458072 ] } }, { "type": "Feature", "properties": { "y": 40.4426793, "x": -79.9989361, "osmid": 105735029, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9989361, 40.4426793 ] } }, { "type": "Feature", "properties": { "y": 40.4411841, "x": -79.9891566, "osmid": 871719798, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9891566, 40.4411841 ] } }, -{ "type": "Feature", "properties": { "y": 40.4560501, "x": -80.0314648, "osmid": 5850719095, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0314648, 40.4560501 ] } }, { "type": "Feature", "properties": { "y": 40.4535548, "x": -79.9617318, "osmid": 1252057973, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9617318, 40.4535548 ] } }, { "type": "Feature", "properties": { "y": 40.4477238, "x": -79.9756423, "osmid": 1252057980, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9756423, 40.4477238 ] } }, { "type": "Feature", "properties": { "y": 40.4493166, "x": -79.9688358, "osmid": 1252057981, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9688358, 40.4493166 ] } }, -{ "type": "Feature", "properties": { "y": 40.4556669, "x": -80.0313354, "osmid": 5850719103, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0313354, 40.4556669 ] } }, { "type": "Feature", "properties": { "y": 40.4432062, "x": -79.9785113, "osmid": 1252057985, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9785113, 40.4432062 ] } }, { "type": "Feature", "properties": { "y": 40.4460152, "x": -80.0184927, "osmid": 4016563077, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0184927, 40.4460152 ] } }, { "type": "Feature", "properties": { "y": 40.446017, "x": -80.0172139, "osmid": 4016563078, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0172139, 40.446017 ] } }, @@ -10012,12 +9754,12 @@ { "type": "Feature", "properties": { "y": 40.443378, "x": -79.935659, "osmid": 7185818754, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.935659, 40.443378 ] } }, { "type": "Feature", "properties": { "y": 40.4494185, "x": -80.0152009, "osmid": 4016432262, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0152009, 40.4494185 ] } }, { "type": "Feature", "properties": { "y": 40.4461544, "x": -79.9657376, "osmid": 104653960, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9657376, 40.4461544 ] } }, -{ "type": "Feature", "properties": { "y": 40.4551551, "x": -80.0163647, "osmid": 7495541897, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0163647, 40.4551551 ] } }, -{ "type": "Feature", "properties": { "y": 40.4551948, "x": -80.0163405, "osmid": 7495541898, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0163405, 40.4551948 ] } }, { "type": "Feature", "properties": { "y": 40.4393929, "x": -80.0084894, "osmid": 683730057, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084894, 40.4393929 ] } }, +{ "type": "Feature", "properties": { "y": 40.4551948, "x": -80.0163405, "osmid": 7495541898, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0163405, 40.4551948 ] } }, +{ "type": "Feature", "properties": { "y": 40.4551551, "x": -80.0163647, "osmid": 7495541897, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0163647, 40.4551551 ] } }, { "type": "Feature", "properties": { "y": 40.4435597, "x": -79.936283, "osmid": 7185818761, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.936283, 40.4435597 ] } }, -{ "type": "Feature", "properties": { "y": 40.4556625, "x": -80.0170214, "osmid": 7495541903, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0170214, 40.4556625 ] } }, { "type": "Feature", "properties": { "y": 40.4382693, "x": -80.0057601, "osmid": 683730063, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0057601, 40.4382693 ] } }, +{ "type": "Feature", "properties": { "y": 40.4556625, "x": -80.0170214, "osmid": 7495541903, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0170214, 40.4556625 ] } }, { "type": "Feature", "properties": { "y": 40.4551813, "x": -80.0167847, "osmid": 7495541905, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0167847, 40.4551813 ] } }, { "type": "Feature", "properties": { "y": 40.4496311, "x": -80.0135924, "osmid": 4016432274, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0135924, 40.4496311 ] } }, { "type": "Feature", "properties": { "y": 40.4496545, "x": -80.0134649, "osmid": 4016432275, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0134649, 40.4496545 ] } }, @@ -10065,7 +9807,6 @@ { "type": "Feature", "properties": { "y": 40.4441918, "x": -79.9352769, "osmid": 104523048, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9352769, 40.4441918 ] } }, { "type": "Feature", "properties": { "y": 40.4440135, "x": -79.9355861, "osmid": 104523055, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9355861, 40.4440135 ] } }, { "type": "Feature", "properties": { "y": 40.4533401, "x": -80.0110114, "osmid": 5335835952, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0110114, 40.4533401 ] } }, -{ "type": "Feature", "properties": { "y": 40.446858, "x": -79.9340086, "osmid": 1356087458, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9340086, 40.446858 ] } }, { "type": "Feature", "properties": { "y": 40.4532734, "x": -80.010481, "osmid": 5335835954, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.010481, 40.4532734 ] } }, { "type": "Feature", "properties": { "y": 40.4437833, "x": -79.9363249, "osmid": 104523061, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9363249, 40.4437833 ] } }, { "type": "Feature", "properties": { "y": 40.4358958, "x": -79.9989001, "osmid": 1508795702, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9989001, 40.4358958 ] } }, @@ -10093,13 +9834,10 @@ { "type": "Feature", "properties": { "y": 40.4321434, "x": -80.003692, "osmid": 1508795736, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.003692, 40.4321434 ] } }, { "type": "Feature", "properties": { "y": 40.4420388, "x": -79.9544973, "osmid": 2396448088, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9544973, 40.4420388 ] } }, { "type": "Feature", "properties": { "y": 40.4376779, "x": -79.985058, "osmid": 5308507482, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.985058, 40.4376779 ] } }, -{ "type": "Feature", "properties": { "y": 40.4425783, "x": -79.9482233, "osmid": 3382338906, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9482233, 40.4425783 ] } }, { "type": "Feature", "properties": { "y": 40.4418721, "x": -79.9544269, "osmid": 2396448089, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9544269, 40.4418721 ] } }, { "type": "Feature", "properties": { "y": 40.4421166, "x": -79.954205, "osmid": 2396448092, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.954205, 40.4421166 ] } }, { "type": "Feature", "properties": { "y": 40.4418851, "x": -79.9532424, "osmid": 2396448090, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9532424, 40.4418851 ] } }, { "type": "Feature", "properties": { "y": 40.4421564, "x": -79.9533318, "osmid": 2396448091, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9533318, 40.4421564 ] } }, -{ "type": "Feature", "properties": { "y": 40.4503252, "x": -79.942919, "osmid": 1832609120, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.942919, 40.4503252 ] } }, -{ "type": "Feature", "properties": { "y": 40.4503696, "x": -79.9422897, "osmid": 1832609121, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9422897, 40.4503696 ] } }, { "type": "Feature", "properties": { "y": 40.4415396, "x": -79.9389807, "osmid": 3382338910, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9389807, 40.4415396 ] } }, { "type": "Feature", "properties": { "y": 40.4426275, "x": -79.9510077, "osmid": 3382338918, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9510077, 40.4426275 ] } }, { "type": "Feature", "properties": { "y": 40.4436772, "x": -79.951668, "osmid": 3382338919, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.951668, 40.4436772 ] } }, @@ -10145,9 +9883,6 @@ { "type": "Feature", "properties": { "y": 40.4568038, "x": -79.9728799, "osmid": 6113519042, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9728799, 40.4568038 ] } }, { "type": "Feature", "properties": { "y": 40.4564864, "x": -79.9725164, "osmid": 6113519043, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9725164, 40.4564864 ] } }, { "type": "Feature", "properties": { "y": 40.4337423, "x": -79.9305599, "osmid": 104687047, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9305599, 40.4337423 ] } }, -{ "type": "Feature", "properties": { "y": 40.4289315, "x": -80.0291881, "osmid": 7262430686, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0291881, 40.4289315 ] } }, -{ "type": "Feature", "properties": { "y": 40.4286916, "x": -80.0288921, "osmid": 7262430687, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0288921, 40.4286916 ] } }, -{ "type": "Feature", "properties": { "y": 40.4291529, "x": -80.0281074, "osmid": 7262430693, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0281074, 40.4291529 ] } }, { "type": "Feature", "properties": { "y": 40.456079, "x": -79.9746914, "osmid": 6113519079, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9746914, 40.456079 ] } }, { "type": "Feature", "properties": { "y": 40.4562052, "x": -79.9737385, "osmid": 6113519086, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9737385, 40.4562052 ] } }, { "type": "Feature", "properties": { "y": 40.4563233, "x": -79.9739098, "osmid": 6113519087, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9739098, 40.4563233 ] } }, @@ -10157,7 +9892,6 @@ { "type": "Feature", "properties": { "y": 40.4560524, "x": -79.9735692, "osmid": 6113519097, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9735692, 40.4560524 ] } }, { "type": "Feature", "properties": { "y": 40.4281775, "x": -79.9341443, "osmid": 105178623, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9341443, 40.4281775 ] } }, { "type": "Feature", "properties": { "y": 40.4323581, "x": -79.957743, "osmid": 2681595394, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.957743, 40.4323581 ] } }, -{ "type": "Feature", "properties": { "y": 40.4490694, "x": -79.9452094, "osmid": 7491741186, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9452094, 40.4490694 ] } }, { "type": "Feature", "properties": { "y": 40.4517029, "x": -79.9493193, "osmid": 6535931398, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9493193, 40.4517029 ] } }, { "type": "Feature", "properties": { "y": 40.4515833, "x": -79.9497413, "osmid": 6535931399, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9497413, 40.4515833 ] } }, { "type": "Feature", "properties": { "y": 40.4265435, "x": -79.9378645, "osmid": 105178650, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9378645, 40.4265435 ] } }, @@ -10193,8 +9927,6 @@ { "type": "Feature", "properties": { "y": 40.4542201, "x": -79.9433261, "osmid": 1784276661, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9433261, 40.4542201 ] } }, { "type": "Feature", "properties": { "y": 40.4424236, "x": -79.966253, "osmid": 104949432, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.966253, 40.4424236 ] } }, { "type": "Feature", "properties": { "y": 40.4432127, "x": -79.943417, "osmid": 2919123583, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.943417, 40.4432127 ] } }, -{ "type": "Feature", "properties": { "y": 40.4560042, "x": -79.9752357, "osmid": 6113649557, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9752357, 40.4560042 ] } }, -{ "type": "Feature", "properties": { "y": 40.4513462, "x": -80.0084893, "osmid": 5247554979, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0084893, 40.4513462 ] } }, { "type": "Feature", "properties": { "y": 40.4420557, "x": -79.9707126, "osmid": 7229925099, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9707126, 40.4420557 ] } }, { "type": "Feature", "properties": { "y": 40.4457875, "x": -79.9923945, "osmid": 105965301, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9923945, 40.4457875 ] } }, { "type": "Feature", "properties": { "y": 40.4465559, "x": -79.9911628, "osmid": 105965312, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9911628, 40.4465559 ] } }, @@ -10248,9 +9980,7 @@ { "type": "Feature", "properties": { "y": 40.4486863, "x": -79.9369416, "osmid": 7238281193, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9369416, 40.4486863 ] } }, { "type": "Feature", "properties": { "y": 40.4548186, "x": -80.0133021, "osmid": 104589290, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0133021, 40.4548186 ] } }, { "type": "Feature", "properties": { "y": 40.4514991, "x": -80.0226933, "osmid": 7011330029, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0226933, 40.4514991 ] } }, -{ "type": "Feature", "properties": { "y": 40.4508945, "x": -80.0223048, "osmid": 7011330030, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0223048, 40.4508945 ] } }, { "type": "Feature", "properties": { "y": 40.4301865, "x": -79.95615, "osmid": 106096623, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.95615, 40.4301865 ] } }, -{ "type": "Feature", "properties": { "y": 40.4500571, "x": -80.0220848, "osmid": 7011330032, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0220848, 40.4500571 ] } }, { "type": "Feature", "properties": { "y": 40.4509235, "x": -80.0221472, "osmid": 7011330033, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0221472, 40.4509235 ] } }, { "type": "Feature", "properties": { "y": 40.4260731, "x": -79.9418062, "osmid": 105080817, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9418062, 40.4260731 ] } }, { "type": "Feature", "properties": { "y": 40.4505217, "x": -80.0219743, "osmid": 7011330035, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0219743, 40.4505217 ] } }, @@ -10281,19 +10011,15 @@ { "type": "Feature", "properties": { "y": 40.4282649, "x": -79.9301247, "osmid": 686516298, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9301247, 40.4282649 ] } }, { "type": "Feature", "properties": { "y": 40.4256132, "x": -79.9732954, "osmid": 105048153, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9732954, 40.4256132 ] } }, { "type": "Feature", "properties": { "y": 40.4424784, "x": -79.9405381, "osmid": 302966877, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9405381, 40.4424784 ] } }, -{ "type": "Feature", "properties": { "y": 40.4255334, "x": -79.9719094, "osmid": 105048163, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9719094, 40.4255334 ] } }, { "type": "Feature", "properties": { "y": 40.4420081, "x": -79.9407012, "osmid": 302966884, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9407012, 40.4420081 ] } }, { "type": "Feature", "properties": { "y": 40.4572228, "x": -79.9469772, "osmid": 3931498602, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9469772, 40.4572228 ] } }, { "type": "Feature", "properties": { "y": 40.4416769, "x": -79.9411912, "osmid": 302966890, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9411912, 40.4416769 ] } }, -{ "type": "Feature", "properties": { "y": 40.4419479, "x": -79.9405323, "osmid": 302966891, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9405323, 40.4419479 ] } }, +{ "type": "Feature", "properties": { "y": 40.4421518, "x": -79.9400488, "osmid": 302966892, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9400488, 40.4421518 ] } }, { "type": "Feature", "properties": { "y": 40.4560386, "x": -79.9482125, "osmid": 3117705325, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9482125, 40.4560386 ] } }, { "type": "Feature", "properties": { "y": 40.4568339, "x": -79.9456519, "osmid": 3931498606, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9456519, 40.4568339 ] } }, { "type": "Feature", "properties": { "y": 40.4528778, "x": -79.9309221, "osmid": 3117705327, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9309221, 40.4528778 ] } }, { "type": "Feature", "properties": { "y": 40.4535536, "x": -79.931321, "osmid": 3117705328, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.931321, 40.4535536 ] } }, { "type": "Feature", "properties": { "y": 40.4525213, "x": -79.9307117, "osmid": 3117705326, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9307117, 40.4525213 ] } }, -{ "type": "Feature", "properties": { "y": 40.4421518, "x": -79.9400488, "osmid": 302966892, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9400488, 40.4421518 ] } }, -{ "type": "Feature", "properties": { "y": 40.4575658, "x": -79.9474249, "osmid": 3931498614, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9474249, 40.4575658 ] } }, -{ "type": "Feature", "properties": { "y": 40.4575475, "x": -79.9482127, "osmid": 3931498616, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9482127, 40.4575475 ] } }, { "type": "Feature", "properties": { "y": 40.4322793, "x": -80.0278681, "osmid": 675670137, "highway": "motorway_junction", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0278681, 40.4322793 ] } }, { "type": "Feature", "properties": { "y": 40.4457219, "x": -79.9720548, "osmid": 3625642124, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9720548, 40.4457219 ] } }, { "type": "Feature", "properties": { "y": 40.426178, "x": -79.9397905, "osmid": 105801869, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9397905, 40.426178 ] } }, @@ -10326,7 +10052,6 @@ { "type": "Feature", "properties": { "y": 40.4442885, "x": -79.9933541, "osmid": 2634770667, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9933541, 40.4442885 ] } }, { "type": "Feature", "properties": { "y": 40.4516257, "x": -79.9692184, "osmid": 104720622, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9692184, 40.4516257 ] } }, { "type": "Feature", "properties": { "y": 40.4446276, "x": -79.9927816, "osmid": 2634770676, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9927816, 40.4446276 ] } }, -{ "type": "Feature", "properties": { "y": 40.4423216, "x": -79.9413964, "osmid": 302967030, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9413964, 40.4423216 ] } }, { "type": "Feature", "properties": { "y": 40.4448634, "x": -79.9937617, "osmid": 2634770679, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9937617, 40.4448634 ] } }, { "type": "Feature", "properties": { "y": 40.4450087, "x": -79.9938785, "osmid": 2634770680, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9938785, 40.4450087 ] } }, { "type": "Feature", "properties": { "y": 40.4456223, "x": -79.9941197, "osmid": 2634770682, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9941197, 40.4456223 ] } }, @@ -10337,18 +10062,17 @@ { "type": "Feature", "properties": { "y": 40.4452006, "x": -79.993181, "osmid": 6219360533, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.993181, 40.4452006 ] } }, { "type": "Feature", "properties": { "y": 40.4451439, "x": -79.9932683, "osmid": 6219360534, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9932683, 40.4451439 ] } }, { "type": "Feature", "properties": { "y": 40.4448827, "x": -79.9936911, "osmid": 6219360535, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9936911, 40.4448827 ] } }, -{ "type": "Feature", "properties": { "y": 40.4446347, "x": -79.9935803, "osmid": 6219360536, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9935803, 40.4446347 ] } }, { "type": "Feature", "properties": { "y": 40.4515944, "x": -79.983139, "osmid": 6076721431, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.983139, 40.4515944 ] } }, { "type": "Feature", "properties": { "y": 40.4513642, "x": -79.982848, "osmid": 6076721432, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.982848, 40.4513642 ] } }, -{ "type": "Feature", "properties": { "y": 40.4379846, "x": -79.9922679, "osmid": 4074629403, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9922679, 40.4379846 ] } }, { "type": "Feature", "properties": { "y": 40.4506358, "x": -79.9833193, "osmid": 6076721434, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9833193, 40.4506358 ] } }, -{ "type": "Feature", "properties": { "y": 40.4443423, "x": -79.9933999, "osmid": 6219360541, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9933999, 40.4443423 ] } }, +{ "type": "Feature", "properties": { "y": 40.4379846, "x": -79.9922679, "osmid": 4074629403, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9922679, 40.4379846 ] } }, { "type": "Feature", "properties": { "y": 40.4506103, "x": -79.9833552, "osmid": 6076721435, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9833552, 40.4506103 ] } }, +{ "type": "Feature", "properties": { "y": 40.4443423, "x": -79.9933999, "osmid": 6219360541, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9933999, 40.4443423 ] } }, { "type": "Feature", "properties": { "y": 40.451142, "x": -79.9825766, "osmid": 6076721437, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9825766, 40.451142 ] } }, { "type": "Feature", "properties": { "y": 40.4255877, "x": -79.9489653, "osmid": 105802010, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9489653, 40.4255877 ] } }, +{ "type": "Feature", "properties": { "y": 40.4464693, "x": -79.9475188, "osmid": 6531934492, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9475188, 40.4464693 ] } }, { "type": "Feature", "properties": { "y": 40.4348621, "x": -79.9555507, "osmid": 104786209, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9555507, 40.4348621 ] } }, { "type": "Feature", "properties": { "y": 40.4579779, "x": -79.9650081, "osmid": 1771596066, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9650081, 40.4579779 ] } }, -{ "type": "Feature", "properties": { "y": 40.4464693, "x": -79.9475188, "osmid": 6531934492, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9475188, 40.4464693 ] } }, { "type": "Feature", "properties": { "y": 40.4469006, "x": -79.9475557, "osmid": 6531934493, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9475557, 40.4469006 ] } }, { "type": "Feature", "properties": { "y": 40.4358946, "x": -79.9553351, "osmid": 104786217, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9553351, 40.4358946 ] } }, { "type": "Feature", "properties": { "y": 40.4279101, "x": -79.9417039, "osmid": 107473194, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9417039, 40.4279101 ] } }, @@ -10396,13 +10120,13 @@ { "type": "Feature", "properties": { "y": 40.4308868, "x": -79.9570969, "osmid": 2715152903, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9570969, 40.4308868 ] } }, { "type": "Feature", "properties": { "y": 40.4427019, "x": -79.9796649, "osmid": 104786357, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9796649, 40.4427019 ] } }, { "type": "Feature", "properties": { "y": 40.4436315, "x": -79.9803456, "osmid": 104786366, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9803456, 40.4436315 ] } }, -{ "type": "Feature", "properties": { "y": 40.4315976, "x": -79.9327376, "osmid": 2755750334, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9327376, 40.4315976 ] } }, { "type": "Feature", "properties": { "y": 40.4317382, "x": -79.9448164, "osmid": 2755750336, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9448164, 40.4317382 ] } }, { "type": "Feature", "properties": { "y": 40.4439977, "x": -79.9806154, "osmid": 104786371, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9806154, 40.4439977 ] } }, { "type": "Feature", "properties": { "y": 40.4442416, "x": -79.9807953, "osmid": 104786378, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9807953, 40.4442416 ] } }, { "type": "Feature", "properties": { "y": 40.4324428, "x": -79.945721, "osmid": 2755750349, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.945721, 40.4324428 ] } }, { "type": "Feature", "properties": { "y": 40.4446201, "x": -79.9810746, "osmid": 104786384, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9810746, 40.4446201 ] } }, { "type": "Feature", "properties": { "y": 40.4327567, "x": -79.9362175, "osmid": 2755750352, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9362175, 40.4327567 ] } }, +{ "type": "Feature", "properties": { "y": 40.4561894, "x": -80.004587, "osmid": 5211571388, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.004587, 40.4561894 ] } }, { "type": "Feature", "properties": { "y": 40.44533, "x": -79.9815897, "osmid": 104786389, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9815897, 40.44533 ] } }, { "type": "Feature", "properties": { "y": 40.4400036, "x": -80.0031437, "osmid": 4491536855, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0031437, 40.4400036 ] } }, { "type": "Feature", "properties": { "y": 40.4456693, "x": -79.9818324, "osmid": 104786392, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9818324, 40.4456693 ] } }, @@ -10420,6 +10144,7 @@ { "type": "Feature", "properties": { "y": 40.4503779, "x": -79.9589492, "osmid": 1454510560, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9589492, 40.4503779 ] } }, { "type": "Feature", "properties": { "y": 40.4442931, "x": -79.9985243, "osmid": 6281357809, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9985243, 40.4442931 ] } }, { "type": "Feature", "properties": { "y": 40.4453791, "x": -79.9989595, "osmid": 6281357810, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9989595, 40.4453791 ] } }, +{ "type": "Feature", "properties": { "y": 40.4562326, "x": -80.0031298, "osmid": 5211571395, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0031298, 40.4562326 ] } }, { "type": "Feature", "properties": { "y": 40.4498799, "x": -79.9612411, "osmid": 1454510562, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9612411, 40.4498799 ] } }, { "type": "Feature", "properties": { "y": 40.4587427, "x": -79.934069, "osmid": 393013765, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.934069, 40.4587427 ] } }, { "type": "Feature", "properties": { "y": 40.4409678, "x": -80.0078986, "osmid": 1253566991, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0078986, 40.4409678 ] } }, @@ -10433,13 +10158,9 @@ { "type": "Feature", "properties": { "y": 40.4530226, "x": -79.9304678, "osmid": 105114147, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9304678, 40.4530226 ] } }, { "type": "Feature", "properties": { "y": 40.446457, "x": -79.9885247, "osmid": 5902953006, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885247, 40.446457 ] } }, { "type": "Feature", "properties": { "y": 40.4415367, "x": -80.0086661, "osmid": 1253567024, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0086661, 40.4415367 ] } }, -{ "type": "Feature", "properties": { "y": 40.4490866, "x": -79.9434296, "osmid": 1835919922, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9434296, 40.4490866 ] } }, -{ "type": "Feature", "properties": { "y": 40.4491936, "x": -79.9427069, "osmid": 1835919928, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9427069, 40.4491936 ] } }, { "type": "Feature", "properties": { "y": 40.4320468, "x": -79.9819074, "osmid": 422406713, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9819074, 40.4320468 ] } }, -{ "type": "Feature", "properties": { "y": 40.4492478, "x": -79.9427171, "osmid": 1835919930, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9427171, 40.4492478 ] } }, -{ "type": "Feature", "properties": { "y": 40.4492158, "x": -79.9430153, "osmid": 1835919929, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9430153, 40.4492158 ] } }, -{ "type": "Feature", "properties": { "y": 40.4426806, "x": -79.9414909, "osmid": 302967355, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9414909, 40.4426806 ] } }, { "type": "Feature", "properties": { "y": 40.442634, "x": -79.9412767, "osmid": 302967354, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9412767, 40.442634 ] } }, +{ "type": "Feature", "properties": { "y": 40.4426806, "x": -79.9414909, "osmid": 302967355, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9414909, 40.4426806 ] } }, { "type": "Feature", "properties": { "y": 40.4429356, "x": -79.9411646, "osmid": 302967357, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9411646, 40.4429356 ] } }, { "type": "Feature", "properties": { "y": 40.4321041, "x": -79.9823842, "osmid": 422406721, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9823842, 40.4321041 ] } }, { "type": "Feature", "properties": { "y": 40.4431185, "x": -79.9413277, "osmid": 302967361, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9413277, 40.4431185 ] } }, @@ -10450,13 +10171,11 @@ { "type": "Feature", "properties": { "y": 40.4507253, "x": -79.9956937, "osmid": 105835089, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9956937, 40.4507253 ] } }, { "type": "Feature", "properties": { "y": 40.4463804, "x": -79.9486215, "osmid": 6531934802, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9486215, 40.4463804 ] } }, { "type": "Feature", "properties": { "y": 40.446557, "x": -79.9486446, "osmid": 6531934803, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9486446, 40.446557 ] } }, +{ "type": "Feature", "properties": { "y": 40.4437672, "x": -79.9406943, "osmid": 302967376, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9406943, 40.4437672 ] } }, { "type": "Feature", "properties": { "y": 40.4427725, "x": -79.9404264, "osmid": 302967377, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9404264, 40.4427725 ] } }, { "type": "Feature", "properties": { "y": 40.4427593, "x": -79.9403664, "osmid": 302967378, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9403664, 40.4427593 ] } }, -{ "type": "Feature", "properties": { "y": 40.4437672, "x": -79.9406943, "osmid": 302967376, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9406943, 40.4437672 ] } }, { "type": "Feature", "properties": { "y": 40.4492686, "x": -80.0045563, "osmid": 105835112, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0045563, 40.4492686 ] } }, { "type": "Feature", "properties": { "y": 40.4417177, "x": -80.0092498, "osmid": 1253567088, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0092498, 40.4417177 ] } }, -{ "type": "Feature", "properties": { "y": 40.4336102, "x": -79.9315773, "osmid": 7014476402, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9315773, 40.4336102 ] } }, -{ "type": "Feature", "properties": { "y": 40.4340648, "x": -79.931633, "osmid": 7014476404, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.931633, 40.4340648 ] } }, { "type": "Feature", "properties": { "y": 40.4437014, "x": -79.9524221, "osmid": 6535932532, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9524221, 40.4437014 ] } }, { "type": "Feature", "properties": { "y": 40.4438375, "x": -79.9521458, "osmid": 6535932535, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9521458, 40.4438375 ] } }, { "type": "Feature", "properties": { "y": 40.4437661, "x": -79.9522025, "osmid": 6535932536, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9522025, 40.4437661 ] } }, @@ -10485,7 +10204,6 @@ { "type": "Feature", "properties": { "y": 40.4507058, "x": -80.0133635, "osmid": 3830180541, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0133635, 40.4507058 ] } }, { "type": "Feature", "properties": { "y": 40.4517823, "x": -80.0137115, "osmid": 3830180542, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0137115, 40.4517823 ] } }, { "type": "Feature", "properties": { "y": 40.4537388, "x": -79.9406874, "osmid": 4320291528, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9406874, 40.4537388 ] } }, -{ "type": "Feature", "properties": { "y": 40.4284593, "x": -79.9987824, "osmid": 7013886681, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9987824, 40.4284593 ] } }, { "type": "Feature", "properties": { "y": 40.4465038, "x": -79.9899038, "osmid": 6219360985, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9899038, 40.4465038 ] } }, { "type": "Feature", "properties": { "y": 40.4444815, "x": -79.9480449, "osmid": 3315428061, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9480449, 40.4444815 ] } }, { "type": "Feature", "properties": { "y": 40.4467139, "x": -79.9893098, "osmid": 6219360991, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9893098, 40.4467139 ] } }, @@ -10513,7 +10231,6 @@ { "type": "Feature", "properties": { "y": 40.4544208, "x": -80.0025355, "osmid": 3830180613, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025355, 40.4544208 ] } }, { "type": "Feature", "properties": { "y": 40.4548647, "x": -80.0023614, "osmid": 3830180614, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0023614, 40.4548647 ] } }, { "type": "Feature", "properties": { "y": 40.4556443, "x": -80.0025813, "osmid": 3830180617, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025813, 40.4556443 ] } }, -{ "type": "Feature", "properties": { "y": 40.4542828, "x": -80.0012573, "osmid": 5205520971, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0012573, 40.4542828 ] } }, { "type": "Feature", "properties": { "y": 40.4422207, "x": -79.946048, "osmid": 302967563, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.946048, 40.4422207 ] } }, { "type": "Feature", "properties": { "y": 40.4543453, "x": -80.0038256, "osmid": 3830180620, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0038256, 40.4543453 ] } }, { "type": "Feature", "properties": { "y": 40.4545667, "x": -80.0038956, "osmid": 3830180621, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0038956, 40.4545667 ] } }, @@ -10530,9 +10247,9 @@ { "type": "Feature", "properties": { "y": 40.4479425, "x": -80.0019666, "osmid": 5716536089, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0019666, 40.4479425 ] } }, { "type": "Feature", "properties": { "y": 40.4479926, "x": -80.0020716, "osmid": 5716536090, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0020716, 40.4479926 ] } }, { "type": "Feature", "properties": { "y": 40.4430989, "x": -79.9894918, "osmid": 871721752, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9894918, 40.4430989 ] } }, -{ "type": "Feature", "properties": { "y": 40.4545943, "x": -80.000967, "osmid": 5205520973, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.000967, 40.4545943 ] } }, -{ "type": "Feature", "properties": { "y": 40.4545842, "x": -80.0010421, "osmid": 5205520974, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010421, 40.4545842 ] } }, { "type": "Feature", "properties": { "y": 40.4534218, "x": -80.001833, "osmid": 3830180635, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001833, 40.4534218 ] } }, +{ "type": "Feature", "properties": { "y": 40.4540606, "x": -80.0020797, "osmid": 3830180631, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0020797, 40.4540606 ] } }, +{ "type": "Feature", "properties": { "y": 40.4540014, "x": -80.0024014, "osmid": 3830180638, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0024014, 40.4540014 ] } }, { "type": "Feature", "properties": { "y": 40.4566247, "x": -80.0000474, "osmid": 5716536095, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0000474, 40.4566247 ] } }, { "type": "Feature", "properties": { "y": 40.4540687, "x": -80.0020234, "osmid": 3830180639, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0020234, 40.4540687 ] } }, { "type": "Feature", "properties": { "y": 40.4431152, "x": -79.9892799, "osmid": 871721761, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9892799, 40.4431152 ] } }, @@ -10552,17 +10269,17 @@ { "type": "Feature", "properties": { "y": 40.4553275, "x": -80.0065812, "osmid": 3830180654, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0065812, 40.4553275 ] } }, { "type": "Feature", "properties": { "y": 40.4553467, "x": -80.0064659, "osmid": 3830180651, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0064659, 40.4553467 ] } }, { "type": "Feature", "properties": { "y": 40.4553081, "x": -80.0067044, "osmid": 3830180653, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0067044, 40.4553081 ] } }, -{ "type": "Feature", "properties": { "y": 40.4554211, "x": -80.0063604, "osmid": 3830180649, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063604, 40.4554211 ] } }, -{ "type": "Feature", "properties": { "y": 40.4551534, "x": -80.0064062, "osmid": 3830180655, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0064062, 40.4551534 ] } }, -{ "type": "Feature", "properties": { "y": 40.4547192, "x": -80.0010877, "osmid": 5205520978, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010877, 40.4547192 ] } }, { "type": "Feature", "properties": { "y": 40.4546419, "x": -80.0015367, "osmid": 5205520979, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0015367, 40.4546419 ] } }, -{ "type": "Feature", "properties": { "y": 40.4558745, "x": -80.0040201, "osmid": 3830180657, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0040201, 40.4558745 ] } }, +{ "type": "Feature", "properties": { "y": 40.4551534, "x": -80.0064062, "osmid": 3830180655, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0064062, 40.4551534 ] } }, +{ "type": "Feature", "properties": { "y": 40.4558813, "x": -80.0029149, "osmid": 3830180660, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0029149, 40.4558813 ] } }, +{ "type": "Feature", "properties": { "y": 40.4559433, "x": -80.0036656, "osmid": 3830180659, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0036656, 40.4559433 ] } }, +{ "type": "Feature", "properties": { "y": 40.4561333, "x": -80.0026179, "osmid": 3830180662, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0026179, 40.4561333 ] } }, { "type": "Feature", "properties": { "y": 40.4548743, "x": -80.002291, "osmid": 3830180663, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.002291, 40.4548743 ] } }, { "type": "Feature", "properties": { "y": 40.4533967, "x": -80.001717, "osmid": 3830180664, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001717, 40.4533967 ] } }, { "type": "Feature", "properties": { "y": 40.4534012, "x": -80.001839, "osmid": 3830180665, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001839, 40.4534012 ] } }, { "type": "Feature", "properties": { "y": 40.455887, "x": -80.0039378, "osmid": 3830180658, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0039378, 40.455887 ] } }, -{ "type": "Feature", "properties": { "y": 40.4561333, "x": -80.0026179, "osmid": 3830180662, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0026179, 40.4561333 ] } }, -{ "type": "Feature", "properties": { "y": 40.4559433, "x": -80.0036656, "osmid": 3830180659, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0036656, 40.4559433 ] } }, +{ "type": "Feature", "properties": { "y": 40.4556227, "x": -80.0039074, "osmid": 3830180667, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0039074, 40.4556227 ] } }, +{ "type": "Feature", "properties": { "y": 40.4554261, "x": -80.0036175, "osmid": 3830180668, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0036175, 40.4554261 ] } }, { "type": "Feature", "properties": { "y": 40.4554352, "x": -80.0048972, "osmid": 3830180669, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0048972, 40.4554352 ] } }, { "type": "Feature", "properties": { "y": 40.4556356, "x": -80.005244, "osmid": 3830180670, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005244, 40.4556356 ] } }, { "type": "Feature", "properties": { "y": 40.4550587, "x": -80.0054146, "osmid": 3830180671, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0054146, 40.4550587 ] } }, @@ -10571,7 +10288,6 @@ { "type": "Feature", "properties": { "y": 40.4553729, "x": -80.0052261, "osmid": 3830180674, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0052261, 40.4553729 ] } }, { "type": "Feature", "properties": { "y": 40.4540775, "x": -79.9832571, "osmid": 6058535747, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9832571, 40.4540775 ] } }, { "type": "Feature", "properties": { "y": 40.4550703, "x": -80.0053447, "osmid": 3830180676, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0053447, 40.4550703 ] } }, -{ "type": "Feature", "properties": { "y": 40.4554261, "x": -80.0036175, "osmid": 3830180668, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0036175, 40.4554261 ] } }, { "type": "Feature", "properties": { "y": 40.435497, "x": -79.949887, "osmid": 279669568, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.949887, 40.435497 ] } }, { "type": "Feature", "properties": { "y": 40.4443278, "x": -80.0345248, "osmid": 104459079, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0345248, 40.4443278 ] } }, { "type": "Feature", "properties": { "y": 40.4546792, "x": -79.9842895, "osmid": 6058535754, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9842895, 40.4546792 ] } }, @@ -10592,11 +10308,9 @@ { "type": "Feature", "properties": { "y": 40.4547082, "x": -79.9844739, "osmid": 6058535775, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9844739, 40.4547082 ] } }, { "type": "Feature", "properties": { "y": 40.4366372, "x": -79.9949007, "osmid": 3305302880, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9949007, 40.4366372 ] } }, { "type": "Feature", "properties": { "y": 40.4365067, "x": -79.9951095, "osmid": 3305302881, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9951095, 40.4365067 ] } }, -{ "type": "Feature", "properties": { "y": 40.4354533, "x": -79.9529535, "osmid": 7134800738, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9529535, 40.4354533 ] } }, { "type": "Feature", "properties": { "y": 40.4363875, "x": -79.9950443, "osmid": 3305302883, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9950443, 40.4363875 ] } }, { "type": "Feature", "properties": { "y": 40.4349349, "x": -79.9530661, "osmid": 7134800740, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9530661, 40.4349349 ] } }, { "type": "Feature", "properties": { "y": 40.4348613, "x": -79.9526073, "osmid": 7134800741, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9526073, 40.4348613 ] } }, -{ "type": "Feature", "properties": { "y": 40.4355435, "x": -79.9538992, "osmid": 7134800735, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9538992, 40.4355435 ] } }, { "type": "Feature", "properties": { "y": 40.4540115, "x": -79.9526063, "osmid": 105868141, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9526063, 40.4540115 ] } }, { "type": "Feature", "properties": { "y": 40.4535468, "x": -80.0049428, "osmid": 5407140718, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0049428, 40.4535468 ] } }, { "type": "Feature", "properties": { "y": 40.453772, "x": -79.9856702, "osmid": 6058535791, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9856702, 40.453772 ] } }, @@ -10649,9 +10363,9 @@ { "type": "Feature", "properties": { "y": 40.4415765, "x": -79.9998674, "osmid": 6337883053, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9998674, 40.4415765 ] } }, { "type": "Feature", "properties": { "y": 40.4467009, "x": -79.9916859, "osmid": 6114012079, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9916859, 40.4467009 ] } }, { "type": "Feature", "properties": { "y": 40.4422612, "x": -80.0005238, "osmid": 6337883056, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0005238, 40.4422612 ] } }, +{ "type": "Feature", "properties": { "y": 40.4466084, "x": -79.9915856, "osmid": 6114012080, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9915856, 40.4466084 ] } }, { "type": "Feature", "properties": { "y": 40.4578332, "x": -80.0043903, "osmid": 5255097264, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0043903, 40.4578332 ] } }, { "type": "Feature", "properties": { "y": 40.4580978, "x": -80.0044664, "osmid": 5255097265, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0044664, 40.4580978 ] } }, -{ "type": "Feature", "properties": { "y": 40.4466084, "x": -79.9915856, "osmid": 6114012080, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9915856, 40.4466084 ] } }, { "type": "Feature", "properties": { "y": 40.4578399, "x": -80.0043361, "osmid": 5255097266, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0043361, 40.4578399 ] } }, { "type": "Feature", "properties": { "y": 40.459287, "x": -80.0309878, "osmid": 104557506, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0309878, 40.459287 ] } }, { "type": "Feature", "properties": { "y": 40.4577533, "x": -79.9735926, "osmid": 6080691195, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9735926, 40.4577533 ] } }, @@ -10688,18 +10402,10 @@ { "type": "Feature", "properties": { "y": 40.4592672, "x": -79.9575311, "osmid": 104885332, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9575311, 40.4592672 ] } }, { "type": "Feature", "properties": { "y": 40.4585439, "x": -80.0092397, "osmid": 105802839, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0092397, 40.4585439 ] } }, { "type": "Feature", "properties": { "y": 40.4457543, "x": -80.0117692, "osmid": 5388463225, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0117692, 40.4457543 ] } }, -{ "type": "Feature", "properties": { "y": 40.4557349, "x": -80.0173405, "osmid": 7171140730, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0173405, 40.4557349 ] } }, { "type": "Feature", "properties": { "y": 40.4457744, "x": -80.0116567, "osmid": 5388463227, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0116567, 40.4457744 ] } }, -{ "type": "Feature", "properties": { "y": 40.4560139, "x": -80.0175007, "osmid": 7171140732, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0175007, 40.4560139 ] } }, -{ "type": "Feature", "properties": { "y": 40.4557162, "x": -80.0174384, "osmid": 7171140734, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0174384, 40.4557162 ] } }, -{ "type": "Feature", "properties": { "y": 40.4582822, "x": -80.02234, "osmid": 7171140739, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.02234, 40.4582822 ] } }, { "type": "Feature", "properties": { "y": 40.441565, "x": -79.9601901, "osmid": 6535933063, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9601901, 40.441565 ] } }, { "type": "Feature", "properties": { "y": 40.4413874, "x": -79.9603348, "osmid": 6535933064, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9603348, 40.4413874 ] } }, -{ "type": "Feature", "properties": { "y": 40.4586056, "x": -80.0226547, "osmid": 7171140745, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0226547, 40.4586056 ] } }, -{ "type": "Feature", "properties": { "y": 40.4586162, "x": -80.0228223, "osmid": 7171140746, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0228223, 40.4586162 ] } }, { "type": "Feature", "properties": { "y": 40.4555598, "x": -79.9396799, "osmid": 279669909, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9396799, 40.4555598 ] } }, -{ "type": "Feature", "properties": { "y": 40.4564673, "x": -80.0179755, "osmid": 7171140758, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0179755, 40.4564673 ] } }, -{ "type": "Feature", "properties": { "y": 40.4589395, "x": -80.0191516, "osmid": 7171140763, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0191516, 40.4589395 ] } }, { "type": "Feature", "properties": { "y": 40.4275873, "x": -79.9897687, "osmid": 4605832347, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9897687, 40.4275873 ] } }, { "type": "Feature", "properties": { "y": 40.4276025, "x": -79.9885466, "osmid": 4605832348, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9885466, 40.4276025 ] } }, { "type": "Feature", "properties": { "y": 40.4553265, "x": -79.9404704, "osmid": 279669919, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9404704, 40.4553265 ] } }, @@ -10742,7 +10448,6 @@ { "type": "Feature", "properties": { "y": 40.4477782, "x": -80.0205935, "osmid": 5434305792, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0205935, 40.4477782 ] } }, { "type": "Feature", "properties": { "y": 40.4466135, "x": -79.9860829, "osmid": 4782091521, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9860829, 40.4466135 ] } }, { "type": "Feature", "properties": { "y": 40.4382747, "x": -79.9883118, "osmid": 104852739, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9883118, 40.4382747 ] } }, -{ "type": "Feature", "properties": { "y": 40.4308787, "x": -79.9937001, "osmid": 7014247683, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9937001, 40.4308787 ] } }, { "type": "Feature", "properties": { "y": 40.4467554, "x": -79.98582, "osmid": 4782091525, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.98582, 40.4467554 ] } }, { "type": "Feature", "properties": { "y": 40.4476789, "x": -80.0201885, "osmid": 5434305799, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0201885, 40.4476789 ] } }, { "type": "Feature", "properties": { "y": 40.4568511, "x": -80.0070815, "osmid": 107572487, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0070815, 40.4568511 ] } }, @@ -10822,15 +10527,15 @@ { "type": "Feature", "properties": { "y": 40.4448375, "x": -79.9938778, "osmid": 5409107454, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9938778, 40.4448375 ] } }, { "type": "Feature", "properties": { "y": 40.428945, "x": -79.956701, "osmid": 2619338247, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.956701, 40.428945 ] } }, { "type": "Feature", "properties": { "y": 40.4373652, "x": -79.9523142, "osmid": 104853006, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9523142, 40.4373652 ] } }, -{ "type": "Feature", "properties": { "y": 40.4582113, "x": -80.0076425, "osmid": 5336034833, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0076425, 40.4582113 ] } }, { "type": "Feature", "properties": { "y": 40.4333877, "x": -80.0033342, "osmid": 1508797969, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0033342, 40.4333877 ] } }, +{ "type": "Feature", "properties": { "y": 40.4540298, "x": -79.9999631, "osmid": 5205487122, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9999631, 40.4540298 ] } }, { "type": "Feature", "properties": { "y": 40.4544776, "x": -79.9998847, "osmid": 5205487123, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9998847, 40.4544776 ] } }, { "type": "Feature", "properties": { "y": 40.4544086, "x": -79.9998579, "osmid": 5205487124, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9998579, 40.4544086 ] } }, { "type": "Feature", "properties": { "y": 40.4540728, "x": -79.9997363, "osmid": 5205487125, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9997363, 40.4540728 ] } }, { "type": "Feature", "properties": { "y": 40.4545224, "x": -79.9996485, "osmid": 5205487126, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9996485, 40.4545224 ] } }, -{ "type": "Feature", "properties": { "y": 40.4540298, "x": -79.9999631, "osmid": 5205487122, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9999631, 40.4540298 ] } }, { "type": "Feature", "properties": { "y": 40.4544517, "x": -79.9996266, "osmid": 5205487127, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9996266, 40.4544517 ] } }, { "type": "Feature", "properties": { "y": 40.454114, "x": -79.9995193, "osmid": 5205487128, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9995193, 40.454114 ] } }, +{ "type": "Feature", "properties": { "y": 40.4582113, "x": -80.0076425, "osmid": 5336034833, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0076425, 40.4582113 ] } }, { "type": "Feature", "properties": { "y": 40.4335929, "x": -80.003321, "osmid": 1508797980, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.003321, 40.4335929 ] } }, { "type": "Feature", "properties": { "y": 40.4334198, "x": -80.0034144, "osmid": 1508797983, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0034144, 40.4334198 ] } }, { "type": "Feature", "properties": { "y": 40.4558785, "x": -80.0014694, "osmid": 6466268705, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0014694, 40.4558785 ] } }, @@ -10873,7 +10578,6 @@ { "type": "Feature", "properties": { "y": 40.4435384, "x": -79.9939051, "osmid": 6221328049, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9939051, 40.4435384 ] } }, { "type": "Feature", "properties": { "y": 40.4390417, "x": -79.9520061, "osmid": 104787632, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9520061, 40.4390417 ] } }, { "type": "Feature", "properties": { "y": 40.4327225, "x": -80.0032224, "osmid": 539750068, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0032224, 40.4327225 ] } }, -{ "type": "Feature", "properties": { "y": 40.4468267, "x": -79.9400875, "osmid": 104361652, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9400875, 40.4468267 ] } }, { "type": "Feature", "properties": { "y": 40.4491467, "x": -79.9852946, "osmid": 6218575544, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9852946, 40.4491467 ] } }, { "type": "Feature", "properties": { "y": 40.4511292, "x": -79.9502848, "osmid": 6531870392, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9502848, 40.4511292 ] } }, { "type": "Feature", "properties": { "y": 40.4306183, "x": -80.0063761, "osmid": 104853178, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063761, 40.4306183 ] } }, @@ -10916,32 +10620,29 @@ { "type": "Feature", "properties": { "y": 40.4587857, "x": -80.0234519, "osmid": 105115534, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0234519, 40.4587857 ] } }, { "type": "Feature", "properties": { "y": 40.4318969, "x": -79.9330512, "osmid": 1383427983, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9330512, 40.4318969 ] } }, { "type": "Feature", "properties": { "y": 40.4547866, "x": -80.024904, "osmid": 106033044, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.024904, 40.4547866 ] } }, -{ "type": "Feature", "properties": { "y": 40.4344611, "x": -79.9575327, "osmid": 3103551385, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9575327, 40.4344611 ] } }, { "type": "Feature", "properties": { "y": 40.4557177, "x": -80.0252076, "osmid": 106033051, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0252076, 40.4557177 ] } }, { "type": "Feature", "properties": { "y": 40.4531908, "x": -79.9926881, "osmid": 105836443, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9926881, 40.4531908 ] } }, { "type": "Feature", "properties": { "y": 40.4270689, "x": -80.0054926, "osmid": 104689564, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0054926, 40.4270689 ] } }, { "type": "Feature", "properties": { "y": 40.4561785, "x": -80.0253578, "osmid": 106033056, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0253578, 40.4561785 ] } }, { "type": "Feature", "properties": { "y": 40.4454106, "x": -80.0183496, "osmid": 5182418849, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0183496, 40.4454106 ] } }, { "type": "Feature", "properties": { "y": 40.441538, "x": -79.9402276, "osmid": 2716677222, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9402276, 40.441538 ] } }, -{ "type": "Feature", "properties": { "y": 40.4398811, "x": -79.9361828, "osmid": 2716677223, "highway": "turning_circle", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9361828, 40.4398811 ] } }, { "type": "Feature", "properties": { "y": 40.4255061, "x": -80.0050991, "osmid": 104689578, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0050991, 40.4255061 ] } }, { "type": "Feature", "properties": { "y": 40.4528927, "x": -79.9916519, "osmid": 3590156204, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9916519, 40.4528927 ] } }, { "type": "Feature", "properties": { "y": 40.4531714, "x": -79.992032, "osmid": 3590156205, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.992032, 40.4531714 ] } }, { "type": "Feature", "properties": { "y": 40.4541892, "x": -79.9913815, "osmid": 105836462, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9913815, 40.4541892 ] } }, { "type": "Feature", "properties": { "y": 40.4534275, "x": -79.9923783, "osmid": 3590156206, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9923783, 40.4534275 ] } }, { "type": "Feature", "properties": { "y": 40.452782, "x": -80.0045844, "osmid": 5238878127, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0045844, 40.452782 ] } }, -{ "type": "Feature", "properties": { "y": 40.4587635, "x": -79.9639128, "osmid": 1454895021, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9639128, 40.4587635 ] } }, { "type": "Feature", "properties": { "y": 40.4497342, "x": -80.004835, "osmid": 5247463358, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.004835, 40.4497342 ] } }, { "type": "Feature", "properties": { "y": 40.4319726, "x": -79.9330552, "osmid": 1383428032, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9330552, 40.4319726 ] } }, { "type": "Feature", "properties": { "y": 40.4391999, "x": -80.0061002, "osmid": 6047199180, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0061002, 40.4391999 ] } }, { "type": "Feature", "properties": { "y": 40.4393013, "x": -80.0060435, "osmid": 6047199182, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0060435, 40.4393013 ] } }, { "type": "Feature", "properties": { "y": 40.439269, "x": -80.006214, "osmid": 6047199183, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.006214, 40.439269 ] } }, { "type": "Feature", "properties": { "y": 40.4283025, "x": -80.0151113, "osmid": 104787922, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0151113, 40.4283025 ] } }, -{ "type": "Feature", "properties": { "y": 40.4495476, "x": -80.0072141, "osmid": 5247463378, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0072141, 40.4495476 ] } }, -{ "type": "Feature", "properties": { "y": 40.4495788, "x": -80.0059082, "osmid": 5247463380, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0059082, 40.4495788 ] } }, { "type": "Feature", "properties": { "y": 40.4499296, "x": -80.0060082, "osmid": 5247463379, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0060082, 40.4499296 ] } }, -{ "type": "Feature", "properties": { "y": 40.4448061, "x": -79.9862872, "osmid": 7794880466, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9862872, 40.4448061 ] } }, +{ "type": "Feature", "properties": { "y": 40.4495788, "x": -80.0059082, "osmid": 5247463380, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0059082, 40.4495788 ] } }, +{ "type": "Feature", "properties": { "y": 40.4495476, "x": -80.0072141, "osmid": 5247463378, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0072141, 40.4495476 ] } }, { "type": "Feature", "properties": { "y": 40.4448457, "x": -79.9863138, "osmid": 7794880467, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9863138, 40.4448457 ] } }, +{ "type": "Feature", "properties": { "y": 40.4448061, "x": -79.9862872, "osmid": 7794880466, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9862872, 40.4448061 ] } }, { "type": "Feature", "properties": { "y": 40.4459477, "x": -80.0179377, "osmid": 5182418909, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0179377, 40.4459477 ] } }, { "type": "Feature", "properties": { "y": 40.4499134, "x": -80.0066324, "osmid": 5247463391, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0066324, 40.4499134 ] } }, { "type": "Feature", "properties": { "y": 40.4272028, "x": -80.0158119, "osmid": 104787935, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0158119, 40.4272028 ] } }, @@ -11005,26 +10706,18 @@ { "type": "Feature", "properties": { "y": 40.44326, "x": -79.9594374, "osmid": 6535934205, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9594374, 40.44326 ] } }, { "type": "Feature", "properties": { "y": 40.4428288, "x": -79.9592705, "osmid": 6535934206, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9592705, 40.4428288 ] } }, { "type": "Feature", "properties": { "y": 40.4430043, "x": -79.9592975, "osmid": 6535934208, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9592975, 40.4430043 ] } }, -{ "type": "Feature", "properties": { "y": 40.4294087, "x": -79.9907128, "osmid": 7013691649, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9907128, 40.4294087 ] } }, -{ "type": "Feature", "properties": { "y": 40.4300705, "x": -79.9898561, "osmid": 7013691652, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9898561, 40.4300705 ] } }, -{ "type": "Feature", "properties": { "y": 40.4303474, "x": -79.9822714, "osmid": 1025863940, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9822714, 40.4303474 ] } }, -{ "type": "Feature", "properties": { "y": 40.4310877, "x": -79.9821992, "osmid": 1025863941, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9821992, 40.4310877 ] } }, { "type": "Feature", "properties": { "y": 40.4294547, "x": -79.9823172, "osmid": 1025863942, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9823172, 40.4294547 ] } }, -{ "type": "Feature", "properties": { "y": 40.429906, "x": -79.9908837, "osmid": 7013691656, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9908837, 40.429906 ] } }, { "type": "Feature", "properties": { "y": 40.4301586, "x": -79.9822985, "osmid": 1025863944, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9822985, 40.4301586 ] } }, -{ "type": "Feature", "properties": { "y": 40.4519607, "x": -80.0165288, "osmid": 105738506, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0165288, 40.4519607 ] } }, { "type": "Feature", "properties": { "y": 40.4428731, "x": -79.9792762, "osmid": 104657161, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9792762, 40.4428731 ] } }, +{ "type": "Feature", "properties": { "y": 40.4519607, "x": -80.0165288, "osmid": 105738506, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0165288, 40.4519607 ] } }, { "type": "Feature", "properties": { "y": 40.4301503, "x": -79.9834057, "osmid": 104591626, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9834057, 40.4301503 ] } }, -{ "type": "Feature", "properties": { "y": 40.4300681, "x": -79.989993, "osmid": 7013691661, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.989993, 40.4300681 ] } }, { "type": "Feature", "properties": { "y": 40.452278, "x": -79.9643605, "osmid": 104526094, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9643605, 40.452278 ] } }, { "type": "Feature", "properties": { "y": 40.4438776, "x": -79.9800028, "osmid": 104657166, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9800028, 40.4438776 ] } }, -{ "type": "Feature", "properties": { "y": 40.4297203, "x": -79.989842, "osmid": 7013691664, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.989842, 40.4297203 ] } }, { "type": "Feature", "properties": { "y": 40.4302138, "x": -79.9818983, "osmid": 1025863952, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9818983, 40.4302138 ] } }, { "type": "Feature", "properties": { "y": 40.4515176, "x": -80.0189177, "osmid": 105738515, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0189177, 40.4515176 ] } }, { "type": "Feature", "properties": { "y": 40.4294607, "x": -79.9833958, "osmid": 104591636, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9833958, 40.4294607 ] } }, { "type": "Feature", "properties": { "y": 40.4513027, "x": -80.0200858, "osmid": 105738520, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0200858, 40.4513027 ] } }, { "type": "Feature", "properties": { "y": 40.4541969, "x": -79.9614921, "osmid": 104526106, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9614921, 40.4541969 ] } }, -{ "type": "Feature", "properties": { "y": 40.4297245, "x": -79.9896583, "osmid": 7013691674, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9896583, 40.4297245 ] } }, { "type": "Feature", "properties": { "y": 40.4288276, "x": -79.9834156, "osmid": 104591645, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9834156, 40.4288276 ] } }, { "type": "Feature", "properties": { "y": 40.4506613, "x": -80.0235725, "osmid": 105738528, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0235725, 40.4506613 ] } }, { "type": "Feature", "properties": { "y": 40.4479796, "x": -79.9624116, "osmid": 2978672931, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9624116, 40.4479796 ] } }, @@ -11075,7 +10768,6 @@ { "type": "Feature", "properties": { "y": 40.4498017, "x": -79.9335942, "osmid": 104919434, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9335942, 40.4498017 ] } }, { "type": "Feature", "properties": { "y": 40.4580778, "x": -80.011693, "osmid": 105902482, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.011693, 40.4580778 ] } }, { "type": "Feature", "properties": { "y": 40.4307257, "x": -79.9727603, "osmid": 1025864082, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9727603, 40.4307257 ] } }, -{ "type": "Feature", "properties": { "y": 40.4310401, "x": -79.9969753, "osmid": 3597267352, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9969753, 40.4310401 ] } }, { "type": "Feature", "properties": { "y": 40.4584382, "x": -79.9473523, "osmid": 1658188187, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9473523, 40.4584382 ] } }, { "type": "Feature", "properties": { "y": 40.4516769, "x": -80.001251, "osmid": 5227311517, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.001251, 40.4516769 ] } }, { "type": "Feature", "properties": { "y": 40.4293368, "x": -79.9423825, "osmid": 104681021, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9423825, 40.4293368 ] } }, @@ -11103,7 +10795,7 @@ { "type": "Feature", "properties": { "y": 40.4569977, "x": -80.004722, "osmid": 5211582982, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.004722, 40.4569977 ] } }, { "type": "Feature", "properties": { "y": 40.4540477, "x": -79.9991231, "osmid": 6466236935, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9991231, 40.4540477 ] } }, { "type": "Feature", "properties": { "y": 40.4429057, "x": -79.9945274, "osmid": 6227325448, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9945274, 40.4429057 ] } }, -{ "type": "Feature", "properties": { "y": 40.4569682, "x": -80.0048774, "osmid": 5211582984, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0048774, 40.4569682 ] } }, +{ "type": "Feature", "properties": { "y": 40.4258673, "x": -79.9949941, "osmid": 3545788935, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9949941, 40.4258673 ] } }, { "type": "Feature", "properties": { "y": 40.4430705, "x": -79.994498, "osmid": 6227325450, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.994498, 40.4430705 ] } }, { "type": "Feature", "properties": { "y": 40.442927, "x": -79.9945881, "osmid": 6227325451, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9945881, 40.442927 ] } }, { "type": "Feature", "properties": { "y": 40.4410272, "x": -79.9938685, "osmid": 106099212, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9938685, 40.4410272 ] } }, @@ -11111,11 +10803,11 @@ { "type": "Feature", "properties": { "y": 40.4575369, "x": -80.0083914, "osmid": 5336789518, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083914, 40.4575369 ] } }, { "type": "Feature", "properties": { "y": 40.4576302, "x": -80.0078886, "osmid": 5336789519, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0078886, 40.4576302 ] } }, { "type": "Feature", "properties": { "y": 40.4575841, "x": -80.0078748, "osmid": 5336789520, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0078748, 40.4575841 ] } }, +{ "type": "Feature", "properties": { "y": 40.4259643, "x": -79.9950418, "osmid": 3545788936, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9950418, 40.4259643 ] } }, +{ "type": "Feature", "properties": { "y": 40.4266658, "x": -79.9969056, "osmid": 3545788941, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9969056, 40.4266658 ] } }, +{ "type": "Feature", "properties": { "y": 40.4260682, "x": -79.9957233, "osmid": 3545788940, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9957233, 40.4260682 ] } }, { "type": "Feature", "properties": { "y": 40.4573556, "x": -80.0048019, "osmid": 5211582990, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0048019, 40.4573556 ] } }, -{ "type": "Feature", "properties": { "y": 40.4570164, "x": -80.0048304, "osmid": 5211582985, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0048304, 40.4570164 ] } }, { "type": "Feature", "properties": { "y": 40.4569379, "x": -80.0048072, "osmid": 5211582988, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0048072, 40.4569379 ] } }, -{ "type": "Feature", "properties": { "y": 40.4569609, "x": -80.0047095, "osmid": 5211582987, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0047095, 40.4569609 ] } }, -{ "type": "Feature", "properties": { "y": 40.4266658, "x": -79.9969056, "osmid": 3545788941, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9969056, 40.4266658 ] } }, { "type": "Feature", "properties": { "y": 40.4469071, "x": -79.9893424, "osmid": 4546228759, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9893424, 40.4469071 ] } }, { "type": "Feature", "properties": { "y": 40.4428911, "x": -79.994613, "osmid": 6227325465, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.994613, 40.4428911 ] } }, { "type": "Feature", "properties": { "y": 40.4429515, "x": -79.9947784, "osmid": 6227325466, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9947784, 40.4429515 ] } }, @@ -11127,33 +10819,33 @@ { "type": "Feature", "properties": { "y": 40.442925, "x": -79.9947081, "osmid": 6227325481, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9947081, 40.442925 ] } }, { "type": "Feature", "properties": { "y": 40.4336398, "x": -79.9617459, "osmid": 2715152939, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9617459, 40.4336398 ] } }, { "type": "Feature", "properties": { "y": 40.4290376, "x": -79.9988858, "osmid": 357626415, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9988858, 40.4290376 ] } }, -{ "type": "Feature", "properties": { "y": 40.4542549, "x": -80.0014099, "osmid": 5205520944, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0014099, 40.4542549 ] } }, { "type": "Feature", "properties": { "y": 40.4541718, "x": -80.0018592, "osmid": 5205520943, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018592, 40.4541718 ] } }, +{ "type": "Feature", "properties": { "y": 40.4542549, "x": -80.0014099, "osmid": 5205520944, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0014099, 40.4542549 ] } }, { "type": "Feature", "properties": { "y": 40.4549283, "x": -80.0016305, "osmid": 5205520947, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0016305, 40.4549283 ] } }, { "type": "Feature", "properties": { "y": 40.4541843, "x": -80.0018632, "osmid": 5205520950, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018632, 40.4541843 ] } }, { "type": "Feature", "properties": { "y": 40.4364736, "x": -79.9651598, "osmid": 2715152961, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9651598, 40.4364736 ] } }, { "type": "Feature", "properties": { "y": 40.4560804, "x": -80.0069486, "osmid": 5336003139, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0069486, 40.4560804 ] } }, { "type": "Feature", "properties": { "y": 40.4358849, "x": -79.9656399, "osmid": 2715152965, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9656399, 40.4358849 ] } }, { "type": "Feature", "properties": { "y": 40.4542215, "x": -80.0012356, "osmid": 5205520970, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0012356, 40.4542215 ] } }, -{ "type": "Feature", "properties": { "y": 40.4568291, "x": -80.0072013, "osmid": 5336003146, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0072013, 40.4568291 ] } }, +{ "type": "Feature", "properties": { "y": 40.4542828, "x": -80.0012573, "osmid": 5205520971, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0012573, 40.4542828 ] } }, { "type": "Feature", "properties": { "y": 40.452298, "x": -80.0141038, "osmid": 6046773836, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0141038, 40.452298 ] } }, -{ "type": "Feature", "properties": { "y": 40.4566797, "x": -80.0070249, "osmid": 5336003149, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0070249, 40.4566797 ] } }, -{ "type": "Feature", "properties": { "y": 40.4566972, "x": -80.0069122, "osmid": 5336003150, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0069122, 40.4566972 ] } }, -{ "type": "Feature", "properties": { "y": 40.4483658, "x": -80.0037289, "osmid": 4616974926, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0037289, 40.4483658 ] } }, { "type": "Feature", "properties": { "y": 40.4476501, "x": -80.0034939, "osmid": 4616974925, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0034939, 40.4476501 ] } }, -{ "type": "Feature", "properties": { "y": 40.4547324, "x": -80.0010122, "osmid": 5205520977, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010122, 40.4547324 ] } }, +{ "type": "Feature", "properties": { "y": 40.4483658, "x": -80.0037289, "osmid": 4616974926, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0037289, 40.4483658 ] } }, +{ "type": "Feature", "properties": { "y": 40.4545943, "x": -80.000967, "osmid": 5205520973, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.000967, 40.4545943 ] } }, { "type": "Feature", "properties": { "y": 40.4515498, "x": -80.0138516, "osmid": 6046773840, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0138516, 40.4515498 ] } }, { "type": "Feature", "properties": { "y": 40.4516884, "x": -80.0138967, "osmid": 6046773841, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0138967, 40.4516884 ] } }, -{ "type": "Feature", "properties": { "y": 40.4566594, "x": -80.0071465, "osmid": 5336003148, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0071465, 40.4566594 ] } }, +{ "type": "Feature", "properties": { "y": 40.4547324, "x": -80.0010122, "osmid": 5205520977, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010122, 40.4547324 ] } }, +{ "type": "Feature", "properties": { "y": 40.4545842, "x": -80.0010421, "osmid": 5205520974, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010421, 40.4545842 ] } }, +{ "type": "Feature", "properties": { "y": 40.436783, "x": -79.9626886, "osmid": 6531871314, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9626886, 40.436783 ] } }, { "type": "Feature", "properties": { "y": 40.4516604, "x": -80.0140443, "osmid": 6046773845, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0140443, 40.4516604 ] } }, -{ "type": "Feature", "properties": { "y": 40.4379119, "x": -80.019335, "osmid": 7588311632, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.019335, 40.4379119 ] } }, -{ "type": "Feature", "properties": { "y": 40.4576198, "x": -80.0074591, "osmid": 5336003159, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0074591, 40.4576198 ] } }, -{ "type": "Feature", "properties": { "y": 40.4516213, "x": -80.0142493, "osmid": 6046773847, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0142493, 40.4516213 ] } }, { "type": "Feature", "properties": { "y": 40.4521896, "x": -80.0144594, "osmid": 6046773846, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0144594, 40.4521896 ] } }, +{ "type": "Feature", "properties": { "y": 40.4516213, "x": -80.0142493, "osmid": 6046773847, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0142493, 40.4516213 ] } }, +{ "type": "Feature", "properties": { "y": 40.4547192, "x": -80.0010877, "osmid": 5205520978, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010877, 40.4547192 ] } }, +{ "type": "Feature", "properties": { "y": 40.4372827, "x": -79.9713602, "osmid": 2715152985, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9713602, 40.4372827 ] } }, +{ "type": "Feature", "properties": { "y": 40.4576198, "x": -80.0074591, "osmid": 5336003159, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0074591, 40.4576198 ] } }, { "type": "Feature", "properties": { "y": 40.4576749, "x": -80.0073933, "osmid": 5336003162, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0073933, 40.4576749 ] } }, -{ "type": "Feature", "properties": { "y": 40.4575032, "x": -80.0072928, "osmid": 5336003163, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0072928, 40.4575032 ] } }, { "type": "Feature", "properties": { "y": 40.4385093, "x": -79.9938785, "osmid": 105804380, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9938785, 40.4385093 ] } }, -{ "type": "Feature", "properties": { "y": 40.4372827, "x": -79.9713602, "osmid": 2715152985, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9713602, 40.4372827 ] } }, +{ "type": "Feature", "properties": { "y": 40.4575032, "x": -80.0072928, "osmid": 5336003163, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0072928, 40.4575032 ] } }, { "type": "Feature", "properties": { "y": 40.4572247, "x": -80.0081912, "osmid": 5336003180, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0081912, 40.4572247 ] } }, { "type": "Feature", "properties": { "y": 40.4572364, "x": -80.0081267, "osmid": 5336003181, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0081267, 40.4572364 ] } }, { "type": "Feature", "properties": { "y": 40.4270608, "x": -80.0073742, "osmid": 1025864300, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0073742, 40.4270608 ] } }, @@ -11167,8 +10859,6 @@ { "type": "Feature", "properties": { "y": 40.4491637, "x": -80.0127156, "osmid": 4436161156, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0127156, 40.4491637 ] } }, { "type": "Feature", "properties": { "y": 40.4491867, "x": -80.0124914, "osmid": 4436161157, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0124914, 40.4491867 ] } }, { "type": "Feature", "properties": { "y": 40.4265145, "x": -79.9460984, "osmid": 3069833866, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9460984, 40.4265145 ] } }, -{ "type": "Feature", "properties": { "y": 40.4315721, "x": -80.0104611, "osmid": 1025864340, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0104611, 40.4315721 ] } }, -{ "type": "Feature", "properties": { "y": 40.4317424, "x": -80.0113305, "osmid": 1025864343, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0113305, 40.4317424 ] } }, { "type": "Feature", "properties": { "y": 40.4298778, "x": -80.017715, "osmid": 1025864348, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.017715, 40.4298778 ] } }, { "type": "Feature", "properties": { "y": 40.4591955, "x": -80.0099567, "osmid": 1252520624, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0099567, 40.4591955 ] } }, { "type": "Feature", "properties": { "y": 40.4300319, "x": -80.0178677, "osmid": 1025864369, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0178677, 40.4300319 ] } }, @@ -11184,7 +10874,6 @@ { "type": "Feature", "properties": { "y": 40.4496917, "x": -79.9853223, "osmid": 6076527311, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9853223, 40.4496917 ] } }, { "type": "Feature", "properties": { "y": 40.4531656, "x": -79.9990015, "osmid": 1252520656, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9990015, 40.4531656 ] } }, { "type": "Feature", "properties": { "y": 40.4498164, "x": -79.9854558, "osmid": 6076527312, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9854558, 40.4498164 ] } }, -{ "type": "Feature", "properties": { "y": 40.4281048, "x": -80.0184197, "osmid": 1025864402, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0184197, 40.4281048 ] } }, { "type": "Feature", "properties": { "y": 40.4376219, "x": -79.9841228, "osmid": 5308510931, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9841228, 40.4376219 ] } }, { "type": "Feature", "properties": { "y": 40.4393661, "x": -79.9729751, "osmid": 5385646804, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9729751, 40.4393661 ] } }, { "type": "Feature", "properties": { "y": 40.4375657, "x": -79.9842158, "osmid": 5308510939, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9842158, 40.4375657 ] } }, @@ -11226,20 +10915,18 @@ { "type": "Feature", "properties": { "y": 40.4504181, "x": -79.9846153, "osmid": 6076527381, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9846153, 40.4504181 ] } }, { "type": "Feature", "properties": { "y": 40.4496881, "x": -79.986126, "osmid": 6076527382, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.986126, 40.4496881 ] } }, { "type": "Feature", "properties": { "y": 40.4496312, "x": -79.9860794, "osmid": 6076527383, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9860794, 40.4496312 ] } }, -{ "type": "Feature", "properties": { "y": 40.4519673, "x": -79.9993351, "osmid": 1252520727, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9993351, 40.4519673 ] } }, { "type": "Feature", "properties": { "y": 40.4497565, "x": -79.9860148, "osmid": 6076527384, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9860148, 40.4497565 ] } }, +{ "type": "Feature", "properties": { "y": 40.4519673, "x": -79.9993351, "osmid": 1252520727, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9993351, 40.4519673 ] } }, { "type": "Feature", "properties": { "y": 40.4578725, "x": -79.9760944, "osmid": 6066578125, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9760944, 40.4578725 ] } }, { "type": "Feature", "properties": { "y": 40.4550643, "x": -79.9909616, "osmid": 1252520732, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9909616, 40.4550643 ] } }, { "type": "Feature", "properties": { "y": 40.4579011, "x": -79.9761326, "osmid": 6066578126, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9761326, 40.4579011 ] } }, { "type": "Feature", "properties": { "y": 40.4512876, "x": -79.9991125, "osmid": 1252520734, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9991125, 40.4512876 ] } }, -{ "type": "Feature", "properties": { "y": 40.4527676, "x": -80.0011, "osmid": 1252520737, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0011, 40.4527676 ] } }, { "type": "Feature", "properties": { "y": 40.4358643, "x": -80.0145968, "osmid": 104919842, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0145968, 40.4358643 ] } }, { "type": "Feature", "properties": { "y": 40.4458901, "x": -80.0195079, "osmid": 3166237476, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0195079, 40.4458901 ] } }, { "type": "Feature", "properties": { "y": 40.4562143, "x": -80.0050404, "osmid": 1252520741, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0050404, 40.4562143 ] } }, { "type": "Feature", "properties": { "y": 40.4574853, "x": -80.008417, "osmid": 1252520746, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008417, 40.4574853 ] } }, -{ "type": "Feature", "properties": { "y": 40.4522286, "x": -80.0009234, "osmid": 1252520749, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0009234, 40.4522286 ] } }, -{ "type": "Feature", "properties": { "y": 40.4594234, "x": -80.0182359, "osmid": 1252520750, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0182359, 40.4594234 ] } }, { "type": "Feature", "properties": { "y": 40.4343872, "x": -80.0149011, "osmid": 104919853, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0149011, 40.4343872 ] } }, +{ "type": "Feature", "properties": { "y": 40.4594234, "x": -80.0182359, "osmid": 1252520750, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0182359, 40.4594234 ] } }, { "type": "Feature", "properties": { "y": 40.4562833, "x": -80.0046699, "osmid": 1252520751, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0046699, 40.4562833 ] } }, { "type": "Feature", "properties": { "y": 40.4454374, "x": -79.9519597, "osmid": 1356002093, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9519597, 40.4454374 ] } }, { "type": "Feature", "properties": { "y": 40.4451261, "x": -79.952043, "osmid": 1356002096, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.952043, 40.4451261 ] } }, @@ -11295,9 +10982,7 @@ { "type": "Feature", "properties": { "y": 40.442408, "x": -79.9530992, "osmid": 7835808662, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9530992, 40.442408 ] } }, { "type": "Feature", "properties": { "y": 40.4516363, "x": -79.979394, "osmid": 104461207, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.979394, 40.4516363 ] } }, { "type": "Feature", "properties": { "y": 40.441961, "x": -79.9527126, "osmid": 7835808663, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9527126, 40.441961 ] } }, -{ "type": "Feature", "properties": { "y": 40.4542646, "x": -79.993962, "osmid": 7013462947, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.993962, 40.4542646 ] } }, { "type": "Feature", "properties": { "y": 40.4434272, "x": -79.9522307, "osmid": 7835808677, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9522307, 40.4434272 ] } }, -{ "type": "Feature", "properties": { "y": 40.4545129, "x": -79.993747, "osmid": 7013462950, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.993747, 40.4545129 ] } }, { "type": "Feature", "properties": { "y": 40.4564236, "x": -79.9918785, "osmid": 7013462951, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9918785, 40.4564236 ] } }, { "type": "Feature", "properties": { "y": 40.4425008, "x": -79.9518183, "osmid": 7835808681, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9518183, 40.4425008 ] } }, { "type": "Feature", "properties": { "y": 40.4566071, "x": -79.9915637, "osmid": 7013462954, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9915637, 40.4566071 ] } }, @@ -11310,8 +10995,8 @@ { "type": "Feature", "properties": { "y": 40.4380598, "x": -79.9656053, "osmid": 6535934922, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9656053, 40.4380598 ] } }, { "type": "Feature", "properties": { "y": 40.4307484, "x": -79.9562795, "osmid": 107672521, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9562795, 40.4307484 ] } }, { "type": "Feature", "properties": { "y": 40.4544221, "x": -80.0121355, "osmid": 5364544462, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0121355, 40.4544221 ] } }, -{ "type": "Feature", "properties": { "y": 40.454892, "x": -80.0122972, "osmid": 5364544463, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0122972, 40.454892 ] } }, { "type": "Feature", "properties": { "y": 40.444269, "x": -79.9986107, "osmid": 104690639, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9986107, 40.444269 ] } }, +{ "type": "Feature", "properties": { "y": 40.454892, "x": -80.0122972, "osmid": 5364544463, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0122972, 40.454892 ] } }, { "type": "Feature", "properties": { "y": 40.4445339, "x": -79.9976599, "osmid": 104690648, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9976599, 40.4445339 ] } }, { "type": "Feature", "properties": { "y": 40.4452819, "x": -79.9487756, "osmid": 105935837, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9487756, 40.4452819 ] } }, { "type": "Feature", "properties": { "y": 40.4347861, "x": -79.9596786, "osmid": 3116168168, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9596786, 40.4347861 ] } }, @@ -11332,6 +11017,7 @@ { "type": "Feature", "properties": { "y": 40.4549283, "x": -80.0127246, "osmid": 5364544503, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0127246, 40.4549283 ] } }, { "type": "Feature", "properties": { "y": 40.4559302, "x": -79.9467308, "osmid": 105935860, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9467308, 40.4559302 ] } }, { "type": "Feature", "properties": { "y": 40.4367653, "x": -79.9866081, "osmid": 105149433, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9866081, 40.4367653 ] } }, +{ "type": "Feature", "properties": { "y": 40.4583473, "x": -80.0333795, "osmid": 5980222462, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0333795, 40.4583473 ] } }, { "type": "Feature", "properties": { "y": 40.4321326, "x": -80.0164173, "osmid": 2632119296, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0164173, 40.4321326 ] } }, { "type": "Feature", "properties": { "y": 40.4321473, "x": -80.0165084, "osmid": 2632119297, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0165084, 40.4321473 ] } }, { "type": "Feature", "properties": { "y": 40.4548923, "x": -80.0322609, "osmid": 5980222466, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0322609, 40.4548923 ] } }, @@ -11339,64 +11025,38 @@ { "type": "Feature", "properties": { "y": 40.4545676, "x": -79.946603, "osmid": 105935874, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.946603, 40.4545676 ] } }, { "type": "Feature", "properties": { "y": 40.4522199, "x": -80.0148032, "osmid": 6046938120, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0148032, 40.4522199 ] } }, { "type": "Feature", "properties": { "y": 40.4524711, "x": -80.0141626, "osmid": 6046938121, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0141626, 40.4524711 ] } }, -{ "type": "Feature", "properties": { "y": 40.43195, "x": -80.0163563, "osmid": 2632119304, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0163563, 40.43195 ] } }, -{ "type": "Feature", "properties": { "y": 40.4318529, "x": -80.0165548, "osmid": 2632119305, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0165548, 40.4318529 ] } }, -{ "type": "Feature", "properties": { "y": 40.4319561, "x": -80.0172618, "osmid": 2632119309, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0172618, 40.4319561 ] } }, -{ "type": "Feature", "properties": { "y": 40.4305194, "x": -80.0169164, "osmid": 2632119312, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0169164, 40.4305194 ] } }, { "type": "Feature", "properties": { "y": 40.4343156, "x": -79.9340844, "osmid": 3527046161, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9340844, 40.4343156 ] } }, { "type": "Feature", "properties": { "y": 40.4341362, "x": -79.9337731, "osmid": 3527046162, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9337731, 40.4341362 ] } }, -{ "type": "Feature", "properties": { "y": 40.4304657, "x": -80.0170006, "osmid": 2632119320, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0170006, 40.4304657 ] } }, -{ "type": "Feature", "properties": { "y": 40.4306126, "x": -80.0177015, "osmid": 2632119327, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0177015, 40.4306126 ] } }, -{ "type": "Feature", "properties": { "y": 40.4305196, "x": -80.0171023, "osmid": 2632119330, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0171023, 40.4305196 ] } }, -{ "type": "Feature", "properties": { "y": 40.4309734, "x": -80.0170244, "osmid": 2632119335, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0170244, 40.4309734 ] } }, -{ "type": "Feature", "properties": { "y": 40.4314592, "x": -80.0168179, "osmid": 2632119342, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0168179, 40.4314592 ] } }, -{ "type": "Feature", "properties": { "y": 40.4314322, "x": -80.0166836, "osmid": 2632119343, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0166836, 40.4314322 ] } }, -{ "type": "Feature", "properties": { "y": 40.4313687, "x": -80.016703, "osmid": 2632119344, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.016703, 40.4313687 ] } }, -{ "type": "Feature", "properties": { "y": 40.4313936, "x": -80.0168377, "osmid": 2632119345, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0168377, 40.4313936 ] } }, -{ "type": "Feature", "properties": { "y": 40.4310557, "x": -80.0169396, "osmid": 2632119348, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0169396, 40.4310557 ] } }, -{ "type": "Feature", "properties": { "y": 40.4310311, "x": -80.0168064, "osmid": 2632119349, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0168064, 40.4310311 ] } }, -{ "type": "Feature", "properties": { "y": 40.4309706, "x": -80.0164666, "osmid": 2632119350, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0164666, 40.4309706 ] } }, { "type": "Feature", "properties": { "y": 40.4270986, "x": -79.9670574, "osmid": 104821815, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9670574, 40.4270986 ] } }, -{ "type": "Feature", "properties": { "y": 40.4308485, "x": -80.0168624, "osmid": 2632119352, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0168624, 40.4308485 ] } }, -{ "type": "Feature", "properties": { "y": 40.4307893, "x": -80.0165217, "osmid": 2632119353, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0165217, 40.4307893 ] } }, -{ "type": "Feature", "properties": { "y": 40.430874, "x": -80.0169965, "osmid": 2632119351, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0169965, 40.430874 ] } }, -{ "type": "Feature", "properties": { "y": 40.4301866, "x": -80.0178266, "osmid": 2632119356, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0178266, 40.4301866 ] } }, { "type": "Feature", "properties": { "y": 40.4525179, "x": -80.0142748, "osmid": 6046938173, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0142748, 40.4525179 ] } }, { "type": "Feature", "properties": { "y": 40.4523645, "x": -80.0143618, "osmid": 6046938174, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0143618, 40.4523645 ] } }, { "type": "Feature", "properties": { "y": 40.4525365, "x": -80.0144216, "osmid": 6046938175, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0144216, 40.4525365 ] } }, { "type": "Feature", "properties": { "y": 40.4524301, "x": -80.0143846, "osmid": 6046938176, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0143846, 40.4524301 ] } }, { "type": "Feature", "properties": { "y": 40.4266609, "x": -79.9672648, "osmid": 104821826, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9672648, 40.4266609 ] } }, -{ "type": "Feature", "properties": { "y": 40.4303211, "x": -80.0165392, "osmid": 2632119365, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0165392, 40.4303211 ] } }, { "type": "Feature", "properties": { "y": 40.4262259, "x": -79.9674771, "osmid": 104821831, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9674771, 40.4262259 ] } }, { "type": "Feature", "properties": { "y": 40.447543, "x": -79.9474864, "osmid": 6535897358, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9474864, 40.447543 ] } }, -{ "type": "Feature", "properties": { "y": 40.4304497, "x": -80.0158092, "osmid": 2632119377, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0158092, 40.4304497 ] } }, -{ "type": "Feature", "properties": { "y": 40.4300567, "x": -80.0171142, "osmid": 2632119378, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0171142, 40.4300567 ] } }, -{ "type": "Feature", "properties": { "y": 40.4301238, "x": -80.0168203, "osmid": 2632119379, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0168203, 40.4301238 ] } }, -{ "type": "Feature", "properties": { "y": 40.430463, "x": -80.016939, "osmid": 2632119380, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.016939, 40.430463 ] } }, -{ "type": "Feature", "properties": { "y": 40.4313026, "x": -80.0163658, "osmid": 2632119381, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0163658, 40.4313026 ] } }, -{ "type": "Feature", "properties": { "y": 40.4258093, "x": -79.9676638, "osmid": 104821845, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9676638, 40.4258093 ] } }, { "type": "Feature", "properties": { "y": 40.4475064, "x": -79.947636, "osmid": 6535897359, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.947636, 40.4475064 ] } }, +{ "type": "Feature", "properties": { "y": 40.4258093, "x": -79.9676638, "osmid": 104821845, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9676638, 40.4258093 ] } }, { "type": "Feature", "properties": { "y": 40.4465472, "x": -80.0074225, "osmid": 5369132121, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0074225, 40.4465472 ] } }, { "type": "Feature", "properties": { "y": 40.4460311, "x": -80.0076935, "osmid": 5369132122, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0076935, 40.4460311 ] } }, -{ "type": "Feature", "properties": { "y": 40.4311961, "x": -80.0155671, "osmid": 2632119385, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0155671, 40.4311961 ] } }, -{ "type": "Feature", "properties": { "y": 40.4304866, "x": -80.0162856, "osmid": 2632119386, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0162856, 40.4304866 ] } }, -{ "type": "Feature", "properties": { "y": 40.4305563, "x": -80.0160446, "osmid": 2632119389, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0160446, 40.4305563 ] } }, -{ "type": "Feature", "properties": { "y": 40.4312594, "x": -80.0160488, "osmid": 2632119388, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0160488, 40.4312594 ] } }, +{ "type": "Feature", "properties": { "y": 40.456204, "x": -79.975831, "osmid": 6080525403, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.975831, 40.456204 ] } }, +{ "type": "Feature", "properties": { "y": 40.4564929, "x": -79.976177, "osmid": 6080525402, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976177, 40.4564929 ] } }, +{ "type": "Feature", "properties": { "y": 40.4396751, "x": -79.952368, "osmid": 107574361, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.952368, 40.4396751 ] } }, +{ "type": "Feature", "properties": { "y": 40.4566582, "x": -79.9759325, "osmid": 6080525406, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9759325, 40.4566582 ] } }, { "type": "Feature", "properties": { "y": 40.4563664, "x": -79.9755886, "osmid": 6080525407, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9755886, 40.4563664 ] } }, { "type": "Feature", "properties": { "y": 40.4253928, "x": -79.9678516, "osmid": 104821856, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9678516, 40.4253928 ] } }, -{ "type": "Feature", "properties": { "y": 40.4312367, "x": -80.0158904, "osmid": 2632119393, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0158904, 40.4312367 ] } }, +{ "type": "Feature", "properties": { "y": 40.4558792, "x": -79.9769193, "osmid": 6080525408, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9769193, 40.4558792 ] } }, { "type": "Feature", "properties": { "y": 40.4271518, "x": -80.0304383, "osmid": 3224466530, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0304383, 40.4271518 ] } }, { "type": "Feature", "properties": { "y": 40.4457372, "x": -80.0081107, "osmid": 5369132131, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0081107, 40.4457372 ] } }, { "type": "Feature", "properties": { "y": 40.4287771, "x": -79.9745838, "osmid": 7011529827, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9745838, 40.4287771 ] } }, { "type": "Feature", "properties": { "y": 40.4457429, "x": -80.008314, "osmid": 5369132133, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008314, 40.4457429 ] } }, { "type": "Feature", "properties": { "y": 40.4288093, "x": -79.9751751, "osmid": 7011529828, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9751751, 40.4288093 ] } }, -{ "type": "Feature", "properties": { "y": 40.4313374, "x": -80.0163552, "osmid": 2632119398, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0163552, 40.4313374 ] } }, +{ "type": "Feature", "properties": { "y": 40.4511265, "x": -79.9823253, "osmid": 6113817698, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9823253, 40.4511265 ] } }, { "type": "Feature", "properties": { "y": 40.4457049, "x": -80.0083014, "osmid": 5369132136, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0083014, 40.4457049 ] } }, -{ "type": "Feature", "properties": { "y": 40.4314037, "x": -80.0166923, "osmid": 2632119397, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0166923, 40.4314037 ] } }, -{ "type": "Feature", "properties": { "y": 40.4318735, "x": -80.0166832, "osmid": 2632119394, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0166832, 40.4318735 ] } }, -{ "type": "Feature", "properties": { "y": 40.4317531, "x": -80.0165853, "osmid": 2632119396, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0165853, 40.4317531 ] } }, { "type": "Feature", "properties": { "y": 40.4567821, "x": -79.975612, "osmid": 6080525413, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.975612, 40.4567821 ] } }, -{ "type": "Feature", "properties": { "y": 40.4305341, "x": -80.0166017, "osmid": 2632119405, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0166017, 40.4305341 ] } }, +{ "type": "Feature", "properties": { "y": 40.4511544, "x": -79.9822829, "osmid": 6113817699, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9822829, 40.4511544 ] } }, +{ "type": "Feature", "properties": { "y": 40.4566052, "x": -79.9758701, "osmid": 6080525412, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9758701, 40.4566052 ] } }, +{ "type": "Feature", "properties": { "y": 40.4564382, "x": -79.9761115, "osmid": 6080525411, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9761115, 40.4564382 ] } }, { "type": "Feature", "properties": { "y": 40.4514037, "x": -79.981958, "osmid": 6113817705, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.981958, 40.4514037 ] } }, { "type": "Feature", "properties": { "y": 40.451621, "x": -79.9813761, "osmid": 6113817713, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9813761, 40.451621 ] } }, { "type": "Feature", "properties": { "y": 40.4518423, "x": -79.9810581, "osmid": 6113817714, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9810581, 40.4518423 ] } }, @@ -11411,14 +11071,9 @@ { "type": "Feature", "properties": { "y": 40.4522003, "x": -79.9804477, "osmid": 6113817720, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9804477, 40.4522003 ] } }, { "type": "Feature", "properties": { "y": 40.4510807, "x": -79.982398, "osmid": 6113817724, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.982398, 40.4510807 ] } }, { "type": "Feature", "properties": { "y": 40.4523881, "x": -79.9802667, "osmid": 6113817721, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9802667, 40.4523881 ] } }, -{ "type": "Feature", "properties": { "y": 40.4308019, "x": -80.017646, "osmid": 2632119422, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.017646, 40.4308019 ] } }, { "type": "Feature", "properties": { "y": 40.4549378, "x": -79.9966019, "osmid": 104723583, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9966019, 40.4549378 ] } }, { "type": "Feature", "properties": { "y": 40.457954, "x": -79.9628271, "osmid": 106067071, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9628271, 40.457954 ] } }, -{ "type": "Feature", "properties": { "y": 40.4313395, "x": -80.0174902, "osmid": 2632119430, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0174902, 40.4313395 ] } }, { "type": "Feature", "properties": { "y": 40.4553939, "x": -79.9946601, "osmid": 104723591, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9946601, 40.4553939 ] } }, -{ "type": "Feature", "properties": { "y": 40.4310016, "x": -80.0171712, "osmid": 2632119431, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0171712, 40.4310016 ] } }, -{ "type": "Feature", "properties": { "y": 40.4317219, "x": -80.0162384, "osmid": 2632119433, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0162384, 40.4317219 ] } }, -{ "type": "Feature", "properties": { "y": 40.4316038, "x": -80.0154826, "osmid": 2632119435, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0154826, 40.4316038 ] } }, { "type": "Feature", "properties": { "y": 40.4519302, "x": -79.9799127, "osmid": 6113817739, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9799127, 40.4519302 ] } }, { "type": "Feature", "properties": { "y": 40.4568452, "x": -80.0056759, "osmid": 5253428366, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0056759, 40.4568452 ] } }, { "type": "Feature", "properties": { "y": 40.4556794, "x": -79.9934734, "osmid": 104723600, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9934734, 40.4556794 ] } }, @@ -11439,16 +11094,12 @@ { "type": "Feature", "properties": { "y": 40.454776, "x": -80.0039214, "osmid": 5224854725, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0039214, 40.454776 ] } }, { "type": "Feature", "properties": { "y": 40.4546386, "x": -80.0035079, "osmid": 5224854726, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0035079, 40.4546386 ] } }, { "type": "Feature", "properties": { "y": 40.4550351, "x": -79.9414632, "osmid": 104363212, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9414632, 40.4550351 ] } }, -{ "type": "Feature", "properties": { "y": 40.4569844, "x": -80.0262304, "osmid": 7456421081, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0262304, 40.4569844 ] } }, -{ "type": "Feature", "properties": { "y": 40.456633, "x": -80.0261027, "osmid": 7456421082, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0261027, 40.456633 ] } }, -{ "type": "Feature", "properties": { "y": 40.4570125, "x": -80.026081, "osmid": 7456421083, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.026081, 40.4570125 ] } }, { "type": "Feature", "properties": { "y": 40.4552947, "x": -79.9814691, "osmid": 106099937, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9814691, 40.4552947 ] } }, { "type": "Feature", "properties": { "y": 40.445206, "x": -80.0313036, "osmid": 6012794095, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0313036, 40.445206 ] } }, { "type": "Feature", "properties": { "y": 40.458248, "x": -79.9772555, "osmid": 106099951, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9772555, 40.458248 ] } }, { "type": "Feature", "properties": { "y": 40.4267598, "x": -79.9523768, "osmid": 276657397, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9523768, 40.4267598 ] } }, { "type": "Feature", "properties": { "y": 40.4545337, "x": -80.0030156, "osmid": 5237404918, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0030156, 40.4545337 ] } }, { "type": "Feature", "properties": { "y": 40.4543286, "x": -80.0041609, "osmid": 5237404919, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0041609, 40.4543286 ] } }, -{ "type": "Feature", "properties": { "y": 40.4477321, "x": -79.9382353, "osmid": 1832245973, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9382353, 40.4477321 ] } }, { "type": "Feature", "properties": { "y": 40.4451637, "x": -80.0314073, "osmid": 107705612, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0314073, 40.4451637 ] } }, { "type": "Feature", "properties": { "y": 40.4449003, "x": -79.9377868, "osmid": 105116940, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9377868, 40.4449003 ] } }, { "type": "Feature", "properties": { "y": 40.4454987, "x": -79.9424956, "osmid": 104625425, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9424956, 40.4454987 ] } }, @@ -11522,11 +11173,11 @@ { "type": "Feature", "properties": { "y": 40.4329451, "x": -80.0190989, "osmid": 104363613, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0190989, 40.4329451 ] } }, { "type": "Feature", "properties": { "y": 40.4559698, "x": -80.0109958, "osmid": 107673183, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0109958, 40.4559698 ] } }, { "type": "Feature", "properties": { "y": 40.4585209, "x": -79.9751546, "osmid": 6066665090, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9751546, 40.4585209 ] } }, -{ "type": "Feature", "properties": { "y": 40.4585383, "x": -79.9751782, "osmid": 6066665091, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9751782, 40.4585383 ] } }, +{ "type": "Feature", "properties": { "y": 40.4529022, "x": -79.9428625, "osmid": 107542147, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9428625, 40.4529022 ] } }, { "type": "Feature", "properties": { "y": 40.4585418, "x": -79.9751213, "osmid": 6066665092, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9751213, 40.4585418 ] } }, { "type": "Feature", "properties": { "y": 40.4570519, "x": -79.963899, "osmid": 105805445, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.963899, 40.4570519 ] } }, { "type": "Feature", "properties": { "y": 40.4588233, "x": -79.9754531, "osmid": 6066665094, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9754531, 40.4588233 ] } }, -{ "type": "Feature", "properties": { "y": 40.4529022, "x": -79.9428625, "osmid": 107542147, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9428625, 40.4529022 ] } }, +{ "type": "Feature", "properties": { "y": 40.4585383, "x": -79.9751782, "osmid": 6066665091, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9751782, 40.4585383 ] } }, { "type": "Feature", "properties": { "y": 40.4593018, "x": -79.9584674, "osmid": 105805453, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9584674, 40.4593018 ] } }, { "type": "Feature", "properties": { "y": 40.4595516, "x": -79.9578466, "osmid": 105805462, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9578466, 40.4595516 ] } }, { "type": "Feature", "properties": { "y": 40.4446357, "x": -79.9429911, "osmid": 105013433, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9429911, 40.4446357 ] } }, @@ -11534,9 +11185,7 @@ { "type": "Feature", "properties": { "y": 40.4419706, "x": -80.0319303, "osmid": 7016249005, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0319303, 40.4419706 ] } }, { "type": "Feature", "properties": { "y": 40.4417603, "x": -80.0318068, "osmid": 7016249007, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0318068, 40.4417603 ] } }, { "type": "Feature", "properties": { "y": 40.4316648, "x": -80.013359, "osmid": 104363698, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.013359, 40.4316648 ] } }, -{ "type": "Feature", "properties": { "y": 40.4410854, "x": -80.0320592, "osmid": 7016249011, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0320592, 40.4410854 ] } }, { "type": "Feature", "properties": { "y": 40.4264989, "x": -79.9360039, "osmid": 105182899, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9360039, 40.4264989 ] } }, -{ "type": "Feature", "properties": { "y": 40.4418091, "x": -80.0323642, "osmid": 7016249016, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0323642, 40.4418091 ] } }, { "type": "Feature", "properties": { "y": 40.4536566, "x": -80.0022911, "osmid": 3830180627, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0022911, 40.4536566 ] } }, { "type": "Feature", "properties": { "y": 40.4416429, "x": -80.0318119, "osmid": 7016249018, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0318119, 40.4416429 ] } }, { "type": "Feature", "properties": { "y": 40.4389355, "x": -80.0270022, "osmid": 7016249020, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0270022, 40.4389355 ] } }, @@ -11546,7 +11195,6 @@ { "type": "Feature", "properties": { "y": 40.425081, "x": -79.9356043, "osmid": 105182916, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9356043, 40.425081 ] } }, { "type": "Feature", "properties": { "y": 40.4470614, "x": -79.9731195, "osmid": 104593094, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9731195, 40.4470614 ] } }, { "type": "Feature", "properties": { "y": 40.4474111, "x": -79.9733262, "osmid": 104593098, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9733262, 40.4474111 ] } }, -{ "type": "Feature", "properties": { "y": 40.4540606, "x": -80.0020797, "osmid": 3830180631, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0020797, 40.4540606 ] } }, { "type": "Feature", "properties": { "y": 40.4485789, "x": -79.9739711, "osmid": 104593110, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9739711, 40.4485789 ] } }, { "type": "Feature", "properties": { "y": 40.4598153, "x": -79.9765276, "osmid": 6066665174, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9765276, 40.4598153 ] } }, { "type": "Feature", "properties": { "y": 40.4599625, "x": -79.9763104, "osmid": 6066665175, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9763104, 40.4599625 ] } }, @@ -11559,7 +11207,7 @@ { "type": "Feature", "properties": { "y": 40.4425395, "x": -79.9956825, "osmid": 6227359465, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9956825, 40.4425395 ] } }, { "type": "Feature", "properties": { "y": 40.4497988, "x": -79.9745876, "osmid": 104593129, "highway": "stop", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9745876, 40.4497988 ] } }, { "type": "Feature", "properties": { "y": 40.4434116, "x": -79.9950942, "osmid": 6227359468, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9950942, 40.4434116 ] } }, -{ "type": "Feature", "properties": { "y": 40.4540014, "x": -80.0024014, "osmid": 3830180638, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0024014, 40.4540014 ] } }, +{ "type": "Feature", "properties": { "y": 40.4570297, "x": -80.0051732, "osmid": 5253411826, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0051732, 40.4570297 ] } }, { "type": "Feature", "properties": { "y": 40.4250936, "x": -79.9494989, "osmid": 2701096688, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9494989, 40.4250936 ] } }, { "type": "Feature", "properties": { "y": 40.4541524, "x": -80.0020502, "osmid": 3830180640, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0020502, 40.4541524 ] } }, { "type": "Feature", "properties": { "y": 40.4463747, "x": -79.9827183, "osmid": 104724223, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9827183, 40.4463747 ] } }, @@ -11567,6 +11215,7 @@ { "type": "Feature", "properties": { "y": 40.4467625, "x": -79.9829811, "osmid": 104724230, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9829811, 40.4467625 ] } }, { "type": "Feature", "properties": { "y": 40.4363776, "x": -79.9539221, "osmid": 104822534, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9539221, 40.4363776 ] } }, { "type": "Feature", "properties": { "y": 40.4353726, "x": -79.9848074, "osmid": 315291402, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9848074, 40.4353726 ] } }, +{ "type": "Feature", "properties": { "y": 40.4322454, "x": -79.9628299, "osmid": 5320858429, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9628299, 40.4322454 ] } }, { "type": "Feature", "properties": { "y": 40.4556505, "x": -80.0025411, "osmid": 3830180644, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0025411, 40.4556505 ] } }, { "type": "Feature", "properties": { "y": 40.4471267, "x": -79.9832689, "osmid": 104724241, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9832689, 40.4471267 ] } }, { "type": "Feature", "properties": { "y": 40.4368368, "x": -79.9534564, "osmid": 104822545, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9534564, 40.4368368 ] } }, @@ -11579,6 +11228,7 @@ { "type": "Feature", "properties": { "y": 40.4490142, "x": -79.9789162, "osmid": 104625953, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9789162, 40.4490142 ] } }, { "type": "Feature", "properties": { "y": 40.4438619, "x": -79.9571313, "osmid": 6535968547, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9571313, 40.4438619 ] } }, { "type": "Feature", "properties": { "y": 40.4373217, "x": -79.9529581, "osmid": 104822564, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9529581, 40.4373217 ] } }, +{ "type": "Feature", "properties": { "y": 40.4554211, "x": -80.0063604, "osmid": 3830180649, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0063604, 40.4554211 ] } }, { "type": "Feature", "properties": { "y": 40.4280351, "x": -79.9532624, "osmid": 107509551, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9532624, 40.4280351 ] } }, { "type": "Feature", "properties": { "y": 40.453915, "x": -79.9452248, "osmid": 1828190001, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9452248, 40.453915 ] } }, { "type": "Feature", "properties": { "y": 40.4543327, "x": -79.9454419, "osmid": 1828190004, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9454419, 40.4543327 ] } }, @@ -11607,44 +11257,29 @@ { "type": "Feature", "properties": { "y": 40.4364572, "x": -79.9845465, "osmid": 5260998479, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9845465, 40.4364572 ] } }, { "type": "Feature", "properties": { "y": 40.43673, "x": -79.9856191, "osmid": 5260998472, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9856191, 40.43673 ] } }, { "type": "Feature", "properties": { "y": 40.4368402, "x": -79.9856091, "osmid": 5260998475, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9856091, 40.4368402 ] } }, -{ "type": "Feature", "properties": { "y": 40.454119, "x": -80.0050919, "osmid": 316143440, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0050919, 40.454119 ] } }, +{ "type": "Feature", "properties": { "y": 40.4558745, "x": -80.0040201, "osmid": 3830180657, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0040201, 40.4558745 ] } }, { "type": "Feature", "properties": { "y": 40.4485207, "x": -79.9525174, "osmid": 6531970908, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9525174, 40.4485207 ] } }, -{ "type": "Feature", "properties": { "y": 40.4558813, "x": -80.0029149, "osmid": 3830180660, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0029149, 40.4558813 ] } }, { "type": "Feature", "properties": { "y": 40.4483165, "x": -79.9523698, "osmid": 6531970910, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9523698, 40.4483165 ] } }, -{ "type": "Feature", "properties": { "y": 40.4514259, "x": -80.0194159, "osmid": 7134836600, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0194159, 40.4514259 ] } }, -{ "type": "Feature", "properties": { "y": 40.4518864, "x": -80.0195846, "osmid": 7134836602, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0195846, 40.4518864 ] } }, { "type": "Feature", "properties": { "y": 40.4512191, "x": -80.0205401, "osmid": 7134836603, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0205401, 40.4512191 ] } }, { "type": "Feature", "properties": { "y": 40.4511287, "x": -80.0210319, "osmid": 7134836606, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0210319, 40.4511287 ] } }, { "type": "Feature", "properties": { "y": 40.4511901, "x": -80.020698, "osmid": 7134836607, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.020698, 40.4511901 ] } }, { "type": "Feature", "properties": { "y": 40.4513461, "x": -80.0207576, "osmid": 7134836608, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0207576, 40.4513461 ] } }, -{ "type": "Feature", "properties": { "y": 40.4556227, "x": -80.0039074, "osmid": 3830180667, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0039074, 40.4556227 ] } }, -{ "type": "Feature", "properties": { "y": 40.447322, "x": -79.930445, "osmid": 7011208554, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.930445, 40.447322 ] } }, { "type": "Feature", "properties": { "y": 40.4445578, "x": -79.952835, "osmid": 1356042802, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.952835, 40.4445578 ] } }, { "type": "Feature", "properties": { "y": 40.4451345, "x": -80.0168471, "osmid": 3828152215, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0168471, 40.4451345 ] } }, { "type": "Feature", "properties": { "y": 40.4272274, "x": -79.9508976, "osmid": 6165067671, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9508976, 40.4272274 ] } }, -{ "type": "Feature", "properties": { "y": 40.4468546, "x": -79.9301023, "osmid": 7011208559, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9301023, 40.4468546 ] } }, -{ "type": "Feature", "properties": { "y": 40.4461225, "x": -79.9323046, "osmid": 7011208560, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9323046, 40.4461225 ] } }, -{ "type": "Feature", "properties": { "y": 40.4314454, "x": -80.0019454, "osmid": 6866171807, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0019454, 40.4314454 ] } }, -{ "type": "Feature", "properties": { "y": 40.4318941, "x": -80.0019647, "osmid": 6866171809, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0019647, 40.4318941 ] } }, { "type": "Feature", "properties": { "y": 40.4311539, "x": -79.9900046, "osmid": 7231371169, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9900046, 40.4311539 ] } }, -{ "type": "Feature", "properties": { "y": 40.4320975, "x": -80.0027831, "osmid": 6866171814, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0027831, 40.4320975 ] } }, { "type": "Feature", "properties": { "y": 40.4323405, "x": -80.0032799, "osmid": 6866171815, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0032799, 40.4323405 ] } }, { "type": "Feature", "properties": { "y": 40.4438126, "x": -79.9519291, "osmid": 1669430261, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9519291, 40.4438126 ] } }, { "type": "Feature", "properties": { "y": 40.4322045, "x": -80.0033537, "osmid": 6866171819, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0033537, 40.4322045 ] } }, { "type": "Feature", "properties": { "y": 40.4321845, "x": -80.0029609, "osmid": 6866171822, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0029609, 40.4321845 ] } }, -{ "type": "Feature", "properties": { "y": 40.4317357, "x": -80.0020685, "osmid": 6866171823, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0020685, 40.4317357 ] } }, { "type": "Feature", "properties": { "y": 40.4365655, "x": -79.9972505, "osmid": 7231371184, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9972505, 40.4365655 ] } }, { "type": "Feature", "properties": { "y": 40.4302064, "x": -79.9505855, "osmid": 2715023280, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9505855, 40.4302064 ] } }, -{ "type": "Feature", "properties": { "y": 40.4563644, "x": -80.0203249, "osmid": 5843482546, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0203249, 40.4563644 ] } }, -{ "type": "Feature", "properties": { "y": 40.4316999, "x": -80.0018577, "osmid": 6866171828, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0018577, 40.4316999 ] } }, +{ "type": "Feature", "properties": { "y": 40.4296111, "x": -79.950053, "osmid": 2715023284, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.950053, 40.4296111 ] } }, { "type": "Feature", "properties": { "y": 40.4553491, "x": -80.0193868, "osmid": 5843482549, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0193868, 40.4553491 ] } }, +{ "type": "Feature", "properties": { "y": 40.455482, "x": -80.0194278, "osmid": 5843482550, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0194278, 40.455482 ] } }, { "type": "Feature", "properties": { "y": 40.4310733, "x": -80.0004078, "osmid": 6866171829, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0004078, 40.4310733 ] } }, { "type": "Feature", "properties": { "y": 40.4313344, "x": -80.000094, "osmid": 6866171831, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.000094, 40.4313344 ] } }, -{ "type": "Feature", "properties": { "y": 40.4313854, "x": -80.0002111, "osmid": 6866171830, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0002111, 40.4313854 ] } }, { "type": "Feature", "properties": { "y": 40.4414357, "x": -80.008513, "osmid": 3828152249, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.008513, 40.4414357 ] } }, -{ "type": "Feature", "properties": { "y": 40.4317914, "x": -79.9998367, "osmid": 6866171832, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9998367, 40.4317914 ] } }, -{ "type": "Feature", "properties": { "y": 40.4296111, "x": -79.950053, "osmid": 2715023284, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.950053, 40.4296111 ] } }, -{ "type": "Feature", "properties": { "y": 40.4465198, "x": -79.9373125, "osmid": 104396732, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9373125, 40.4465198 ] } }, { "type": "Feature", "properties": { "y": 40.4303198, "x": -79.9343037, "osmid": 7300249547, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9343037, 40.4303198 ] } }, { "type": "Feature", "properties": { "y": 40.446054, "x": -80.0169282, "osmid": 5397379023, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0169282, 40.446054 ] } }, { "type": "Feature", "properties": { "y": 40.4493863, "x": -79.9881627, "osmid": 105707474, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9881627, 40.4493863 ] } }, @@ -11657,12 +11292,9 @@ { "type": "Feature", "properties": { "y": 40.4563082, "x": -79.9748103, "osmid": 6093207521, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9748103, 40.4563082 ] } }, { "type": "Feature", "properties": { "y": 40.4449508, "x": -79.9461222, "osmid": 6784055265, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9461222, 40.4449508 ] } }, { "type": "Feature", "properties": { "y": 40.4566479, "x": -79.974323, "osmid": 6093207523, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.974323, 40.4566479 ] } }, -{ "type": "Feature", "properties": { "y": 40.4455718, "x": -79.9452045, "osmid": 6784055266, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9452045, 40.4455718 ] } }, { "type": "Feature", "properties": { "y": 40.4571938, "x": -79.9735203, "osmid": 6093207525, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9735203, 40.4571938 ] } }, { "type": "Feature", "properties": { "y": 40.4303661, "x": -79.937772, "osmid": 7300249573, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.937772, 40.4303661 ] } }, -{ "type": "Feature", "properties": { "y": 40.4456878, "x": -79.9391116, "osmid": 104527838, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9391116, 40.4456878 ] } }, { "type": "Feature", "properties": { "y": 40.4431362, "x": -79.9444463, "osmid": 1705867240, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9444463, 40.4431362 ] } }, -{ "type": "Feature", "properties": { "y": 40.4455459, "x": -79.9378968, "osmid": 104527844, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9378968, 40.4455459 ] } }, { "type": "Feature", "properties": { "y": 40.4296946, "x": -79.9372875, "osmid": 7300249579, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9372875, 40.4296946 ] } }, { "type": "Feature", "properties": { "y": 40.4515066, "x": -80.0269479, "osmid": 106100720, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0269479, 40.4515066 ] } }, { "type": "Feature", "properties": { "y": 40.4461459, "x": -79.9437457, "osmid": 6784055282, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9437457, 40.4461459 ] } }, @@ -11679,17 +11311,10 @@ { "type": "Feature", "properties": { "y": 40.4503735, "x": -80.0142768, "osmid": 5054953521, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0142768, 40.4503735 ] } }, { "type": "Feature", "properties": { "y": 40.453199, "x": -79.9818001, "osmid": 6073801191, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9818001, 40.453199 ] } }, { "type": "Feature", "properties": { "y": 40.442863, "x": -79.9445506, "osmid": 1705867354, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9445506, 40.442863 ] } }, -{ "type": "Feature", "properties": { "y": 40.4535328, "x": -79.9813227, "osmid": 6073801193, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9813227, 40.4535328 ] } }, -{ "type": "Feature", "properties": { "y": 40.4428512, "x": -79.9444952, "osmid": 1705867361, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9444952, 40.4428512 ] } }, -{ "type": "Feature", "properties": { "y": 40.4531, "x": -79.9816732, "osmid": 6073801194, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9816732, 40.4531 ] } }, { "type": "Feature", "properties": { "y": 40.4514049, "x": -79.9514595, "osmid": 7847901287, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9514595, 40.4514049 ] } }, { "type": "Feature", "properties": { "y": 40.4430327, "x": -79.9439976, "osmid": 1705867372, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9439976, 40.4430327 ] } }, { "type": "Feature", "properties": { "y": 40.4475723, "x": -79.9404486, "osmid": 7622621296, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9404486, 40.4475723 ] } }, -{ "type": "Feature", "properties": { "y": 40.4255688, "x": -79.9600701, "osmid": 7079131249, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9600701, 40.4255688 ] } }, -{ "type": "Feature", "properties": { "y": 40.4254422, "x": -79.960213, "osmid": 7079131251, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.960213, 40.4254422 ] } }, -{ "type": "Feature", "properties": { "y": 40.4255232, "x": -79.9600224, "osmid": 7079131253, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9600224, 40.4255232 ] } }, { "type": "Feature", "properties": { "y": 40.4472069, "x": -79.9409617, "osmid": 7622621305, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9409617, 40.4472069 ] } }, -{ "type": "Feature", "properties": { "y": 40.4254312, "x": -79.9602316, "osmid": 7079131258, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9602316, 40.4254312 ] } }, { "type": "Feature", "properties": { "y": 40.4264555, "x": -80.0081649, "osmid": 106035332, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0081649, 40.4264555 ] } }, { "type": "Feature", "properties": { "y": 40.4290935, "x": -79.9511681, "osmid": 106114218, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9511681, 40.4290935 ] } }, { "type": "Feature", "properties": { "y": 40.4566022, "x": -79.9975461, "osmid": 4074240188, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9975461, 40.4566022 ] } }, @@ -11703,9 +11328,7 @@ { "type": "Feature", "properties": { "y": 40.4461678, "x": -79.9806688, "osmid": 1252058001, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9806688, 40.4461678 ] } }, { "type": "Feature", "properties": { "y": 40.446676, "x": -80.0135274, "osmid": 2342942972, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0135274, 40.446676 ] } }, { "type": "Feature", "properties": { "y": 40.4554064, "x": -80.0150831, "osmid": 105740565, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0150831, 40.4554064 ] } }, -{ "type": "Feature", "properties": { "y": 40.4380713, "x": -80.0206337, "osmid": 7271282972, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0206337, 40.4380713 ] } }, { "type": "Feature", "properties": { "y": 40.45495, "x": -79.9810676, "osmid": 104626460, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9810676, 40.45495 ] } }, -{ "type": "Feature", "properties": { "y": 40.4379011, "x": -80.0206734, "osmid": 7271282976, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0206734, 40.4379011 ] } }, { "type": "Feature", "properties": { "y": 40.4581852, "x": -79.9976444, "osmid": 4074240289, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9976444, 40.4581852 ] } }, { "type": "Feature", "properties": { "y": 40.4364288, "x": -79.9892792, "osmid": 5308512546, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9892792, 40.4364288 ] } }, { "type": "Feature", "properties": { "y": 40.4374233, "x": -80.0042831, "osmid": 1510734116, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0042831, 40.4374233 ] } }, @@ -11736,16 +11359,16 @@ { "type": "Feature", "properties": { "y": 40.4585461, "x": -79.96864, "osmid": 7828142424, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.96864, 40.4585461 ] } }, { "type": "Feature", "properties": { "y": 40.4287608, "x": -79.9693604, "osmid": 4020926809, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9693604, 40.4287608 ] } }, { "type": "Feature", "properties": { "y": 40.4583198, "x": -79.9683395, "osmid": 7828142421, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9683395, 40.4583198 ] } }, -{ "type": "Feature", "properties": { "y": 40.4575428, "x": -79.973004, "osmid": 6093207894, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.973004, 40.4575428 ] } }, { "type": "Feature", "properties": { "y": 40.4291171, "x": -79.9680729, "osmid": 4020926808, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9680729, 40.4291171 ] } }, +{ "type": "Feature", "properties": { "y": 40.4575428, "x": -79.973004, "osmid": 6093207894, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.973004, 40.4575428 ] } }, { "type": "Feature", "properties": { "y": 40.4292673, "x": -79.9689673, "osmid": 4020926814, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9689673, 40.4292673 ] } }, { "type": "Feature", "properties": { "y": 40.4573781, "x": -79.9723211, "osmid": 6093207902, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9723211, 40.4573781 ] } }, { "type": "Feature", "properties": { "y": 40.4292928, "x": -79.9686786, "osmid": 4020926816, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9686786, 40.4292928 ] } }, { "type": "Feature", "properties": { "y": 40.4293694, "x": -79.968643, "osmid": 4020926817, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.968643, 40.4293694 ] } }, { "type": "Feature", "properties": { "y": 40.4514873, "x": -79.9590979, "osmid": 104921442, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9590979, 40.4514873 ] } }, { "type": "Feature", "properties": { "y": 40.4506276, "x": -79.9825545, "osmid": 7828142435, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9825545, 40.4506276 ] } }, -{ "type": "Feature", "properties": { "y": 40.4573171, "x": -79.9734811, "osmid": 6093207908, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9734811, 40.4573171 ] } }, { "type": "Feature", "properties": { "y": 40.4508391, "x": -79.9821173, "osmid": 7828142436, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9821173, 40.4508391 ] } }, +{ "type": "Feature", "properties": { "y": 40.4573171, "x": -79.9734811, "osmid": 6093207908, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9734811, 40.4573171 ] } }, { "type": "Feature", "properties": { "y": 40.4293849, "x": -79.9675657, "osmid": 4020926823, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9675657, 40.4293849 ] } }, { "type": "Feature", "properties": { "y": 40.4523371, "x": -79.9586347, "osmid": 104921448, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9586347, 40.4523371 ] } }, { "type": "Feature", "properties": { "y": 40.429023, "x": -79.9677418, "osmid": 4020926825, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9677418, 40.429023 ] } }, @@ -11837,29 +11460,22 @@ { "type": "Feature", "properties": { "y": 40.4449249, "x": -79.9540778, "osmid": 6532069880, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9540778, 40.4449249 ] } }, { "type": "Feature", "properties": { "y": 40.4465103, "x": -80.0225797, "osmid": 3046668796, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0225797, 40.4465103 ] } }, { "type": "Feature", "properties": { "y": 40.4409657, "x": -79.9813649, "osmid": 105773566, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9813649, 40.4409657 ] } }, -{ "type": "Feature", "properties": { "y": 40.4454133, "x": -79.9921652, "osmid": 6219305850, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9921652, 40.4454133 ] } }, -{ "type": "Feature", "properties": { "y": 40.4454549, "x": -79.9921042, "osmid": 6219305851, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9921042, 40.4454549 ] } }, { "type": "Feature", "properties": { "y": 40.4413119, "x": -79.9805582, "osmid": 105773576, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9805582, 40.4413119 ] } }, { "type": "Feature", "properties": { "y": 40.4454831, "x": -79.9922414, "osmid": 6219305852, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9922414, 40.4454831 ] } }, -{ "type": "Feature", "properties": { "y": 40.4465623, "x": -79.9359172, "osmid": 2522970635, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9359172, 40.4465623 ] } }, { "type": "Feature", "properties": { "y": 40.4421825, "x": -79.9631207, "osmid": 6188628497, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9631207, 40.4421825 ] } }, { "type": "Feature", "properties": { "y": 40.445157, "x": -80.0169222, "osmid": 3828152850, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0169222, 40.445157 ] } }, { "type": "Feature", "properties": { "y": 40.442351, "x": -79.9631068, "osmid": 6188628499, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9631068, 40.442351 ] } }, -{ "type": "Feature", "properties": { "y": 40.4568691, "x": -79.9370201, "osmid": 393902611, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9370201, 40.4568691 ] } }, { "type": "Feature", "properties": { "y": 40.4427526, "x": -79.9368192, "osmid": 2522970643, "highway": "turning_circle", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9368192, 40.4427526 ] } }, +{ "type": "Feature", "properties": { "y": 40.4568691, "x": -79.9370201, "osmid": 393902611, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9370201, 40.4568691 ] } }, { "type": "Feature", "properties": { "y": 40.4415559, "x": -80.0126793, "osmid": 7094925846, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0126793, 40.4415559 ] } }, -{ "type": "Feature", "properties": { "y": 40.4456483, "x": -79.938989, "osmid": 2522970647, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.938989, 40.4456483 ] } }, { "type": "Feature", "properties": { "y": 40.4429444, "x": -79.9621677, "osmid": 6188628506, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9621677, 40.4429444 ] } }, -{ "type": "Feature", "properties": { "y": 40.4452736, "x": -79.9355973, "osmid": 2522970650, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9355973, 40.4452736 ] } }, { "type": "Feature", "properties": { "y": 40.4436402, "x": -79.9750721, "osmid": 105773597, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9750721, 40.4436402 ] } }, { "type": "Feature", "properties": { "y": 40.442958, "x": -79.9619389, "osmid": 6188628510, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9619389, 40.442958 ] } }, -{ "type": "Feature", "properties": { "y": 40.445955, "x": -79.9356543, "osmid": 2522970654, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9356543, 40.445955 ] } }, { "type": "Feature", "properties": { "y": 40.4437137, "x": -79.974879, "osmid": 105773602, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.974879, 40.4437137 ] } }, { "type": "Feature", "properties": { "y": 40.4431533, "x": -79.9628985, "osmid": 6188628524, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9628985, 40.4431533 ] } }, { "type": "Feature", "properties": { "y": 40.4428739, "x": -79.9620367, "osmid": 6188628525, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9620367, 40.4428739 ] } }, -{ "type": "Feature", "properties": { "y": 40.4428385, "x": -79.9621273, "osmid": 6188628526, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9621273, 40.4428385 ] } }, -{ "type": "Feature", "properties": { "y": 40.4428143, "x": -79.9621893, "osmid": 6188628527, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9621893, 40.4428143 ] } }, { "type": "Feature", "properties": { "y": 40.4432071, "x": -79.9587003, "osmid": 4602362413, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9587003, 40.4432071 ] } }, +{ "type": "Feature", "properties": { "y": 40.4428143, "x": -79.9621893, "osmid": 6188628527, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9621893, 40.4428143 ] } }, { "type": "Feature", "properties": { "y": 40.4436737, "x": -79.9614771, "osmid": 6188628528, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9614771, 40.4436737 ] } }, { "type": "Feature", "properties": { "y": 40.443578, "x": -79.9612986, "osmid": 6188628529, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9612986, 40.443578 ] } }, { "type": "Feature", "properties": { "y": 40.4443588, "x": -79.9733877, "osmid": 105773619, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9733877, 40.4443588 ] } }, @@ -11899,8 +11515,8 @@ { "type": "Feature", "properties": { "y": 40.456752, "x": -80.0074699, "osmid": 3809311384, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0074699, 40.456752 ] } }, { "type": "Feature", "properties": { "y": 40.440067, "x": -79.9962059, "osmid": 5618072217, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9962059, 40.440067 ] } }, { "type": "Feature", "properties": { "y": 40.4390609, "x": -79.9957007, "osmid": 5618072218, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9957007, 40.4390609 ] } }, -{ "type": "Feature", "properties": { "y": 40.4567796, "x": -80.0074707, "osmid": 3809311387, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0074707, 40.4567796 ] } }, { "type": "Feature", "properties": { "y": 40.4574122, "x": -79.9581006, "osmid": 2963962523, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9581006, 40.4574122 ] } }, +{ "type": "Feature", "properties": { "y": 40.4567796, "x": -80.0074707, "osmid": 3809311387, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0074707, 40.4567796 ] } }, { "type": "Feature", "properties": { "y": 40.4296923, "x": -79.9669964, "osmid": 6206978718, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9669964, 40.4296923 ] } }, { "type": "Feature", "properties": { "y": 40.4475058, "x": -79.9589297, "osmid": 2174876319, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9589297, 40.4475058 ] } }, { "type": "Feature", "properties": { "y": 40.4568182, "x": -80.0076134, "osmid": 3809311394, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0076134, 40.4568182 ] } }, @@ -11924,9 +11540,9 @@ { "type": "Feature", "properties": { "y": 40.4279613, "x": -79.9639768, "osmid": 3690724055, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9639768, 40.4279613 ] } }, { "type": "Feature", "properties": { "y": 40.4297531, "x": -79.966826, "osmid": 6206978783, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.966826, 40.4297531 ] } }, { "type": "Feature", "properties": { "y": 40.4301272, "x": -79.9670011, "osmid": 6206978784, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9670011, 40.4301272 ] } }, +{ "type": "Feature", "properties": { "y": 40.4301631, "x": -79.966989, "osmid": 6206978785, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.966989, 40.4301631 ] } }, { "type": "Feature", "properties": { "y": 40.444496, "x": -79.9610713, "osmid": 2174876386, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9610713, 40.444496 ] } }, { "type": "Feature", "properties": { "y": 40.4447363, "x": -79.9604187, "osmid": 2174876387, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9604187, 40.4447363 ] } }, -{ "type": "Feature", "properties": { "y": 40.4301924, "x": -79.9669432, "osmid": 6206978787, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9669432, 40.4301924 ] } }, { "type": "Feature", "properties": { "y": 40.4464352, "x": -79.9823937, "osmid": 7794916079, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9823937, 40.4464352 ] } }, { "type": "Feature", "properties": { "y": 40.4353632, "x": -80.0338933, "osmid": 105675505, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0338933, 40.4353632 ] } }, { "type": "Feature", "properties": { "y": 40.442145, "x": -79.9306028, "osmid": 472546039, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9306028, 40.442145 ] } }, @@ -11947,13 +11563,10 @@ { "type": "Feature", "properties": { "y": 40.4569238, "x": -79.9756839, "osmid": 6067944226, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9756839, 40.4569238 ] } }, { "type": "Feature", "properties": { "y": 40.4566637, "x": -79.976672, "osmid": 6067944223, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976672, 40.4566637 ] } }, { "type": "Feature", "properties": { "y": 40.4507386, "x": -80.0170629, "osmid": 7013923621, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0170629, 40.4507386 ] } }, -{ "type": "Feature", "properties": { "y": 40.4502193, "x": -80.0154147, "osmid": 7013923622, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0154147, 40.4502193 ] } }, -{ "type": "Feature", "properties": { "y": 40.4502916, "x": -80.0154347, "osmid": 7013923623, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0154347, 40.4502916 ] } }, { "type": "Feature", "properties": { "y": 40.456429, "x": -79.9764037, "osmid": 6067944231, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9764037, 40.456429 ] } }, { "type": "Feature", "properties": { "y": 40.4563634, "x": -79.9764971, "osmid": 6067944232, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9764971, 40.4563634 ] } }, { "type": "Feature", "properties": { "y": 40.4566571, "x": -79.976849, "osmid": 6067944234, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.976849, 40.4566571 ] } }, { "type": "Feature", "properties": { "y": 40.4563123, "x": -79.9764338, "osmid": 6067944235, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9764338, 40.4563123 ] } }, -{ "type": "Feature", "properties": { "y": 40.4504032, "x": -80.0154681, "osmid": 7013923633, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0154681, 40.4504032 ] } }, { "type": "Feature", "properties": { "y": 40.4594284, "x": -80.0009924, "osmid": 104463159, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0009924, 40.4594284 ] } }, { "type": "Feature", "properties": { "y": 40.4559894, "x": -79.9770384, "osmid": 6067944248, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9770384, 40.4559894 ] } }, { "type": "Feature", "properties": { "y": 40.4564386, "x": -80.0291357, "osmid": 104364858, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0291357, 40.4564386 ] } }, @@ -11983,9 +11596,7 @@ { "type": "Feature", "properties": { "y": 40.4250366, "x": -79.9378095, "osmid": 3682859875, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9378095, 40.4250366 ] } }, { "type": "Feature", "properties": { "y": 40.4519858, "x": -80.0043214, "osmid": 5247302502, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0043214, 40.4519858 ] } }, { "type": "Feature", "properties": { "y": 40.4311227, "x": -79.9818041, "osmid": 104528743, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9818041, 40.4311227 ] } }, -{ "type": "Feature", "properties": { "y": 40.4481981, "x": -79.9418632, "osmid": 1832614760, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9418632, 40.4481981 ] } }, { "type": "Feature", "properties": { "y": 40.4479714, "x": -79.9418353, "osmid": 1832614759, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9418353, 40.4479714 ] } }, -{ "type": "Feature", "properties": { "y": 40.448222, "x": -79.9415379, "osmid": 1832614761, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9415379, 40.448222 ] } }, { "type": "Feature", "properties": { "y": 40.4519977, "x": -80.004891, "osmid": 5247302508, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.004891, 40.4519977 ] } }, { "type": "Feature", "properties": { "y": 40.4562577, "x": -79.9446608, "osmid": 3371268973, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9446608, 40.4562577 ] } }, { "type": "Feature", "properties": { "y": 40.4518687, "x": -80.0049464, "osmid": 5247302510, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0049464, 40.4518687 ] } }, @@ -12057,24 +11668,24 @@ { "type": "Feature", "properties": { "y": 40.4539587, "x": -80.0064205, "osmid": 5251431411, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0064205, 40.4539587 ] } }, { "type": "Feature", "properties": { "y": 40.4276234, "x": -79.9621934, "osmid": 1437170675, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9621934, 40.4276234 ] } }, { "type": "Feature", "properties": { "y": 40.4264785, "x": -79.9726129, "osmid": 6904052726, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9726129, 40.4264785 ] } }, -{ "type": "Feature", "properties": { "y": 40.4259811, "x": -79.9732655, "osmid": 6904052724, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9732655, 40.4259811 ] } }, { "type": "Feature", "properties": { "y": 40.4263675, "x": -79.9726239, "osmid": 6904052727, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9726239, 40.4263675 ] } }, +{ "type": "Feature", "properties": { "y": 40.4259811, "x": -79.9732655, "osmid": 6904052724, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9732655, 40.4259811 ] } }, +{ "type": "Feature", "properties": { "y": 40.425883, "x": -79.9718169, "osmid": 6904052722, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9718169, 40.425883 ] } }, { "type": "Feature", "properties": { "y": 40.4259454, "x": -79.972666, "osmid": 6904052725, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.972666, 40.4259454 ] } }, -{ "type": "Feature", "properties": { "y": 40.4259687, "x": -79.9730581, "osmid": 6904052729, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9730581, 40.4259687 ] } }, { "type": "Feature", "properties": { "y": 40.4263782, "x": -79.9728196, "osmid": 6904052730, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9728196, 40.4263782 ] } }, -{ "type": "Feature", "properties": { "y": 40.4283805, "x": -79.9632, "osmid": 1437170681, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9632, 40.4283805 ] } }, +{ "type": "Feature", "properties": { "y": 40.4259687, "x": -79.9730581, "osmid": 6904052729, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9730581, 40.4259687 ] } }, { "type": "Feature", "properties": { "y": 40.4594708, "x": -80.0176958, "osmid": 4392877053, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0176958, 40.4594708 ] } }, { "type": "Feature", "properties": { "y": 40.4595457, "x": -80.0170006, "osmid": 4392877054, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0170006, 40.4595457 ] } }, { "type": "Feature", "properties": { "y": 40.4595666, "x": -80.0171584, "osmid": 4392877055, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0171584, 40.4595666 ] } }, -{ "type": "Feature", "properties": { "y": 40.425957, "x": -79.9728604, "osmid": 6904052731, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9728604, 40.425957 ] } }, +{ "type": "Feature", "properties": { "y": 40.4283805, "x": -79.9632, "osmid": 1437170681, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9632, 40.4283805 ] } }, { "type": "Feature", "properties": { "y": 40.4595775, "x": -80.0177314, "osmid": 4392877057, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0177314, 40.4595775 ] } }, -{ "type": "Feature", "properties": { "y": 40.428468, "x": -79.963338, "osmid": 1437170683, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.963338, 40.428468 ] } }, +{ "type": "Feature", "properties": { "y": 40.425957, "x": -79.9728604, "osmid": 6904052731, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9728604, 40.425957 ] } }, { "type": "Feature", "properties": { "y": 40.4596656, "x": -80.0169161, "osmid": 4392877059, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0169161, 40.4596656 ] } }, -{ "type": "Feature", "properties": { "y": 40.4397433, "x": -79.9766765, "osmid": 7467629563, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9766765, 40.4397433 ] } }, +{ "type": "Feature", "properties": { "y": 40.428468, "x": -79.963338, "osmid": 1437170683, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.963338, 40.428468 ] } }, { "type": "Feature", "properties": { "y": 40.4596834, "x": -80.0169281, "osmid": 4392877061, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0169281, 40.4596834 ] } }, { "type": "Feature", "properties": { "y": 40.459687, "x": -80.0172462, "osmid": 4392877062, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0172462, 40.459687 ] } }, -{ "type": "Feature", "properties": { "y": 40.4397549, "x": -79.977365, "osmid": 7467629566, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.977365, 40.4397549 ] } }, { "type": "Feature", "properties": { "y": 40.4290491, "x": -79.9662619, "osmid": 1437170694, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9662619, 40.4290491 ] } }, +{ "type": "Feature", "properties": { "y": 40.4574688, "x": -79.9797701, "osmid": 6050511871, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9797701, 40.4574688 ] } }, { "type": "Feature", "properties": { "y": 40.4573936, "x": -79.9798804, "osmid": 6050511873, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9798804, 40.4573936 ] } }, { "type": "Feature", "properties": { "y": 40.4573144, "x": -79.9797902, "osmid": 6050511874, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9797902, 40.4573144 ] } }, { "type": "Feature", "properties": { "y": 40.4573715, "x": -79.9799793, "osmid": 6050511883, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9799793, 40.4573715 ] } }, @@ -12084,12 +11695,11 @@ { "type": "Feature", "properties": { "y": 40.4573402, "x": -79.9799605, "osmid": 6050511878, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9799605, 40.4573402 ] } }, { "type": "Feature", "properties": { "y": 40.4465801, "x": -80.0217944, "osmid": 1459420176, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0217944, 40.4465801 ] } }, { "type": "Feature", "properties": { "y": 40.4572363, "x": -79.9799076, "osmid": 6050511880, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9799076, 40.4572363 ] } }, -{ "type": "Feature", "properties": { "y": 40.4295915, "x": -79.9653359, "osmid": 1437170697, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9653359, 40.4295915 ] } }, -{ "type": "Feature", "properties": { "y": 40.4575189, "x": -79.9801536, "osmid": 6050511891, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9801536, 40.4575189 ] } }, { "type": "Feature", "properties": { "y": 40.4301796, "x": -79.9672289, "osmid": 1437170703, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9672289, 40.4301796 ] } }, +{ "type": "Feature", "properties": { "y": 40.4575189, "x": -79.9801536, "osmid": 6050511891, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9801536, 40.4575189 ] } }, { "type": "Feature", "properties": { "y": 40.4572777, "x": -79.9800506, "osmid": 6050511890, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9800506, 40.4572777 ] } }, -{ "type": "Feature", "properties": { "y": 40.4305868, "x": -79.9690441, "osmid": 1437170710, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9690441, 40.4305868 ] } }, { "type": "Feature", "properties": { "y": 40.45745, "x": -79.9802517, "osmid": 6050511889, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9802517, 40.45745 ] } }, +{ "type": "Feature", "properties": { "y": 40.4305868, "x": -79.9690441, "osmid": 1437170710, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9690441, 40.4305868 ] } }, { "type": "Feature", "properties": { "y": 40.4315396, "x": -79.9447216, "osmid": 3957586977, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9447216, 40.4315396 ] } }, { "type": "Feature", "properties": { "y": 40.4586884, "x": -79.9729851, "osmid": 6080691245, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9729851, 40.4586884 ] } }, { "type": "Feature", "properties": { "y": 40.4266742, "x": -79.9397721, "osmid": 104365104, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9397721, 40.4266742 ] } }, @@ -12113,10 +11723,10 @@ { "type": "Feature", "properties": { "y": 40.434185, "x": -79.9339379, "osmid": 3957587016, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9339379, 40.434185 ] } }, { "type": "Feature", "properties": { "y": 40.4403838, "x": -79.993436, "osmid": 1362263118, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.993436, 40.4403838 ] } }, { "type": "Feature", "properties": { "y": 40.4408035, "x": -79.9944755, "osmid": 1362263122, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9944755, 40.4408035 ] } }, -{ "type": "Feature", "properties": { "y": 40.450606, "x": -80.013324, "osmid": 3706977367, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.013324, 40.450606 ] } }, { "type": "Feature", "properties": { "y": 40.4482159, "x": -80.0004907, "osmid": 104594519, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0004907, 40.4482159 ] } }, { "type": "Feature", "properties": { "y": 40.4456369, "x": -80.0193582, "osmid": 1459420248, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0193582, 40.4456369 ] } }, { "type": "Feature", "properties": { "y": 40.4506697, "x": -80.0134464, "osmid": 3706977369, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0134464, 40.4506697 ] } }, +{ "type": "Feature", "properties": { "y": 40.450606, "x": -80.013324, "osmid": 3706977367, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.013324, 40.450606 ] } }, { "type": "Feature", "properties": { "y": 40.45448, "x": -80.0341879, "osmid": 1459420252, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0341879, 40.45448 ] } }, { "type": "Feature", "properties": { "y": 40.4409755, "x": -79.9938053, "osmid": 1362263134, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9938053, 40.4409755 ] } }, { "type": "Feature", "properties": { "y": 40.4279296, "x": -79.9638489, "osmid": 422280286, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9638489, 40.4279296 ] } }, @@ -12138,7 +11748,6 @@ { "type": "Feature", "properties": { "y": 40.4304004, "x": -79.9521254, "osmid": 7011564683, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9521254, 40.4304004 ] } }, { "type": "Feature", "properties": { "y": 40.4269917, "x": -79.9492403, "osmid": 7011564684, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9492403, 40.4269917 ] } }, { "type": "Feature", "properties": { "y": 40.4418289, "x": -79.9941294, "osmid": 1362263182, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9941294, 40.4418289 ] } }, -{ "type": "Feature", "properties": { "y": 40.4446847, "x": -79.9632377, "osmid": 105774222, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9632377, 40.4446847 ] } }, { "type": "Feature", "properties": { "y": 40.4418657, "x": -79.9940958, "osmid": 1362263187, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9940958, 40.4418657 ] } }, { "type": "Feature", "properties": { "y": 40.4475589, "x": -79.9595658, "osmid": 105774249, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9595658, 40.4475589 ] } }, { "type": "Feature", "properties": { "y": 40.4435532, "x": -79.9353004, "osmid": 104692909, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9353004, 40.4435532 ] } }, @@ -12159,7 +11768,6 @@ { "type": "Feature", "properties": { "y": 40.4529447, "x": -80.0055516, "osmid": 5237439743, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0055516, 40.4529447 ] } }, { "type": "Feature", "properties": { "y": 40.4529262, "x": -80.0056651, "osmid": 5237439744, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0056651, 40.4529262 ] } }, { "type": "Feature", "properties": { "y": 40.4525982, "x": -80.0055625, "osmid": 5237439745, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0055625, 40.4525982 ] } }, -{ "type": "Feature", "properties": { "y": 40.4401601, "x": -79.9409456, "osmid": 472546570, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9409456, 40.4401601 ] } }, { "type": "Feature", "properties": { "y": 40.4437967, "x": -79.9453497, "osmid": 1704819979, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9453497, 40.4437967 ] } }, { "type": "Feature", "properties": { "y": 40.4437192, "x": -79.9455098, "osmid": 1704819980, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9455098, 40.4437192 ] } }, { "type": "Feature", "properties": { "y": 40.4529155, "x": -80.005524, "osmid": 5237439758, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.005524, 40.4529155 ] } }, @@ -12182,10 +11790,8 @@ { "type": "Feature", "properties": { "y": 40.4365253, "x": -80.0010147, "osmid": 665550144, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0010147, 40.4365253 ] } }, { "type": "Feature", "properties": { "y": 40.4462765, "x": -79.9930297, "osmid": 6182141248, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9930297, 40.4462765 ] } }, { "type": "Feature", "properties": { "y": 40.4456462, "x": -79.9939836, "osmid": 6182141261, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9939836, 40.4456462 ] } }, -{ "type": "Feature", "properties": { "y": 40.4495154, "x": -79.9519307, "osmid": 1819606351, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9519307, 40.4495154 ] } }, { "type": "Feature", "properties": { "y": 40.4467755, "x": -79.971553, "osmid": 105971023, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.971553, 40.4467755 ] } }, { "type": "Feature", "properties": { "y": 40.4453507, "x": -79.9938839, "osmid": 6182141266, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9938839, 40.4453507 ] } }, -{ "type": "Feature", "properties": { "y": 40.4496137, "x": -79.9522239, "osmid": 1819606354, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9522239, 40.4496137 ] } }, { "type": "Feature", "properties": { "y": 40.4450633, "x": -79.9937304, "osmid": 6182141273, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9937304, 40.4450633 ] } }, { "type": "Feature", "properties": { "y": 40.446926, "x": -79.9710912, "osmid": 105971033, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9710912, 40.446926 ] } }, { "type": "Feature", "properties": { "y": 40.4391609, "x": -79.9961812, "osmid": 4459167069, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9961812, 40.4391609 ] } }, @@ -12193,36 +11799,24 @@ { "type": "Feature", "properties": { "y": 40.4473791, "x": -79.9698199, "osmid": 105971037, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9698199, 40.4473791 ] } }, { "type": "Feature", "properties": { "y": 40.4458126, "x": -79.9924858, "osmid": 6182141281, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9924858, 40.4458126 ] } }, { "type": "Feature", "properties": { "y": 40.4460545, "x": -79.9927423, "osmid": 6182141283, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9927423, 40.4460545 ] } }, -{ "type": "Feature", "properties": { "y": 40.4465433, "x": -79.9910228, "osmid": 6219403716, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9910228, 40.4465433 ] } }, { "type": "Feature", "properties": { "y": 40.4469461, "x": -80.0027733, "osmid": 314670443, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0027733, 40.4469461 ] } }, { "type": "Feature", "properties": { "y": 40.445795, "x": -79.9352566, "osmid": 105119112, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9352566, 40.445795 ] } }, -{ "type": "Feature", "properties": { "y": 40.441568, "x": -79.940685, "osmid": 472546699, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.940685, 40.441568 ] } }, +{ "type": "Feature", "properties": { "y": 40.4538619, "x": -79.9423445, "osmid": 330235277, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9423445, 40.4538619 ] } }, { "type": "Feature", "properties": { "y": 40.4401514, "x": -79.9386976, "osmid": 7013727629, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9386976, 40.4401514 ] } }, { "type": "Feature", "properties": { "y": 40.4458158, "x": -79.9349472, "osmid": 105119117, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9349472, 40.4458158 ] } }, { "type": "Feature", "properties": { "y": 40.445868, "x": -79.934173, "osmid": 105119130, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.934173, 40.445868 ] } }, { "type": "Feature", "properties": { "y": 40.4405428, "x": -79.9780372, "osmid": 104201646, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9780372, 40.4405428 ] } }, { "type": "Feature", "properties": { "y": 40.4403009, "x": -80.0307547, "osmid": 105184687, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0307547, 40.4403009 ] } }, -{ "type": "Feature", "properties": { "y": 40.4258673, "x": -79.9949941, "osmid": 3545788935, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9949941, 40.4258673 ] } }, -{ "type": "Feature", "properties": { "y": 40.4259643, "x": -79.9950418, "osmid": 3545788936, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9950418, 40.4259643 ] } }, { "type": "Feature", "properties": { "y": 40.4595999, "x": -80.0169624, "osmid": 104725949, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0169624, 40.4595999 ] } }, { "type": "Feature", "properties": { "y": 40.4390113, "x": -79.9797802, "osmid": 107609534, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9797802, 40.4390113 ] } }, { "type": "Feature", "properties": { "y": 40.4598474, "x": -79.9497049, "osmid": 104824257, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9497049, 40.4598474 ] } }, { "type": "Feature", "properties": { "y": 40.4596153, "x": -79.9492643, "osmid": 104824267, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9492643, 40.4596153 ] } }, -{ "type": "Feature", "properties": { "y": 40.4260682, "x": -79.9957233, "osmid": 3545788940, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9957233, 40.4260682 ] } }, { "type": "Feature", "properties": { "y": 40.4523511, "x": -79.9300644, "osmid": 107478505, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9300644, 40.4523511 ] } }, { "type": "Feature", "properties": { "y": 40.4581069, "x": -80.0044137, "osmid": 107675134, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0044137, 40.4581069 ] } }, { "type": "Feature", "properties": { "y": 40.4345918, "x": -79.9466562, "osmid": 3396238865, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9466562, 40.4345918 ] } }, { "type": "Feature", "properties": { "y": 40.4516033, "x": -80.0238661, "osmid": 105840153, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0238661, 40.4516033 ] } }, { "type": "Feature", "properties": { "y": 40.431609, "x": -79.9471907, "osmid": 7543076933, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9471907, 40.431609 ] } }, { "type": "Feature", "properties": { "y": 40.4510581, "x": -80.0268021, "osmid": 105840162, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0268021, 40.4510581 ] } }, -{ "type": "Feature", "properties": { "y": 40.4308033, "x": -79.9854078, "osmid": 7013826085, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9854078, 40.4308033 ] } }, -{ "type": "Feature", "properties": { "y": 40.4315883, "x": -79.9825839, "osmid": 7013826086, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9825839, 40.4315883 ] } }, -{ "type": "Feature", "properties": { "y": 40.4315827, "x": -79.9827367, "osmid": 7013826088, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9827367, 40.4315827 ] } }, -{ "type": "Feature", "properties": { "y": 40.4316977, "x": -79.9827404, "osmid": 7013826089, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9827404, 40.4316977 ] } }, -{ "type": "Feature", "properties": { "y": 40.4312659, "x": -79.9827441, "osmid": 7013826090, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9827441, 40.4312659 ] } }, -{ "type": "Feature", "properties": { "y": 40.4308084, "x": -79.9852081, "osmid": 7013826091, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9852081, 40.4308084 ] } }, -{ "type": "Feature", "properties": { "y": 40.4310931, "x": -79.9852124, "osmid": 7013826092, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9852124, 40.4310931 ] } }, -{ "type": "Feature", "properties": { "y": 40.4311158, "x": -79.9843232, "osmid": 7013826093, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9843232, 40.4311158 ] } }, { "type": "Feature", "properties": { "y": 40.4554719, "x": -80.0181097, "osmid": 3978329682, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0181097, 40.4554719 ] } }, { "type": "Feature", "properties": { "y": 40.4581999, "x": -79.9327688, "osmid": 393510493, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9327688, 40.4581999 ] } }, { "type": "Feature", "properties": { "y": 40.4508725, "x": -79.9538718, "osmid": 6531677793, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9538718, 40.4508725 ] } }, @@ -12256,9 +11850,7 @@ { "type": "Feature", "properties": { "y": 40.4275197, "x": -80.0089246, "osmid": 105774795, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0089246, 40.4275197 ] } }, { "type": "Feature", "properties": { "y": 40.4582627, "x": -80.0074186, "osmid": 3809312466, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0074186, 40.4582627 ] } }, { "type": "Feature", "properties": { "y": 40.4503998, "x": -79.9487445, "osmid": 105152213, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9487445, 40.4503998 ] } }, -{ "type": "Feature", "properties": { "y": 40.435495, "x": -79.9572705, "osmid": 105086680, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9572705, 40.435495 ] } }, { "type": "Feature", "properties": { "y": 40.4509277, "x": -79.9469428, "osmid": 105152225, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9469428, 40.4509277 ] } }, -{ "type": "Feature", "properties": { "y": 40.4512012, "x": -79.946046, "osmid": 105152236, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.946046, 40.4512012 ] } }, { "type": "Feature", "properties": { "y": 40.4253282, "x": -79.9392313, "osmid": 105938678, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9392313, 40.4253282 ] } }, { "type": "Feature", "properties": { "y": 40.4403046, "x": -79.9928667, "osmid": 4073914106, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9928667, 40.4403046 ] } }, { "type": "Feature", "properties": { "y": 40.444348, "x": -80.0032123, "osmid": 5451382523, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -80.0032123, 40.444348 ] } }, @@ -12287,12 +11879,12 @@ { "type": "Feature", "properties": { "y": 40.4455343, "x": -79.9649669, "osmid": 6186565410, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9649669, 40.4455343 ] } }, { "type": "Feature", "properties": { "y": 40.4394684, "x": -79.9590602, "osmid": 6531841829, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9590602, 40.4394684 ] } }, { "type": "Feature", "properties": { "y": 40.4505428, "x": -79.9946518, "osmid": 7011270440, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9946518, 40.4505428 ] } }, -{ "type": "Feature", "properties": { "y": 40.4445735, "x": -79.963274, "osmid": 6186565412, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.963274, 40.4445735 ] } }, -{ "type": "Feature", "properties": { "y": 40.4379301, "x": -79.9910291, "osmid": 104824618, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9910291, 40.4379301 ] } }, { "type": "Feature", "properties": { "y": 40.4399162, "x": -79.9592717, "osmid": 6531841831, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9592717, 40.4399162 ] } }, +{ "type": "Feature", "properties": { "y": 40.4379301, "x": -79.9910291, "osmid": 104824618, "highway": "traffic_signals", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9910291, 40.4379301 ] } }, { "type": "Feature", "properties": { "y": 40.4396445, "x": -79.9592795, "osmid": 6531841832, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9592795, 40.4396445 ] } }, { "type": "Feature", "properties": { "y": 40.440132, "x": -79.9589751, "osmid": 6531841835, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9589751, 40.440132 ] } }, { "type": "Feature", "properties": { "y": 40.4397843, "x": -79.9591086, "osmid": 6531841833, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9591086, 40.4397843 ] } }, +{ "type": "Feature", "properties": { "y": 40.4380235, "x": -79.9471601, "osmid": 3781721893, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9471601, 40.4380235 ] } }, { "type": "Feature", "properties": { "y": 40.4387078, "x": -79.9465404, "osmid": 3781721899, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9465404, 40.4387078 ] } }, { "type": "Feature", "properties": { "y": 40.4435396, "x": -79.9647843, "osmid": 6186565424, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9647843, 40.4435396 ] } }, { "type": "Feature", "properties": { "y": 40.4435013, "x": -79.9647373, "osmid": 6186565425, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9647373, 40.4435013 ] } }, @@ -12304,7 +11896,6 @@ { "type": "Feature", "properties": { "y": 40.4401665, "x": -79.947448, "osmid": 3781721912, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.947448, 40.4401665 ] } }, { "type": "Feature", "properties": { "y": 40.4407133, "x": -79.9482606, "osmid": 3781721915, "highway": "crossing", "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9482606, 40.4407133 ] } }, { "type": "Feature", "properties": { "y": 40.4473827, "x": -79.9597934, "osmid": 105250620, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9597934, 40.4473827 ] } }, -{ "type": "Feature", "properties": { "y": 40.4468287, "x": -79.9355764, "osmid": 7760183095, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9355764, 40.4468287 ] } }, { "type": "Feature", "properties": { "y": 40.4500197, "x": -79.9954475, "osmid": 104398655, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9954475, 40.4500197 ] } }, { "type": "Feature", "properties": { "y": 40.4417846, "x": -79.9501656, "osmid": 3781721921, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9501656, 40.4417846 ] } }, { "type": "Feature", "properties": { "y": 40.4422569, "x": -79.95147, "osmid": 3781721926, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.95147, 40.4422569 ] } }, @@ -12331,7 +11922,6 @@ { "type": "Feature", "properties": { "y": 40.4439215, "x": -79.964434, "osmid": 6186565494, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.964434, 40.4439215 ] } }, { "type": "Feature", "properties": { "y": 40.4309533, "x": -79.9937041, "osmid": 5850791799, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9937041, 40.4309533 ] } }, { "type": "Feature", "properties": { "y": 40.4309734, "x": -79.9942596, "osmid": 5850791800, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9942596, 40.4309734 ] } }, -{ "type": "Feature", "properties": { "y": 40.4462072, "x": -79.9639587, "osmid": 6186565495, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9639587, 40.4462072 ] } }, { "type": "Feature", "properties": { "y": 40.4298325, "x": -79.9945024, "osmid": 5850791806, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9945024, 40.4298325 ] } }, { "type": "Feature", "properties": { "y": 40.4469439, "x": -79.9637423, "osmid": 6186565502, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.9637423, 40.4469439 ] } }, { "type": "Feature", "properties": { "y": 40.4471288, "x": -79.963686, "osmid": 6186565503, "highway": null, "ref": null }, "geometry": { "type": "Point", "coordinates": [ -79.963686, 40.4471288 ] } }, diff --git a/cabby/geo/map_processing/poiTestData/pittsburgh_poi.pkl b/cabby/geo/map_processing/poiTestData/pittsburgh_poi.pkl index 9da56ef8..65f1d5c8 100644 Binary files a/cabby/geo/map_processing/poiTestData/pittsburgh_poi.pkl and b/cabby/geo/map_processing/poiTestData/pittsburgh_poi.pkl differ diff --git a/cabby/geo/map_processing/poiTestData/pittsburgh_streets.pkl b/cabby/geo/map_processing/poiTestData/pittsburgh_streets.pkl index fb2dfdb9..141c473d 100644 Binary files a/cabby/geo/map_processing/poiTestData/pittsburgh_streets.pkl and b/cabby/geo/map_processing/poiTestData/pittsburgh_streets.pkl differ diff --git a/cabby/geo/walk.py b/cabby/geo/walk.py index 5c0ff9d9..04dc05f6 100644 --- a/cabby/geo/walk.py +++ b/cabby/geo/walk.py @@ -98,12 +98,29 @@ def get_start_poi(map: map_structure.Map, end_point: GeoDataFrame) -> \ dist = map.poi['centroid'].apply( lambda x: util.get_distance_km(end_point['centroid'], x)) - # Get POI within a distance range. - # TODO (https://github.com/googleinterns/cabby/issues/25): Change to path - # distance. - within_distance = map.poi[(dist > 0.2) & (dist < 0.8)] + + # Get closest nodes to points. + dest = ox.get_nearest_node( + map.nx_graph, util.tuple_from_point(end_point['centroid'])) + + # Find nodes whithin 2000 meter path distance. + outer_circle_graph = ox.truncate.truncate_graph_dist( + map.nx_graph, dest, max_dist=2000, weight='length') + + # Get graph that is too close (less than 200 meter path distance) + inner_circle_graph = ox.truncate.truncate_graph_dist( + map.nx_graph, dest, max_dist=200, weight='length') + + outer_circle_graph_osmid = list(outer_circle_graph.nodes.keys()) + inner_circle_graph_osmid = list(inner_circle_graph.nodes.keys()) + + osmid_in_range = [ + osmid for osmid in outer_circle_graph_osmid if osmid not in inner_circle_graph_osmid] + + poi_in_ring = map.poi[map.poi['node'].isin(osmid_in_range)] + # Filter large POI. - small_poi = within_distance[within_distance['cellids'].str.len() <= 4] + small_poi = poi_in_ring[poi_in_ring['cellids'].str.len() <= 4] if small_poi.shape[0] == 0: return None @@ -336,6 +353,7 @@ def generate_and_save_rvs_routes(path: Text, map: map_structure.Map, n_samples: counter = 0 while counter < n_samples: + print (counter) entity = get_single_sample(map) if entity is None: continue diff --git a/environment.yml b/environment.yml new file mode 100644 index 00000000..e2c3cbf3 --- /dev/null +++ b/environment.yml @@ -0,0 +1,440 @@ +name: cabby +channels: + - anaconda + - defaults + - conda-forge +dependencies: + - _anaconda_depends=2020.07=py37_0 + - _libgcc_mutex=0.1=conda_forge + - _openmp_mutex=4.5=1_llvm + - absl-py=0.9.0=py37_0 + - alabaster=0.7.12=py_0 + - anaconda=custom=py37_1 + - anaconda-client=1.7.2=py_0 + - anaconda-project=0.8.3=py_0 + - argh=0.26.2=pyh9f0ad1d_1002 + - asn1crypto=1.4.0=pyh9f0ad1d_0 + - astroid=2.3.3=py37_1 + - astropy=4.0.1.post1=py37h8f50634_0 + - atomicwrites=1.4.0=pyh9f0ad1d_0 + - attrs=19.3.0=py_0 + - autopep8=1.5.3=pyh9f0ad1d_0 + - babel=2.8.0=py_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=py_2 + - backports.functools_lru_cache=1.6.1=py_0 + - backports.shutil_get_terminal_size=1.0.0=py_3 + - beautifulsoup4=4.9.1=py37hc8dfbb8_0 + - bitarray=1.4.2=py37h8f50634_0 + - bkcharts=0.2=py37_0 + - blas=2.17=openblas + - bleach=3.1.5=pyh9f0ad1d_0 + - blosc=1.20.0=he1b5a44_0 + - bokeh=2.1.1=py37hc8dfbb8_0 + - boost-cpp=1.72.0=h8e57a91_0 + - boto=2.49.0=py_0 + - bottleneck=1.3.2=py37h03ebfcd_1 + - branca=0.4.1=py_0 + - brotli=1.0.7=he1b5a44_1004 + - brotlipy=0.7.0=py37h8f50634_1000 + - brunsli=0.1=he1b5a44_0 + - bzip2=1.0.8=h516909a_2 + - c-ares=1.16.1=h516909a_0 + - ca-certificates=2020.6.20=hecda079_0 + - cairo=1.16.0=hcf35c78_1003 + - cartopy=0.18.0=py37h4b180d9_0 + - catalogue=1.0.0=py_0 + - certifi=2020.6.20=py37hc8dfbb8_0 + - cffi=1.14.1=py37h2b28604_0 + - cfitsio=3.470=hce51eda_6 + - chardet=3.0.4=py37hc8dfbb8_1006 + - charls=2.1.0=he1b5a44_2 + - click=7.1.2=pyh9f0ad1d_0 + - click-plugins=1.1.1=py_0 + - cligj=0.5.0=py_0 + - cloudpickle=1.5.0=py_0 + - clyent=1.2.2=py_1 + - colorama=0.4.3=py_0 + - contextlib2=0.6.0.post1=py_0 + - cryptography=3.0=py37hb09aad4_0 + - curl=7.71.1=he644dc0_4 + - cycler=0.10.0=py_2 + - cymem=2.0.3=py37h3340039_2 + - cython=0.29.21=py37h3340039_0 + - cython-blis=0.4.1=py37h8f50634_1 + - cytoolz=0.10.1=py37h516909a_0 + - dask=2.21.0=py_0 + - dask-core=2.21.0=py_0 + - dbus=1.13.6=he372182_0 + - decorator=4.4.2=py_0 + - defusedxml=0.6.0=py_0 + - descartes=1.1.0=py_4 + - diff-match-patch=20200713=pyh9f0ad1d_0 + - distributed=2.21.0=py37hc8dfbb8_0 + - docutils=0.16=py37hc8dfbb8_1 + - entrypoints=0.3=py37hc8dfbb8_1001 + - et_xmlfile=1.0.1=py_1001 + - expat=2.2.9=he1b5a44_2 + - fastcache=1.1.0=py37h8f50634_1 + - filelock=3.0.12=pyh9f0ad1d_0 + - fiona=1.8.13=py37h0492a4a_1 + - flake8=3.8.3=py_1 + - flask=1.1.2=pyh9f0ad1d_0 + - folium=0.11.0=py_0 + - fontconfig=2.13.1=h86ecdb6_1001 + - freetype=2.10.2=he06d7ca_0 + - freexl=1.0.5=h516909a_1002 + - fribidi=1.0.10=h516909a_0 + - fsspec=0.7.4=py_0 + - future=0.18.2=py37hc8dfbb8_1 + - gdal=3.0.4=py37h4b180d9_10 + - geopandas=0.8.1=py_0 + - geos=3.8.1=he1b5a44_0 + - geotiff=1.6.0=h05acad5_0 + - get_terminal_size=1.0.0=haa9412d_0 + - gettext=0.19.8.1=hc5be6a0_1002 + - gevent=20.6.2=py37h8f50634_0 + - giflib=5.2.1=h516909a_2 + - glib=2.65.0=h6f030ca_0 + - glob2=0.7=py_0 + - gmp=6.2.0=he1b5a44_2 + - gmpy2=2.1.0b1=py37h04dde30_0 + - graphite2=1.3.13=he1b5a44_1001 + - greenlet=0.4.16=py37h8f50634_0 + - gst-plugins-base=1.14.5=h0935bb2_2 + - gstreamer=1.14.5=h36ae1b5_2 + - h5py=2.10.0=nompi_py37h90cd8ad_104 + - harfbuzz=2.4.0=h9f30f68_3 + - hdf4=4.2.13=hf30be14_1003 + - hdf5=1.10.6=nompi_h3c11f04_100 + - heapdict=1.0.1=py_0 + - html5lib=1.1=pyh9f0ad1d_0 + - icu=64.2=he1b5a44_1 + - idna=2.10=pyh9f0ad1d_0 + - imagecodecs=2020.5.30=py37hda6ee5b_2 + - imageio=2.9.0=py_0 + - imagesize=1.2.0=py_0 + - importlab=0.5.1=pyh9f0ad1d_0 + - importlib-metadata=1.7.0=py37hc8dfbb8_0 + - importlib_metadata=1.7.0=0 + - iniconfig=1.0.0=pyh9f0ad1d_0 + - intel-openmp=2019.4=243 + - intervaltree=3.0.2=py_0 + - ipykernel=5.3.4=py37h43977f1_0 + - ipython=7.16.1=py37h43977f1_0 + - ipython_genutils=0.2.0=py_1 + - ipywidgets=7.5.1=py_0 + - isort=5.2.2=py37hc8dfbb8_0 + - itsdangerous=1.1.0=py_0 + - jbig=2.1=h516909a_2002 + - jdcal=1.4.1=py_0 + - jedi=0.17.1=py37hc8dfbb8_0 + - jeepney=0.4.3=py_0 + - jinja2=2.11.2=pyh9f0ad1d_0 + - joblib=0.16.0=py_0 + - jpeg=9d=h516909a_0 + - json-c=0.13.1=hbfbb72e_1002 + - json5=0.9.4=pyh9f0ad1d_0 + - jsonschema=3.2.0=py37hc8dfbb8_1 + - jupyter=1.0.0=py_2 + - jupyter_client=6.1.6=py_0 + - jupyter_console=6.1.0=py_1 + - jupyter_core=4.6.3=py37hc8dfbb8_1 + - jupyterlab=2.2.2=py_0 + - jupyterlab_server=1.2.0=py_0 + - jxrlib=1.1=h516909a_2 + - kealib=1.4.13=h33137a7_1 + - keyring=21.2.1=py37hc8dfbb8_0 + - kiwisolver=1.2.0=py37h99015e2_0 + - krb5=1.17.1=hfafb76e_2 + - lazy-object-proxy=1.5.1=py37h8f50634_0 + - lcms2=2.11=hbd6801e_0 + - ld_impl_linux-64=2.34=hc38a660_9 + - lerc=2.2=he1b5a44_0 + - libaec=1.0.4=he1b5a44_1 + - libarchive=3.3.3=h3a8160c_1008 + - libblas=3.8.0=17_openblas + - libcblas=3.8.0=17_openblas + - libclang=9.0.1=default_hde54327_0 + - libcurl=7.71.1=hcdd3856_4 + - libdap4=3.20.6=h1d1bd15_1 + - libedit=3.1.20191231=h46ee950_1 + - libev=4.33=h516909a_0 + - libffi=3.2.1=he1b5a44_1007 + - libgcc-ng=9.3.0=h24d8f2e_11 + - libgdal=3.0.4=he6a97d6_10 + - libgfortran-ng=7.5.0=hdf63c60_11 + - libiconv=1.15=h516909a_1006 + - libkml=1.3.0=hb574062_1011 + - liblapack=3.8.0=17_openblas + - liblapacke=3.8.0=17_openblas + - liblief=0.10.1=he1b5a44_0 + - libllvm9=9.0.1=he513fc3_1 + - libnetcdf=4.7.4=nompi_h84807e1_105 + - libnghttp2=1.41.0=hab1572f_1 + - libopenblas=0.3.10=pthreads_hb3c22a3_4 + - libpng=1.6.37=hed695b0_1 + - libpq=12.3=h5513abc_0 + - libsodium=1.0.17=h516909a_0 + - libspatialindex=1.9.3=he1b5a44_3 + - libspatialite=4.3.0a=h2482549_1038 + - libssh2=1.9.0=hab1572f_5 + - libstdcxx-ng=9.3.0=hdf63c60_11 + - libtiff=4.1.0=hc7e4089_6 + - libtool=2.4.6=h14c3975_1002 + - libuuid=2.32.1=h14c3975_1000 + - libwebp-base=1.1.0=h516909a_3 + - libxcb=1.13=h14c3975_1002 + - libxkbcommon=0.10.0=he1b5a44_0 + - libxml2=2.9.10=hee79883_0 + - libxslt=1.1.33=h31b3aaa_0 + - libzopfli=1.0.3=he1b5a44_0 + - llvm-openmp=10.0.1=hc9558a2_0 + - llvmlite=0.33.0=py37h5202443_1 + - locket=0.2.0=py_2 + - lxml=4.5.2=py37he3881c9_0 + - lz4-c=1.9.2=he1b5a44_1 + - lzo=2.10=h14c3975_1000 + - markupsafe=1.1.1=py37h8f50634_1 + - matplotlib-base=3.3.0=py37hd478181_1 + - mccabe=0.6.1=py_1 + - mistune=0.8.4=py37h8f50634_1001 + - mkl=2019.5=281 + - mkl-service=2.3.0=py37h516909a_0 + - mkl_fft=1.1.0=py37hc1659b7_1 + - mkl_random=1.1.0=py37hb3f55d8_0 + - mock=4.0.2=py37hc8dfbb8_0 + - more-itertools=8.4.0=py_0 + - mpc=1.1.0=h04dde30_1007 + - mpfr=4.0.2=he80fd80_1 + - mpmath=1.1.0=py_0 + - msgpack-python=1.0.0=py37h99015e2_1 + - multipledispatch=0.6.0=py_0 + - munch=2.5.0=py_0 + - murmurhash=1.0.0=py37h3340039_0 + - nbconvert=5.6.1=py37hc8dfbb8_1 + - nbformat=5.0.7=py_0 + - ncurses=6.2=he1b5a44_1 + - networkx=2.4=py_1 + - ninja=1.10.0=hc9558a2_0 + - nltk=3.4.4=py_0 + - nose=1.3.7=py37hc8dfbb8_1004 + - notebook=6.0.3=py37hc8dfbb8_1 + - nspr=4.27=he1b5a44_0 + - nss=3.47=he751ad9_0 + - numba=0.50.1=py37h0da4684_1 + - numexpr=2.7.1=py37h0da4684_1 + - numpy=1.19.1=py37h8960a57_0 + - numpy-base=1.18.5=py37h2f8d375_0 + - numpydoc=1.1.0=pyh9f0ad1d_0 + - olefile=0.46=py_0 + - openjpeg=2.3.1=h981e76c_3 + - openpyxl=3.0.4=py_0 + - openssl=1.1.1g=h516909a_1 + - osmnx=0.15.1=pyh9f0ad1d_0 + - owslib=0.20.0=py_0 + - packaging=20.4=pyh9f0ad1d_0 + - pandas=1.1.0=py37h3340039_0 + - pandoc=2.10.1=h516909a_0 + - pandocfilters=1.4.2=py_1 + - pango=1.42.4=h7062337_4 + - parso=0.7.0=pyh9f0ad1d_0 + - partd=1.1.0=py_0 + - patchelf=0.11=he1b5a44_0 + - path=15.0.0=py37hc8dfbb8_0 + - path.py=12.5.0=0 + - pathlib2=2.3.5=py37hc8dfbb8_1 + - pathtools=0.1.2=py_1 + - patsy=0.5.1=py_0 + - pcre=8.44=he1b5a44_0 + - pep8=1.7.1=py_0 + - pexpect=4.8.0=py37hc8dfbb8_1 + - pickleshare=0.7.5=py37hc8dfbb8_1001 + - pillow=7.2.0=py37h718be6c_1 + - pip=20.2=py_0 + - pixman=0.38.0=h516909a_1003 + - pkginfo=1.5.0.1=py_0 + - plac=0.9.6=py37_1 + - pluggy=0.13.1=py37hc8dfbb8_2 + - ply=3.11=py_1 + - poppler=0.87.0=h4190859_1 + - poppler-data=0.4.9=1 + - postgresql=12.3=h8573dbc_0 + - preshed=3.0.2=py37h3340039_3 + - proj=7.0.0=h966b41f_5 + - prometheus_client=0.8.0=pyh9f0ad1d_0 + - prompt-toolkit=3.0.5=py_1 + - prompt_toolkit=3.0.5=1 + - psutil=5.7.2=py37h8f50634_0 + - pthread-stubs=0.4=h14c3975_1001 + - ptyprocess=0.6.0=py_1001 + - py=1.9.0=pyh9f0ad1d_0 + - py-lief=0.10.1=py37h3340039_0 + - pycodestyle=2.6.0=pyh9f0ad1d_0 + - pycosat=0.6.3=py37h8f50634_1004 + - pycparser=2.20=pyh9f0ad1d_2 + - pycrypto=2.6.1=py37h8f50634_1004 + - pycurl=7.43.0.5=py37hce7685b_2 + - pydocstyle=5.0.2=py_0 + - pyepsg=0.4.0=py_0 + - pyflakes=2.2.0=pyh9f0ad1d_0 + - pygments=2.6.1=py_0 + - pylint=2.3.1=py37_0 + - pyodbc=4.0.30=py37he1b5a44_0 + - pyopenssl=19.1.0=py_1 + - pyparsing=2.4.7=pyh9f0ad1d_0 + - pyproj=2.6.1.post1=py37h34dd122_0 + - pyqt=5.12.3=py37h8685d9f_3 + - pyrsistent=0.16.0=py37h8f50634_0 + - pyshp=2.1.0=py_0 + - pysocks=1.7.1=py37hc8dfbb8_1 + - pytables=3.6.1=py37h56451d4_2 + - pytest=6.0.0=py37hc8dfbb8_0 + - python=3.7.6=cpython_h8356626_6 + - python-dateutil=2.8.1=py_0 + - python-jsonrpc-server=0.3.4=pyh9f0ad1d_1 + - python-language-server=0.34.1=py37hc8dfbb8_0 + - python-libarchive-c=2.9=py37_0 + - python_abi=3.7=1_cp37m + - pytype=2020.7.30=py37h3340039_0 + - pytz=2020.1=pyh9f0ad1d_0 + - pywavelets=1.1.1=py37h03ebfcd_1 + - pyxdg=0.26=py_0 + - pyyaml=5.3.1=py37h8f50634_0 + - pyzmq=19.0.1=py37hac76be4_0 + - qdarkstyle=2.8.1=pyh9f0ad1d_0 + - qt=5.12.5=hd8c4c69_1 + - qtawesome=0.7.2=pyh9f0ad1d_0 + - qtconsole=4.7.5=pyh9f0ad1d_0 + - qtpy=1.9.0=py_0 + - readline=8.0=he28a2e2_2 + - regex=2020.7.14=py37h8f50634_0 + - requests=2.24.0=pyh9f0ad1d_0 + - ripgrep=12.1.1=h516909a_0 + - rope=0.17.0=pyh9f0ad1d_0 + - rtree=0.9.4=py37h8526d28_1 + - ruamel_yaml=0.15.80=py37h8f50634_1001 + - scikit-image=0.17.2=py37h0da4684_1 + - scikit-learn=0.23.1=py37h8a51577_0 + - scipy=1.5.2=py37hb14ef9d_0 + - seaborn=0.10.1=1 + - seaborn-base=0.10.1=py_1 + - secretstorage=3.1.2=py37hc8dfbb8_1 + - send2trash=1.5.0=py_0 + - setuptools=49.2.0=py37hc8dfbb8_0 + - shapely=1.7.0=py37hc88ce51_3 + - simplegeneric=0.8.1=py_1 + - singledispatch=3.4.0.3=py37_1000 + - sip=4.19.23=py37h3340039_0 + - six=1.15.0=pyh9f0ad1d_0 + - snappy=1.1.8=he1b5a44_3 + - snowballstemmer=2.0.0=py_0 + - sortedcollections=1.2.1=pyh9f0ad1d_0 + - sortedcontainers=2.2.2=pyh9f0ad1d_0 + - soupsieve=2.0.1=py37hc8dfbb8_0 + - spacy=2.3.2=py37h99015e2_0 + - sphinx=3.1.2=py_0 + - sphinxcontrib=1.0=py37_1 + - sphinxcontrib-applehelp=1.0.2=py_0 + - sphinxcontrib-devhelp=1.0.2=py_0 + - sphinxcontrib-htmlhelp=1.0.3=py_0 + - sphinxcontrib-jsmath=1.0.1=py_0 + - sphinxcontrib-qthelp=1.0.3=py_0 + - sphinxcontrib-serializinghtml=1.1.4=py_0 + - sphinxcontrib-websupport=1.2.3=pyh9f0ad1d_0 + - spyder=4.1.4=py37hc8dfbb8_0 + - spyder-kernels=1.9.3=py37hc8dfbb8_0 + - sqlalchemy=1.3.18=py37h8f50634_0 + - sqlite=3.32.3=hcee41ef_1 + - srsly=1.0.2=py37h3340039_0 + - statsmodels=0.11.1=py37h8f50634_2 + - sympy=1.6.1=py37hc8dfbb8_0 + - tbb=2020.1=hc9558a2_0 + - tblib=1.6.0=py_0 + - terminado=0.8.3=py37hc8dfbb8_1 + - testpath=0.4.4=py_0 + - thinc=7.4.1=py37h99015e2_0 + - threadpoolctl=2.1.0=pyh5ca1d4c_0 + - tifffile=2020.7.24=py_0 + - tiledb=1.7.7=h8efa9f0_3 + - tk=8.6.10=hed695b0_0 + - toml=0.10.1=pyh9f0ad1d_0 + - toolz=0.10.0=py_0 + - tornado=6.0.4=py37h8f50634_1 + - tqdm=4.48.0=pyh9f0ad1d_0 + - traitlets=4.3.3=py37hc8dfbb8_1 + - typed-ast=1.4.1=py37h516909a_0 + - typing_extensions=3.7.4.2=py_0 + - tzcode=2020a=h516909a_0 + - ujson=1.35=py37h3340039_1002 + - unicodecsv=0.14.1=py_1 + - unixodbc=2.3.7=hd1b7508_1000 + - urllib3=1.25.10=py_0 + - wasabi=0.7.1=pyh9f0ad1d_0 + - watchdog=0.10.3=py37hc8dfbb8_1 + - wcwidth=0.2.5=pyh9f0ad1d_1 + - webencodings=0.5.1=py_1 + - werkzeug=1.0.1=pyh9f0ad1d_0 + - wheel=0.34.2=py_1 + - widgetsnbextension=3.5.1=py37hc8dfbb8_1 + - wrapt=1.12.1=py37h8f50634_1 + - wurlitzer=2.0.0=py37hc8dfbb8_1 + - xerces-c=3.2.2=h8412b87_1004 + - xlrd=1.2.0=pyh9f0ad1d_1 + - xlsxwriter=1.3.0=pyh9f0ad1d_0 + - xlwt=1.3.0=py_1 + - xorg-kbproto=1.0.7=h14c3975_1002 + - xorg-libice=1.0.10=h516909a_0 + - xorg-libsm=1.2.3=h84519dc_1000 + - xorg-libx11=1.6.9=h516909a_0 + - xorg-libxau=1.0.9=h14c3975_0 + - xorg-libxdmcp=1.1.3=h516909a_0 + - xorg-libxext=1.3.4=h516909a_0 + - xorg-libxrender=0.9.10=h516909a_1002 + - xorg-renderproto=0.11.1=h14c3975_1002 + - xorg-xextproto=7.3.0=h14c3975_1002 + - xorg-xproto=7.0.31=h14c3975_1007 + - xz=5.2.5=h516909a_1 + - yaml=0.2.5=h516909a_0 + - yapf=0.30.0=pyh9f0ad1d_0 + - zeromq=4.3.2=he1b5a44_2 + - zfp=0.5.5=he1b5a44_1 + - zict=2.0.0=py_0 + - zipp=3.1.0=py_0 + - zlib=1.2.11=h516909a_1006 + - zope=1.0=py37_1 + - zope.event=4.4=pyh9f0ad1d_0 + - zope.interface=5.1.0=py37h8f50634_0 + - zstd=1.4.5=h6597ccf_2 + - pip: + - aiohttp==3.6.2 + - async-timeout==3.0.1 + - dill==0.3.2 + - en-core-web-sm==2.3.1 + - fuzzywuzzy==0.18.0 + - geographiclib==1.50 + - geopy==2.0.0 + - gmplot==1.4.1 + - google==3.0.0 + - grpcio==1.30.0 + - isodate==0.6.0 + - jq==1.0.2 + - matplotlib==3.3.1 + - modin==0.8.0 + - multidict==4.7.6 + - mwparserfromhell==0.5.4 + - pandarallel==1.4.8 + - protobuf==3.12.4 + - py-spy==0.3.3 + - pyarrow==0.16.0 + - pyqt5-sip==4.19.18 + - pyqtchart==5.12 + - pyqtwebengine==5.12.1 + - python-levenshtein==0.12.0 + - ray==0.8.6 + - rdflib==5.0.0 + - redis==3.4.1 + - sparqlwrapper==1.8.5 + - swifter==1.0.2 + - yarl==1.5.1 +prefix: /opt/conda/envs/cabby