diff --git a/fix_geojson.py b/fix_geojson.py new file mode 100644 index 00000000..0e63ed75 --- /dev/null +++ b/fix_geojson.py @@ -0,0 +1,85 @@ +import json +import pandas as pd + +with open('./input_files/Lachine_Geojson_Corrected.geojson', 'r') as f: + geojson_data = json.load(f) + +for feature in geojson_data['features']: + properties = feature.get('properties', {}) + properties.pop('detailed_model_filename', None) + +excel_df = pd.read_excel('./input_files/building_usage.xlsx') +excel_df = excel_df.set_index('order of the file in geojson') +excel_df = excel_df.sort_index() + +usage_codes = { + 'Residential': "1000", + 'Commercial': "6111", + 'Industrial': "4413", + 'Institutional': "6812", + 'Office': "6591" +} + +features = geojson_data['features'] + +assert len(features) == len(excel_df) + +print("The files' ranges match.") + +for idx, (feature, (excel_idx, row)) in enumerate(zip(features, excel_df.iterrows()), start=1): + properties = feature.get('properties', {}) + + properties.pop('detailed_model_filename', None) + + # Get the surface areas from the Excel row + commercial_area = row.get('Sup. commerciale (m²)', 0) or 0 + industrial_area = row.get('Sup. indus.léger (m²)', 0) or 0 + institutional_area = row.get('Sup. institutionnelle (m²)', 0) or 0 + office_area = row.get('Sup. bureau (m²)', 0) or 0 + residential_area = row.get('Résidentiels (m²)', 0) or 0 + + # Create a dictionary of areas with their corresponding usage codes + areas = { + usage_codes['Commercial']: commercial_area, + usage_codes['Industrial']: industrial_area, + usage_codes['Institutional']: institutional_area, + usage_codes['Office']: office_area, + usage_codes['Residential']: residential_area + } + + # Remove entries with zero area + areas = {code: area for code, area in areas.items() if area > 0} + + total_area = sum(areas.values()) + + if total_area == 0: + print(f"Total area is zero for feature at index {idx}, skipping modification.") + continue + + # Compute the percentage for each usage + usages_list = [] + for code, area in areas.items(): + percentage = (area / total_area) * 100 + usages_list.append({'usage': code, 'percentage': round(percentage)}) + + # Update 'building_type' and 'usages' in properties + if len(usages_list) > 1: + properties['building_type'] = 'mixed use' + properties['usages'] = usages_list + elif len(usages_list) == 1: + # Single usage + properties['building_type'] = list(areas.keys())[0] + else: + # No usages, skip modifying this feature + continue + + # Add 'area' attribute from Excel + properties['area'] = str(row.get('Area', '')) + + # Replace 'id' with 'development' from Excel + development = row.get('development', '') + cleaned_development = str(development).replace('-', '').replace(' ', '') + properties['id'] = "Building" + cleaned_development + +with open('input_files/Lachine_Geojson_Mixed_Use.geojson', 'w') as f: + json.dump(geojson_data, f, indent=2) diff --git a/input_files/Lachine_Geojson_Corrected.geojson b/input_files/Lachine_Geojson_Corrected.geojson new file mode 100644 index 00000000..ccb04856 --- /dev/null +++ b/input_files/Lachine_Geojson_Corrected.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "mappers": [], "features": [{"geometry": {"coordinates": [[[-73.66733104444639, 45.43566636911918], [-73.66733104444639, 45.4353591129681], [-73.66684619406267, 45.435353905836635], [-73.66684199399202, 45.43566111136084], [-73.66733104444639, 45.43566636911918]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 12.0, "number_of_stories_above_ground": 3, "number_of_stories": 3, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_340_46b913f6.json", "building_type": "Mixed use", "name": "Building_340", "year_built": 2024, "footprint_area": 1294.998360413032, "id": "Building_340_46b913f6", "type": "Building", "floor_area": 3884.995081239096}}, {"geometry": {"coordinates": [[[-73.66552334446082, 45.434660366963485], [-73.66523847525745, 45.4348411771419], [-73.66523723540048, 45.43495263669542], [-73.66510866663339, 45.43495236641987], [-73.66510898974342, 45.43492331976304], [-73.6645100581705, 45.43530340727411], [-73.66450622811278, 45.43559916517698], [-73.66478875762652, 45.43560109712901], [-73.66479223782268, 45.43535225809221], [-73.66510645973035, 45.4351507606146], [-73.66510697123165, 45.435104778139376], [-73.66523554300501, 45.43510477816004], [-73.66523252881687, 45.4353757352103], [-73.66551537701756, 45.43537661705083], [-73.66552334446082, 45.434660366963485]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 44.0, "number_of_stories_above_ground": 11, "number_of_stories": 11, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_354_dbb1c563.json", "building_type": "Mixed use", "name": "Building_354", "year_built": 2024, "footprint_area": 3264.7409803860646, "id": "Building_354_dbb1c563", "type": "Building", "floor_area": 35912.15078424671}}, {"geometry": {"coordinates": [[[-73.66027183456654, 45.43682640515838], [-73.65980092076161, 45.436935379465496], [-73.65958858851806, 45.43699072995751], [-73.6596646362897, 45.437135324833925], [-73.65980280828376, 45.437135324833925], [-73.65980549164702, 45.43741954031219], [-73.66026656265554, 45.43741954031219], [-73.66027183456654, 45.43682640515838]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_366_2d596ebd.json", "building_type": "Mixed use", "name": "Building_366", "year_built": 2024, "footprint_area": 2443.0417281824775, "id": "Building_366_2d596ebd", "type": "Building", "floor_area": 9772.16691272991}}, {"geometry": {"coordinates": [[[-73.65950945269662, 45.43888004389084], [-73.6591598283532, 45.43896421741208], [-73.6593463406809, 45.43933186962929], [-73.65950186839818, 45.4393030538919], [-73.65950945269662, 45.43888004389084]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_374_7215f554.json", "building_type": "Mixed use", "name": "Building_374", "year_built": 2024, "footprint_area": 907.9995030083592, "id": "Building_374_7215f554", "type": "Building", "floor_area": 3631.9980120334367}}, {"geometry": {"coordinates": [[[-73.6586465565685, 45.43794502009898], [-73.65877820605229, 45.43820592631496], [-73.65907725301875, 45.43820592631496], [-73.65907725301875, 45.438178967489094], [-73.65920582090638, 45.438178967489094], [-73.65920582090638, 45.43820592631496], [-73.65951490453769, 45.43820592631496], [-73.65951864171541, 45.43794501706367], [-73.65920581873392, 45.4379450182182], [-73.6592058189376, 45.437971976604835], [-73.65907725301875, 45.437971977079336], [-73.65907725301875, 45.43794502035566], [-73.6586465565685, 45.43794502009898]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_377_aaa78cfd.json", "building_type": "Mixed use", "name": "Building_377", "year_built": 2019, "footprint_area": 1756.5275000615802, "id": "Building_377_aaa78cfd", "type": "Building", "floor_area": 7026.110000246321}}, {"geometry": {"coordinates": [[[-73.65704989895627, 45.43802689452351], [-73.65753032084078, 45.43774525315344], [-73.6574163407037, 45.43751971279422], [-73.65686794922345, 45.43766772406841], [-73.65704989895627, 45.43802689452351]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_360_4fdbad91.json", "building_type": "Mixed use", "name": "Building_360", "year_built": 2024, "footprint_area": 1576.8113605151739, "id": "Building_360_4fdbad91", "type": "Building", "floor_area": 12614.490884121391}}, {"geometry": {"coordinates": [[[-73.65932645417877, 45.4370671419759], [-73.65890157746759, 45.43729789907689], [-73.65894120771091, 45.437333276458844], [-73.65883997788825, 45.43738867571641], [-73.65880034764496, 45.43735329833445], [-73.65844561006861, 45.43754677933583], [-73.65859847737923, 45.43784973556784], [-73.65907725082093, 45.4376004860529], [-73.65905346577388, 45.43757925346323], [-73.65915660532876, 45.437525558997784], [-73.65918039037581, 45.43754679158746], [-73.65949381251329, 45.43738535192706], [-73.65932645417877, 45.4370671419759]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_367_ca72b28f.json", "building_type": "Mixed use", "name": "Building_367", "year_built": 2024, "footprint_area": 2959.1453306355543, "id": "Building_367_ca72b28f", "type": "Building", "floor_area": 11836.581322542217}}, {"geometry": {"coordinates": [[[-73.65978535158648, 45.43925053092525], [-73.66024298387394, 45.43916574210401], [-73.66024690026592, 45.43887926502197], [-73.65978976299151, 45.43887926502197], [-73.65978535158648, 45.43925053092525]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_375_a7f4dd0d.json", "building_type": "Mixed use", "name": "Building_375", "year_built": 2024, "footprint_area": 1300.4263094531598, "id": "Building_375_a7f4dd0d", "type": "Building", "floor_area": 5201.705237812639}}, {"geometry": {"coordinates": [[[-73.65885600897847, 45.438360118085996], [-73.65908668813303, 45.43881728376249], [-73.65950948612074, 45.4387155014277], [-73.65951434452148, 45.438360118085996], [-73.65885600897847, 45.438360118085996]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_368_ea420648.json", "building_type": "Mixed use", "name": "Building_368", "year_built": 2024, "footprint_area": 1950.623916595192, "id": "Building_368_ea420648", "type": "Building", "floor_area": 7802.495666380768}}, {"geometry": {"coordinates": [[[-73.65915368916939, 45.43936756355871], [-73.65897287754876, 45.43900922659924], [-73.65832172130257, 45.43916599518572], [-73.65835188947426, 45.43923721973516], [-73.65822761369208, 45.43926024520204], [-73.65820255408917, 45.43919468519017], [-73.65774333549116, 45.439305243986034], [-73.6578898826934, 45.439601718062896], [-73.65832644225709, 45.43952083353656], [-73.65830997082959, 45.43947740214748], [-73.65843424661176, 45.43945437668061], [-73.65845071803926, 45.43949780806969], [-73.65915368916939, 45.43936756355871]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_376_d35d33cc.json", "building_type": "Mixed use", "name": "Building_376", "year_built": 2024, "footprint_area": 3780.178467150601, "id": "Building_376_d35d33cc", "type": "Building", "floor_area": 15120.713868602405}}, {"geometry": {"coordinates": [[[-73.66025445947743, 45.438360118085996], [-73.65979593152835, 45.438360118085996], [-73.65979170884093, 45.4387155014277], [-73.66024960107669, 45.4387155014277], [-73.66025445947743, 45.438360118085996]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_369_b369cfae.json", "building_type": "Mixed use", "name": "Building_369", "year_built": 2024, "footprint_area": 1409.4494032830407, "id": "Building_369_b369cfae", "type": "Building", "floor_area": 5637.797613132163}}, {"geometry": {"coordinates": [[[-73.66026447427403, 45.437593757702075], [-73.65980503747107, 45.437593757702075], [-73.65980191509843, 45.437840927821476], [-73.6598661965366, 45.43784132452748], [-73.65986488161884, 45.43794541472223], [-73.65980060018067, 45.43794501801622], [-73.65979730426068, 45.43820592631496], [-73.6602561053943, 45.43820592631496], [-73.6602596335108, 45.4379478508912], [-73.6601953520557, 45.437947454185085], [-73.66019677505048, 45.43784336465734], [-73.6602611322575, 45.43784376183094], [-73.66026447427403, 45.437593757702075]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_370_038c0753.json", "building_type": "Mixed use", "name": "Building_370", "year_built": 2024, "footprint_area": 2316.9198841373, "id": "Building_370_038c0753", "type": "Building", "floor_area": 9267.6795365492}}, {"geometry": {"coordinates": [[[-73.65902805798278, 45.436342589681466], [-73.65754831871094, 45.43674094641373], [-73.65769356743637, 45.43700683555103], [-73.65916649976008, 45.43660558593783], [-73.65902805798278, 45.436342589681466]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_390_2a6c49f8.json", "building_type": "Mixed use", "name": "Building_390", "year_built": 2024, "footprint_area": 3869.976910297759, "id": "Building_390_2a6c49f8", "type": "Building", "floor_area": 15479.907641191036}}, {"geometry": {"coordinates": [[[-73.66242579383741, 45.43542482172369], [-73.66209943511534, 45.43556849041064], [-73.6621953601358, 45.43567494378488], [-73.66252165561772, 45.43553130256519], [-73.66242579383741, 45.43542482172369]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_405_1065bad9.json", "building_type": "Mixed use", "name": "Building_405", "year_built": 2024, "footprint_area": 419.94905944759375, "id": "Building_405_1065bad9", "type": "Building", "floor_area": 3359.59247558075}}, {"geometry": {"coordinates": [[[-73.66242527971727, 45.434361840317344], [-73.66223884461245, 45.434523733215656], [-73.66241247213748, 45.434717126768994], [-73.66243380379623, 45.43470781759243], [-73.66250245196763, 45.43478379966691], [-73.66248056327532, 45.43479335193397], [-73.66266951469377, 45.435004088220786], [-73.66290938383, 45.43489907786838], [-73.66242527971727, 45.434361840317344]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 48.0, "number_of_stories_above_ground": 12, "number_of_stories": 12, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_415_fde139cd.json", "building_type": "Mixed use", "name": "Building_415", "year_built": 2019, "footprint_area": 1446.929144818103, "id": "Building_415_fde139cd", "type": "Building", "floor_area": 17363.149737817235}}, {"geometry": {"coordinates": [[[-73.66206517461411, 45.43468903190114], [-73.66189374178084, 45.43486466151402], [-73.66224662046491, 45.4352594349233], [-73.66248661623943, 45.43515508422521], [-73.66229650270049, 45.43494494743206], [-73.66227500642896, 45.43495430129514], [-73.66223392184848, 45.43490866691716], [-73.66225535313654, 45.43489924087419], [-73.66206517461411, 45.43468903190114]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 48.0, "number_of_stories_above_ground": 12, "number_of_stories": 12, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_416_c23e440f.json", "building_type": "Mixed use", "name": "Building_416", "year_built": 2019, "footprint_area": 1223.6529921593028, "id": "Building_416_c23e440f", "type": "Building", "floor_area": 14683.835905911634}}, {"geometry": {"coordinates": [[[-73.66150760430922, 45.43484474724227], [-73.66187174850538, 45.4344726237358], [-73.66171899456975, 45.43430310155872], [-73.66124435183745, 45.43455271349587], [-73.66150760430922, 45.43484474724227]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 48.0, "number_of_stories_above_ground": 12, "number_of_stories": 12, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_417_a7be7615.json", "building_type": "Mixed use", "name": "Building_417", "year_built": 2019, "footprint_area": 1397.401216644881, "id": "Building_417_a7be7615", "type": "Building", "floor_area": 16768.814599738573}}, {"geometry": {"coordinates": [[[-73.66181160210058, 45.43497618158248], [-73.66165069492843, 45.43515539398741], [-73.66163699090872, 45.43514018655858], [-73.66142466232206, 45.43537667021646], [-73.66158247455249, 45.435551803297955], [-73.66188707538102, 45.435417706723776], [-73.66177384937356, 45.435292059177556], [-73.66193423199161, 45.435113431001426], [-73.66181160210058, 45.43497618158248]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 48.0, "number_of_stories_above_ground": 12, "number_of_stories": 12, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_418_893680f8.json", "building_type": "Mixed use", "name": "Building_418", "year_built": 2019, "footprint_area": 1214.1505666597805, "id": "Building_418_893680f8", "type": "Building", "floor_area": 14569.806799917365}}, {"geometry": {"coordinates": [[[-73.66362307287524, 45.43410446360284], [-73.66385909515951, 45.434289111597536], [-73.6640703072093, 45.43415712053538], [-73.66340902876128, 45.433640470682455], [-73.66319709771504, 45.4337716033226], [-73.663536186716, 45.434036489703175], [-73.66355373963945, 45.43402552864978], [-73.66364007475387, 45.43409398893964], [-73.66362307287524, 45.43410446360284]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 48.0, "number_of_stories_above_ground": 12, "number_of_stories": 12, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_419_fbcfe4aa.json", "building_type": "Mixed use", "name": "Building_419", "year_built": 2019, "footprint_area": 1681.530341091624, "id": "Building_419_fbcfe4aa", "type": "Building", "floor_area": 20178.364093099488}}, {"geometry": {"coordinates": [[[-73.66300731980355, 45.43390655540063], [-73.66281263276944, 45.43405111635964], [-73.66345723907469, 45.43455477838796], [-73.66366785950288, 45.43442272045786], [-73.66342044840842, 45.43422929727795], [-73.6634012668147, 45.43424128370537], [-73.66331557098437, 45.434174293903766], [-73.66333475700264, 45.43416230471147], [-73.66300731980355, 45.43390655540063]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 48.0, "number_of_stories_above_ground": 12, "number_of_stories": 12, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_420_65e748fd.json", "building_type": "Mixed use", "name": "Building_420", "year_built": 2019, "footprint_area": 1655.9535343910102, "id": "Building_420_65e748fd", "type": "Building", "floor_area": 19871.442412692122}}, {"geometry": {"coordinates": [[[-73.66122703964504, 45.43515722985619], [-73.66139386192013, 45.43497142943028], [-73.66108971859161, 45.43463403424813], [-73.66086292316442, 45.43475330468475], [-73.66122703964504, 45.43515722985619]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 28.0, "number_of_stories_above_ground": 7, "number_of_stories": 7, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_421_f4dfe028.json", "building_type": "Mixed use", "name": "Building_421", "year_built": 2019, "footprint_area": 1072.5428258612228, "id": "Building_421_f4dfe028", "type": "Building", "floor_area": 7507.79978102856}}, {"geometry": {"coordinates": [[[-73.6638817236836, 45.4340097822226], [-73.66404457844652, 45.43413701892532], [-73.66414047157477, 45.43407713207755], [-73.66416621758079, 45.43409722018921], [-73.6645567060855, 45.43385318198243], [-73.66434247847707, 45.43368569990406], [-73.66395208312396, 45.43392965388565], [-73.66397777191658, 45.43394976329673], [-73.6638817236836, 45.4340097822226]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_422_df3df731.json", "building_type": "Mixed use", "name": "Building_422", "year_built": 2019, "footprint_area": 1208.7311602921982, "id": "Building_422_df3df731", "type": "Building", "floor_area": 7252.386961753189}}, {"geometry": {"coordinates": [[[-73.66514887178214, 45.434612865375705], [-73.66535903790715, 45.43448040476667], [-73.66514999306035, 45.434316983694906], [-73.66513098535874, 45.43432886202631], [-73.66504529167645, 45.434261870882445], [-73.66506429937802, 45.43424999255105], [-73.66473664739715, 45.43399385020317], [-73.66452620694386, 45.434125795289916], [-73.66514887178214, 45.434612865375705]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_423_d4407475.json", "building_type": "Mixed use", "name": "Building_423", "year_built": 2019, "footprint_area": 1578.6340260027937, "id": "Building_423_d4407475", "type": "Building", "floor_area": 12629.07220802235}}, {"geometry": {"coordinates": [[[-73.66448014636983, 45.435052344410366], [-73.6643313290399, 45.43493960260059], [-73.66397083753984, 45.43517206855617], [-73.66397959243466, 45.435178821299864], [-73.66380414927352, 45.43529591740219], [-73.66379664821386, 45.43529042695871], [-73.66345317179702, 45.43550990757549], [-73.66359221796748, 45.43561474146301], [-73.66448014636983, 45.435052344410366]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 12.0, "number_of_stories_above_ground": 3, "number_of_stories": 3, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_424_a724a1d7.json", "building_type": "Mixed use", "name": "Building_424", "year_built": 2019, "footprint_area": 1515.2713105212897, "id": "Building_424_a724a1d7", "type": "Building", "floor_area": 4545.813931563869}}, {"geometry": {"coordinates": [[[-73.66091823873606, 45.43554047439899], [-73.66106754169489, 45.43533487272223], [-73.6609123994251, 45.435162943608496], [-73.66089062256611, 45.435172536336815], [-73.66082206517515, 45.43509651561612], [-73.66084384992129, 45.4350869194135], [-73.66064624183024, 45.43486776398259], [-73.66041919597193, 45.43498676172836], [-73.66091823873606, 45.43554047439899]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 40.0, "number_of_stories_above_ground": 10, "number_of_stories": 10, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_426_a5ef3b2b.json", "building_type": "Mixed use", "name": "Building_426", "year_built": 2024, "footprint_area": 1457.5804860508651, "id": "Building_426_a5ef3b2b", "type": "Building", "floor_area": 14575.804860508651}}, {"geometry": {"coordinates": [[[-73.66316417991393, 45.43518206170866], [-73.66365956605448, 45.43487248990967], [-73.6635395944175, 45.43477870260932], [-73.66306689869114, 45.43507388096574], [-73.66316417991393, 45.43518206170866]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_406_a898c5bf.json", "building_type": "Mixed use", "name": "Building_406", "year_built": 2024, "footprint_area": 707.3750612332369, "id": "Building_406_a898c5bf", "type": "Building", "floor_area": 5659.000489865895}}, {"geometry": {"coordinates": [[[-73.66289311605819, 45.43488102460739], [-73.66332443758027, 45.43461151540076], [-73.6632044798506, 45.43451771941017], [-73.66279583088284, 45.43477306177878], [-73.66289311605819, 45.43488102460739]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_407_fe4fd2bd.json", "building_type": "Mixed use", "name": "Building_407", "year_built": 2024, "footprint_area": 613.4344802929554, "id": "Building_407_fe4fd2bd", "type": "Building", "floor_area": 4907.475842343643}}, {"geometry": {"coordinates": [[[-73.6630530015328, 45.43505845850779], [-73.6628390928148, 45.43519203539516], [-73.66304196630892, 45.43541717551748], [-73.66306372406977, 45.43540759738079], [-73.66310483478894, 45.43545322025718], [-73.66308307702812, 45.435462798393864], [-73.66321858336656, 45.43561317739603], [-73.66345791873536, 45.435507817892635], [-73.6630530015328, 45.43505845850779]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_408_1bca1be5.json", "building_type": "Mixed use", "name": "Building_408", "year_built": 2024, "footprint_area": 1247.3044550439517, "id": "Building_408_1bca1be5", "type": "Building", "floor_area": 9978.435640351614}}, {"geometry": {"coordinates": [[[-73.66240262716113, 45.435399088765514], [-73.66290734120307, 45.43595971236043], [-73.66312530235247, 45.43586375965471], [-73.6629231785691, 45.43563945152851], [-73.66289054204866, 45.43565381886751], [-73.66284943132949, 45.43560819599112], [-73.66288206765823, 45.435593828736515], [-73.66262372941918, 45.43530713604471], [-73.66240262716113, 45.435399088765514]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_409_3cc3999e.json", "building_type": "Mixed use", "name": "Building_409", "year_built": 2024, "footprint_area": 1452.6174090693676, "id": "Building_409_3cc3999e", "type": "Building", "floor_area": 11620.939272554984}}, {"geometry": {"coordinates": [[[-73.66274536905588, 45.43602312421793], [-73.66260604719409, 45.4358683240012], [-73.66225798878506, 45.43596421147934], [-73.66194394892212, 45.435615697916305], [-73.66172744956948, 45.43571100462926], [-73.66197343357798, 45.435985655995864], [-73.66200606856113, 45.43597128974795], [-73.66205106129956, 45.436021218447785], [-73.66201454358537, 45.436031278803824], [-73.66215192241798, 45.4361837288821], [-73.66274536905588, 45.43602312421793]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_410_f35b88c6.json", "building_type": "Mixed use", "name": "Building_410", "year_built": 2024, "footprint_area": 1839.8059343703935, "id": "Building_410_f35b88c6", "type": "Building", "floor_area": 14718.447474963148}}, {"geometry": {"coordinates": [[[-73.6640375099212, 45.43500680795111], [-73.66424305267468, 45.434874261989314], [-73.66383884910425, 45.43455695246808], [-73.66362901151322, 45.434688519563295], [-73.6640375099212, 45.43500680795111]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_411_270d7a1c.json", "building_type": "Mixed use", "name": "Building_411", "year_built": 2024, "footprint_area": 1035.7501207707683, "id": "Building_411_270d7a1c", "type": "Building", "floor_area": 8286.000966166146}}, {"geometry": {"coordinates": [[[-73.66127484199222, 45.43556497931363], [-73.66112639128302, 45.43577106173219], [-73.66160899943068, 45.436306297456696], [-73.6618867352995, 45.43624352182402], [-73.66165249922207, 45.43598374374053], [-73.66163074494021, 45.43599332645899], [-73.66156219556873, 45.4359173022057], [-73.66158394938459, 45.43590771969252], [-73.66127484199222, 45.43556497931363]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_412_bc432c10.json", "building_type": "Mixed use", "name": "Building_412", "year_built": 2024, "footprint_area": 1736.1955116029858, "id": "Building_412_bc432c10", "type": "Building", "floor_area": 13889.564092823886}}, {"geometry": {"coordinates": [[[-73.66505519969147, 45.43467425452376], [-73.66502740232639, 45.43465274235301], [-73.66512305137532, 45.43459266775576], [-73.66500367216553, 45.43449928518719], [-73.66490818660434, 45.434559255775554], [-73.66488244562743, 45.434539177696436], [-73.664686230858, 45.43466172083245], [-73.6644565628209, 45.434482066504756], [-73.66426502734427, 45.434602683642524], [-73.66449636925753, 45.434782152439574], [-73.66447667010338, 45.43479450370837], [-73.66464905165834, 45.434927908491105], [-73.66505519969147, 45.43467425452376]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_413_8927fa32.json", "building_type": "Mixed use", "name": "Building_413", "year_built": 2024, "footprint_area": 1529.3005972411338, "id": "Building_413_8927fa32", "type": "Building", "floor_area": 12234.40477792907}}, {"geometry": {"coordinates": [[[-73.66285281281284, 45.434082510967464], [-73.6627832912654, 45.43413269119674], [-73.66275558298935, 45.43411393733477], [-73.66251324062482, 45.434288858576636], [-73.66269796246517, 45.43441388432313], [-73.66294030482968, 45.434238963081256], [-73.66291259655362, 45.434220209219276], [-73.66297312730684, 45.43417651849048], [-73.66285281281284, 45.434082510967464]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_414_838d6bcb.json", "building_type": "Mixed use", "name": "Building_414", "year_built": 2024, "footprint_area": 643.7097345907241, "id": "Building_414_838d6bcb", "type": "Building", "floor_area": 5149.677876725793}}, {"geometry": {"coordinates": [[[-73.6695976944962, 45.43335516296276], [-73.66960024279547, 45.432530734047525], [-73.66942024880322, 45.4325302583109], [-73.66941770326802, 45.433353792992946], [-73.6695976944962, 45.43335516296276]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_432_91b28991.json", "building_type": "Mixed use", "name": "Building_432", "year_built": 2024, "footprint_area": 1283.7100725430791, "id": "Building_432_91b28991", "type": "Building", "floor_area": 10269.680580344633}}, {"geometry": {"coordinates": [[[-73.66648692309116, 45.43299315240255], [-73.66632685307951, 45.432875724577684], [-73.6662869496342, 45.432885533312565], [-73.6662314899197, 45.432844847905145], [-73.66627139336501, 45.43283503917027], [-73.66605577451121, 45.43267686055366], [-73.66586395238267, 45.43274007194359], [-73.66604809279451, 45.433100812915356], [-73.66648692309116, 45.43299315240255]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_437_37f55dad.json", "building_type": "Mixed use", "name": "Building_437", "year_built": 2019, "footprint_area": 1132.643133031641, "id": "Building_437_37f55dad", "type": "Building", "floor_area": 9061.145064253142}}, {"geometry": {"coordinates": [[[-73.66629596106894, 45.43393581468737], [-73.66710397267735, 45.43340975213673], [-73.66692397641738, 45.43327468829026], [-73.66611659102344, 45.43380083110689], [-73.66629137947669, 45.4339323350389], [-73.66629596106894, 45.43393581468737]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_438_beacdfce.json", "building_type": "Mixed use", "name": "Building_438", "year_built": 2019, "footprint_area": 1762.1328271207167, "id": "Building_438_beacdfce", "type": "Building", "floor_area": 14097.062616965733}}, {"geometry": {"coordinates": [[[-73.66630016267872, 45.433181827906395], [-73.66659194009395, 45.433395876664555], [-73.66666616625498, 45.43334644669076], [-73.66673557085116, 45.43339746453596], [-73.66686723112655, 45.43331166688867], [-73.66679650050222, 45.433259652246115], [-73.66682464757157, 45.433240908061016], [-73.66663285326406, 45.433100207200695], [-73.66630016267872, 45.433181827906395]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_439_b5ebd905.json", "building_type": "Mixed use", "name": "Building_439", "year_built": 2019, "footprint_area": 792.3225780949724, "id": "Building_439_b5ebd905", "type": "Building", "floor_area": 6338.580624759779}}, {"geometry": {"coordinates": [[[-73.66777119983375, 45.43291379849753], [-73.66794163235893, 45.43277880685048], [-73.66763418630634, 45.432534285118734], [-73.66744119858484, 45.432654156485185], [-73.66777119983375, 45.43291379849753]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_440_b1d1408d.json", "building_type": "Mixed use", "name": "Building_440", "year_built": 2019, "footprint_area": 748.011685138903, "id": "Building_440_b1d1408d", "type": "Building", "floor_area": 5984.093481111224}}, {"geometry": {"coordinates": [[[-73.66819794401755, 45.43186867295574], [-73.66804117421117, 45.43196526756795], [-73.66800714623197, 45.431938283882864], [-73.66756485935377, 45.43220526910353], [-73.6677330994405, 45.43234142634308], [-73.66775286505397, 45.43232919625106], [-73.66782879665047, 45.432390260560695], [-73.66780944495402, 45.432402201569644], [-73.66811035706213, 45.43263953554871], [-73.66826963062728, 45.432467024254805], [-73.66802200920615, 45.432271479585275], [-73.66800234780891, 45.43228284176986], [-73.6679250253185, 45.43222250053311], [-73.66817288428344, 45.43206987204648], [-73.6681473062388, 45.43204957976885], [-73.66825137202584, 45.43198558294379], [-73.66819794401755, 45.43186867295574]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 48.0, "number_of_stories_above_ground": 12, "number_of_stories": 12, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_441_34927703.json", "building_type": "Mixed use", "name": "Building_441", "year_built": 2019, "footprint_area": 1939.1643211467454, "id": "Building_441_34927703", "type": "Building", "floor_area": 23269.971853760944}}, {"geometry": {"coordinates": [[[-73.66898528166195, 45.432805443096115], [-73.66916472638917, 45.432804646258106], [-73.66916349367183, 45.432327695076836], [-73.66898349941692, 45.4323281078871], [-73.66898528166195, 45.432805443096115]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_442_8b94cad5.json", "building_type": "Mixed use", "name": "Building_442", "year_built": 2019, "footprint_area": 742.2262415656805, "id": "Building_442_8b94cad5", "type": "Building", "floor_area": 4453.357449394083}}, {"geometry": {"coordinates": [[[-73.66559134943027, 45.4333842960544], [-73.66571975526693, 45.433486126417385], [-73.6661604725183, 45.43337800298111], [-73.66610085913331, 45.433259295411155], [-73.66559134943027, 45.4333842960544]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_443_874a32cc.json", "building_type": "Mixed use", "name": "Building_443", "year_built": 2019, "footprint_area": 548.3050135533558, "id": "Building_443_874a32cc", "type": "Building", "floor_area": 3289.830081320135}}, {"geometry": {"coordinates": [[[-73.668561692655, 45.43272452290231], [-73.66881597030792, 45.432324936312554], [-73.6686515057645, 45.43227380894239], [-73.66843060658469, 45.432620946767024], [-73.668561692655, 45.43272452290231]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_444_91f00865.json", "building_type": "Mixed use", "name": "Building_444", "year_built": 2019, "footprint_area": 636.6193997243245, "id": "Building_444_91f00865", "type": "Building", "floor_area": 3819.716398345947}}, {"geometry": {"coordinates": [[[-73.6684107088873, 45.43260529773849], [-73.66825696634365, 45.43275505829395], [-73.66855993403234, 45.43299429839817], [-73.66875110847464, 45.43287409614764], [-73.6684107088873, 45.43260529773849]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_445_c8d5b8bd.json", "building_type": "Mixed use", "name": "Building_445", "year_built": 2019, "footprint_area": 755.0037339057599, "id": "Building_445_c8d5b8bd", "type": "Building", "floor_area": 4530.022403434559}}, {"geometry": {"coordinates": [[[-73.66523035916975, 45.43344428835361], [-73.66558718585024, 45.433725662980414], [-73.66560646249896, 45.43371372054428], [-73.6656917418297, 45.43378096950345], [-73.66567246673941, 45.43379291097411], [-73.6660489787878, 45.43408980779488], [-73.66629137947669, 45.4339323350389], [-73.66611658917947, 45.43380082971957], [-73.66556383389526, 45.43336247526904], [-73.66523035916975, 45.43344428835361]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_446_9f3bbdea.json", "building_type": "Mixed use", "name": "Building_446", "year_built": 2019, "footprint_area": 2278.027963784494, "id": "Building_446_9f3bbdea", "type": "Building", "floor_area": 18224.223710275997}}, {"geometry": {"coordinates": [[[-73.66826976340244, 45.43246688044427], [-73.6684431234713, 45.432207191678195], [-73.66827958361108, 45.43215461639845], [-73.66814405056857, 45.432367606017834], [-73.66826976340244, 45.43246688044427]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_447_19e80087.json", "building_type": "Mixed use", "name": "Building_447", "year_built": 2019, "footprint_area": 397.34580822650605, "id": "Building_447_19e80087", "type": "Building", "floor_area": 1589.3832329060242}}, {"geometry": {"coordinates": [[[-73.66478481369315, 45.4331999405812], [-73.66486641573151, 45.4333624124384], [-73.66493012111978, 45.43334678530579], [-73.66495552903392, 45.43339738198849], [-73.66545538522467, 45.43327479625445], [-73.66542923451642, 45.43322270281657], [-73.66602930406131, 45.43307548268369], [-73.66594975277539, 45.43291410222965], [-73.66478481369315, 45.4331999405812]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 4.0, "number_of_stories_above_ground": 1, "number_of_stories": 1, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_448_8b7761d8.json", "building_type": "Mixed use", "name": "Building_448", "year_built": 2019, "footprint_area": 2076.7223687399237, "id": "Building_448_8b7761d8", "type": "Building", "floor_area": 2076.7223687399237}}, {"geometry": {"coordinates": [[[-73.66687523305983, 45.43300569788887], [-73.66704845294669, 45.43312925943825], [-73.66724401867715, 45.43327505802548], [-73.66769630737754, 45.432975018696354], [-73.66747581970738, 45.432811552149246], [-73.66721111358372, 45.432987152927446], [-73.66706730008384, 45.4328863982505], [-73.66687523305983, 45.43300569788887]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_433_31591056.json", "building_type": "Mixed use", "name": "Building_433", "year_built": 2024, "footprint_area": 1535.5010229039326, "id": "Building_433_31591056", "type": "Building", "floor_area": 12284.00818323146}}, {"geometry": {"coordinates": [[[-73.66870958267681, 45.432179123945076], [-73.66887583321109, 45.432232570660354], [-73.66916353210719, 45.43223257066049], [-73.66916407405287, 45.431945627832995], [-73.66887548077842, 45.431945926632814], [-73.66870958267681, 45.432179123945076]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_434_4ccb38f2.json", "building_type": "Mixed use", "name": "Building_434", "year_built": 2024, "footprint_area": 921.4234756113219, "id": "Building_434_4ccb38f2", "type": "Building", "floor_area": 5528.5408536679315}}, {"geometry": {"coordinates": [[[-73.66671707646795, 45.43262783473566], [-73.66685886651642, 45.432581110480704], [-73.6668862801576, 45.432621751492384], [-73.66725575717793, 45.432499997260074], [-73.6673362319882, 45.43256349177961], [-73.66752392585083, 45.43244732020689], [-73.66727006379638, 45.432246909463274], [-73.66674921195168, 45.432418546433944], [-73.6667870120313, 45.43247563465473], [-73.66659568493438, 45.432538682916395], [-73.66655833369327, 45.432511251587385], [-73.6663128232714, 45.43259215494888], [-73.66675709111809, 45.432922821917856], [-73.66695200967966, 45.43280195609688], [-73.66671707646795, 45.43262783473566]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 44.0, "number_of_stories_above_ground": 11, "number_of_stories": 11, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_435_23cbf0f2.json", "building_type": "Mixed use", "name": "Building_435", "year_built": 2024, "footprint_area": 2485.3035762150394, "id": "Building_435_23cbf0f2", "type": "Building", "floor_area": 27338.339338365433}}, {"geometry": {"coordinates": [[[-73.66855504604872, 45.43177302438879], [-73.66819134139887, 45.43185422525132], [-73.66826818123967, 45.43202236449439], [-73.66852125151473, 45.43210372227767], [-73.66863632927094, 45.43195088654097], [-73.66855504604872, 45.43177302438879]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 60.0, "number_of_stories_above_ground": 15, "number_of_stories": 15, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_436_11dc7a34.json", "building_type": "Mixed use", "name": "Building_436", "year_built": 2024, "footprint_area": 808.0809936788719, "id": "Building_436_11dc7a34", "type": "Building", "floor_area": 12121.214905183078}}, {"geometry": {"coordinates": [[[-73.66450714439269, 45.43573449384973], [-73.66450688574393, 45.43591421917367], [-73.66509833501617, 45.4359146255426], [-73.6650986394219, 45.4358872603478], [-73.66522692055351, 45.4358872603478], [-73.66522692055351, 45.43591330658078], [-73.66550976332553, 45.43591474835359], [-73.66551398196725, 45.43551034726427], [-73.66523021549996, 45.43550946256085], [-73.66522860290465, 45.43576214972259], [-73.66510030291327, 45.43576145249376], [-73.66510030291327, 45.43573771728894], [-73.66450714439269, 45.43573449384973]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_313_3535784c.json", "building_type": "Mixed use", "name": "Building_313", "year_built": 2019, "footprint_area": 2044.068283611894, "id": "Building_313_3535784c", "type": "Building", "floor_area": 16352.546268895137}}, {"geometry": {"coordinates": [[[-73.66855723020524, 45.43365135021441], [-73.66819366967181, 45.43366590821685], [-73.6676461765098, 45.4340092773018], [-73.66802133251856, 45.43429946603576], [-73.66821120470597, 45.434179547274596], [-73.66801055231463, 45.434023333792325], [-73.66829954734341, 45.43384180466896], [-73.66855713553797, 45.43383159187963], [-73.66855723020524, 45.43365135021441]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_314_157be3b5.json", "building_type": "Mixed use", "name": "Building_314", "year_built": 2019, "footprint_area": 2029.559184732003, "id": "Building_314_157be3b5", "type": "Building", "floor_area": 16236.473477856023}}, {"geometry": {"coordinates": [[[-73.66870328505728, 45.43455702519744], [-73.66853869342219, 45.434663657449015], [-73.66873426674923, 45.43481057524169], [-73.6691501270639, 45.434810707201294], [-73.66915035201396, 45.43465794032685], [-73.66883301564877, 45.43465794032685], [-73.66870328505728, 45.43455702519744]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_315_65dc6b01.json", "building_type": "Mixed use", "name": "Building_315", "year_built": 2019, "footprint_area": 808.2807625484893, "id": "Building_315_65dc6b01", "type": "Building", "floor_area": 6466.246100387914}}, {"geometry": {"coordinates": [[[-73.66696875304719, 45.43443293153739], [-73.66707235624921, 45.43451297098936], [-73.66721856458851, 45.434424932162536], [-73.66728439249121, 45.434476468836856], [-73.66747856252012, 45.434354725222875], [-73.66768028114004, 45.434512022552944], [-73.66787168130698, 45.43439211090542], [-73.66749826792116, 45.43410092842251], [-73.66696875304719, 45.43443293153739]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_316_6a66db69.json", "building_type": "Mixed use", "name": "Building_316", "year_built": 2019, "footprint_area": 1458.239197322313, "id": "Building_316_6a66db69", "type": "Building", "floor_area": 11665.913578578504}}, {"geometry": {"coordinates": [[[-73.6680858113146, 45.43734895102968], [-73.66808575971928, 45.43722314318597], [-73.66762279615294, 45.437223146156924], [-73.6676227977928, 45.43734895106356], [-73.6680858113146, 45.43734895102968]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_317_8f24a408.json", "building_type": "Mixed use", "name": "Building_317", "year_built": 2019, "footprint_area": 504.1510401284031, "id": "Building_317_8f24a408", "type": "Building", "floor_area": 3024.9062407704187}}, {"geometry": {"coordinates": [[[-73.6685755854259, 45.436103056260166], [-73.66857616208834, 45.43628278176591], [-73.66914968598168, 45.43628278176591], [-73.66914988144319, 45.436103056260166], [-73.6685755854259, 45.436103056260166]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_318_41ab1640.json", "building_type": "Mixed use", "name": "Building_318", "year_built": 2019, "footprint_area": 892.7734067997189, "id": "Building_318_41ab1640", "type": "Building", "floor_area": 5356.640440798314}}, {"geometry": {"coordinates": [[[-73.66914988133883, 45.43628278578339], [-73.66896969093898, 45.43628280183978], [-73.6689698864005, 45.436868686914714], [-73.6691496651975, 45.43686865761376], [-73.66914988133883, 45.43628278578339]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_319_e697cfba.json", "building_type": "Mixed use", "name": "Building_319", "year_built": 2019, "footprint_area": 912.7054441040582, "id": "Building_319_e697cfba", "type": "Building", "floor_area": 5476.232664624349}}, {"geometry": {"coordinates": [[[-73.66875558046858, 45.436282781765904], [-73.66857558542591, 45.43628278176591], [-73.66857558542594, 45.4370151632019], [-73.66875558046863, 45.4370151632019], [-73.66875558046858, 45.436282781765904]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_320_cee3a08b.json", "building_type": "Mixed use", "name": "Building_320", "year_built": 2019, "footprint_area": 1140.9999999757201, "id": "Building_320_cee3a08b", "type": "Building", "floor_area": 6845.999999854321}}, {"geometry": {"coordinates": [[[-73.66914988144318, 45.435914721482895], [-73.66914988104259, 45.43573499597712], [-73.66857558542596, 45.43573499597712], [-73.66857558542596, 45.435914721482895], [-73.66914988144318, 45.435914721482895]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_321_cedec74e.json", "building_type": "Mixed use", "name": "Building_321", "year_built": 2019, "footprint_area": 893.3736526669236, "id": "Building_321_cedec74e", "type": "Building", "floor_area": 5360.2419160015415}}, {"geometry": {"coordinates": [[[-73.66912471619447, 45.435137954392154], [-73.66912500538544, 45.43509237395358], [-73.66903967333118, 45.43509210946137], [-73.66903954004856, 45.435137954076716], [-73.66896904524788, 45.435137953925526], [-73.66896904529717, 45.43573499597712], [-73.66914904396614, 45.43573499597712], [-73.6691504300253, 45.43513795431771], [-73.66912471619447, 45.435137954392154]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_322_a918514d.json", "building_type": "Mixed use", "name": "Building_322", "year_built": 2019, "footprint_area": 967.4823063865333, "id": "Building_322_a918514d", "type": "Building", "floor_area": 5804.8938383192}}, {"geometry": {"coordinates": [[[-73.66860046877501, 45.435091482642406], [-73.66860098987331, 45.43513795260311], [-73.66857527798572, 45.43513795265448], [-73.6685747443226, 45.43573499597712], [-73.6687547393653, 45.43573499597712], [-73.66875473933453, 45.43513795229591], [-73.66872902575687, 45.43513795414672], [-73.6687290283864, 45.435091486344064], [-73.66860046877501, 45.435091482642406]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_323_3e3b559a.json", "building_type": "Mixed use", "name": "Building_323", "year_built": 2019, "footprint_area": 980.3749082066461, "id": "Building_323_3e3b559a", "type": "Building", "floor_area": 5882.249449239876}}, {"geometry": {"coordinates": [[[-73.66915037956396, 45.43382809010173], [-73.66891845888708, 45.43382809010173], [-73.66891817983912, 45.43393873152316], [-73.66915010051599, 45.43393873152316], [-73.66915037956396, 45.43382809010173]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_324_e74e5325.json", "building_type": "Mixed use", "name": "Building_324", "year_built": 2019, "footprint_area": 222.09817462227147, "id": "Building_324_e74e5325", "type": "Building", "floor_area": 1332.5890477336288}}, {"geometry": {"coordinates": [[[-73.66889894908068, 45.43364908870339], [-73.66889894908068, 45.433667060847434], [-73.6688218083481, 45.433666998320064], [-73.6688218083481, 45.43364896272528], [-73.66872407797348, 45.43364880312234], [-73.66872407797348, 45.433827965482486], [-73.66915037956396, 45.43382809010173], [-73.66915063431738, 45.433649499729164], [-73.66889894908068, 45.43364908870339]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_325_905f65dd.json", "building_type": "Mixed use", "name": "Building_325", "year_built": 2019, "footprint_area": 648.1976552232663, "id": "Building_325_905f65dd", "type": "Building", "floor_area": 3889.185931339598}}, {"geometry": {"coordinates": [[[-73.66914984896135, 45.43456126585547], [-73.66914987903989, 45.43401364617683], [-73.66896988399718, 45.43401364617683], [-73.66896985392665, 45.434561120362574], [-73.66914984896135, 45.43456126585547]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_326_7439d825.json", "building_type": "Mixed use", "name": "Building_326", "year_built": 2019, "footprint_area": 853.0405318281519, "id": "Building_326_7439d825", "type": "Building", "floor_area": 5118.243190968911}}, {"geometry": {"coordinates": [[[-73.66792908356777, 45.43473638727616], [-73.66806637021915, 45.434650315351966], [-73.66806608370287, 45.43465005267265], [-73.66785102758027, 45.43448235494697], [-73.667714577041, 45.434567846340144], [-73.66792908356777, 45.43473638727616]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_327_dfacd269.json", "building_type": "Mixed use", "name": "Building_327", "year_built": 2019, "footprint_area": 358.93166192741774, "id": "Building_327_dfacd269", "type": "Building", "floor_area": 2153.5899715645064}}, {"geometry": {"coordinates": [[[-73.66771197333232, 45.43463895072591], [-73.66768424656718, 45.43461726361632], [-73.66756271417947, 45.43469436692789], [-73.66721856458851, 45.434424932162536], [-73.66707235624921, 45.43451297098936], [-73.66746843048814, 45.434823046408354], [-73.66754296375798, 45.43477653608321], [-73.66763176215117, 45.43484703552944], [-73.66781662098506, 45.434733285519975], [-73.66776977585148, 45.434697053040786], [-73.66777518307661, 45.43469363769368], [-73.66773608558198, 45.434663398877326], [-73.66779090216089, 45.434629054749216], [-73.66776383963118, 45.43460655268249], [-73.66771197333232, 45.43463895072591]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_328_db2892a6.json", "building_type": "Mixed use", "name": "Building_328", "year_built": 2019, "footprint_area": 988.3932561137699, "id": "Building_328_db2892a6", "type": "Building", "floor_area": 5930.359536682619}}, {"geometry": {"coordinates": [[[-73.66868062589147, 45.43426563859048], [-73.66851535483774, 45.4341361342674], [-73.66827620087494, 45.43428270654718], [-73.66843902138118, 45.434412816783365], [-73.66868062589147, 45.43426563859048]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_329_cca143d4.json", "building_type": "Mixed use", "name": "Building_329", "year_built": 2019, "footprint_area": 478.6204031245943, "id": "Building_329_cca143d4", "type": "Building", "floor_area": 2871.722418747566}}, {"geometry": {"coordinates": [[[-73.6658846568397, 45.43761422933907], [-73.66614181370655, 45.43761429055853], [-73.66614649614958, 45.43737649869079], [-73.66647268098447, 45.437375909916675], [-73.66647304451038, 45.43719618438365], [-73.66589284764144, 45.437196752027766], [-73.6658846568397, 45.43761422933907]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_330_694e8f6b.json", "building_type": "Mixed use", "name": "Building_330", "year_built": 2019, "footprint_area": 1434.9411493013613, "id": "Building_330_694e8f6b", "type": "Building", "floor_area": 8609.646895808168}}, {"geometry": {"coordinates": [[[-73.66797638367166, 45.436781800397085], [-73.66755522364404, 45.43678176862274], [-73.66755522364404, 45.43701645225282], [-73.6679762033694, 45.437016484746664], [-73.66797638367166, 45.436781800397085]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 60.0, "number_of_stories_above_ground": 15, "number_of_stories": 15, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_331_4065c1cd.json", "building_type": "Mixed use", "name": "Building_331", "year_built": 2019, "footprint_area": 855.313686118232, "id": "Building_331_4065c1cd", "type": "Building", "floor_area": 12829.70529177348}}, {"geometry": {"coordinates": [[[-73.66600115564697, 45.436757924758744], [-73.66600126632814, 45.436791296476116], [-73.66589816363476, 45.43679156295233], [-73.66589567196051, 45.437015557254995], [-73.66643563828254, 45.43701567702279], [-73.66643563828254, 45.436791296476116], [-73.66639706791626, 45.436791296476116], [-73.66639706791626, 45.43676420171306], [-73.66600115564697, 45.436757924758744]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 60.0, "number_of_stories_above_ground": 15, "number_of_stories": 15, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_332_dc309c31.json", "building_type": "Mixed use", "name": "Building_332", "year_built": 2019, "footprint_area": 1149.438834497756, "id": "Building_332_dc309c31", "type": "Building", "floor_area": 17241.58251746634}}, {"geometry": {"coordinates": [[[-73.6650877497723, 45.436845228874915], [-73.6650877497723, 45.436818270049045], [-73.66521634168008, 45.436818270049045], [-73.6652169981539, 45.43693874810717], [-73.66549771082332, 45.43693800085723], [-73.66550371755125, 45.43641812586527], [-73.66522089080573, 45.43641655902009], [-73.66521776207713, 45.436692462195005], [-73.66508917642724, 45.436692462195005], [-73.66508943782023, 45.436669411568694], [-73.66449186185157, 45.436665503369134], [-73.66448950821147, 45.43684131632232], [-73.6650877497723, 45.436845228874915]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_333_dc9f7107.json", "building_type": "Mixed use", "name": "Building_333", "year_built": 2019, "footprint_area": 2324.0116964114713, "id": "Building_333_dc9f7107", "type": "Building", "floor_area": 18592.09357129177}}, {"geometry": {"coordinates": [[[-73.66550524615131, 45.43628332810451], [-73.6655022650791, 45.43628332623154], [-73.66550728573345, 45.436103198345315], [-73.66484653186305, 45.436103198345315], [-73.66484452813047, 45.43628332810451], [-73.66550524615131, 45.43628332810451]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_334_30634f93.json", "building_type": "Mixed use", "name": "Building_334", "year_built": 2019, "footprint_area": 1027.8277728328394, "id": "Building_334_30634f93", "type": "Building", "floor_area": 8222.622182662715}}, {"geometry": {"coordinates": [[[-73.6647050963017, 45.43610390508989], [-73.66452510706056, 45.43610290317952], [-73.66451904593261, 45.4365746599971], [-73.66469903371814, 45.43657578972205], [-73.6647050963017, 45.43610390508989]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_335_1612bae2.json", "building_type": "Mixed use", "name": "Building_335", "year_built": 2019, "footprint_area": 735.09355594097, "id": "Building_335_1612bae2", "type": "Building", "floor_area": 2940.37422376388}}, {"geometry": {"coordinates": [[[-73.66886546844894, 45.43509156950213], [-73.66919874212991, 45.435092602505364], [-73.66919956496174, 45.43496291299882], [-73.66886629128078, 45.434961879995576], [-73.66886546844894, 45.43509156950213]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 12.0, "number_of_stories_above_ground": 3, "number_of_stories": 3, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_336_80b85245.json", "building_type": "Mixed use", "name": "Building_336", "year_built": 2019, "footprint_area": 374.11245699843494, "id": "Building_336_80b85245", "type": "Building", "floor_area": 1122.3373709953048}}, {"geometry": {"coordinates": [[[-73.66486974164107, 45.43737690130108], [-73.66486926813091, 45.437403869158636], [-73.66520655983254, 45.437403869158636], [-73.6654930841301, 45.4374038761391], [-73.665496676828, 45.437206178881524], [-73.66487273953288, 45.43720616215085], [-73.66487224686861, 45.43723422089436], [-73.66474361521048, 45.4372331175143], [-73.66474650766342, 45.43706842187796], [-73.66448601071066, 45.43706805838245], [-73.66447916433727, 45.43746977622446], [-73.66473632085447, 45.43746977622446], [-73.66474115841577, 45.437377223432534], [-73.66486974164107, 45.43737690130108]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_343_ad8631bb.json", "building_type": "Mixed use", "name": "Building_343", "year_built": 2019, "footprint_area": 2131.0154588451987, "id": "Building_343_ad8631bb", "type": "Building", "floor_area": 8524.061835380795}}, {"geometry": {"coordinates": [[[-73.6644646393823, 45.43832193988809], [-73.66512144412297, 45.438201240734585], [-73.66512466689582, 45.43802917334377], [-73.6654814496118, 45.43796458972651], [-73.66548445403319, 45.437713175863564], [-73.66512812775183, 45.437712543970115], [-73.66473414210601, 45.437712543970115], [-73.66447372821867, 45.437759946496065], [-73.6644646393823, 45.43832193988809]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 12.0, "number_of_stories_above_ground": 3, "number_of_stories": 3, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_344_7f526e39.json", "building_type": "Mixed use", "name": "Building_344", "year_built": 2019, "footprint_area": 3933.6318337951816, "id": "Building_344_7f526e39", "type": "Building", "floor_area": 11800.895501385545}}, {"geometry": {"coordinates": [[[-73.6683817123226, 45.43558098523676], [-73.66798155536286, 45.435580383752026], [-73.66797633849002, 45.436840609545065], [-73.66797620337994, 45.43701647103186], [-73.66810861972675, 45.43701724369408], [-73.66810900543042, 45.43698438088535], [-73.6680908387879, 45.43698427305005], [-73.66809115398914, 45.436958033086796], [-73.66818615901978, 45.43695863520665], [-73.66818768636833, 45.436841167223555], [-73.66837631092021, 45.43684145542346], [-73.66837822617761, 45.43639650224013], [-73.6683817123226, 45.43558098523676]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 12.0, "number_of_stories_above_ground": 3, "number_of_stories": 3, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_345_e7854e68.json", "building_type": "Mixed use", "name": "Building_345", "year_built": 2019, "footprint_area": 4641.780357689033, "id": "Building_345_e7854e68", "type": "Building", "floor_area": 13925.341073067098}}, {"geometry": {"coordinates": [[[-73.66756393622092, 45.43558131335795], [-73.66756122344515, 45.436781769075395], [-73.66797638367166, 45.43678180039711], [-73.66798152472069, 45.43558433241448], [-73.6676128820165, 45.43558286765161], [-73.667612890393, 45.43558183742019], [-73.66756393622092, 45.43558131335795]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 12.0, "number_of_stories_above_ground": 3, "number_of_stories": 3, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_346_04f1be3c.json", "building_type": "Mixed use", "name": "Building_346", "year_built": 2019, "footprint_area": 4319.029592704443, "id": "Building_346_04f1be3c", "type": "Building", "floor_area": 12957.088778113328}}, {"geometry": {"coordinates": [[[-73.66755522364404, 45.43700835307186], [-73.66755522371945, 45.43678176862275], [-73.66693175593072, 45.436778473713474], [-73.66692930265519, 45.437005052811514], [-73.66755522364404, 45.43700835307186]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 12.0, "number_of_stories_above_ground": 3, "number_of_stories": 3, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_347_40875a4e.json", "building_type": "Mixed use", "name": "Building_347", "year_built": 2019, "footprint_area": 1225.15986339136, "id": "Building_347_40875a4e", "type": "Building", "floor_area": 3675.47959017408}}, {"geometry": {"coordinates": [[[-73.66644930374004, 45.43637531940716], [-73.66643057653587, 45.43637531940716], [-73.66643950669717, 45.43585861597039], [-73.66644308375496, 45.43566090949072], [-73.6664503018958, 45.43496464126868], [-73.66636025762105, 45.43496377325735], [-73.66596497474704, 45.434961018195914], [-73.66596292561626, 45.43675731864426], [-73.66643666551667, 45.43676482950955], [-73.66644930374004, 45.43637531940716]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 12.0, "number_of_stories_above_ground": 3, "number_of_stories": 3, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_348_7cdda7c9.json", "building_type": "Mixed use", "name": "Building_348", "year_built": 2019, "footprint_area": 7440.6678389157605, "id": "Building_348_7cdda7c9", "type": "Building", "floor_area": 22322.00351674728}}, {"geometry": {"coordinates": [[[-73.65966697049467, 45.43559209084622], [-73.65950936365957, 45.435417173136486], [-73.65932172512284, 45.435496617362766], [-73.65934170870406, 45.435519675670896], [-73.65923174256596, 45.43556623420258], [-73.65921175898475, 45.43554317589445], [-73.65888443343394, 45.435681762165586], [-73.65903737817145, 45.43585867540249], [-73.65966697049467, 45.43559209084622]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 48.0, "number_of_stories_above_ground": 12, "number_of_stories": 12, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_378_49360c4a.json", "building_type": "Mixed use", "name": "Building_378", "year_built": 2019, "footprint_area": 1282.0234582195408, "id": "Building_378_49360c4a", "type": "Building", "floor_area": 15384.28149863449}}, {"geometry": {"coordinates": [[[-73.65973584450018, 45.435314319898964], [-73.66007769849766, 45.435694780066335], [-73.66011034358758, 45.435680417821665], [-73.66017883204488, 45.43575646920995], [-73.66038573755306, 45.4356660129516], [-73.66031751620031, 45.435589844688224], [-73.66035020869774, 45.43557553965761], [-73.66000500393592, 45.435192011693715], [-73.65973584450018, 45.435314319898964]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 48.0, "number_of_stories_above_ground": 12, "number_of_stories": 12, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_379_34899767.json", "building_type": "Mixed use", "name": "Building_379", "year_built": 2019, "footprint_area": 1444.435139580106, "id": "Building_379_34899767", "type": "Building", "floor_area": 17333.22167496127}}, {"geometry": {"coordinates": [[[-73.66059725338928, 45.435787069460766], [-73.66060988771902, 45.43580109409244], [-73.66073217827977, 45.43574761783635], [-73.6608360970542, 45.43570187920045], [-73.66068556792386, 45.43553479869472], [-73.66014619770765, 45.43577074503025], [-73.6602969430314, 45.435938027141006], [-73.6605444981357, 45.43582970616142], [-73.66053214989437, 45.43581599243918], [-73.66059725338928, 45.435787069460766]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 48.0, "number_of_stories_above_ground": 12, "number_of_stories": 12, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_380_1f366b9d.json", "building_type": "Mixed use", "name": "Building_380", "year_built": 2019, "footprint_area": 1077.6205160361715, "id": "Building_380_1f366b9d", "type": "Building", "floor_area": 12931.446192434058}}, {"geometry": {"coordinates": [[[-73.65946768693765, 45.435676472304934], [-73.65951306658182, 45.43572560465081], [-73.65945242777238, 45.43575229377727], [-73.65971229836644, 45.436041958374354], [-73.65996954046402, 45.435928173693185], [-73.65970846303154, 45.435639604272424], [-73.65968714221097, 45.43564898826399], [-73.65964365105059, 45.4356019648606], [-73.65946768693765, 45.435676472304934]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_381_839401bc.json", "building_type": "Mixed use", "name": "Building_381", "year_built": 2019, "footprint_area": 999.4070307786751, "id": "Building_381_839401bc", "type": "Building", "floor_area": 5996.442184672051}}, {"geometry": {"coordinates": [[[-73.65704084309412, 45.43635539015288], [-73.65685020101347, 45.43655753285277], [-73.65703151425289, 45.436881740679425], [-73.65706744308366, 45.43687193559187], [-73.65709847808593, 45.43692742955727], [-73.65729036222264, 45.43687556575514], [-73.6572591269909, 45.43681973259087], [-73.65729486741753, 45.43680999905905], [-73.65704084309412, 45.43635539015288]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 24.0, "number_of_stories_above_ground": 6, "number_of_stories": 6, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_382_d8cfe31d.json", "building_type": "Mixed use", "name": "Building_382", "year_built": 2019, "footprint_area": 1129.4963064734766, "id": "Building_382_d8cfe31d", "type": "Building", "floor_area": 6776.9778388408595}}, {"geometry": {"coordinates": [[[-73.65744041788435, 45.43654948135996], [-73.6578314724335, 45.43637989514], [-73.65780661394352, 45.4363518870339], [-73.65787635890342, 45.43632165976175], [-73.65771614139304, 45.436129490273714], [-73.65763934474647, 45.43616310698943], [-73.65761903661414, 45.4361401872278], [-73.65729074446949, 45.43628389276972], [-73.65744041788435, 45.43654948135996]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 60.0, "number_of_stories_above_ground": 15, "number_of_stories": 15, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_383_63202c5c.json", "building_type": "Mixed use", "name": "Building_383", "year_built": 2019, "footprint_area": 1198.0054285601364, "id": "Building_383_63202c5c", "type": "Building", "floor_area": 17970.081428402045}}, {"geometry": {"coordinates": [[[-73.65744290285458, 45.43707431681009], [-73.65732649436283, 45.43686604536719], [-73.65642437009781, 45.4371089059564], [-73.65653931416294, 45.437317571637124], [-73.65744290285458, 45.43707431681009]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 60.0, "number_of_stories_above_ground": 15, "number_of_stories": 15, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_384_00aafdd0.json", "building_type": "Mixed use", "name": "Building_384", "year_built": 2019, "footprint_area": 1872.453116929013, "id": "Building_384_00aafdd0", "type": "Building", "floor_area": 28086.796753935196}}, {"geometry": {"coordinates": [[[-73.66102831571936, 45.43591496177822], [-73.66064698460227, 45.43632600239489], [-73.6607979949412, 45.43649358079012], [-73.66133634726165, 45.4362565800703], [-73.66102831571936, 45.43591496177822]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_385_c5ef0cae.json", "building_type": "Mixed use", "name": "Building_385", "year_built": 2019, "footprint_area": 1657.0308547894238, "id": "Building_385_c5ef0cae", "type": "Building", "floor_area": 13256.24683831542}}, {"geometry": {"coordinates": [[[-73.65768085934616, 45.43650960374239], [-73.65779076376776, 45.43663121397068], [-73.65795326898645, 45.436591064327885], [-73.65883759748795, 45.43620582270627], [-73.65870738393136, 45.43606019112894], [-73.65768085934616, 45.43650960374239]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 4.0, "number_of_stories_above_ground": 1, "number_of_stories": 1, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_394_f6814153.json", "building_type": "Mixed use", "name": "Building_394", "year_built": 2019, "footprint_area": 1770.76921350279, "id": "Building_394_f6814153", "type": "Building", "floor_area": 1770.76921350279}}, {"geometry": {"coordinates": [[[-73.66720672413315, 45.43591349917142], [-73.66720609413696, 45.43593488696677], [-73.6675081195566, 45.43593803670924], [-73.6675080555112, 45.43594118649132], [-73.6675631239375, 45.43594118645168], [-73.66756373929483, 45.43566887081055], [-73.66684199399202, 45.43566111136084], [-73.66684195283074, 45.43566412201921], [-73.66644307724094, 45.435661452106686], [-73.6664388086674, 45.435899004309384], [-73.66652029083926, 45.435899004309384], [-73.66652028392807, 45.43591333747217], [-73.66720672413315, 45.43591349917142]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 12.0, "number_of_stories_above_ground": 3, "number_of_stories": 3, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_341_65ad9c72.json", "building_type": "Mixed use", "name": "Building_341", "year_built": 2024, "footprint_area": 2484.8825099908718, "id": "Building_341_65ad9c72", "type": "Building", "floor_area": 7454.647529972615}}, {"geometry": {"coordinates": [[[-73.66587672156344, 45.43806123747731], [-73.66647268098447, 45.43794989981638], [-73.66647268098447, 45.43771252585689], [-73.66610245673452, 45.43771196836377], [-73.6661024567391, 45.43762326746439], [-73.66592246171727, 45.43762322461429], [-73.66592289212869, 45.437712392077565], [-73.66588306732686, 45.437712038520935], [-73.66587672156344, 45.43806123747731]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 56.0, "number_of_stories_above_ground": 14, "number_of_stories": 14, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_355_d3efbceb.json", "building_type": "Mixed use", "name": "Building_355", "year_built": 2024, "footprint_area": 1641.9575463399633, "id": "Building_355_d3efbceb", "type": "Building", "floor_area": 22987.405648759486}}, {"geometry": {"coordinates": [[[-73.65916649976008, 45.43660558593783], [-73.66026705538488, 45.43631439858974], [-73.66012250894464, 45.436048109665215], [-73.65902666942361, 45.436339951851515], [-73.65916649976008, 45.43660558593783]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 16.0, "number_of_stories_above_ground": 4, "number_of_stories": 4, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_391_225549af.json", "building_type": "Mixed use", "name": "Building_391", "year_built": 2024, "footprint_area": 2886.824986603955, "id": "Building_391_225549af", "type": "Building", "floor_area": 11547.29994641582}}, {"geometry": {"coordinates": [[[-73.66644750504312, 45.43474765576057], [-73.66645030861031, 45.434965162194594], [-73.66644307812048, 45.43566145208506], [-73.66684195283074, 45.43566412201921], [-73.66684619406267, 45.435353905836635], [-73.66685092087519, 45.434823537626215], [-73.66676367919239, 45.43482330222594], [-73.66676414203678, 45.43474095199919], [-73.66652913279499, 45.43474031397364], [-73.66652909197072, 45.43474765576057], [-73.66644750504312, 45.43474765576057]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 12.0, "number_of_stories_above_ground": 3, "number_of_stories": 3, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_342_0f833065.json", "building_type": "Mixed use", "name": "Building_342", "year_built": 2024, "footprint_area": 3125.7782000612933, "id": "Building_342_0f833065", "type": "Building", "floor_area": 9377.33460018388}}, {"geometry": {"coordinates": [[[-73.66746285719077, 45.43758112090893], [-73.66710280943789, 45.437647626580464], [-73.66710280274614, 45.43767551215465], [-73.66699994387528, 45.43769451157411], [-73.66699992423368, 45.437204861341634], [-73.6667425390757, 45.43720547997625], [-73.66674267355006, 45.43789957986157], [-73.66699990604663, 45.43785214966876], [-73.6669999127376, 45.437824267316756], [-73.66710277160038, 45.4378053015338], [-73.66710276490942, 45.437833183885814], [-73.66746285719076, 45.43776678774007], [-73.66746285719077, 45.43758112090893]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 60.0, "number_of_stories_above_ground": 15, "number_of_stories": 15, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_356_a7217ca7.json", "building_type": "Mixed use", "name": "Building_356", "year_built": 2024, "footprint_area": 2187.804817280379, "id": "Building_356_a7217ca7", "type": "Building", "floor_area": 32817.072259205685}}, {"geometry": {"coordinates": [[[-73.657900710434, 45.43634907292063], [-73.65892445795284, 45.435901817013246], [-73.6587146994442, 45.435660256947216], [-73.65769766316909, 45.4361027051973], [-73.657900710434, 45.43634907292063]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 12.0, "number_of_stories_above_ground": 3, "number_of_stories": 3, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_392_4aff6619.json", "building_type": "Mixed use", "name": "Building_392", "year_built": 2024, "footprint_area": 2949.397039983276, "id": "Building_392_4aff6619", "type": "Building", "floor_area": 8848.191119949828}}, {"geometry": {"coordinates": [[[-73.668085877649, 45.43766880655165], [-73.66834307981148, 45.43762085141583], [-73.66834319464849, 45.437205124658014], [-73.66808575236738, 45.43720521665987], [-73.668085877649, 45.43751069794799], [-73.6679830233389, 45.43752987505118], [-73.6679830233389, 45.43750197353289], [-73.66762283189354, 45.43756913093748], [-73.66762285022646, 45.43775513764128], [-73.66798296501898, 45.43768799452855], [-73.6679830233389, 45.43766008213656], [-73.66808594616244, 45.43764089225922], [-73.668085877649, 45.43766880655165]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 40.0, "number_of_stories_above_ground": 10, "number_of_stories": 10, "floor_height": 4.0, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_357_f9a1e67e.json", "building_type": "Mixed use", "name": "Building_357", "year_built": 2024, "footprint_area": 1674.9280842908665, "id": "Building_357_f9a1e67e", "type": "Building", "floor_area": 16749.280842908665}}, {"geometry": {"coordinates": [[[-73.65916142109351, 45.43594308213673], [-73.65924036210951, 45.43603043757147], [-73.65931387728152, 45.43599921930737], [-73.65937030567343, 45.43605798949156], [-73.65962990525216, 45.43595011894044], [-73.65945285858106, 45.43575278136919], [-73.65912792949199, 45.43589473582857], [-73.65916529153276, 45.435941573839905], [-73.65916142109351, 45.43594308213673]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 7.999999999999999, "number_of_stories_above_ground": 2, "number_of_stories": 2, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_393_d13ab7d0.json", "building_type": "Mixed use", "name": "Building_393", "year_built": 2024, "footprint_area": 722.2338041748444, "id": "Building_393_d13ab7d0", "type": "Building", "floor_area": 1444.467608349718}}, {"geometry": {"coordinates": [[[-73.6676154376655, 45.43535985503373], [-73.66761544591557, 45.43535884035303], [-73.66818556374285, 45.43535985060739], [-73.66818555549278, 45.4353005912008], [-73.66818481719507, 45.4353005912008], [-73.66818481719507, 45.43521101362212], [-73.66818555549278, 45.43521101362212], [-73.66838300781298, 45.43521100205583], [-73.66838243994053, 45.43516607067679], [-73.66838244097288, 45.434973142588085], [-73.66756467154073, 45.43497284501422], [-73.66756467154073, 45.43521099849349], [-73.6676154376655, 45.43521101362212], [-73.6676154376655, 45.43535985503373]]], "type": "Polygon"}, "type": "Feature", "properties": {"maximum_roof_height": 31.999999999999996, "number_of_stories_above_ground": 8, "number_of_stories": 8, "floor_height": 3.9999999999999996, "detailed_model_filename": "C:\\Users\\umroot\\simulation\\Lachine_New_Developments\\hb_json\\Building_358_921c854d.json", "building_type": "Mixed use", "name": "Building_358", "year_built": 2024, "footprint_area": 2416.2204562020706, "id": "Building_358_921c854d", "type": "Building", "floor_area": 19329.763649616565}}], "project": {"elevation": 40.0, "latitude": 45.5019, "id": "Lachine_New_Developments", "city": "Montreal, QC", "country": "-", "name": "Lachine New Developments", "time_zone": -5.0, "cad_coordinates": [0.0, 0.0], "longitude": -73.5674}} \ No newline at end of file diff --git a/input_files/Lachine_Geojson_Mixed_Use.geojson b/input_files/Lachine_Geojson_Mixed_Use.geojson new file mode 100644 index 00000000..ceea0739 --- /dev/null +++ b/input_files/Lachine_Geojson_Mixed_Use.geojson @@ -0,0 +1,5928 @@ +{ + "type": "FeatureCollection", + "mappers": [], + "features": [ + { + "geometry": { + "coordinates": [ + [ + [ + -73.66733104444639, + 45.43566636911918 + ], + [ + -73.66733104444639, + 45.4353591129681 + ], + [ + -73.66684619406267, + 45.435353905836635 + ], + [ + -73.66684199399202, + 45.43566111136084 + ], + [ + -73.66733104444639, + 45.43566636911918 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 12.0, + "number_of_stories_above_ground": 3, + "number_of_stories": 3, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_340", + "year_built": 2024, + "footprint_area": 1294.998360413032, + "id": "Building10A", + "type": "Building", + "floor_area": 3884.995081239096, + "usages": [ + { + "usage": "6111", + "percentage": 33 + }, + { + "usage": "4413", + "percentage": 67 + } + ], + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66552334446082, + 45.434660366963485 + ], + [ + -73.66523847525745, + 45.4348411771419 + ], + [ + -73.66523723540048, + 45.43495263669542 + ], + [ + -73.66510866663339, + 45.43495236641987 + ], + [ + -73.66510898974342, + 45.43492331976304 + ], + [ + -73.6645100581705, + 45.43530340727411 + ], + [ + -73.66450622811278, + 45.43559916517698 + ], + [ + -73.66478875762652, + 45.43560109712901 + ], + [ + -73.66479223782268, + 45.43535225809221 + ], + [ + -73.66510645973035, + 45.4351507606146 + ], + [ + -73.66510697123165, + 45.435104778139376 + ], + [ + -73.66523554300501, + 45.43510477816004 + ], + [ + -73.66523252881687, + 45.4353757352103 + ], + [ + -73.66551537701756, + 45.43537661705083 + ], + [ + -73.66552334446082, + 45.434660366963485 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 44.0, + "number_of_stories_above_ground": 11, + "number_of_stories": 11, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_354", + "year_built": 2024, + "footprint_area": 3264.7409803860646, + "id": "BuildingE11E12E13", + "type": "Building", + "floor_area": 35912.15078424671, + "usages": [ + { + "usage": "6111", + "percentage": 16 + }, + { + "usage": "1000", + "percentage": 84 + } + ], + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66027183456654, + 45.43682640515838 + ], + [ + -73.65980092076161, + 45.436935379465496 + ], + [ + -73.65958858851806, + 45.43699072995751 + ], + [ + -73.6596646362897, + 45.437135324833925 + ], + [ + -73.65980280828376, + 45.437135324833925 + ], + [ + -73.65980549164702, + 45.43741954031219 + ], + [ + -73.66026656265554, + 45.43741954031219 + ], + [ + -73.66027183456654, + 45.43682640515838 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_366", + "year_built": 2024, + "footprint_area": 2443.0417281824775, + "id": "BuildingB7", + "type": "Building", + "floor_area": 9772.16691272991, + "usages": [ + { + "usage": "6111", + "percentage": 25 + }, + { + "usage": "4413", + "percentage": 75 + } + ], + "area": "BAIN MAXX" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65950945269662, + 45.43888004389084 + ], + [ + -73.6591598283532, + 45.43896421741208 + ], + [ + -73.6593463406809, + 45.43933186962929 + ], + [ + -73.65950186839818, + 45.4393030538919 + ], + [ + -73.65950945269662, + 45.43888004389084 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_374", + "year_built": 2024, + "footprint_area": 907.9995030083592, + "id": "BuildingB2", + "type": "Building", + "floor_area": 3631.9980120334367, + "usages": [ + { + "usage": "6111", + "percentage": 22 + }, + { + "usage": "4413", + "percentage": 78 + } + ], + "area": "BAIN MAXX" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6586465565685, + 45.43794502009898 + ], + [ + -73.65877820605229, + 45.43820592631496 + ], + [ + -73.65907725301875, + 45.43820592631496 + ], + [ + -73.65907725301875, + 45.438178967489094 + ], + [ + -73.65920582090638, + 45.438178967489094 + ], + [ + -73.65920582090638, + 45.43820592631496 + ], + [ + -73.65951490453769, + 45.43820592631496 + ], + [ + -73.65951864171541, + 45.43794501706367 + ], + [ + -73.65920581873392, + 45.4379450182182 + ], + [ + -73.6592058189376, + 45.437971976604835 + ], + [ + -73.65907725301875, + 45.437971977079336 + ], + [ + -73.65907725301875, + 45.43794502035566 + ], + [ + -73.6586465565685, + 45.43794502009898 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "4413", + "name": "Building_377", + "year_built": 2019, + "footprint_area": 1756.5275000615802, + "id": "BuildingB8", + "type": "Building", + "floor_area": 7026.110000246321, + "area": "BAIN MAXX" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65704989895627, + 45.43802689452351 + ], + [ + -73.65753032084078, + 45.43774525315344 + ], + [ + -73.6574163407037, + 45.43751971279422 + ], + [ + -73.65686794922345, + 45.43766772406841 + ], + [ + -73.65704989895627, + 45.43802689452351 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "mixed use", + "name": "Building_360", + "year_built": 2024, + "footprint_area": 1576.8113605151739, + "id": "BuildingA101A102", + "type": "Building", + "floor_area": 12614.490884121391, + "usages": [ + { + "usage": "6111", + "percentage": 15 + }, + { + "usage": "4413", + "percentage": 46 + }, + { + "usage": "6591", + "percentage": 39 + } + ], + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65932645417877, + 45.4370671419759 + ], + [ + -73.65890157746759, + 45.43729789907689 + ], + [ + -73.65894120771091, + 45.437333276458844 + ], + [ + -73.65883997788825, + 45.43738867571641 + ], + [ + -73.65880034764496, + 45.43735329833445 + ], + [ + -73.65844561006861, + 45.43754677933583 + ], + [ + -73.65859847737923, + 45.43784973556784 + ], + [ + -73.65907725082093, + 45.4376004860529 + ], + [ + -73.65905346577388, + 45.43757925346323 + ], + [ + -73.65915660532876, + 45.437525558997784 + ], + [ + -73.65918039037581, + 45.43754679158746 + ], + [ + -73.65949381251329, + 45.43738535192706 + ], + [ + -73.65932645417877, + 45.4370671419759 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_367", + "year_built": 2024, + "footprint_area": 2959.1453306355543, + "id": "BuildingB9", + "type": "Building", + "floor_area": 11836.581322542217, + "usages": [ + { + "usage": "6111", + "percentage": 25 + }, + { + "usage": "4413", + "percentage": 75 + } + ], + "area": "BAIN MAXX" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65978535158648, + 45.43925053092525 + ], + [ + -73.66024298387394, + 45.43916574210401 + ], + [ + -73.66024690026592, + 45.43887926502197 + ], + [ + -73.65978976299151, + 45.43887926502197 + ], + [ + -73.65978535158648, + 45.43925053092525 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_375", + "year_built": 2024, + "footprint_area": 1300.4263094531598, + "id": "BuildingB1", + "type": "Building", + "floor_area": 5201.705237812639, + "usages": [ + { + "usage": "6111", + "percentage": 22 + }, + { + "usage": "4413", + "percentage": 78 + } + ], + "area": "BAIN MAXX" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65885600897847, + 45.438360118085996 + ], + [ + -73.65908668813303, + 45.43881728376249 + ], + [ + -73.65950948612074, + 45.4387155014277 + ], + [ + -73.65951434452148, + 45.438360118085996 + ], + [ + -73.65885600897847, + 45.438360118085996 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_368", + "year_built": 2024, + "footprint_area": 1950.623916595192, + "id": "BuildingB5", + "type": "Building", + "floor_area": 7802.495666380768, + "usages": [ + { + "usage": "4413", + "percentage": 71 + }, + { + "usage": "6591", + "percentage": 29 + } + ], + "area": "BAIN MAXX" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65915368916939, + 45.43936756355871 + ], + [ + -73.65897287754876, + 45.43900922659924 + ], + [ + -73.65832172130257, + 45.43916599518572 + ], + [ + -73.65835188947426, + 45.43923721973516 + ], + [ + -73.65822761369208, + 45.43926024520204 + ], + [ + -73.65820255408917, + 45.43919468519017 + ], + [ + -73.65774333549116, + 45.439305243986034 + ], + [ + -73.6578898826934, + 45.439601718062896 + ], + [ + -73.65832644225709, + 45.43952083353656 + ], + [ + -73.65830997082959, + 45.43947740214748 + ], + [ + -73.65843424661176, + 45.43945437668061 + ], + [ + -73.65845071803926, + 45.43949780806969 + ], + [ + -73.65915368916939, + 45.43936756355871 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_376", + "year_built": 2024, + "footprint_area": 3780.178467150601, + "id": "BuildingB3", + "type": "Building", + "floor_area": 15120.713868602405, + "usages": [ + { + "usage": "6111", + "percentage": 22 + }, + { + "usage": "4413", + "percentage": 78 + } + ], + "area": "BAIN MAXX" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66025445947743, + 45.438360118085996 + ], + [ + -73.65979593152835, + 45.438360118085996 + ], + [ + -73.65979170884093, + 45.4387155014277 + ], + [ + -73.66024960107669, + 45.4387155014277 + ], + [ + -73.66025445947743, + 45.438360118085996 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_369", + "year_built": 2024, + "footprint_area": 1409.4494032830407, + "id": "BuildingB4", + "type": "Building", + "floor_area": 5637.797613132163, + "usages": [ + { + "usage": "4413", + "percentage": 71 + }, + { + "usage": "6591", + "percentage": 29 + } + ], + "area": "BAIN MAXX" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66026447427403, + 45.437593757702075 + ], + [ + -73.65980503747107, + 45.437593757702075 + ], + [ + -73.65980191509843, + 45.437840927821476 + ], + [ + -73.6598661965366, + 45.43784132452748 + ], + [ + -73.65986488161884, + 45.43794541472223 + ], + [ + -73.65980060018067, + 45.43794501801622 + ], + [ + -73.65979730426068, + 45.43820592631496 + ], + [ + -73.6602561053943, + 45.43820592631496 + ], + [ + -73.6602596335108, + 45.4379478508912 + ], + [ + -73.6601953520557, + 45.437947454185085 + ], + [ + -73.66019677505048, + 45.43784336465734 + ], + [ + -73.6602611322575, + 45.43784376183094 + ], + [ + -73.66026447427403, + 45.437593757702075 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_370", + "year_built": 2024, + "footprint_area": 2316.9198841373, + "id": "BuildingB6", + "type": "Building", + "floor_area": 9267.6795365492, + "usages": [ + { + "usage": "4413", + "percentage": 71 + }, + { + "usage": "6591", + "percentage": 29 + } + ], + "area": "BAIN MAXX" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65902805798278, + 45.436342589681466 + ], + [ + -73.65754831871094, + 45.43674094641373 + ], + [ + -73.65769356743637, + 45.43700683555103 + ], + [ + -73.65916649976008, + 45.43660558593783 + ], + [ + -73.65902805798278, + 45.436342589681466 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_390", + "year_built": 2024, + "footprint_area": 3869.976910297759, + "id": "Building4", + "type": "Building", + "floor_area": 15479.907641191036, + "usages": [ + { + "usage": "4413", + "percentage": 75 + }, + { + "usage": "6591", + "percentage": 25 + } + ], + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66242579383741, + 45.43542482172369 + ], + [ + -73.66209943511534, + 45.43556849041064 + ], + [ + -73.6621953601358, + 45.43567494378488 + ], + [ + -73.66252165561772, + 45.43553130256519 + ], + [ + -73.66242579383741, + 45.43542482172369 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_405", + "year_built": 2024, + "footprint_area": 419.94905944759375, + "id": "BuildingL19", + "type": "Building", + "floor_area": 3359.59247558075, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66242527971727, + 45.434361840317344 + ], + [ + -73.66223884461245, + 45.434523733215656 + ], + [ + -73.66241247213748, + 45.434717126768994 + ], + [ + -73.66243380379623, + 45.43470781759243 + ], + [ + -73.66250245196763, + 45.43478379966691 + ], + [ + -73.66248056327532, + 45.43479335193397 + ], + [ + -73.66266951469377, + 45.435004088220786 + ], + [ + -73.66290938383, + 45.43489907786838 + ], + [ + -73.66242527971727, + 45.434361840317344 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 48.0, + "number_of_stories_above_ground": 12, + "number_of_stories": 12, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_415", + "year_built": 2019, + "footprint_area": 1446.929144818103, + "id": "BuildingL111L112", + "type": "Building", + "floor_area": 17363.149737817235, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66206517461411, + 45.43468903190114 + ], + [ + -73.66189374178084, + 45.43486466151402 + ], + [ + -73.66224662046491, + 45.4352594349233 + ], + [ + -73.66248661623943, + 45.43515508422521 + ], + [ + -73.66229650270049, + 45.43494494743206 + ], + [ + -73.66227500642896, + 45.43495430129514 + ], + [ + -73.66223392184848, + 45.43490866691716 + ], + [ + -73.66225535313654, + 45.43489924087419 + ], + [ + -73.66206517461411, + 45.43468903190114 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 48.0, + "number_of_stories_above_ground": 12, + "number_of_stories": 12, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_416", + "year_built": 2019, + "footprint_area": 1223.6529921593028, + "id": "BuildingL151L152", + "type": "Building", + "floor_area": 14683.835905911634, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66150760430922, + 45.43484474724227 + ], + [ + -73.66187174850538, + 45.4344726237358 + ], + [ + -73.66171899456975, + 45.43430310155872 + ], + [ + -73.66124435183745, + 45.43455271349587 + ], + [ + -73.66150760430922, + 45.43484474724227 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 48.0, + "number_of_stories_above_ground": 12, + "number_of_stories": 12, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_417", + "year_built": 2019, + "footprint_area": 1397.401216644881, + "id": "BuildingL131L132", + "type": "Building", + "floor_area": 16768.814599738573, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66181160210058, + 45.43497618158248 + ], + [ + -73.66165069492843, + 45.43515539398741 + ], + [ + -73.66163699090872, + 45.43514018655858 + ], + [ + -73.66142466232206, + 45.43537667021646 + ], + [ + -73.66158247455249, + 45.435551803297955 + ], + [ + -73.66188707538102, + 45.435417706723776 + ], + [ + -73.66177384937356, + 45.435292059177556 + ], + [ + -73.66193423199161, + 45.435113431001426 + ], + [ + -73.66181160210058, + 45.43497618158248 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 48.0, + "number_of_stories_above_ground": 12, + "number_of_stories": 12, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_418", + "year_built": 2019, + "footprint_area": 1214.1505666597805, + "id": "BuildingL162L161", + "type": "Building", + "floor_area": 14569.806799917365, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66362307287524, + 45.43410446360284 + ], + [ + -73.66385909515951, + 45.434289111597536 + ], + [ + -73.6640703072093, + 45.43415712053538 + ], + [ + -73.66340902876128, + 45.433640470682455 + ], + [ + -73.66319709771504, + 45.4337716033226 + ], + [ + -73.663536186716, + 45.434036489703175 + ], + [ + -73.66355373963945, + 45.43402552864978 + ], + [ + -73.66364007475387, + 45.43409398893964 + ], + [ + -73.66362307287524, + 45.43410446360284 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 48.0, + "number_of_stories_above_ground": 12, + "number_of_stories": 12, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_419", + "year_built": 2019, + "footprint_area": 1681.530341091624, + "id": "BuildingL81L82", + "type": "Building", + "floor_area": 20178.364093099488, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66300731980355, + 45.43390655540063 + ], + [ + -73.66281263276944, + 45.43405111635964 + ], + [ + -73.66345723907469, + 45.43455477838796 + ], + [ + -73.66366785950288, + 45.43442272045786 + ], + [ + -73.66342044840842, + 45.43422929727795 + ], + [ + -73.6634012668147, + 45.43424128370537 + ], + [ + -73.66331557098437, + 45.434174293903766 + ], + [ + -73.66333475700264, + 45.43416230471147 + ], + [ + -73.66300731980355, + 45.43390655540063 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 48.0, + "number_of_stories_above_ground": 12, + "number_of_stories": 12, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_420", + "year_built": 2019, + "footprint_area": 1655.9535343910102, + "id": "BuildingL91L92", + "type": "Building", + "floor_area": 19871.442412692122, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66122703964504, + 45.43515722985619 + ], + [ + -73.66139386192013, + 45.43497142943028 + ], + [ + -73.66108971859161, + 45.43463403424813 + ], + [ + -73.66086292316442, + 45.43475330468475 + ], + [ + -73.66122703964504, + 45.43515722985619 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 28.0, + "number_of_stories_above_ground": 7, + "number_of_stories": 7, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_421", + "year_built": 2019, + "footprint_area": 1072.5428258612228, + "id": "BuildingL141", + "type": "Building", + "floor_area": 7507.79978102856, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6638817236836, + 45.4340097822226 + ], + [ + -73.66404457844652, + 45.43413701892532 + ], + [ + -73.66414047157477, + 45.43407713207755 + ], + [ + -73.66416621758079, + 45.43409722018921 + ], + [ + -73.6645567060855, + 45.43385318198243 + ], + [ + -73.66434247847707, + 45.43368569990406 + ], + [ + -73.66395208312396, + 45.43392965388565 + ], + [ + -73.66397777191658, + 45.43394976329673 + ], + [ + -73.6638817236836, + 45.4340097822226 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_422", + "year_built": 2019, + "footprint_area": 1208.7311602921982, + "id": "BuildingL7", + "type": "Building", + "floor_area": 7252.386961753189, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66514887178214, + 45.434612865375705 + ], + [ + -73.66535903790715, + 45.43448040476667 + ], + [ + -73.66514999306035, + 45.434316983694906 + ], + [ + -73.66513098535874, + 45.43432886202631 + ], + [ + -73.66504529167645, + 45.434261870882445 + ], + [ + -73.66506429937802, + 45.43424999255105 + ], + [ + -73.66473664739715, + 45.43399385020317 + ], + [ + -73.66452620694386, + 45.434125795289916 + ], + [ + -73.66514887178214, + 45.434612865375705 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_423", + "year_built": 2019, + "footprint_area": 1578.6340260027937, + "id": "BuildingL12L12", + "type": "Building", + "floor_area": 12629.07220802235, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66448014636983, + 45.435052344410366 + ], + [ + -73.6643313290399, + 45.43493960260059 + ], + [ + -73.66397083753984, + 45.43517206855617 + ], + [ + -73.66397959243466, + 45.435178821299864 + ], + [ + -73.66380414927352, + 45.43529591740219 + ], + [ + -73.66379664821386, + 45.43529042695871 + ], + [ + -73.66345317179702, + 45.43550990757549 + ], + [ + -73.66359221796748, + 45.43561474146301 + ], + [ + -73.66448014636983, + 45.435052344410366 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 12.0, + "number_of_stories_above_ground": 3, + "number_of_stories": 3, + "floor_height": 4.0, + "building_type": "6591", + "name": "Building_424", + "year_built": 2019, + "footprint_area": 1515.2713105212897, + "id": "Building333231", + "type": "Building", + "floor_area": 4545.813931563869, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66091823873606, + 45.43554047439899 + ], + [ + -73.66106754169489, + 45.43533487272223 + ], + [ + -73.6609123994251, + 45.435162943608496 + ], + [ + -73.66089062256611, + 45.435172536336815 + ], + [ + -73.66082206517515, + 45.43509651561612 + ], + [ + -73.66084384992129, + 45.4350869194135 + ], + [ + -73.66064624183024, + 45.43486776398259 + ], + [ + -73.66041919597193, + 45.43498676172836 + ], + [ + -73.66091823873606, + 45.43554047439899 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 40.0, + "number_of_stories_above_ground": 10, + "number_of_stories": 10, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_426", + "year_built": 2024, + "footprint_area": 1457.5804860508651, + "id": "BuildingL211L212", + "type": "Building", + "floor_area": 14575.804860508651, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66316417991393, + 45.43518206170866 + ], + [ + -73.66365956605448, + 45.43487248990967 + ], + [ + -73.6635395944175, + 45.43477870260932 + ], + [ + -73.66306689869114, + 45.43507388096574 + ], + [ + -73.66316417991393, + 45.43518206170866 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_406", + "year_built": 2024, + "footprint_area": 707.3750612332369, + "id": "BuildingL6", + "type": "Building", + "floor_area": 5659.000489865895, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66289311605819, + 45.43488102460739 + ], + [ + -73.66332443758027, + 45.43461151540076 + ], + [ + -73.6632044798506, + 45.43451771941017 + ], + [ + -73.66279583088284, + 45.43477306177878 + ], + [ + -73.66289311605819, + 45.43488102460739 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_407", + "year_built": 2024, + "footprint_area": 613.4344802929554, + "id": "BuildingL12", + "type": "Building", + "floor_area": 4907.475842343643, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6630530015328, + 45.43505845850779 + ], + [ + -73.6628390928148, + 45.43519203539516 + ], + [ + -73.66304196630892, + 45.43541717551748 + ], + [ + -73.66306372406977, + 45.43540759738079 + ], + [ + -73.66310483478894, + 45.43545322025718 + ], + [ + -73.66308307702812, + 45.435462798393864 + ], + [ + -73.66321858336656, + 45.43561317739603 + ], + [ + -73.66345791873536, + 45.435507817892635 + ], + [ + -73.6630530015328, + 45.43505845850779 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_408", + "year_built": 2024, + "footprint_area": 1247.3044550439517, + "id": "BuildingL52L51", + "type": "Building", + "floor_area": 9978.435640351614, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66240262716113, + 45.435399088765514 + ], + [ + -73.66290734120307, + 45.43595971236043 + ], + [ + -73.66312530235247, + 45.43586375965471 + ], + [ + -73.6629231785691, + 45.43563945152851 + ], + [ + -73.66289054204866, + 45.43565381886751 + ], + [ + -73.66284943132949, + 45.43560819599112 + ], + [ + -73.66288206765823, + 45.435593828736515 + ], + [ + -73.66262372941918, + 45.43530713604471 + ], + [ + -73.66240262716113, + 45.435399088765514 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_409", + "year_built": 2024, + "footprint_area": 1452.6174090693676, + "id": "BuildingL171L172", + "type": "Building", + "floor_area": 11620.939272554984, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66274536905588, + 45.43602312421793 + ], + [ + -73.66260604719409, + 45.4358683240012 + ], + [ + -73.66225798878506, + 45.43596421147934 + ], + [ + -73.66194394892212, + 45.435615697916305 + ], + [ + -73.66172744956948, + 45.43571100462926 + ], + [ + -73.66197343357798, + 45.435985655995864 + ], + [ + -73.66200606856113, + 45.43597128974795 + ], + [ + -73.66205106129956, + 45.436021218447785 + ], + [ + -73.66201454358537, + 45.436031278803824 + ], + [ + -73.66215192241798, + 45.4361837288821 + ], + [ + -73.66274536905588, + 45.43602312421793 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_410", + "year_built": 2024, + "footprint_area": 1839.8059343703935, + "id": "BuildingL181L182", + "type": "Building", + "floor_area": 14718.447474963148, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6640375099212, + 45.43500680795111 + ], + [ + -73.66424305267468, + 45.434874261989314 + ], + [ + -73.66383884910425, + 45.43455695246808 + ], + [ + -73.66362901151322, + 45.434688519563295 + ], + [ + -73.6640375099212, + 45.43500680795111 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_411", + "year_built": 2024, + "footprint_area": 1035.7501207707683, + "id": "BuildingL4", + "type": "Building", + "floor_area": 8286.000966166146, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66127484199222, + 45.43556497931363 + ], + [ + -73.66112639128302, + 45.43577106173219 + ], + [ + -73.66160899943068, + 45.436306297456696 + ], + [ + -73.6618867352995, + 45.43624352182402 + ], + [ + -73.66165249922207, + 45.43598374374053 + ], + [ + -73.66163074494021, + 45.43599332645899 + ], + [ + -73.66156219556873, + 45.4359173022057 + ], + [ + -73.66158394938459, + 45.43590771969252 + ], + [ + -73.66127484199222, + 45.43556497931363 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_412", + "year_built": 2024, + "footprint_area": 1736.1955116029858, + "id": "BuildingL202L201", + "type": "Building", + "floor_area": 13889.564092823886, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66505519969147, + 45.43467425452376 + ], + [ + -73.66502740232639, + 45.43465274235301 + ], + [ + -73.66512305137532, + 45.43459266775576 + ], + [ + -73.66500367216553, + 45.43449928518719 + ], + [ + -73.66490818660434, + 45.434559255775554 + ], + [ + -73.66488244562743, + 45.434539177696436 + ], + [ + -73.664686230858, + 45.43466172083245 + ], + [ + -73.6644565628209, + 45.434482066504756 + ], + [ + -73.66426502734427, + 45.434602683642524 + ], + [ + -73.66449636925753, + 45.434782152439574 + ], + [ + -73.66447667010338, + 45.43479450370837 + ], + [ + -73.66464905165834, + 45.434927908491105 + ], + [ + -73.66505519969147, + 45.43467425452376 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_413", + "year_built": 2024, + "footprint_area": 1529.3005972411338, + "id": "BuildingL2", + "type": "Building", + "floor_area": 12234.40477792907, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66285281281284, + 45.434082510967464 + ], + [ + -73.6627832912654, + 45.43413269119674 + ], + [ + -73.66275558298935, + 45.43411393733477 + ], + [ + -73.66251324062482, + 45.434288858576636 + ], + [ + -73.66269796246517, + 45.43441388432313 + ], + [ + -73.66294030482968, + 45.434238963081256 + ], + [ + -73.66291259655362, + 45.434220209219276 + ], + [ + -73.66297312730684, + 45.43417651849048 + ], + [ + -73.66285281281284, + 45.434082510967464 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_414", + "year_built": 2024, + "footprint_area": 643.7097345907241, + "id": "BuildingL10", + "type": "Building", + "floor_area": 5149.677876725793, + "area": "LACHINE_EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6695976944962, + 45.43335516296276 + ], + [ + -73.66960024279547, + 45.432530734047525 + ], + [ + -73.66942024880322, + 45.4325302583109 + ], + [ + -73.66941770326802, + 45.433353792992946 + ], + [ + -73.6695976944962, + 45.43335516296276 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_432", + "year_built": 2024, + "footprint_area": 1283.7100725430791, + "id": "BuildingV8", + "type": "Building", + "floor_area": 10269.680580344633, + "area": "VARIN" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66648692309116, + 45.43299315240255 + ], + [ + -73.66632685307951, + 45.432875724577684 + ], + [ + -73.6662869496342, + 45.432885533312565 + ], + [ + -73.6662314899197, + 45.432844847905145 + ], + [ + -73.66627139336501, + 45.43283503917027 + ], + [ + -73.66605577451121, + 45.43267686055366 + ], + [ + -73.66586395238267, + 45.43274007194359 + ], + [ + -73.66604809279451, + 45.433100812915356 + ], + [ + -73.66648692309116, + 45.43299315240255 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_437", + "year_built": 2019, + "footprint_area": 1132.643133031641, + "id": "BuildingC71C72", + "type": "Building", + "floor_area": 9061.145064253142, + "area": "CINTUBE" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66629596106894, + 45.43393581468737 + ], + [ + -73.66710397267735, + 45.43340975213673 + ], + [ + -73.66692397641738, + 45.43327468829026 + ], + [ + -73.66611659102344, + 45.43380083110689 + ], + [ + -73.66629137947669, + 45.4339323350389 + ], + [ + -73.66629596106894, + 45.43393581468737 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_438", + "year_built": 2019, + "footprint_area": 1762.1328271207167, + "id": "BuildingC42", + "type": "Building", + "floor_area": 14097.062616965733, + "area": "CINTUBE" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66630016267872, + 45.433181827906395 + ], + [ + -73.66659194009395, + 45.433395876664555 + ], + [ + -73.66666616625498, + 45.43334644669076 + ], + [ + -73.66673557085116, + 45.43339746453596 + ], + [ + -73.66686723112655, + 45.43331166688867 + ], + [ + -73.66679650050222, + 45.433259652246115 + ], + [ + -73.66682464757157, + 45.433240908061016 + ], + [ + -73.66663285326406, + 45.433100207200695 + ], + [ + -73.66630016267872, + 45.433181827906395 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_439", + "year_built": 2019, + "footprint_area": 792.3225780949724, + "id": "BuildingC41", + "type": "Building", + "floor_area": 6338.580624759779, + "area": "CINTUBE" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66777119983375, + 45.43291379849753 + ], + [ + -73.66794163235893, + 45.43277880685048 + ], + [ + -73.66763418630634, + 45.432534285118734 + ], + [ + -73.66744119858484, + 45.432654156485185 + ], + [ + -73.66777119983375, + 45.43291379849753 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_440", + "year_built": 2019, + "footprint_area": 748.011685138903, + "id": "BuildingC2", + "type": "Building", + "floor_area": 5984.093481111224, + "area": "CINTUBE" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66819794401755, + 45.43186867295574 + ], + [ + -73.66804117421117, + 45.43196526756795 + ], + [ + -73.66800714623197, + 45.431938283882864 + ], + [ + -73.66756485935377, + 45.43220526910353 + ], + [ + -73.6677330994405, + 45.43234142634308 + ], + [ + -73.66775286505397, + 45.43232919625106 + ], + [ + -73.66782879665047, + 45.432390260560695 + ], + [ + -73.66780944495402, + 45.432402201569644 + ], + [ + -73.66811035706213, + 45.43263953554871 + ], + [ + -73.66826963062728, + 45.432467024254805 + ], + [ + -73.66802200920615, + 45.432271479585275 + ], + [ + -73.66800234780891, + 45.43228284176986 + ], + [ + -73.6679250253185, + 45.43222250053311 + ], + [ + -73.66817288428344, + 45.43206987204648 + ], + [ + -73.6681473062388, + 45.43204957976885 + ], + [ + -73.66825137202584, + 45.43198558294379 + ], + [ + -73.66819794401755, + 45.43186867295574 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 48.0, + "number_of_stories_above_ground": 12, + "number_of_stories": 12, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_441", + "year_built": 2019, + "footprint_area": 1939.1643211467454, + "id": "BuildingV21V22", + "type": "Building", + "floor_area": 23269.971853760944, + "area": "VARIN" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66898528166195, + 45.432805443096115 + ], + [ + -73.66916472638917, + 45.432804646258106 + ], + [ + -73.66916349367183, + 45.432327695076836 + ], + [ + -73.66898349941692, + 45.4323281078871 + ], + [ + -73.66898528166195, + 45.432805443096115 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_442", + "year_built": 2019, + "footprint_area": 742.2262415656805, + "id": "BuildingV5", + "type": "Building", + "floor_area": 4453.357449394083, + "area": "VARIN" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66559134943027, + 45.4333842960544 + ], + [ + -73.66571975526693, + 45.433486126417385 + ], + [ + -73.6661604725183, + 45.43337800298111 + ], + [ + -73.66610085913331, + 45.433259295411155 + ], + [ + -73.66559134943027, + 45.4333842960544 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_443", + "year_built": 2019, + "footprint_area": 548.3050135533558, + "id": "BuildingC6", + "type": "Building", + "floor_area": 3289.830081320135, + "area": "CINTUBE" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.668561692655, + 45.43272452290231 + ], + [ + -73.66881597030792, + 45.432324936312554 + ], + [ + -73.6686515057645, + 45.43227380894239 + ], + [ + -73.66843060658469, + 45.432620946767024 + ], + [ + -73.668561692655, + 45.43272452290231 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_444", + "year_built": 2019, + "footprint_area": 636.6193997243245, + "id": "BuildingV6", + "type": "Building", + "floor_area": 3819.716398345947, + "area": "VARIN" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6684107088873, + 45.43260529773849 + ], + [ + -73.66825696634365, + 45.43275505829395 + ], + [ + -73.66855993403234, + 45.43299429839817 + ], + [ + -73.66875110847464, + 45.43287409614764 + ], + [ + -73.6684107088873, + 45.43260529773849 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_445", + "year_built": 2019, + "footprint_area": 755.0037339057599, + "id": "BuildingV7", + "type": "Building", + "floor_area": 4530.022403434559, + "area": "VARIN" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66523035916975, + 45.43344428835361 + ], + [ + -73.66558718585024, + 45.433725662980414 + ], + [ + -73.66560646249896, + 45.43371372054428 + ], + [ + -73.6656917418297, + 45.43378096950345 + ], + [ + -73.66567246673941, + 45.43379291097411 + ], + [ + -73.6660489787878, + 45.43408980779488 + ], + [ + -73.66629137947669, + 45.4339323350389 + ], + [ + -73.66611658917947, + 45.43380082971957 + ], + [ + -73.66556383389526, + 45.43336247526904 + ], + [ + -73.66523035916975, + 45.43344428835361 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_446", + "year_built": 2019, + "footprint_area": 2278.027963784494, + "id": "BuildingC52", + "type": "Building", + "floor_area": 18224.223710275997, + "area": "CINTUBE" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66826976340244, + 45.43246688044427 + ], + [ + -73.6684431234713, + 45.432207191678195 + ], + [ + -73.66827958361108, + 45.43215461639845 + ], + [ + -73.66814405056857, + 45.432367606017834 + ], + [ + -73.66826976340244, + 45.43246688044427 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_447", + "year_built": 2019, + "footprint_area": 397.34580822650605, + "id": "BuildingV3", + "type": "Building", + "floor_area": 1589.3832329060242, + "area": "VARIN" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66478481369315, + 45.4331999405812 + ], + [ + -73.66486641573151, + 45.4333624124384 + ], + [ + -73.66493012111978, + 45.43334678530579 + ], + [ + -73.66495552903392, + 45.43339738198849 + ], + [ + -73.66545538522467, + 45.43327479625445 + ], + [ + -73.66542923451642, + 45.43322270281657 + ], + [ + -73.66602930406131, + 45.43307548268369 + ], + [ + -73.66594975277539, + 45.43291410222965 + ], + [ + -73.66478481369315, + 45.4331999405812 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 4.0, + "number_of_stories_above_ground": 1, + "number_of_stories": 1, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_448", + "year_built": 2019, + "footprint_area": 2076.7223687399237, + "id": "Building104", + "type": "Building", + "floor_area": 2076.7223687399237, + "area": "CINTUBE" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66687523305983, + 45.43300569788887 + ], + [ + -73.66704845294669, + 45.43312925943825 + ], + [ + -73.66724401867715, + 45.43327505802548 + ], + [ + -73.66769630737754, + 45.432975018696354 + ], + [ + -73.66747581970738, + 45.432811552149246 + ], + [ + -73.66721111358372, + 45.432987152927446 + ], + [ + -73.66706730008384, + 45.4328863982505 + ], + [ + -73.66687523305983, + 45.43300569788887 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "mixed use", + "name": "Building_433", + "year_built": 2024, + "footprint_area": 1535.5010229039326, + "id": "BuildingC12C11", + "type": "Building", + "floor_area": 12284.00818323146, + "usages": [ + { + "usage": "6111", + "percentage": 15 + }, + { + "usage": "1000", + "percentage": 85 + } + ], + "area": "CINTUBE" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66870958267681, + 45.432179123945076 + ], + [ + -73.66887583321109, + 45.432232570660354 + ], + [ + -73.66916353210719, + 45.43223257066049 + ], + [ + -73.66916407405287, + 45.431945627832995 + ], + [ + -73.66887548077842, + 45.431945926632814 + ], + [ + -73.66870958267681, + 45.432179123945076 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_434", + "year_built": 2024, + "footprint_area": 921.4234756113219, + "id": "BuildingV41V42", + "type": "Building", + "floor_area": 5528.5408536679315, + "usages": [ + { + "usage": "6111", + "percentage": 21 + }, + { + "usage": "1000", + "percentage": 79 + } + ], + "area": "VARIN" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66671707646795, + 45.43262783473566 + ], + [ + -73.66685886651642, + 45.432581110480704 + ], + [ + -73.6668862801576, + 45.432621751492384 + ], + [ + -73.66725575717793, + 45.432499997260074 + ], + [ + -73.6673362319882, + 45.43256349177961 + ], + [ + -73.66752392585083, + 45.43244732020689 + ], + [ + -73.66727006379638, + 45.432246909463274 + ], + [ + -73.66674921195168, + 45.432418546433944 + ], + [ + -73.6667870120313, + 45.43247563465473 + ], + [ + -73.66659568493438, + 45.432538682916395 + ], + [ + -73.66655833369327, + 45.432511251587385 + ], + [ + -73.6663128232714, + 45.43259215494888 + ], + [ + -73.66675709111809, + 45.432922821917856 + ], + [ + -73.66695200967966, + 45.43280195609688 + ], + [ + -73.66671707646795, + 45.43262783473566 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 44.0, + "number_of_stories_above_ground": 11, + "number_of_stories": 11, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_435", + "year_built": 2024, + "footprint_area": 2485.3035762150394, + "id": "BuildingC32C31C33", + "type": "Building", + "floor_area": 27338.339338365433, + "area": "CINTUBE" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66855504604872, + 45.43177302438879 + ], + [ + -73.66819134139887, + 45.43185422525132 + ], + [ + -73.66826818123967, + 45.43202236449439 + ], + [ + -73.66852125151473, + 45.43210372227767 + ], + [ + -73.66863632927094, + 45.43195088654097 + ], + [ + -73.66855504604872, + 45.43177302438879 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 60.0, + "number_of_stories_above_ground": 15, + "number_of_stories": 15, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_436", + "year_built": 2024, + "footprint_area": 808.0809936788719, + "id": "BuildingV11V12", + "type": "Building", + "floor_area": 12121.214905183078, + "usages": [ + { + "usage": "6111", + "percentage": 9 + }, + { + "usage": "1000", + "percentage": 91 + } + ], + "area": "VARIN" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66450714439269, + 45.43573449384973 + ], + [ + -73.66450688574393, + 45.43591421917367 + ], + [ + -73.66509833501617, + 45.4359146255426 + ], + [ + -73.6650986394219, + 45.4358872603478 + ], + [ + -73.66522692055351, + 45.4358872603478 + ], + [ + -73.66522692055351, + 45.43591330658078 + ], + [ + -73.66550976332553, + 45.43591474835359 + ], + [ + -73.66551398196725, + 45.43551034726427 + ], + [ + -73.66523021549996, + 45.43550946256085 + ], + [ + -73.66522860290465, + 45.43576214972259 + ], + [ + -73.66510030291327, + 45.43576145249376 + ], + [ + -73.66510030291327, + 45.43573771728894 + ], + [ + -73.66450714439269, + 45.43573449384973 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_313", + "year_built": 2019, + "footprint_area": 2044.068283611894, + "id": "BuildingE2", + "type": "Building", + "floor_area": 16352.546268895137, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66855723020524, + 45.43365135021441 + ], + [ + -73.66819366967181, + 45.43366590821685 + ], + [ + -73.6676461765098, + 45.4340092773018 + ], + [ + -73.66802133251856, + 45.43429946603576 + ], + [ + -73.66821120470597, + 45.434179547274596 + ], + [ + -73.66801055231463, + 45.434023333792325 + ], + [ + -73.66829954734341, + 45.43384180466896 + ], + [ + -73.66855713553797, + 45.43383159187963 + ], + [ + -73.66855723020524, + 45.43365135021441 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_314", + "year_built": 2019, + "footprint_area": 2029.559184732003, + "id": "BuildingD171D172", + "type": "Building", + "floor_area": 16236.473477856023, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66870328505728, + 45.43455702519744 + ], + [ + -73.66853869342219, + 45.434663657449015 + ], + [ + -73.66873426674923, + 45.43481057524169 + ], + [ + -73.6691501270639, + 45.434810707201294 + ], + [ + -73.66915035201396, + 45.43465794032685 + ], + [ + -73.66883301564877, + 45.43465794032685 + ], + [ + -73.66870328505728, + 45.43455702519744 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_315", + "year_built": 2019, + "footprint_area": 808.2807625484893, + "id": "BuildingD13", + "type": "Building", + "floor_area": 6466.246100387914, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66696875304719, + 45.43443293153739 + ], + [ + -73.66707235624921, + 45.43451297098936 + ], + [ + -73.66721856458851, + 45.434424932162536 + ], + [ + -73.66728439249121, + 45.434476468836856 + ], + [ + -73.66747856252012, + 45.434354725222875 + ], + [ + -73.66768028114004, + 45.434512022552944 + ], + [ + -73.66787168130698, + 45.43439211090542 + ], + [ + -73.66749826792116, + 45.43410092842251 + ], + [ + -73.66696875304719, + 45.43443293153739 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_316", + "year_built": 2019, + "footprint_area": 1458.239197322313, + "id": "BuildingD181D182", + "type": "Building", + "floor_area": 11665.913578578504, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6680858113146, + 45.43734895102968 + ], + [ + -73.66808575971928, + 45.43722314318597 + ], + [ + -73.66762279615294, + 45.437223146156924 + ], + [ + -73.6676227977928, + 45.43734895106356 + ], + [ + -73.6680858113146, + 45.43734895102968 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_317", + "year_built": 2019, + "footprint_area": 504.1510401284031, + "id": "BuildingD6", + "type": "Building", + "floor_area": 3024.9062407704187, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6685755854259, + 45.436103056260166 + ], + [ + -73.66857616208834, + 45.43628278176591 + ], + [ + -73.66914968598168, + 45.43628278176591 + ], + [ + -73.66914988144319, + 45.436103056260166 + ], + [ + -73.6685755854259, + 45.436103056260166 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_318", + "year_built": 2019, + "footprint_area": 892.7734067997189, + "id": "BuildingD71", + "type": "Building", + "floor_area": 5356.640440798314, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66914988133883, + 45.43628278578339 + ], + [ + -73.66896969093898, + 45.43628280183978 + ], + [ + -73.6689698864005, + 45.436868686914714 + ], + [ + -73.6691496651975, + 45.43686865761376 + ], + [ + -73.66914988133883, + 45.43628278578339 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_319", + "year_built": 2019, + "footprint_area": 912.7054441040582, + "id": "BuildingD8", + "type": "Building", + "floor_area": 5476.232664624349, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66875558046858, + 45.436282781765904 + ], + [ + -73.66857558542591, + 45.43628278176591 + ], + [ + -73.66857558542594, + 45.4370151632019 + ], + [ + -73.66875558046863, + 45.4370151632019 + ], + [ + -73.66875558046858, + 45.436282781765904 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_320", + "year_built": 2019, + "footprint_area": 1140.9999999757201, + "id": "BuildingD9", + "type": "Building", + "floor_area": 6845.999999854321, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66914988144318, + 45.435914721482895 + ], + [ + -73.66914988104259, + 45.43573499597712 + ], + [ + -73.66857558542596, + 45.43573499597712 + ], + [ + -73.66857558542596, + 45.435914721482895 + ], + [ + -73.66914988144318, + 45.435914721482895 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_321", + "year_built": 2019, + "footprint_area": 893.3736526669236, + "id": "BuildingD10", + "type": "Building", + "floor_area": 5360.2419160015415, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66912471619447, + 45.435137954392154 + ], + [ + -73.66912500538544, + 45.43509237395358 + ], + [ + -73.66903967333118, + 45.43509210946137 + ], + [ + -73.66903954004856, + 45.435137954076716 + ], + [ + -73.66896904524788, + 45.435137953925526 + ], + [ + -73.66896904529717, + 45.43573499597712 + ], + [ + -73.66914904396614, + 45.43573499597712 + ], + [ + -73.6691504300253, + 45.43513795431771 + ], + [ + -73.66912471619447, + 45.435137954392154 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_322", + "year_built": 2019, + "footprint_area": 967.4823063865333, + "id": "BuildingD11a", + "type": "Building", + "floor_area": 5804.8938383192, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66860046877501, + 45.435091482642406 + ], + [ + -73.66860098987331, + 45.43513795260311 + ], + [ + -73.66857527798572, + 45.43513795265448 + ], + [ + -73.6685747443226, + 45.43573499597712 + ], + [ + -73.6687547393653, + 45.43573499597712 + ], + [ + -73.66875473933453, + 45.43513795229591 + ], + [ + -73.66872902575687, + 45.43513795414672 + ], + [ + -73.6687290283864, + 45.435091486344064 + ], + [ + -73.66860046877501, + 45.435091482642406 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_323", + "year_built": 2019, + "footprint_area": 980.3749082066461, + "id": "BuildingD11b", + "type": "Building", + "floor_area": 5882.249449239876, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66915037956396, + 45.43382809010173 + ], + [ + -73.66891845888708, + 45.43382809010173 + ], + [ + -73.66891817983912, + 45.43393873152316 + ], + [ + -73.66915010051599, + 45.43393873152316 + ], + [ + -73.66915037956396, + 45.43382809010173 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_324", + "year_built": 2019, + "footprint_area": 222.09817462227147, + "id": "BuildingD15", + "type": "Building", + "floor_area": 1332.5890477336288, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66889894908068, + 45.43364908870339 + ], + [ + -73.66889894908068, + 45.433667060847434 + ], + [ + -73.6688218083481, + 45.433666998320064 + ], + [ + -73.6688218083481, + 45.43364896272528 + ], + [ + -73.66872407797348, + 45.43364880312234 + ], + [ + -73.66872407797348, + 45.433827965482486 + ], + [ + -73.66915037956396, + 45.43382809010173 + ], + [ + -73.66915063431738, + 45.433649499729164 + ], + [ + -73.66889894908068, + 45.43364908870339 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_325", + "year_built": 2019, + "footprint_area": 648.1976552232663, + "id": "BuildingD161", + "type": "Building", + "floor_area": 3889.185931339598, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66914984896135, + 45.43456126585547 + ], + [ + -73.66914987903989, + 45.43401364617683 + ], + [ + -73.66896988399718, + 45.43401364617683 + ], + [ + -73.66896985392665, + 45.434561120362574 + ], + [ + -73.66914984896135, + 45.43456126585547 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_326", + "year_built": 2019, + "footprint_area": 853.0405318281519, + "id": "BuildingD14", + "type": "Building", + "floor_area": 5118.243190968911, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66792908356777, + 45.43473638727616 + ], + [ + -73.66806637021915, + 45.434650315351966 + ], + [ + -73.66806608370287, + 45.43465005267265 + ], + [ + -73.66785102758027, + 45.43448235494697 + ], + [ + -73.667714577041, + 45.434567846340144 + ], + [ + -73.66792908356777, + 45.43473638727616 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_327", + "year_built": 2019, + "footprint_area": 358.93166192741774, + "id": "Building1A", + "type": "Building", + "floor_area": 2153.5899715645064, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66771197333232, + 45.43463895072591 + ], + [ + -73.66768424656718, + 45.43461726361632 + ], + [ + -73.66756271417947, + 45.43469436692789 + ], + [ + -73.66721856458851, + 45.434424932162536 + ], + [ + -73.66707235624921, + 45.43451297098936 + ], + [ + -73.66746843048814, + 45.434823046408354 + ], + [ + -73.66754296375798, + 45.43477653608321 + ], + [ + -73.66763176215117, + 45.43484703552944 + ], + [ + -73.66781662098506, + 45.434733285519975 + ], + [ + -73.66776977585148, + 45.434697053040786 + ], + [ + -73.66777518307661, + 45.43469363769368 + ], + [ + -73.66773608558198, + 45.434663398877326 + ], + [ + -73.66779090216089, + 45.434629054749216 + ], + [ + -73.66776383963118, + 45.43460655268249 + ], + [ + -73.66771197333232, + 45.43463895072591 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_328", + "year_built": 2019, + "footprint_area": 988.3932561137699, + "id": "Building1C", + "type": "Building", + "floor_area": 5930.359536682619, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66868062589147, + 45.43426563859048 + ], + [ + -73.66851535483774, + 45.4341361342674 + ], + [ + -73.66827620087494, + 45.43428270654718 + ], + [ + -73.66843902138118, + 45.434412816783365 + ], + [ + -73.66868062589147, + 45.43426563859048 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_329", + "year_built": 2019, + "footprint_area": 478.6204031245943, + "id": "Building1B", + "type": "Building", + "floor_area": 2871.722418747566, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6658846568397, + 45.43761422933907 + ], + [ + -73.66614181370655, + 45.43761429055853 + ], + [ + -73.66614649614958, + 45.43737649869079 + ], + [ + -73.66647268098447, + 45.437375909916675 + ], + [ + -73.66647304451038, + 45.43719618438365 + ], + [ + -73.66589284764144, + 45.437196752027766 + ], + [ + -73.6658846568397, + 45.43761422933907 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_330", + "year_built": 2019, + "footprint_area": 1434.9411493013613, + "id": "BuildingD21D22", + "type": "Building", + "floor_area": 8609.646895808168, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66797638367166, + 45.436781800397085 + ], + [ + -73.66755522364404, + 45.43678176862274 + ], + [ + -73.66755522364404, + 45.43701645225282 + ], + [ + -73.6679762033694, + 45.437016484746664 + ], + [ + -73.66797638367166, + 45.436781800397085 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 60.0, + "number_of_stories_above_ground": 15, + "number_of_stories": 15, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_331", + "year_built": 2019, + "footprint_area": 855.313686118232, + "id": "BuildingD20", + "type": "Building", + "floor_area": 12829.70529177348, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66600115564697, + 45.436757924758744 + ], + [ + -73.66600126632814, + 45.436791296476116 + ], + [ + -73.66589816363476, + 45.43679156295233 + ], + [ + -73.66589567196051, + 45.437015557254995 + ], + [ + -73.66643563828254, + 45.43701567702279 + ], + [ + -73.66643563828254, + 45.436791296476116 + ], + [ + -73.66639706791626, + 45.436791296476116 + ], + [ + -73.66639706791626, + 45.43676420171306 + ], + [ + -73.66600115564697, + 45.436757924758744 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 60.0, + "number_of_stories_above_ground": 15, + "number_of_stories": 15, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_332", + "year_built": 2019, + "footprint_area": 1149.438834497756, + "id": "BuildingD21", + "type": "Building", + "floor_area": 17241.58251746634, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6650877497723, + 45.436845228874915 + ], + [ + -73.6650877497723, + 45.436818270049045 + ], + [ + -73.66521634168008, + 45.436818270049045 + ], + [ + -73.6652169981539, + 45.43693874810717 + ], + [ + -73.66549771082332, + 45.43693800085723 + ], + [ + -73.66550371755125, + 45.43641812586527 + ], + [ + -73.66522089080573, + 45.43641655902009 + ], + [ + -73.66521776207713, + 45.436692462195005 + ], + [ + -73.66508917642724, + 45.436692462195005 + ], + [ + -73.66508943782023, + 45.436669411568694 + ], + [ + -73.66449186185157, + 45.436665503369134 + ], + [ + -73.66448950821147, + 45.43684131632232 + ], + [ + -73.6650877497723, + 45.436845228874915 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_333", + "year_built": 2019, + "footprint_area": 2324.0116964114713, + "id": "BuildingE62E61", + "type": "Building", + "floor_area": 18592.09357129177, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66550524615131, + 45.43628332810451 + ], + [ + -73.6655022650791, + 45.43628332623154 + ], + [ + -73.66550728573345, + 45.436103198345315 + ], + [ + -73.66484653186305, + 45.436103198345315 + ], + [ + -73.66484452813047, + 45.43628332810451 + ], + [ + -73.66550524615131, + 45.43628332810451 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_334", + "year_built": 2019, + "footprint_area": 1027.8277728328394, + "id": "BuildingE4", + "type": "Building", + "floor_area": 8222.622182662715, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6647050963017, + 45.43610390508989 + ], + [ + -73.66452510706056, + 45.43610290317952 + ], + [ + -73.66451904593261, + 45.4365746599971 + ], + [ + -73.66469903371814, + 45.43657578972205 + ], + [ + -73.6647050963017, + 45.43610390508989 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_335", + "year_built": 2019, + "footprint_area": 735.09355594097, + "id": "BuildingE5", + "type": "Building", + "floor_area": 2940.37422376388, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66886546844894, + 45.43509156950213 + ], + [ + -73.66919874212991, + 45.435092602505364 + ], + [ + -73.66919956496174, + 45.43496291299882 + ], + [ + -73.66886629128078, + 45.434961879995576 + ], + [ + -73.66886546844894, + 45.43509156950213 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 12.0, + "number_of_stories_above_ground": 3, + "number_of_stories": 3, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_336", + "year_built": 2019, + "footprint_area": 374.11245699843494, + "id": "Building0", + "type": "Building", + "floor_area": 1122.3373709953048, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66486974164107, + 45.43737690130108 + ], + [ + -73.66486926813091, + 45.437403869158636 + ], + [ + -73.66520655983254, + 45.437403869158636 + ], + [ + -73.6654930841301, + 45.4374038761391 + ], + [ + -73.665496676828, + 45.437206178881524 + ], + [ + -73.66487273953288, + 45.43720616215085 + ], + [ + -73.66487224686861, + 45.43723422089436 + ], + [ + -73.66474361521048, + 45.4372331175143 + ], + [ + -73.66474650766342, + 45.43706842187796 + ], + [ + -73.66448601071066, + 45.43706805838245 + ], + [ + -73.66447916433727, + 45.43746977622446 + ], + [ + -73.66473632085447, + 45.43746977622446 + ], + [ + -73.66474115841577, + 45.437377223432534 + ], + [ + -73.66486974164107, + 45.43737690130108 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "4413", + "name": "Building_343", + "year_built": 2019, + "footprint_area": 2131.0154588451987, + "id": "Building2131", + "type": "Building", + "floor_area": 8524.061835380795, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6644646393823, + 45.43832193988809 + ], + [ + -73.66512144412297, + 45.438201240734585 + ], + [ + -73.66512466689582, + 45.43802917334377 + ], + [ + -73.6654814496118, + 45.43796458972651 + ], + [ + -73.66548445403319, + 45.437713175863564 + ], + [ + -73.66512812775183, + 45.437712543970115 + ], + [ + -73.66473414210601, + 45.437712543970115 + ], + [ + -73.66447372821867, + 45.437759946496065 + ], + [ + -73.6644646393823, + 45.43832193988809 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 12.0, + "number_of_stories_above_ground": 3, + "number_of_stories": 3, + "floor_height": 4.0, + "building_type": "4413", + "name": "Building_344", + "year_built": 2019, + "footprint_area": 3933.6318337951816, + "id": "Building3934", + "type": "Building", + "floor_area": 11800.895501385545, + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6683817123226, + 45.43558098523676 + ], + [ + -73.66798155536286, + 45.435580383752026 + ], + [ + -73.66797633849002, + 45.436840609545065 + ], + [ + -73.66797620337994, + 45.43701647103186 + ], + [ + -73.66810861972675, + 45.43701724369408 + ], + [ + -73.66810900543042, + 45.43698438088535 + ], + [ + -73.6680908387879, + 45.43698427305005 + ], + [ + -73.66809115398914, + 45.436958033086796 + ], + [ + -73.66818615901978, + 45.43695863520665 + ], + [ + -73.66818768636833, + 45.436841167223555 + ], + [ + -73.66837631092021, + 45.43684145542346 + ], + [ + -73.66837822617761, + 45.43639650224013 + ], + [ + -73.6683817123226, + 45.43558098523676 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 12.0, + "number_of_stories_above_ground": 3, + "number_of_stories": 3, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_345", + "year_built": 2019, + "footprint_area": 4641.780357689033, + "id": "Building107", + "type": "Building", + "floor_area": 13925.341073067098, + "usages": [ + { + "usage": "6111", + "percentage": 33 + }, + { + "usage": "4413", + "percentage": 33 + }, + { + "usage": "6591", + "percentage": 33 + } + ], + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66756393622092, + 45.43558131335795 + ], + [ + -73.66756122344515, + 45.436781769075395 + ], + [ + -73.66797638367166, + 45.43678180039711 + ], + [ + -73.66798152472069, + 45.43558433241448 + ], + [ + -73.6676128820165, + 45.43558286765161 + ], + [ + -73.667612890393, + 45.43558183742019 + ], + [ + -73.66756393622092, + 45.43558131335795 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 12.0, + "number_of_stories_above_ground": 3, + "number_of_stories": 3, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_346", + "year_built": 2019, + "footprint_area": 4319.029592704443, + "id": "Building9", + "type": "Building", + "floor_area": 12957.088778113328, + "usages": [ + { + "usage": "6111", + "percentage": 33 + }, + { + "usage": "4413", + "percentage": 33 + }, + { + "usage": "6591", + "percentage": 33 + } + ], + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66755522364404, + 45.43700835307186 + ], + [ + -73.66755522371945, + 45.43678176862275 + ], + [ + -73.66693175593072, + 45.436778473713474 + ], + [ + -73.66692930265519, + 45.437005052811514 + ], + [ + -73.66755522364404, + 45.43700835307186 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 12.0, + "number_of_stories_above_ground": 3, + "number_of_stories": 3, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_347", + "year_built": 2019, + "footprint_area": 1225.15986339136, + "id": "Building98", + "type": "Building", + "floor_area": 3675.47959017408, + "usages": [ + { + "usage": "6111", + "percentage": 33 + }, + { + "usage": "4413", + "percentage": 33 + }, + { + "usage": "6591", + "percentage": 33 + } + ], + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66644930374004, + 45.43637531940716 + ], + [ + -73.66643057653587, + 45.43637531940716 + ], + [ + -73.66643950669717, + 45.43585861597039 + ], + [ + -73.66644308375496, + 45.43566090949072 + ], + [ + -73.6664503018958, + 45.43496464126868 + ], + [ + -73.66636025762105, + 45.43496377325735 + ], + [ + -73.66596497474704, + 45.434961018195914 + ], + [ + -73.66596292561626, + 45.43675731864426 + ], + [ + -73.66643666551667, + 45.43676482950955 + ], + [ + -73.66644930374004, + 45.43637531940716 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 12.0, + "number_of_stories_above_ground": 3, + "number_of_stories": 3, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_348", + "year_built": 2019, + "footprint_area": 7440.6678389157605, + "id": "Building29", + "type": "Building", + "floor_area": 22322.00351674728, + "usages": [ + { + "usage": "6111", + "percentage": 33 + }, + { + "usage": "4413", + "percentage": 33 + }, + { + "usage": "6591", + "percentage": 33 + } + ], + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65966697049467, + 45.43559209084622 + ], + [ + -73.65950936365957, + 45.435417173136486 + ], + [ + -73.65932172512284, + 45.435496617362766 + ], + [ + -73.65934170870406, + 45.435519675670896 + ], + [ + -73.65923174256596, + 45.43556623420258 + ], + [ + -73.65921175898475, + 45.43554317589445 + ], + [ + -73.65888443343394, + 45.435681762165586 + ], + [ + -73.65903737817145, + 45.43585867540249 + ], + [ + -73.65966697049467, + 45.43559209084622 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 48.0, + "number_of_stories_above_ground": 12, + "number_of_stories": 12, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_378", + "year_built": 2019, + "footprint_area": 1282.0234582195408, + "id": "BuildingA51A52", + "type": "Building", + "floor_area": 15384.28149863449, + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65973584450018, + 45.435314319898964 + ], + [ + -73.66007769849766, + 45.435694780066335 + ], + [ + -73.66011034358758, + 45.435680417821665 + ], + [ + -73.66017883204488, + 45.43575646920995 + ], + [ + -73.66038573755306, + 45.4356660129516 + ], + [ + -73.66031751620031, + 45.435589844688224 + ], + [ + -73.66035020869774, + 45.43557553965761 + ], + [ + -73.66000500393592, + 45.435192011693715 + ], + [ + -73.65973584450018, + 45.435314319898964 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 48.0, + "number_of_stories_above_ground": 12, + "number_of_stories": 12, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_379", + "year_built": 2019, + "footprint_area": 1444.435139580106, + "id": "BuildingA31", + "type": "Building", + "floor_area": 17333.22167496127, + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66059725338928, + 45.435787069460766 + ], + [ + -73.66060988771902, + 45.43580109409244 + ], + [ + -73.66073217827977, + 45.43574761783635 + ], + [ + -73.6608360970542, + 45.43570187920045 + ], + [ + -73.66068556792386, + 45.43553479869472 + ], + [ + -73.66014619770765, + 45.43577074503025 + ], + [ + -73.6602969430314, + 45.435938027141006 + ], + [ + -73.6605444981357, + 45.43582970616142 + ], + [ + -73.66053214989437, + 45.43581599243918 + ], + [ + -73.66059725338928, + 45.435787069460766 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 48.0, + "number_of_stories_above_ground": 12, + "number_of_stories": 12, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_380", + "year_built": 2019, + "footprint_area": 1077.6205160361715, + "id": "BuildingA32", + "type": "Building", + "floor_area": 12931.446192434058, + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65946768693765, + 45.435676472304934 + ], + [ + -73.65951306658182, + 45.43572560465081 + ], + [ + -73.65945242777238, + 45.43575229377727 + ], + [ + -73.65971229836644, + 45.436041958374354 + ], + [ + -73.65996954046402, + 45.435928173693185 + ], + [ + -73.65970846303154, + 45.435639604272424 + ], + [ + -73.65968714221097, + 45.43564898826399 + ], + [ + -73.65964365105059, + 45.4356019648606 + ], + [ + -73.65946768693765, + 45.435676472304934 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_381", + "year_built": 2019, + "footprint_area": 999.4070307786751, + "id": "BuildingA41", + "type": "Building", + "floor_area": 5996.442184672051, + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65704084309412, + 45.43635539015288 + ], + [ + -73.65685020101347, + 45.43655753285277 + ], + [ + -73.65703151425289, + 45.436881740679425 + ], + [ + -73.65706744308366, + 45.43687193559187 + ], + [ + -73.65709847808593, + 45.43692742955727 + ], + [ + -73.65729036222264, + 45.43687556575514 + ], + [ + -73.6572591269909, + 45.43681973259087 + ], + [ + -73.65729486741753, + 45.43680999905905 + ], + [ + -73.65704084309412, + 45.43635539015288 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 24.0, + "number_of_stories_above_ground": 6, + "number_of_stories": 6, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_382", + "year_built": 2019, + "footprint_area": 1129.4963064734766, + "id": "BuildingA7", + "type": "Building", + "floor_area": 6776.9778388408595, + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65744041788435, + 45.43654948135996 + ], + [ + -73.6578314724335, + 45.43637989514 + ], + [ + -73.65780661394352, + 45.4363518870339 + ], + [ + -73.65787635890342, + 45.43632165976175 + ], + [ + -73.65771614139304, + 45.436129490273714 + ], + [ + -73.65763934474647, + 45.43616310698943 + ], + [ + -73.65761903661414, + 45.4361401872278 + ], + [ + -73.65729074446949, + 45.43628389276972 + ], + [ + -73.65744041788435, + 45.43654948135996 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 60.0, + "number_of_stories_above_ground": 15, + "number_of_stories": 15, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_383", + "year_built": 2019, + "footprint_area": 1198.0054285601364, + "id": "BuildingA6", + "type": "Building", + "floor_area": 17970.081428402045, + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65744290285458, + 45.43707431681009 + ], + [ + -73.65732649436283, + 45.43686604536719 + ], + [ + -73.65642437009781, + 45.4371089059564 + ], + [ + -73.65653931416294, + 45.437317571637124 + ], + [ + -73.65744290285458, + 45.43707431681009 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 60.0, + "number_of_stories_above_ground": 15, + "number_of_stories": 15, + "floor_height": 4.0, + "building_type": "1000", + "name": "Building_384", + "year_built": 2019, + "footprint_area": 1872.453116929013, + "id": "BuildingA81A82", + "type": "Building", + "floor_area": 28086.796753935196, + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66102831571936, + 45.43591496177822 + ], + [ + -73.66064698460227, + 45.43632600239489 + ], + [ + -73.6607979949412, + 45.43649358079012 + ], + [ + -73.66133634726165, + 45.4362565800703 + ], + [ + -73.66102831571936, + 45.43591496177822 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "1000", + "name": "Building_385", + "year_built": 2019, + "footprint_area": 1657.0308547894238, + "id": "BuildingA11A12", + "type": "Building", + "floor_area": 13256.24683831542, + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65768085934616, + 45.43650960374239 + ], + [ + -73.65779076376776, + 45.43663121397068 + ], + [ + -73.65795326898645, + 45.436591064327885 + ], + [ + -73.65883759748795, + 45.43620582270627 + ], + [ + -73.65870738393136, + 45.43606019112894 + ], + [ + -73.65768085934616, + 45.43650960374239 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 4.0, + "number_of_stories_above_ground": 1, + "number_of_stories": 1, + "floor_height": 4.0, + "building_type": "6591", + "name": "Building_394", + "year_built": 2019, + "footprint_area": 1770.76921350279, + "id": "Building6+8+9", + "type": "Building", + "floor_area": 1770.76921350279, + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66720672413315, + 45.43591349917142 + ], + [ + -73.66720609413696, + 45.43593488696677 + ], + [ + -73.6675081195566, + 45.43593803670924 + ], + [ + -73.6675080555112, + 45.43594118649132 + ], + [ + -73.6675631239375, + 45.43594118645168 + ], + [ + -73.66756373929483, + 45.43566887081055 + ], + [ + -73.66684199399202, + 45.43566111136084 + ], + [ + -73.66684195283074, + 45.43566412201921 + ], + [ + -73.66644307724094, + 45.435661452106686 + ], + [ + -73.6664388086674, + 45.435899004309384 + ], + [ + -73.66652029083926, + 45.435899004309384 + ], + [ + -73.66652028392807, + 45.43591333747217 + ], + [ + -73.66720672413315, + 45.43591349917142 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 12.0, + "number_of_stories_above_ground": 3, + "number_of_stories": 3, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_341", + "year_built": 2024, + "footprint_area": 2484.8825099908718, + "id": "Building10B", + "type": "Building", + "floor_area": 7454.647529972615, + "usages": [ + { + "usage": "6111", + "percentage": 33 + }, + { + "usage": "4413", + "percentage": 67 + } + ], + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66587672156344, + 45.43806123747731 + ], + [ + -73.66647268098447, + 45.43794989981638 + ], + [ + -73.66647268098447, + 45.43771252585689 + ], + [ + -73.66610245673452, + 45.43771196836377 + ], + [ + -73.6661024567391, + 45.43762326746439 + ], + [ + -73.66592246171727, + 45.43762322461429 + ], + [ + -73.66592289212869, + 45.437712392077565 + ], + [ + -73.66588306732686, + 45.437712038520935 + ], + [ + -73.66587672156344, + 45.43806123747731 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 56.0, + "number_of_stories_above_ground": 14, + "number_of_stories": 14, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_355", + "year_built": 2024, + "footprint_area": 1641.9575463399633, + "id": "BuildingD12D11", + "type": "Building", + "floor_area": 22987.405648759486, + "usages": [ + { + "usage": "6111", + "percentage": 8 + }, + { + "usage": "1000", + "percentage": 92 + } + ], + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65916649976008, + 45.43660558593783 + ], + [ + -73.66026705538488, + 45.43631439858974 + ], + [ + -73.66012250894464, + 45.436048109665215 + ], + [ + -73.65902666942361, + 45.436339951851515 + ], + [ + -73.65916649976008, + 45.43660558593783 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 16.0, + "number_of_stories_above_ground": 4, + "number_of_stories": 4, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_391", + "year_built": 2024, + "footprint_area": 2886.824986603955, + "id": "Building3", + "type": "Building", + "floor_area": 11547.29994641582, + "usages": [ + { + "usage": "4413", + "percentage": 75 + }, + { + "usage": "6591", + "percentage": 25 + } + ], + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66644750504312, + 45.43474765576057 + ], + [ + -73.66645030861031, + 45.434965162194594 + ], + [ + -73.66644307812048, + 45.43566145208506 + ], + [ + -73.66684195283074, + 45.43566412201921 + ], + [ + -73.66684619406267, + 45.435353905836635 + ], + [ + -73.66685092087519, + 45.434823537626215 + ], + [ + -73.66676367919239, + 45.43482330222594 + ], + [ + -73.66676414203678, + 45.43474095199919 + ], + [ + -73.66652913279499, + 45.43474031397364 + ], + [ + -73.66652909197072, + 45.43474765576057 + ], + [ + -73.66644750504312, + 45.43474765576057 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 12.0, + "number_of_stories_above_ground": 3, + "number_of_stories": 3, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_342", + "year_built": 2024, + "footprint_area": 3125.7782000612933, + "id": "Building31", + "type": "Building", + "floor_area": 9377.33460018388, + "usages": [ + { + "usage": "6111", + "percentage": 33 + }, + { + "usage": "4413", + "percentage": 67 + } + ], + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.66746285719077, + 45.43758112090893 + ], + [ + -73.66710280943789, + 45.437647626580464 + ], + [ + -73.66710280274614, + 45.43767551215465 + ], + [ + -73.66699994387528, + 45.43769451157411 + ], + [ + -73.66699992423368, + 45.437204861341634 + ], + [ + -73.6667425390757, + 45.43720547997625 + ], + [ + -73.66674267355006, + 45.43789957986157 + ], + [ + -73.66699990604663, + 45.43785214966876 + ], + [ + -73.6669999127376, + 45.437824267316756 + ], + [ + -73.66710277160038, + 45.4378053015338 + ], + [ + -73.66710276490942, + 45.437833183885814 + ], + [ + -73.66746285719076, + 45.43776678774007 + ], + [ + -73.66746285719077, + 45.43758112090893 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 60.0, + "number_of_stories_above_ground": 15, + "number_of_stories": 15, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_356", + "year_built": 2024, + "footprint_area": 2187.804817280379, + "id": "BuildingD31D32", + "type": "Building", + "floor_area": 32817.072259205685, + "usages": [ + { + "usage": "6111", + "percentage": 6 + }, + { + "usage": "1000", + "percentage": 94 + } + ], + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.657900710434, + 45.43634907292063 + ], + [ + -73.65892445795284, + 45.435901817013246 + ], + [ + -73.6587146994442, + 45.435660256947216 + ], + [ + -73.65769766316909, + 45.4361027051973 + ], + [ + -73.657900710434, + 45.43634907292063 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 12.0, + "number_of_stories_above_ground": 3, + "number_of_stories": 3, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_392", + "year_built": 2024, + "footprint_area": 2949.397039983276, + "id": "Building14", + "type": "Building", + "floor_area": 8848.191119949828, + "usages": [ + { + "usage": "4413", + "percentage": 67 + }, + { + "usage": "6591", + "percentage": 33 + } + ], + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.668085877649, + 45.43766880655165 + ], + [ + -73.66834307981148, + 45.43762085141583 + ], + [ + -73.66834319464849, + 45.437205124658014 + ], + [ + -73.66808575236738, + 45.43720521665987 + ], + [ + -73.668085877649, + 45.43751069794799 + ], + [ + -73.6679830233389, + 45.43752987505118 + ], + [ + -73.6679830233389, + 45.43750197353289 + ], + [ + -73.66762283189354, + 45.43756913093748 + ], + [ + -73.66762285022646, + 45.43775513764128 + ], + [ + -73.66798296501898, + 45.43768799452855 + ], + [ + -73.6679830233389, + 45.43766008213656 + ], + [ + -73.66808594616244, + 45.43764089225922 + ], + [ + -73.668085877649, + 45.43766880655165 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 40.0, + "number_of_stories_above_ground": 10, + "number_of_stories": 10, + "floor_height": 4.0, + "building_type": "mixed use", + "name": "Building_357", + "year_built": 2024, + "footprint_area": 1674.9280842908665, + "id": "BuildingD52D51", + "type": "Building", + "floor_area": 16749.280842908665, + "usages": [ + { + "usage": "6111", + "percentage": 6 + }, + { + "usage": "1000", + "percentage": 94 + } + ], + "area": "Dominion Bridge EST" + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.65916142109351, + 45.43594308213673 + ], + [ + -73.65924036210951, + 45.43603043757147 + ], + [ + -73.65931387728152, + 45.43599921930737 + ], + [ + -73.65937030567343, + 45.43605798949156 + ], + [ + -73.65962990525216, + 45.43595011894044 + ], + [ + -73.65945285858106, + 45.43575278136919 + ], + [ + -73.65912792949199, + 45.43589473582857 + ], + [ + -73.65916529153276, + 45.435941573839905 + ], + [ + -73.65916142109351, + 45.43594308213673 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 7.999999999999999, + "number_of_stories_above_ground": 2, + "number_of_stories": 2, + "floor_height": 3.9999999999999996, + "building_type": "mixed use", + "name": "Building_393", + "year_built": 2024, + "footprint_area": 722.2338041748444, + "id": "Building10", + "type": "Building", + "floor_area": 1444.467608349718, + "usages": [ + { + "usage": "4413", + "percentage": 50 + }, + { + "usage": "6591", + "percentage": 50 + } + ], + "area": "Allis-Charmer " + } + }, + { + "geometry": { + "coordinates": [ + [ + [ + -73.6676154376655, + 45.43535985503373 + ], + [ + -73.66761544591557, + 45.43535884035303 + ], + [ + -73.66818556374285, + 45.43535985060739 + ], + [ + -73.66818555549278, + 45.4353005912008 + ], + [ + -73.66818481719507, + 45.4353005912008 + ], + [ + -73.66818481719507, + 45.43521101362212 + ], + [ + -73.66818555549278, + 45.43521101362212 + ], + [ + -73.66838300781298, + 45.43521100205583 + ], + [ + -73.66838243994053, + 45.43516607067679 + ], + [ + -73.66838244097288, + 45.434973142588085 + ], + [ + -73.66756467154073, + 45.43497284501422 + ], + [ + -73.66756467154073, + 45.43521099849349 + ], + [ + -73.6676154376655, + 45.43521101362212 + ], + [ + -73.6676154376655, + 45.43535985503373 + ] + ] + ], + "type": "Polygon" + }, + "type": "Feature", + "properties": { + "maximum_roof_height": 31.999999999999996, + "number_of_stories_above_ground": 8, + "number_of_stories": 8, + "floor_height": 3.9999999999999996, + "building_type": "mixed use", + "name": "Building_358", + "year_built": 2024, + "footprint_area": 2416.2204562020706, + "id": "BuildingD191D192", + "type": "Building", + "floor_area": 19329.763649616565, + "usages": [ + { + "usage": "6111", + "percentage": 18 + }, + { + "usage": "1000", + "percentage": 82 + } + ], + "area": "Dominion Bridge EST" + } + } + ], + "project": { + "elevation": 40.0, + "latitude": 45.5019, + "id": "Lachine_New_Developments", + "city": "Montreal, QC", + "country": "-", + "name": "Lachine New Developments", + "time_zone": -5.0, + "cad_coordinates": [ + 0.0, + 0.0 + ], + "longitude": -73.5674 + } +} \ No newline at end of file diff --git a/input_files/Lachine_New_Developments.geojson b/input_files/Lachine_New_Developments.geojson deleted file mode 100644 index 0af3eb96..00000000 --- a/input_files/Lachine_New_Developments.geojson +++ /dev/null @@ -1,5128 +0,0 @@ -{ - "type": "FeatureCollection", - "project": { - "city": "Montreal, QC", - "country": "-", - "time_zone": -5.0, - "id": "Lachine_New_Developments", - "cad_coordinates": [ - 103.0, - -265.0 - ], - "longitude": -73.669135847540289, - "name": "Lachine New Developments", - "elevation": 40.0, - "latitude": 45.437625782197607 - }, - "features": [ - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1294.9983604130321, - "name": "Building_4244", - "number_of_stories_above_ground": 3, - "floor_height": 4.0, - "maximum_roof_height": 12.0, - "year_built": 2024, - "id": "Building_4244_49de050b", - "floor_area": 3884.9950812390962, - "number_of_stories": 3, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4244_49de050b.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.667382116178572, - 45.435820149097744 - ], - [ - -73.667382116178572, - 45.435512474700872 - ], - [ - -73.666898476760338, - 45.435507260481316 - ], - [ - -73.666894287179815, - 45.435814884182385 - ], - [ - -73.667382116178572, - 45.435820149097744 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 3264.7409803860646, - "name": "Building_4258", - "number_of_stories_above_ground": 11, - "floor_height": 4.0, - "maximum_roof_height": 44.0, - "year_built": 2024, - "id": "Building_4258_13cdd851", - "floor_area": 35912.150784246711, - "number_of_stories": 11, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4258_13cdd851.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.665578931116286, - 45.434812777543392 - ], - [ - -73.665294773404128, - 45.434993833845738 - ], - [ - -73.665293536643830, - 45.435105445121167 - ], - [ - -73.665165288990920, - 45.435105174477719 - ], - [ - -73.665165611293958, - 45.435076088281747 - ], - [ - -73.664568175616452, - 45.435456693178715 - ], - [ - -73.664564355124710, - 45.435752853675631 - ], - [ - -73.664846178990885, - 45.435754788257483 - ], - [ - -73.664849650494887, - 45.435505610493934 - ], - [ - -73.665163087599865, - 45.435303838732239 - ], - [ - -73.665163597823636, - 45.435257793664370 - ], - [ - -73.665291848475292, - 45.435257793685061 - ], - [ - -73.665288841815411, - 45.435529119569743 - ], - [ - -73.665570983572579, - 45.435530002610655 - ], - [ - -73.665578931116286, - 45.434812777543392 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2044.0682836118940, - "name": "Building_4217", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4217_88d6d32b", - "floor_area": 16352.546268895137, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4217_88d6d32b.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.664565269116110, - 45.435888366561606 - ], - [ - -73.664565011113353, - 45.436068336532742 - ], - [ - -73.665154983178013, - 45.436068743454832 - ], - [ - -73.665155286823463, - 45.436041341009755 - ], - [ - -73.665283247559273, - 45.436041341009755 - ], - [ - -73.665283247559273, - 45.436067422697604 - ], - [ - -73.665565383901338, - 45.436068866432997 - ], - [ - -73.665569592006563, - 45.435663914861451 - ], - [ - -73.665286534276248, - 45.435663028953748 - ], - [ - -73.665284925708576, - 45.435916060080423 - ], - [ - -73.665156946160081, - 45.435915361902495 - ], - [ - -73.665156946160081, - 45.435891594388650 - ], - [ - -73.664565269116110, - 45.435888366561606 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2029.5591847320029, - "name": "Building_4218", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4218_d92d9faf", - "floor_area": 16236.473477856023, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4218_d92d9faf.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668605239407853, - 45.433802387292111 - ], - [ - -73.668242586905592, - 45.433816965111312 - ], - [ - -73.667696461166074, - 45.434160801600001 - ], - [ - -73.668070680182737, - 45.434451385347089 - ], - [ - -73.668260078144129, - 45.434331303349111 - ], - [ - -73.668059926903510, - 45.434174877224621 - ], - [ - -73.668348200136421, - 45.433993100998663 - ], - [ - -73.668605144977022, - 45.433982874307397 - ], - [ - -73.668605239407853, - 45.433802387292111 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 808.28076254848929, - "name": "Building_4219", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4219_9df91a15", - "floor_area": 6466.2461003879143, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4219_9df91a15.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668750929472338, - 45.434709295105606 - ], - [ - -73.668586748922394, - 45.434816072508021 - ], - [ - -73.668781833784209, - 45.434963190289359 - ], - [ - -73.669196655443443, - 45.434963322428594 - ], - [ - -73.669196879831674, - 45.434810347603545 - ], - [ - -73.668880336047863, - 45.434810347603545 - ], - [ - -73.668750929472338, - 45.434709295105606 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1458.2391973223130, - "name": "Building_4220", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4220_790ae4e2", - "floor_area": 11665.913578578504, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4220_790ae4e2.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.667020729640740, - 45.434585032525739 - ], - [ - -73.667124074082722, - 45.434665180929684 - ], - [ - -73.667269917251119, - 45.434577022261912 - ], - [ - -73.667335580741621, - 45.434628629089417 - ], - [ - -73.667529265810188, - 45.434506719754573 - ], - [ - -73.667730480616370, - 45.434664231202227 - ], - [ - -73.667921402741001, - 45.434544156327568 - ], - [ - -73.667548921994893, - 45.434252577478802 - ], - [ - -73.667020729640740, - 45.434585032525739 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 504.15104012840311, - "name": "Building_4221", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4221_73bf269c", - "floor_area": 3024.9062407704187, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4221_73bf269c.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668134997936122, - 45.437505021386428 - ], - [ - -73.668134946469650, - 45.437379042289521 - ], - [ - -73.667673139204155, - 45.437379045264521 - ], - [ - -73.667673140839923, - 45.437505021420364 - ], - [ - -73.668134997936122, - 45.437505021386428 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 892.77340679971894, - "name": "Building_4222", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4222_62a9b0dc", - "floor_area": 5356.6404407983136, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4222_62a9b0dc.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668623548784382, - 45.436257430669642 - ], - [ - -73.668624124006556, - 45.436437400822840 - ], - [ - -73.669196215462875, - 45.436437400822840 - ], - [ - -73.669196410436200, - 45.436257430669642 - ], - [ - -73.668623548784382, - 45.436257430669642 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 912.70544410405819, - "name": "Building_4223", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4223_b1b267ee", - "floor_area": 5476.2326646243491, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4223_b1b267ee.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.669196410332091, - 45.436437404845783 - ], - [ - -73.669016669976969, - 45.436437420924037 - ], - [ - -73.669016864950308, - 45.437024103522340 - ], - [ - -73.669196194730588, - 45.437024074181501 - ], - [ - -73.669196410332091, - 45.436437404845783 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1140.9999999757201, - "name": "Building_4224", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4224_cdc1197b", - "floor_area": 6845.9999998543208, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4224_cdc1197b.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668803094270288, - 45.436437400822832 - ], - [ - -73.668623548784396, - 45.436437400822840 - ], - [ - -73.668623548784424, - 45.437170779197196 - ], - [ - -73.668803094270316, - 45.437170779197196 - ], - [ - -73.668803094270288, - 45.436437400822832 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 893.37365266692359, - "name": "Building_4225", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4225_7feb3694", - "floor_area": 5360.2419160015415, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4225_7feb3694.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.669196410436186, - 45.436068839525731 - ], - [ - -73.669196410036577, - 45.435888869372498 - ], - [ - -73.668623548784439, - 45.435888869372498 - ], - [ - -73.668623548784439, - 45.436068839525731 - ], - [ - -73.669196410436186, - 45.436068839525731 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 967.48230638653331, - "name": "Building_4226", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4226_9223da68", - "floor_area": 5804.8938383191999, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4226_9223da68.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.669171308040362, - 45.435291015077603 - ], - [ - -73.669171596509045, - 45.435245372593641 - ], - [ - -73.669086477580692, - 45.435245107741409 - ], - [ - -73.669086344630955, - 45.435291014761738 - ], - [ - -73.669016025898543, - 45.435291014610343 - ], - [ - -73.669016025947727, - 45.435888869372498 - ], - [ - -73.669195575050821, - 45.435888869372498 - ], - [ - -73.669196957648154, - 45.435291015003052 - ], - [ - -73.669171308040362, - 45.435291015077603 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 980.37490820664607, - "name": "Building_4227", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4227_f723a994", - "floor_area": 5882.2494492398764, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4227_f723a994.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668648369984680, - 45.435244480069194 - ], - [ - -73.668648889781494, - 45.435291013286125 - ], - [ - -73.668623242112076, - 45.435291013337562 - ], - [ - -73.668622709781829, - 45.435888869372498 - ], - [ - -73.668802255267735, - 45.435888869372498 - ], - [ - -73.668802255237040, - 45.435291012978510 - ], - [ - -73.668776605881789, - 45.435291014831833 - ], - [ - -73.668776608504743, - 45.435244483775882 - ], - [ - -73.668648369984680, - 45.435244480069194 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 222.09817462227147, - "name": "Building_4228", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4228_36d9df57", - "floor_area": 1332.5890477336288, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4228_36d9df57.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.669196907312852, - 45.433979367762774 - ], - [ - -73.668965565882573, - 45.433979367762774 - ], - [ - -73.668965287531563, - 45.434090159792447 - ], - [ - -73.669196628961842, - 45.434090159792447 - ], - [ - -73.669196907312852, - 45.433979367762774 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 648.19765522326634, - "name": "Building_4229", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4229_5d18d79a", - "floor_area": 3889.1859313395980, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4229_5d18d79a.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668946104804007, - 45.433800122702650 - ], - [ - -73.668946104804007, - 45.433818119310892 - ], - [ - -73.668869156738623, - 45.433818056698406 - ], - [ - -73.668869156738623, - 45.433799996553056 - ], - [ - -73.668771670456010, - 45.433799836732859 - ], - [ - -73.668771670456010, - 45.433979242973898 - ], - [ - -73.669196907312852, - 45.433979367762774 - ], - [ - -73.669197161430006, - 45.433800534287933 - ], - [ - -73.668946104804007, - 45.433800122702650 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 853.04053182815187, - "name": "Building_4230", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4230_7d88c971", - "floor_area": 5118.2431909689112, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4230_7d88c971.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.669196378035480, - 45.434713541536134 - ], - [ - -73.669196408038900, - 45.434165176422063 - ], - [ - -73.669016862552994, - 45.434165176422063 - ], - [ - -73.669016832557560, - 45.434713395845193 - ], - [ - -73.669196378035480, - 45.434713541536134 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 358.93166192741774, - "name": "Building_4231", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4231_09629cab", - "floor_area": 2153.5899715645064, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4231_09629cab.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.667978661633526, - 45.434888901337068 - ], - [ - -73.668115605396878, - 45.434802712249329 - ], - [ - -73.668115319596211, - 45.434802449212448 - ], - [ - -73.667900800599185, - 45.434634523211862 - ], - [ - -73.667764690859670, - 45.434720130978349 - ], - [ - -73.667978661633526, - 45.434888901337068 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 988.39325611376989, - "name": "Building_4232", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4232_23500266", - "floor_area": 5930.3595366826194, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4232_23500266.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.667762093654034, - 45.434791332153431 - ], - [ - -73.667734436139426, - 45.434769615522725 - ], - [ - -73.667613207291808, - 45.434846823789506 - ], - [ - -73.667269917251133, - 45.434577022261912 - ], - [ - -73.667124074082722, - 45.434665180929684 - ], - [ - -73.667519159084051, - 45.434975678432124 - ], - [ - -73.667593506199097, - 45.434929104795813 - ], - [ - -73.667682082808867, - 45.434999700207889 - ], - [ - -73.667866479938112, - 45.434885795358682 - ], - [ - -73.66781975180524, - 45.434849513558824 - ], - [ - -73.667825145525242, - 45.434846093562641 - ], - [ - -73.667786145680765, - 45.434815813584358 - ], - [ - -73.667840825349430, - 45.434781422706045 - ], - [ - -73.667813830411276, - 45.434758890008858 - ], - [ - -73.667762093654034, - 45.434791332153431 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 478.62040312459430, - "name": "Building_4233", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4233_0181686e", - "floor_area": 2871.7224187475658, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4233_0181686e.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668728326900208, - 45.434417511854924 - ], - [ - -73.668563468628548, - 45.434287831246891 - ], - [ - -73.668324911978246, - 45.434434603045020 - ], - [ - -73.668487325822909, - 45.434564890390938 - ], - [ - -73.668728326900208, - 45.434417511854924 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1434.9411493013613, - "name": "Building_4234", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4234_38204d6a", - "floor_area": 8609.6468958081678, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4234_38204d6a.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.665939341079010, - 45.437770660800183 - ], - [ - -73.666195855669187, - 45.437770722102968 - ], - [ - -73.666200526417342, - 45.437532606546199 - ], - [ - -73.666525896570846, - 45.437532016970628 - ], - [ - -73.666526259188828, - 45.437352046790117 - ], - [ - -73.665947511423369, - 45.437352615206926 - ], - [ - -73.665939341079010, - 45.437770660800183 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 855.31368611823200, - "name": "Building_4235", - "number_of_stories_above_ground": 15, - "floor_height": 4.0, - "maximum_roof_height": 60.0, - "year_built": 2019, - "id": "Building_4235_920c83c2", - "floor_area": 12829.705291773480, - "number_of_stories": 15, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4235_920c83c2.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668025843600375, - 45.436937098732315 - ], - [ - -73.667605735464790, - 45.436937066914723 - ], - [ - -73.667605735464790, - 45.437172070002809 - ], - [ - -73.668025663748438, - 45.437172102540892 - ], - [ - -73.668025843600375, - 45.436937098732315 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1149.4388344977560, - "name": "Building_4236", - "number_of_stories_above_ground": 15, - "floor_height": 4.0, - "maximum_roof_height": 60.0, - "year_built": 2019, - "id": "Building_4236_64a30176", - "floor_area": 17241.582517466341, - "number_of_stories": 15, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4236_64a30176.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.666055548918109, - 45.436913190593778 - ], - [ - -73.666055659322836, - 45.436946607737688 - ], - [ - -73.665952814139430, - 45.436946874576634 - ], - [ - -73.665950328688396, - 45.437171173786695 - ], - [ - -73.666488946387020, - 45.437171293717519 - ], - [ - -73.666488946387020, - 45.436946607737688 - ], - [ - -73.666450472354327, - 45.436946607737688 - ], - [ - -73.666450472354327, - 45.436919476092470 - ], - [ - -73.666055548918109, - 45.436913190593778 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2324.0116964114713, - "name": "Building_4237", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4237_c54981e4", - "floor_area": 18592.093571291771, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4237_c54981e4.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.665144424371931, - 45.437000613550794 - ], - [ - -73.665144424371931, - 45.436973618027807 - ], - [ - -73.665272695107703, - 45.436973618027807 - ], - [ - -73.665273349941913, - 45.437094260084073 - ], - [ - -73.665553361501537, - 45.437093511816961 - ], - [ - -73.665559353227039, - 45.436572929156426 - ], - [ - -73.665277232871446, - 45.436571360178405 - ], - [ - -73.665274111957189, - 45.436847638920547 - ], - [ - -73.665145847463648, - 45.436847638920547 - ], - [ - -73.665146108203771, - 45.436824556917067 - ], - [ - -73.664550024744770, - 45.436820643397560 - ], - [ - -73.664547676983133, - 45.436996695672327 - ], - [ - -73.665144424371931, - 45.437000613550794 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1027.8277728328394, - "name": "Building_4238", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4238_73e94905", - "floor_area": 8222.6221826627152, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4238_73e94905.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.665560878009245, - 45.436437947905127 - ], - [ - -73.665557904382581, - 45.436437946029613 - ], - [ - -73.665562912497322, - 45.436257572948200 - ], - [ - -73.664903808930106, - 45.436257572948200 - ], - [ - -73.664901810202068, - 45.436437947905127 - ], - [ - -73.665560878009245, - 45.436437947905127 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 735.09355594096996, - "name": "Building_4239", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2019, - "id": "Building_4239_4db360d3", - "floor_area": 2940.3742237638799, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4239_4db360d3.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.664762726619145, - 45.436258280654812 - ], - [ - -73.664583186920296, - 45.436257277380612 - ], - [ - -73.664577140930660, - 45.436729676366951 - ], - [ - -73.664756679177529, - 45.436730807629715 - ], - [ - -73.664762726619145, - 45.436258280654812 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 374.11245699843494, - "name": "Building_4240", - "number_of_stories_above_ground": 3, - "floor_height": 4.0, - "maximum_roof_height": 12.0, - "year_built": 2019, - "id": "Building_4240_ec1785c9", - "floor_area": 1122.3373709953048, - "number_of_stories": 3, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4240_ec1785c9.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668912707793709, - 45.435244567047157 - ], - [ - -73.669245149088141, - 45.435245601456536 - ], - [ - -73.669245969864861, - 45.435115735412957 - ], - [ - -73.668913528570428, - 45.435114701003570 - ], - [ - -73.668912707793709, - 45.435244567047157 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2131.0154588451987, - "name": "Building_4247", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2019, - "id": "Building_4247_df17586f", - "floor_area": 8524.0618353807949, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4247_df17586f.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.664926960739223, - 45.437533009704531 - ], - [ - -73.664926488411723, - 45.437560014271504 - ], - [ - -73.665262937691395, - 45.437560014271504 - ], - [ - -73.665548746363996, - 45.437560021261461 - ], - [ - -73.665552330088744, - 45.437362054892780 - ], - [ - -73.664929951143492, - 45.437362038139334 - ], - [ - -73.664929459709711, - 45.437390135077202 - ], - [ - -73.664801149322841, - 45.437389030195199 - ], - [ - -73.664804034551580, - 45.437224110370479 - ], - [ - -73.664544188217690, - 45.437223746380170 - ], - [ - -73.664537358943861, - 45.437626011051897 - ], - [ - -73.664793873185261, - 45.437626011051897 - ], - [ - -73.664798698664242, - 45.437533332274484 - ], - [ - -73.664926960739223, - 45.437533009704531 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 3933.6318337951816, - "name": "Building_4248", - "number_of_stories_above_ground": 3, - "floor_height": 4.0, - "maximum_roof_height": 12.0, - "year_built": 2019, - "id": "Building_4248_9216211f", - "floor_area": 11800.895501385545, - "number_of_stories": 3, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4248_9216211f.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.664522870266524, - 45.438479334704866 - ], - [ - -73.665178034567376, - 45.438358471252243 - ], - [ - -73.665181249290995, - 45.438186169638428 - ], - [ - -73.665537140904135, - 45.438121498108117 - ], - [ - -73.665540137821651, - 45.437869742013490 - ], - [ - -73.665184701503151, - 45.437869109259886 - ], - [ - -73.664791699878464, - 45.437869109259886 - ], - [ - -73.664531936402540, - 45.437916576311501 - ], - [ - -73.664522870266524, - 45.438479334704866 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 4641.7803576890328, - "name": "Building_4249", - "number_of_stories_above_ground": 3, - "floor_height": 4.0, - "maximum_roof_height": 12.0, - "year_built": 2019, - "id": "Building_4249_dd0557ee", - "floor_area": 13925.341073067098, - "number_of_stories": 3, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4249_dd0557ee.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668430159899827, - 45.435734648988351 - ], - [ - -73.668031002374718, - 45.435734046684864 - ], - [ - -73.668025798531588, - 45.436995987932981 - ], - [ - -73.668025663758939, - 45.437172088807415 - ], - [ - -73.668157749381834, - 45.437172862521408 - ], - [ - -73.668158134122152, - 45.437139954978889 - ], - [ - -73.668140012852760, - 45.437139846996800 - ], - [ - -73.668140327266755, - 45.437113571314960 - ], - [ - -73.668235095012207, - 45.437114174254440 - ], - [ - -73.668236618546032, - 45.436996546370601 - ], - [ - -73.668424771988015, - 45.436996834962812 - ], - [ - -73.668426682461856, - 45.436551276096587 - ], - [ - -73.668430159899827, - 45.435734648988351 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 4319.0295927044426, - "name": "Building_4250", - "number_of_stories_above_ground": 3, - "floor_height": 4.0, - "maximum_roof_height": 12.0, - "year_built": 2019, - "id": "Building_4250_c4e45f08", - "floor_area": 12957.088778113328, - "number_of_stories": 3, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4250_c4e45f08.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.667614426281091, - 45.435734977556187 - ], - [ - -73.667611720280760, - 45.436937067367992 - ], - [ - -73.668025843600375, - 45.436937098732336 - ], - [ - -73.668030971809074, - 45.435738000722353 - ], - [ - -73.667663249829317, - 45.435736533965610 - ], - [ - -73.667663258184902, - 45.435735502331802 - ], - [ - -73.667614426281091, - 45.435734977556187 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1225.1598633913600, - "name": "Building_4251", - "number_of_stories_above_ground": 3, - "floor_height": 4.0, - "maximum_roof_height": 12.0, - "year_built": 2019, - "id": "Building_4251_5a4a89c2", - "floor_area": 3675.4795901740799, - "number_of_stories": 3, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4251_5a4a89c2.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.667605735464790, - 45.437163959797019 - ], - [ - -73.667605735540008, - 45.436937066914730 - ], - [ - -73.666983824928508, - 45.436933767520337 - ], - [ - -73.666981377780289, - 45.437160655044259 - ], - [ - -73.667605735464790, - 45.437163959797019 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 7440.6678389157605, - "name": "Building_4252", - "number_of_stories_above_ground": 3, - "floor_height": 4.0, - "maximum_roof_height": 12.0, - "year_built": 2019, - "id": "Building_4252_af26a1bb", - "floor_area": 22322.003516747282, - "number_of_stories": 3, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4252_af26a1bb.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.666502577713558, - 45.436530064428943 - ], - [ - -73.666483897282589, - 45.436530064428943 - ], - [ - -73.666492805139853, - 45.436012657640809 - ], - [ - -73.666496373263556, - 45.435814682037474 - ], - [ - -73.666503573376318, - 45.435117466035400 - ], - [ - -73.666413753996764, - 45.435116596842505 - ], - [ - -73.666019458383829, - 45.435113838030794 - ], - [ - -73.666017414370970, - 45.436912583654248 - ], - [ - -73.666489971055512, - 45.436920104743528 - ], - [ - -73.666502577713558, - 45.436530064428943 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2484.8825099908718, - "name": "Building_4245", - "number_of_stories_above_ground": 3, - "floor_height": 4.0, - "maximum_roof_height": 12.0, - "year_built": 2024, - "id": "Building_4245_e5f9d38c", - "floor_area": 7454.6475299726153, - "number_of_stories": 3, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4245_e5f9d38c.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.667258106368550, - 45.436067615550407 - ], - [ - -73.667257477945839, - 45.436089032459435 - ], - [ - -73.667558749024835, - 45.436092186489418 - ], - [ - -73.667558685139397, - 45.436095340559078 - ], - [ - -73.667613616026429, - 45.436095340519380 - ], - [ - -73.667614229846833, - 45.435822654194482 - ], - [ - -73.666894287179815, - 45.435814884182385 - ], - [ - -73.666894246121331, - 45.435817898938950 - ], - [ - -73.666496366765813, - 45.435815225392069 - ], - [ - -73.666492108853490, - 45.436053100957551 - ], - [ - -73.666573387514944, - 45.436053100957551 - ], - [ - -73.666573380621017, - 45.436067453631054 - ], - [ - -73.667258106368550, - 45.436067615550407 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1641.9575463399633, - "name": "Building_4259", - "number_of_stories_above_ground": 14, - "floor_height": 4.0, - "maximum_roof_height": 56.0, - "year_built": 2024, - "id": "Building_4259_d110191d", - "floor_area": 22987.405648759486, - "number_of_stories": 14, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4259_d110191d.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.665931425621963, - 45.438218277418571 - ], - [ - -73.666525896570846, - 45.438106788201665 - ], - [ - -73.666525896570846, - 45.437869091122003 - ], - [ - -73.666156596995407, - 45.437868532870013 - ], - [ - -73.666156596999969, - 45.437779711228451 - ], - [ - -73.665977051534895, - 45.437779668320019 - ], - [ - -73.665977480871291, - 45.437868957160575 - ], - [ - -73.665937755536149, - 45.437868603122674 - ], - [ - -73.665931425621963, - 45.438218277418571 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 3125.7782000612933, - "name": "Building_4246", - "number_of_stories_above_ground": 3, - "floor_height": 4.0, - "maximum_roof_height": 12.0, - "year_built": 2024, - "id": "Building_4246_5d3885a8", - "floor_area": 9377.3346001838800, - "number_of_stories": 3, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4246_5d3885a8.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.666500783509107, - 45.434900185160458 - ], - [ - -73.666503580074064, - 45.435117987670409 - ], - [ - -73.666496367643163, - 45.435815225370405 - ], - [ - -73.666894246121331, - 45.435817898938950 - ], - [ - -73.666898476760338, - 45.435507260481316 - ], - [ - -73.666903191767133, - 45.434976170318656 - ], - [ - -73.666816167979732, - 45.434975934597936 - ], - [ - -73.666816629668133, - 45.434893472273721 - ], - [ - -73.666582207386952, - 45.434892833379678 - ], - [ - -73.666582166664654, - 45.434900185160458 - ], - [ - -73.666500783509107, - 45.434900185160458 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2187.8048172803792, - "name": "Building_4260", - "number_of_stories_above_ground": 15, - "floor_height": 4.0, - "maximum_roof_height": 60.0, - "year_built": 2024, - "id": "Building_4260_4667a0e9", - "floor_area": 32817.072259205685, - "number_of_stories": 15, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4260_4667a0e9.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.667513599706567, - 45.437737507301911 - ], - [ - -73.667154451211317, - 45.437804103502842 - ], - [ - -73.667154444536280, - 45.437832027035668 - ], - [ - -73.667051842566408, - 45.437851052317676 - ], - [ - -73.667051822973875, - 45.437360735559423 - ], - [ - -73.666795080662752, - 45.437361355036138 - ], - [ - -73.666795214801240, - 45.438056399749904 - ], - [ - -73.667051804832241, - 45.438008904993765 - ], - [ - -73.667051811506497, - 45.437980984687513 - ], - [ - -73.667154413468324, - 45.437961993087804 - ], - [ - -73.667154406794069, - 45.437989913394063 - ], - [ - -73.667513599706567, - 45.437923426867997 - ], - [ - -73.667513599706567, - 45.437737507301911 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1674.9280842908665, - "name": "Building_4261", - "number_of_stories_above_ground": 10, - "floor_height": 4.0, - "maximum_roof_height": 40.0, - "year_built": 2024, - "id": "Building_4261_fe1781c7", - "floor_area": 16749.280842908665, - "number_of_stories": 10, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4261_fe1781c7.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668135064104845, - 45.437825312304810 - ], - [ - -73.668391623877525, - 45.437777291891095 - ], - [ - -73.668391738427701, - 45.437360999234237 - ], - [ - -73.668134939136124, - 45.437361091361325 - ], - [ - -73.668135064104845, - 45.437666988479229 - ], - [ - -73.668032466684352, - 45.437686191686844 - ], - [ - -73.668032466684352, - 45.437658252188221 - ], - [ - -73.667673174855480, - 45.437725501009375 - ], - [ - -73.667673193142619, - 45.437911760910772 - ], - [ - -73.668032408510072, - 45.437844526400930 - ], - [ - -73.668032466684352, - 45.437816576013795 - ], - [ - -73.668135132447148, - 45.437797360014656 - ], - [ - -73.668135064104845, - 45.437825312304810 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2416.2204562020706, - "name": "Building_4262", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4262_df2dea27", - "floor_area": 19329.763649616565, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4262_df2dea27.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.667665799095317, - 45.435513217776617 - ], - [ - -73.667665807324795, - 45.435512201714708 - ], - [ - -73.668234501222059, - 45.435513213344258 - ], - [ - -73.668234492992596, - 45.435453873272081 - ], - [ - -73.668233756538839, - 45.435453873272081 - ], - [ - -73.668233756538839, - 45.435364173757876 - ], - [ - -73.668234492992596, - 45.435364173757876 - ], - [ - -73.668431452154564, - 45.435364162175837 - ], - [ - -73.668430885700459, - 45.435319169634930 - ], - [ - -73.668430886730221, - 45.435125978927040 - ], - [ - -73.667615159764352, - 45.435125680948111 - ], - [ - -73.667615159764352, - 45.435364158608643 - ], - [ - -73.667665799095317, - 45.435364173757876 - ], - [ - -73.667665799095317, - 45.435513217776617 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2443.0417281824775, - "name": "Building_4270", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2024, - "id": "Building_4270_028ce556", - "floor_area": 9772.1669127299101, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4270_028ce556.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.660340537427473, - 45.436981764210877 - ], - [ - -73.659870799779938, - 45.437090886856915 - ], - [ - -73.659658997858799, - 45.437146312693578 - ], - [ - -73.659734855693031, - 45.437291104396650 - ], - [ - -73.659872682587803, - 45.437291104396650 - ], - [ - -73.659875359249085, - 45.437575706757080 - ], - [ - -73.660335278683633, - 45.437575706757080 - ], - [ - -73.660340537427473, - 45.436981764210877 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 907.99950300835917, - "name": "Building_4278", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2024, - "id": "Building_4278_8cd50bf8", - "floor_area": 3631.9980120334367, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4278_8cd50bf8.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.659580059687499, - 45.439038198414607 - ], - [ - -73.659231308568124, - 45.439122486515224 - ], - [ - -73.659417355061422, - 45.439490639191057 - ], - [ - -73.659572494331655, - 45.439461784228868 - ], - [ - -73.659580059687499, - 45.439038198414607 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1756.5275000615802, - "name": "Building_4281", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2019, - "id": "Building_4281_18bb1c39", - "floor_area": 7026.1100002463209, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4281_18bb1c39.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.658719318734384, - 45.438101901841847 - ], - [ - -73.658850639409565, - 45.438363163210767 - ], - [ - -73.659148939474363, - 45.438363163210767 - ], - [ - -73.659148939474363, - 45.438336167687780 - ], - [ - -73.659277186249994, - 45.438336167687780 - ], - [ - -73.659277186249994, - 45.438363163210767 - ], - [ - -73.659585497912005, - 45.438363163210767 - ], - [ - -73.659589225755724, - 45.438101898802401 - ], - [ - -73.659277184082981, - 45.438101899958511 - ], - [ - -73.659277184286140, - 45.438128895041665 - ], - [ - -73.659148939474363, - 45.438128895516812 - ], - [ - -73.659148939474363, - 45.438101902098886 - ], - [ - -73.658719318734384, - 45.438101901841847 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1576.8113605151739, - "name": "Building_4264", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4264_ddfd9be7", - "floor_area": 12614.490884121391, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4264_ddfd9be7.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.657126648944640, - 45.438183887716164 - ], - [ - -73.657605870924314, - 45.437901862967877 - ], - [ - -73.657492175464782, - 45.437676015596722 - ], - [ - -73.656945153650668, - 45.437824228348063 - ], - [ - -73.657126648944640, - 45.438183887716164 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2959.1453306355543, - "name": "Building_4271", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2024, - "id": "Building_4271_e1477ff9", - "floor_area": 11836.581322542217, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4271_e1477ff9.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.659397518227934, - 45.437222828726178 - ], - [ - -73.658973702691625, - 45.437453899940273 - ], - [ - -73.659013233954170, - 45.437489325478928 - ], - [ - -73.658912256963788, - 45.437544800147535 - ], - [ - -73.658872725701244, - 45.437509374608879 - ], - [ - -73.658518874119792, - 45.437703118982085 - ], - [ - -73.658671359628016, - 45.438006487606700 - ], - [ - -73.659148937282040, - 45.437756898806256 - ], - [ - -73.659125211640685, - 45.437735637314184 - ], - [ - -73.659228093593526, - 45.437681869758315 - ], - [ - -73.659251819234896, - 45.437703131250387 - ], - [ - -73.659564458567189, - 45.437541471833754 - ], - [ - -73.659397518227934, - 45.437222828726178 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1300.4263094531598, - "name": "Building_4279", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2024, - "id": "Building_4279_5522252b", - "floor_area": 5201.7052378126391, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4279_5522252b.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.659855269490492, - 45.439409189766465 - ], - [ - -73.660311758792560, - 45.439324285528286 - ], - [ - -73.660315665402933, - 45.439037418485512 - ], - [ - -73.659859669877562, - 45.439037418485512 - ], - [ - -73.659855269490492, - 45.439409189766465 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1950.6239165951920, - "name": "Building_4272", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2024, - "id": "Building_4272_b9ab17cd", - "floor_area": 7802.4956663807679, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4272_b9ab17cd.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.658928248014647, - 45.438517564872008 - ], - [ - -73.65915835102345, - 45.438975352855387 - ], - [ - -73.659580093028126, - 45.438873431971601 - ], - [ - -73.659584939294504, - 45.438517564872008 - ], - [ - -73.658928248014647, - 45.438517564872008 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 3780.1784671506011, - "name": "Building_4280", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2024, - "id": "Building_4280_4e2797bb", - "floor_area": 15120.713868602405, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4280_4e2797bb.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.659225184717570, - 45.439526381708070 - ], - [ - -73.659044824693240, - 45.439167556970162 - ], - [ - -73.658395294779140, - 45.439324538954494 - ], - [ - -73.658425387602605, - 45.439395860456813 - ], - [ - -73.658301422212446, - 45.439418917266615 - ], - [ - -73.658276425198551, - 45.439353268012589 - ], - [ - -73.657818353547924, - 45.439463977304221 - ], - [ - -73.657964534732912, - 45.439760854950002 - ], - [ - -73.658400003942575, - 45.439679860321355 - ], - [ - -73.658383573654220, - 45.439636369812234 - ], - [ - -73.658507539044379, - 45.439613313002447 - ], - [ - -73.658523969332734, - 45.439656803511561 - ], - [ - -73.659225184717570, - 45.439526381708070 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1409.4494032830407, - "name": "Building_4273", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2024, - "id": "Building_4273_0051d862", - "floor_area": 5637.7976131321630, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4273_0051d862.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.660323205734500, - 45.438517564872008 - ], - [ - -73.659865823007820, - 45.438517564872008 - ], - [ - -73.659861610867011, - 45.438873431971601 - ], - [ - -73.660318359468121, - 45.438873431971601 - ], - [ - -73.660323205734500, - 45.438517564872008 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2316.9198841373000, - "name": "Building_4274", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2024, - "id": "Building_4274_68f65166", - "floor_area": 9267.6795365491998, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4274_68f65166.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.660333195518092, - 45.437750161296613 - ], - [ - -73.659874906207477, - 45.437750161296613 - ], - [ - -73.659871791633293, - 45.437997667870988 - ], - [ - -73.659935912521718, - 45.437998065117000 - ], - [ - -73.659934600888121, - 45.438102297002267 - ], - [ - -73.659870479999697, - 45.438101899756255 - ], - [ - -73.659867192311623, - 45.438363163210767 - ], - [ - -73.660324847540508, - 45.438363163210767 - ], - [ - -73.660328366845164, - 45.438104736487425 - ], - [ - -73.660264245939857, - 45.438104339241306 - ], - [ - -73.660265665380550, - 45.438000108023935 - ], - [ - -73.660329861848595, - 45.438000505738181 - ], - [ - -73.660333195518092, - 45.437750161296613 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 3869.9769102977589, - "name": "Building_4294", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2024, - "id": "Building_4294_f49abe6e", - "floor_area": 15479.907641191036, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4294_f49abe6e.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.659099867308242, - 45.436497290150619 - ], - [ - -73.657623823842869, - 45.436896189137364 - ], - [ - -73.657768709794141, - 45.437162440210500 - ], - [ - -73.659237963312464, - 45.436760644404956 - ], - [ - -73.659099867308242, - 45.436497290150619 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 419.94905944759375, - "name": "Building_4309", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4309_84391136", - "floor_area": 3359.5924755807500, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4309_84391136.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.662489116955584, - 45.435578272901090 - ], - [ - -73.662163573349190, - 45.435722137153917 - ], - [ - -73.662259258786690, - 45.435828735435514 - ], - [ - -73.662584739310887, - 45.435684898687320 - ], - [ - -73.662489116955584, - 45.435578272901090 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1446.9291448181029, - "name": "Building_4319", - "number_of_stories_above_ground": 12, - "floor_height": 4.0, - "maximum_roof_height": 48.0, - "year_built": 2019, - "id": "Building_4319_75381e00", - "floor_area": 17363.149737817235, - "number_of_stories": 12, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4319_75381e00.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.662488604119517, - 45.434513844534308 - ], - [ - -73.662302634656228, - 45.434675957805823 - ], - [ - -73.662475828528017, - 45.434869614611948 - ], - [ - -73.662497106908688, - 45.434860292763474 - ], - [ - -73.662565583623959, - 45.434936378266912 - ], - [ - -73.662543749600999, - 45.434945943536782 - ], - [ - -73.662732229093137, - 45.435156966683813 - ], - [ - -73.662971499130649, - 45.435051813388334 - ], - [ - -73.662488604119517, - 45.434513844534308 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1223.6529921593028, - "name": "Building_4320", - "number_of_stories_above_ground": 12, - "floor_height": 4.0, - "maximum_roof_height": 48.0, - "year_built": 2019, - "id": "Building_4320_1a0990e5", - "floor_area": 14683.835905911634, - "number_of_stories": 12, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4320_1a0990e5.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.662129398417221, - 45.434841481500563 - ], - [ - -73.661958393755711, - 45.435017350185454 - ], - [ - -73.662310391087672, - 45.435412660971501 - ], - [ - -73.662549787447176, - 45.435308168228275 - ], - [ - -73.662360148737051, - 45.435097745390955 - ], - [ - -73.662338706154742, - 45.435107111986788 - ], - [ - -73.662297724187383, - 45.435061415490004 - ], - [ - -73.662319101948526, - 45.435051976616023 - ], - [ - -73.662129398417221, - 45.434841481500563 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1397.4012166448811, - "name": "Building_4321", - "number_of_stories_above_ground": 12, - "floor_height": 4.0, - "maximum_roof_height": 48.0, - "year_built": 2019, - "id": "Building_4321_3e612fcd", - "floor_area": 16768.814599738573, - "number_of_stories": 12, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4321_3e612fcd.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.661573220703573, - 45.434997408805835 - ], - [ - -73.661936455410796, - 45.434624778754291 - ], - [ - -73.661784082994416, - 45.434455025818821 - ], - [ - -73.661310625732881, - 45.434704977534821 - ], - [ - -73.661573220703573, - 45.434997408805835 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1214.1505666597805, - "name": "Building_4322", - "number_of_stories_above_ground": 12, - "floor_height": 4.0, - "maximum_roof_height": 48.0, - "year_built": 2019, - "id": "Building_4322_596d74f0", - "floor_area": 14569.806799917365, - "number_of_stories": 12, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4322_596d74f0.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.661876459228068, - 45.435129022058192 - ], - [ - -73.661715953938710, - 45.435308478412132 - ], - [ - -73.661702284146244, - 45.435293250282513 - ], - [ - -73.661490485872861, - 45.435530055848659 - ], - [ - -73.661647903950424, - 45.435705427326269 - ], - [ - -73.661951744005947, - 45.435571148216034 - ], - [ - -73.661838800792495, - 45.435445329634810 - ], - [ - -73.661998782837856, - 45.435266458304945 - ], - [ - -73.661876459228068, - 45.435129022058192 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1681.5303410916240, - "name": "Building_4323", - "number_of_stories_above_ground": 12, - "floor_height": 4.0, - "maximum_roof_height": 48.0, - "year_built": 2019, - "id": "Building_4323_9c821990", - "floor_area": 20178.364093099488, - "number_of_stories": 12, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4323_9c821990.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.663683405661445, - 45.434256117471335 - ], - [ - -73.663918838454933, - 45.434441016814112 - ], - [ - -73.664129522980119, - 45.434308846081976 - ], - [ - -73.663469896145472, - 45.433791492950625 - ], - [ - -73.663258494419608, - 45.433922804092234 - ], - [ - -73.663596736509646, - 45.434188051043662 - ], - [ - -73.663614245592825, - 45.434177075069769 - ], - [ - -73.663700365076096, - 45.434245628549718 - ], - [ - -73.663683405661445, - 45.434256117471335 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1655.9535343910102, - "name": "Building_4324", - "number_of_stories_above_ground": 12, - "floor_height": 4.0, - "maximum_roof_height": 48.0, - "year_built": 2019, - "id": "Building_4324_003788cd", - "floor_area": 19871.442412692122, - "number_of_stories": 12, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4324_003788cd.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.663069190498675, - 45.434057939870868 - ], - [ - -73.662874989716173, - 45.434202697610345 - ], - [ - -73.663517986048504, - 45.434707045237708 - ], - [ - -73.663728080429735, - 45.434574807546603 - ], - [ - -73.663481287270827, - 45.434381121073578 - ], - [ - -73.663462153585186, - 45.434393123817259 - ], - [ - -73.663376671789322, - 45.434326042827237 - ], - [ - -73.663395809888470, - 45.434314037314913 - ], - [ - -73.663069190498675, - 45.434057939870868 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1072.5428258612228, - "name": "Building_4325", - "number_of_stories_above_ground": 7, - "floor_height": 4.0, - "maximum_roof_height": 28.0, - "year_built": 2019, - "id": "Building_4325_e6a53929", - "floor_area": 7507.7997810285597, - "number_of_stories": 7, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4325_e6a53929.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.661293356779524, - 45.435310316779947 - ], - [ - -73.661459762398209, - 45.435124263437231 - ], - [ - -73.661156378700056, - 45.434786408983193 - ], - [ - -73.660930149718610, - 45.434905841774111 - ], - [ - -73.661293356779524, - 45.435310316779947 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1208.7311602921982, - "name": "Building_4326", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4326_62c4fa1f", - "floor_area": 7252.3869617531891, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4326_62c4fa1f.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.663941410461874, - 45.434161307208107 - ], - [ - -73.664103858477674, - 45.434288717109034 - ], - [ - -73.664199512102599, - 45.434228748741589 - ], - [ - -73.664225193805237, - 45.434248864197762 - ], - [ - -73.664614707023318, - 45.434004493799250 - ], - [ - -73.664401014471167, - 45.433836783739530 - ], - [ - -73.664011594172038, - 45.434081069798189 - ], - [ - -73.664037218804140, - 45.434101206582774 - ], - [ - -73.663941410461874, - 45.434161307208107 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1578.6340260027937, - "name": "Building_4327", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4327_6390759c", - "floor_area": 12629.072208022350, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4327_6390759c.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.665205393723028, - 45.434765211295101 - ], - [ - -73.665415034935762, - 45.434632570376927 - ], - [ - -73.665206512200740, - 45.434468926851771 - ], - [ - -73.665187551972892, - 45.434480821352295 - ], - [ - -73.665102072319684, - 45.434413739018183 - ], - [ - -73.665121032547518, - 45.434401844517666 - ], - [ - -73.664794198912361, - 45.434145353501563 - ], - [ - -73.664584284056531, - 45.434277478195703 - ], - [ - -73.665205393723028, - 45.434765211295101 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1515.2713105212897, - "name": "Building_4328", - "number_of_stories_above_ground": 3, - "floor_height": 4.0, - "maximum_roof_height": 12.0, - "year_built": 2019, - "id": "Building_4328_481401ba", - "floor_area": 4545.8139315638691, - "number_of_stories": 3, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4328_481401ba.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.664538338523684, - 45.435205288561086 - ], - [ - -73.664389892880905, - 45.435092393283966 - ], - [ - -73.664030301746749, - 45.435325175678784 - ], - [ - -73.664039034775300, - 45.435331937614507 - ], - [ - -73.663864029802141, - 45.435449193111367 - ], - [ - -73.663856547477181, - 45.435443695194138 - ], - [ - -73.663513928929291, - 45.435663474574156 - ], - [ - -73.663652627817115, - 45.435768451164542 - ], - [ - -73.664538338523684, - 45.435205288561086 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1457.5804860508651, - "name": "Building_4330", - "number_of_stories_above_ground": 10, - "floor_height": 4.0, - "maximum_roof_height": 40.0, - "year_built": 2024, - "id": "Building_4330_cb3e9ec9", - "floor_area": 14575.804860508651, - "number_of_stories": 10, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4330_cb3e9ec9.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.660985327133716, - 45.435694083006091 - ], - [ - -73.661134257192487, - 45.435488201458490 - ], - [ - -73.660979502407059, - 45.435316038309971 - ], - [ - -73.660957779938101, - 45.435325644096189 - ], - [ - -73.660889393776529, - 45.435249519893929 - ], - [ - -73.660911124112943, - 45.435239910628688 - ], - [ - -73.660714009569148, - 45.435020456877190 - ], - [ - -73.660487530782049, - 45.435139616606072 - ], - [ - -73.660985327133716, - 45.435694083006091 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 707.37506123323692, - "name": "Building_4310", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4310_0c882ffb", - "floor_area": 5659.0004898658954, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4310_0c882ffb.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.663225658834222, - 45.435335182434237 - ], - [ - -73.663719807695102, - 45.435025189237336 - ], - [ - -73.663600135700065, - 45.434931274271058 - ], - [ - -73.663128620581645, - 45.435226854432621 - ], - [ - -73.663225658834222, - 45.435335182434237 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 613.43448029295541, - "name": "Building_4311", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4311_062aa469", - "floor_area": 4907.4758423436433, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4311_062aa469.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.662955271989333, - 45.435033735552736 - ], - [ - -73.663385516239956, - 45.434763859482537 - ], - [ - -73.663265858117498, - 45.434669935814171 - ], - [ - -73.662858229794082, - 45.434925625762062 - ], - [ - -73.662955271989333, - 45.435033735552736 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1247.3044550439517, - "name": "Building_4312", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4312_d630fe07", - "floor_area": 9978.4356403516140, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4312_d630fe07.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.663114758132934, - 45.435211410981189 - ], - [ - -73.662901383674750, - 45.435345169697207 - ], - [ - -73.663103750470711, - 45.435570616286640 - ], - [ - -73.663125453889222, - 45.435561025111916 - ], - [ - -73.663166461929990, - 45.435606710091463 - ], - [ - -73.663144758511493, - 45.435616301266180 - ], - [ - -73.663279926408421, - 45.435766884968508 - ], - [ - -73.663518664011647, - 45.435661382046767 - ], - [ - -73.663114758132934, - 45.435211410981189 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1452.6174090693676, - "name": "Building_4313", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4313_839fe14c", - "floor_area": 11620.939272554984, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4313_839fe14c.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.662466008140555, - 45.435552504914483 - ], - [ - -73.662969461605385, - 45.436113891646123 - ], - [ - -73.663186878373608, - 45.436017808326859 - ], - [ - -73.662985259415919, - 45.435793194866079 - ], - [ - -73.662952704408667, - 45.435807581762305 - ], - [ - -73.662911696367885, - 45.435761896782772 - ], - [ - -73.662944251183916, - 45.435747509971044 - ], - [ - -73.662686558172155, - 45.435460427025021 - ], - [ - -73.662466008140555, - 45.435552504914483 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1839.8059343703935, - "name": "Building_4314", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4314_618a2038", - "floor_area": 14718.447474963148, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4314_618a2038.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.662807894000906, - 45.436177389821644 - ], - [ - -73.662668920110292, - 45.436022378886463 - ], - [ - -73.662321731014231, - 45.436118396889356 - ], - [ - -73.662008475499292, - 45.435769408919782 - ], - [ - -73.661792516876872, - 45.435864845366943 - ], - [ - -73.662037886514113, - 45.436139870596769 - ], - [ - -73.662070439987900, - 45.436125484793109 - ], - [ - -73.662115320352171, - 45.436175481457305 - ], - [ - -73.662078893844864, - 45.436185555507791 - ], - [ - -73.662215929559196, - 45.436338213105429 - ], - [ - -73.662807894000906, - 45.436177389821644 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1035.7501207707683, - "name": "Building_4315", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4315_3a3385d0", - "floor_area": 8286.0009661661461, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4315_3a3385d0.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.664096807606740, - 45.435159690116308 - ], - [ - -73.664301836995293, - 45.435026963729186 - ], - [ - -73.663898642966345, - 45.434709222277235 - ], - [ - -73.663689329467061, - 45.434840968465309 - ], - [ - -73.664096807606740, - 45.435159690116308 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1736.1955116029858, - "name": "Building_4316", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4316_8d038f49", - "floor_area": 13889.564092823886, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4316_8d038f49.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.661341039735248, - 45.435718621277509 - ], - [ - -73.661192959797503, - 45.435924984221302 - ], - [ - -73.661674362579916, - 45.436460948523845 - ], - [ - -73.661951404773816, - 45.436398087439194 - ], - [ - -73.661717753725938, - 45.436137955738417 - ], - [ - -73.661696053777717, - 45.436147551501143 - ], - [ - -73.661627675615591, - 45.43607142376149 - ], - [ - -73.661649375098989, - 45.436061828204323 - ], - [ - -73.661341039735248, - 45.435718621277509 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1529.3005972411338, - "name": "Building_4317", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4317_057d2224", - "floor_area": 12234.404777929070, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4317_057d2224.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.665111955588372, - 45.434826684007810 - ], - [ - -73.665084227650198, - 45.434805142554076 - ], - [ - -73.665179637805437, - 45.434744986181578 - ], - [ - -73.665060556757936, - 45.434651476498011 - ], - [ - -73.664965309682103, - 45.434711528720037 - ], - [ - -73.664939632996024, - 45.434691423310078 - ], - [ - -73.664743908293886, - 45.434814133255273 - ], - [ - -73.664514813877190, - 45.434634234377015 - ], - [ - -73.664323756780817, - 45.434755015702251 - ], - [ - -73.664554520893006, - 45.434934728797323 - ], - [ - -73.664534870939576, - 45.434947096879014 - ], - [ - -73.664706821953246, - 45.435080683256125 - ], - [ - -73.665111955588372, - 45.434826684007810 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 643.70973459072411, - "name": "Building_4318", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4318_ba714f2b", - "floor_area": 5149.6778767257929, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4318_ba714f2b.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.662915069405628, - 45.434234134953400 - ], - [ - -73.662845721495657, - 45.434284383489434 - ], - [ - -73.662818082423968, - 45.434265604099167 - ], - [ - -73.662576345335324, - 45.434440763448791 - ], - [ - -73.662760605813205, - 45.434565959383875 - ], - [ - -73.663002342901834, - 45.434390800034244 - ], - [ - -73.662974703830159, - 45.434372020643977 - ], - [ - -73.663035083401354, - 45.434328270442130 - ], - [ - -73.662915069405628, - 45.434234134953400 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1283.7100725430791, - "name": "Building_4336", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4336_fc4170d7", - "floor_area": 10269.680580344633, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4336_fc4170d7.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.669643105028399, - 45.433505796861979 - ], - [ - -73.669645646963005, - 45.432680245710728 - ], - [ - -73.669466102524936, - 45.432679769326512 - ], - [ - -73.669463563347477, - 45.433504425027323 - ], - [ - -73.669643105028399, - 45.433505796861979 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1132.6431330316409, - "name": "Building_4341", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4341_56e2f675", - "floor_area": 9061.1450642531418, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4341_56e2f675.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.666540103106357, - 45.433143293522733 - ], - [ - -73.666380432886612, - 45.433025705851776 - ], - [ - -73.666340629104411, - 45.433035527938578 - ], - [ - -73.666285307906463, - 45.432994787149035 - ], - [ - -73.666325111688650, - 45.432984965062232 - ], - [ - -73.666110031365903, - 45.432826571128416 - ], - [ - -73.665918688333576, - 45.432889868563471 - ], - [ - -73.666102368835126, - 45.433251100586077 - ], - [ - -73.666540103106357, - 45.433143293522733 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1762.1328271207167, - "name": "Building_4342", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4342_80a6eb4c", - "floor_area": 14097.062616965733, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4342_80a6eb4c.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.666349618032129, - 45.434087238986173 - ], - [ - -73.667155611545468, - 45.433560460344275 - ], - [ - -73.666976064845329, - 45.433425212645069 - ], - [ - -73.666170695982416, - 45.433952071662219 - ], - [ - -73.666345047882899, - 45.434083754601104 - ], - [ - -73.666349618032129, - 45.434087238986173 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 792.32257809497241, - "name": "Building_4343", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4343_7009aa28", - "floor_area": 6338.5806247597793, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4343_7009aa28.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.666353809147935, - 45.433332225857015 - ], - [ - -73.666644857817985, - 45.433546565984415 - ], - [ - -73.666718898591284, - 45.433497068725138 - ], - [ - -73.666788129842089, - 45.433548156017274 - ], - [ - -73.666919461281907, - 45.433462241579797 - ], - [ - -73.666848907314844, - 45.433410156133434 - ], - [ - -73.666876984083899, - 45.433391386433229 - ], - [ - -73.666685668803098, - 45.433250494046895 - ], - [ - -73.666353809147935, - 45.433332225857015 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 748.01168513890298, - "name": "Building_4344", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4344_76da0f01", - "floor_area": 5984.0934811112238, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4344_76da0f01.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.667821172230958, - 45.433063831598922 - ], - [ - -73.667991179082762, - 45.432928656197411 - ], - [ - -73.667684500909431, - 45.432683801615752 - ], - [ - -73.667491995195320, - 45.432803836154513 - ], - [ - -73.667821172230958, - 45.433063831598922 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1939.1643211467454, - "name": "Building_4345", - "number_of_stories_above_ground": 12, - "floor_height": 4.0, - "maximum_roof_height": 48.0, - "year_built": 2019, - "id": "Building_4345_ff798b41", - "floor_area": 23269.971853760944, - "number_of_stories": 12, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4345_ff798b41.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668246850575699, - 45.432017283402608 - ], - [ - -73.668090472318596, - 45.432114009502151 - ], - [ - -73.668056529327899, - 45.432086989086102 - ], - [ - -73.667615347108310, - 45.432354337734616 - ], - [ - -73.667783166997495, - 45.432490680315269 - ], - [ - -73.667802883244235, - 45.432478433575298 - ], - [ - -73.667878625193481, - 45.432539581007411 - ], - [ - -73.667859321829965, - 45.432551538270793 - ], - [ - -73.668159482378016, - 45.432789195315600 - ], - [ - -73.668318358140468, - 45.432616449194427 - ], - [ - -73.668071355180231, - 45.432420638343956 - ], - [ - -73.668051742889418, - 45.432432015995069 - ], - [ - -73.667974613520173, - 45.432371592620107 - ], - [ - -73.668221853430936, - 45.432218756371263 - ], - [ - -73.668196339270168, - 45.432198436471211 - ], - [ - -73.668300145141828, - 45.432134352531861 - ], - [ - -73.668246850575699, - 45.432017283402608 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 742.22624156568054, - "name": "Building_4346", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4346_5344152b", - "floor_area": 4453.3574493940832, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4346_5344152b.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.669032221760432, - 45.432955328701063 - ], - [ - -73.669211218305335, - 45.432954530778375 - ], - [ - -73.669209988666850, - 45.432476930357637 - ], - [ - -73.669030443966776, - 45.432477343729829 - ], - [ - -73.669032221760432, - 45.432955328701063 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 548.30501355335582, - "name": "Building_4347", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4347_571cd4cc", - "floor_area": 3289.8300813201349, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4347_571cd4cc.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.665646766236094, - 45.433534969610406 - ], - [ - -73.665774851365512, - 45.433636938587767 - ], - [ - -73.666214467878575, - 45.433528667970798 - ], - [ - -73.666155003384361, - 45.433409798812740 - ], - [ - -73.665646766236094, - 45.433534969610406 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 636.61939972432447, - "name": "Building_4348", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4348_f34e2622", - "floor_area": 3819.7163983459468, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4348_f34e2622.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668609690712174, - 45.432874298356396 - ], - [ - -73.668863333279546, - 45.432474167838045 - ], - [ - -73.668699279503855, - 45.432422970871855 - ], - [ - -73.668478932043286, - 45.432770581230336 - ], - [ - -73.668609690712174, - 45.432874298356396 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 755.00373390575987, - "name": "Building_4349", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2019, - "id": "Building_4349_216c9b82", - "floor_area": 4530.0224034345592, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4349_216c9b82.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668459084042510, - 45.432754910899895 - ], - [ - -73.668305725487230, - 45.432904875313675 - ], - [ - -73.668607936481862, - 45.433144441078305 - ], - [ - -73.668798633445604, - 45.433024075205068 - ], - [ - -73.668459084042510, - 45.432754910899895 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2278.0279637844942, - "name": "Building_4350", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2019, - "id": "Building_4350_4722083f", - "floor_area": 18224.223710275997, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4350_4722083f.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.665286677587204, - 45.433595043572836 - ], - [ - -73.665642613055056, - 45.433876801214751 - ], - [ - -73.665661841558290, - 45.433864842522240 - ], - [ - -73.665746907894828, - 45.433932183022605 - ], - [ - -73.665727680946119, - 45.433944140748324 - ], - [ - -73.666103252615557, - 45.434241441713461 - ], - [ - -73.666345047882899, - 45.434083754601104 - ], - [ - -73.666170694143062, - 45.433952070273008 - ], - [ - -73.665619319424067, - 45.433513119121976 - ], - [ - -73.665286677587204, - 45.433595043572836 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 397.34580822650605, - "name": "Building_4351", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2019, - "id": "Building_4351_144fdc37", - "floor_area": 1589.3832329060242, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4351_144fdc37.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668318490584014, - 45.432616305188134 - ], - [ - -73.668491417667639, - 45.432356262926348 - ], - [ - -73.668328286265634, - 45.432303616079643 - ], - [ - -73.668193091731339, - 45.432516895626534 - ], - [ - -73.668318490584014, - 45.432616305188134 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2076.7223687399237, - "name": "Building_4352", - "number_of_stories_above_ground": 1, - "floor_height": 4.0, - "maximum_roof_height": 4.0, - "year_built": 2019, - "id": "Building_4352_c9381cd0", - "floor_area": 2076.7223687399237, - "number_of_stories": 1, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4352_c9381cd0.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.664842244907888, - 45.433350363187301 - ], - [ - -73.664923643136490, - 45.433513056205804 - ], - [ - -73.664987189413765, - 45.433497407801099 - ], - [ - -73.665012533868918, - 45.433548073357443 - ], - [ - -73.665511141615596, - 45.433425320756221 - ], - [ - -73.665485056221527, - 45.433373156407285 - ], - [ - -73.666083627028783, - 45.433225735874181 - ], - [ - -73.666004274430676, - 45.433064135744495 - ], - [ - -73.664842244907888, - 45.433350363187301 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 1535.5010229039326, - "name": "Building_4337", - "number_of_stories_above_ground": 8, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 31.999999999999996, - "year_built": 2024, - "id": "Building_4337_f1fa4381", - "floor_area": 12284.008183231461, - "number_of_stories": 8, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4337_f1fa4381.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.666927443229511, - 45.433155856086323 - ], - [ - -73.667100230481253, - 45.433279585831180 - ], - [ - -73.667295307765471, - 45.433425582883579 - ], - [ - -73.667746466826628, - 45.433125135132414 - ], - [ - -73.667526529847919, - 45.432961446070010 - ], - [ - -73.667262484856010, - 45.433137285880967 - ], - [ - -73.667119030545678, - 45.433036394053907 - ], - [ - -73.666927443229511, - 45.433155856086323 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 921.42347561132192, - "name": "Building_4338", - "number_of_stories_above_ground": 6, - "floor_height": 4.0, - "maximum_roof_height": 24.0, - "year_built": 2024, - "id": "Building_4338_19f0d11d", - "floor_area": 5528.5408536679315, - "number_of_stories": 6, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4338_19f0d11d.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668757211362887, - 45.432328156986642 - ], - [ - -73.668923046668752, - 45.432381676455101 - ], - [ - -73.669210027006216, - 45.432381676455229 - ], - [ - -73.669210567598327, - 45.432094343033029 - ], - [ - -73.668922695116336, - 45.432094642239576 - ], - [ - -73.668757211362887, - 45.432328156986642 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2485.3035762150394, - "name": "Building_4339", - "number_of_stories_above_ground": 11, - "floor_height": 4.0, - "maximum_roof_height": 44.0, - "year_built": 2024, - "id": "Building_4339_bc12f7d0", - "floor_area": 27338.339338365433, - "number_of_stories": 11, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4339_bc12f7d0.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.666769681650564, - 45.432777478575069 - ], - [ - -73.666911117563288, - 45.432730690717740 - ], - [ - -73.666938462735970, - 45.432771387051112 - ], - [ - -73.667307016948072, - 45.432649467083486 - ], - [ - -73.667387290763941, - 45.432713048033570 - ], - [ - -73.667574515841153, - 45.432596718324803 - ], - [ - -73.667321287834227, - 45.432396034776403 - ], - [ - -73.666801736872500, - 45.432567905384182 - ], - [ - -73.666839442542397, - 45.432625071315073 - ], - [ - -73.666648593305268, - 45.432688205399820 - ], - [ - -73.666611335352883, - 45.432660736730504 - ], - [ - -73.666366438119439, - 45.432741750219947 - ], - [ - -73.666809596359840, - 45.433072867302180 - ], - [ - -73.667004028091540, - 45.432951836955226 - ], - [ - -73.666769681650564, - 45.432777478575069 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 808.08099367887189, - "name": "Building_4340", - "number_of_stories_above_ground": 15, - "floor_height": 4.0, - "maximum_roof_height": 60.0, - "year_built": 2024, - "id": "Building_4340_df92e67d", - "floor_area": 12121.214905183078, - "number_of_stories": 15, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4340_df92e67d.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.668603060706502, - 45.431921504636122 - ], - [ - -73.668240264447761, - 45.432002816031570 - ], - [ - -73.668316912372873, - 45.432171184150548 - ], - [ - -73.668569350577954, - 45.432252652680340 - ], - [ - -73.668684140915204, - 45.432099608899300 - ], - [ - -73.668603060706502, - 45.431921504636122 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2886.8249866039550, - "name": "Building_4295", - "number_of_stories_above_ground": 4, - "floor_height": 4.0, - "maximum_roof_height": 16.0, - "year_built": 2024, - "id": "Building_4295_0d830977", - "floor_area": 11547.299946415820, - "number_of_stories": 4, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4295_0d830977.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.659237963312464, - 45.436760644404956 - ], - [ - -73.660335770182314, - 45.436469060684374 - ], - [ - -73.660191584762217, - 45.436202409279829 - ], - [ - -73.659098482217132, - 45.436494648729983 - ], - [ - -73.659237963312464, - 45.436760644404956 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 2949.3970399832760, - "name": "Building_4296", - "number_of_stories_above_ground": 3, - "floor_height": 4.0, - "maximum_roof_height": 12.0, - "year_built": 2024, - "id": "Building_4296_d76a7a54", - "floor_area": 8848.1911199498281, - "number_of_stories": 3, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4296_d76a7a54.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.657975335430081, - 45.436503782214956 - ], - [ - -73.658996526030421, - 45.436055917490151 - ], - [ - -73.658787291415990, - 45.435814028605705 - ], - [ - -73.657772795297333, - 45.436257079128900 - ], - [ - -73.657975335430081, - 45.436503782214956 - ] - ] - ] - } - }, - { - "properties": { - "building_type": "Mixed use", - "footprint_area": 722.23380417484441, - "name": "Building_4297", - "number_of_stories_above_ground": 2, - "floor_height": 3.9999999999999996, - "maximum_roof_height": 7.9999999999999991, - "year_built": 2024, - "id": "Building_4297_39dcb896", - "floor_area": 1444.4676083497179, - "number_of_stories": 2, - "detailed_model_filename": "C:\\Users\\umroot\\Downloads\\hb_json\\Building_4297_39dcb896.json", - "type": "Building" - }, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.659232897330384, - 45.436097238784896 - ], - [ - -73.659311641182811, - 45.436184713130324 - ], - [ - -73.659384972742828, - 45.436153452371038 - ], - [ - -73.659441260198832, - 45.436212302554871 - ], - [ - -73.659700211399951, - 45.436104285167296 - ], - [ - -73.659523606921780, - 45.435906678974554 - ], - [ - -73.659199489377713, - 45.436048826666365 - ], - [ - -73.659236758102793, - 45.436095728434928 - ], - [ - -73.659232897330384, - 45.436097238784896 - ] - ] - ] - } - } - ], - "mappers": [] -} \ No newline at end of file diff --git a/input_files/building_usage.xlsx b/input_files/building_usage.xlsx new file mode 100644 index 00000000..ade18843 Binary files /dev/null and b/input_files/building_usage.xlsx differ