Costing initiated #5

Merged
s_ranjbar merged 1 commits from hp_cop into main 2024-05-10 16:17:41 -04:00
38 changed files with 201 additions and 53850 deletions

View File

@ -289,6 +289,18 @@ class NonPvGenerationSystem(GenerationSystem):
self.distribution_systems] if self.distribution_systems is not None else None
_energy_storage_systems = [_energy_storage_system.to_dictionary() for _energy_storage_system in
self.energy_storage_systems] if self.energy_storage_systems is not None else None
_heat_output_curve = self.heat_output_curve.to_dictionary() if (
self.heat_output_curve is not None) else None
_heat_fuel_consumption_curve = self.heat_fuel_consumption_curve.to_dictionary() if (
self.heat_fuel_consumption_curve is not None) else None
_heat_efficiency_curve = self.heat_efficiency_curve.to_dictionary() if (
self.heat_efficiency_curve is not None) else None
_cooling_output_curve = self.cooling_output_curve.to_dictionary() if (
self.cooling_output_curve is not None) else None
_cooling_fuel_consumption_curve = self.cooling_fuel_consumption_curve.to_dictionary() if (
self.cooling_fuel_consumption_curve is not None) else None
_cooling_efficiency_curve = self.cooling_efficiency_curve.to_dictionary() if (
self.cooling_efficiency_curve is not None) else None
content = {
'Energy Generation component':
@ -318,7 +330,7 @@ class NonPvGenerationSystem(GenerationSystem):
'minimum cooling supply temperature [Celsius]': self.minimum_cooling_supply_temperature,
'heat output curve': self.heat_output_curve,
'heat fuel consumption curve': self.heat_fuel_consumption_curve,
'heat efficiency curve': self.heat_efficiency_curve,
'heat efficiency curve': _heat_efficiency_curve,
'cooling output curve': self.cooling_output_curve,
'cooling fuel consumption curve': self.cooling_fuel_consumption_curve,
'cooling efficiency curve': self.cooling_efficiency_curve,

View File

@ -24,13 +24,13 @@ class PerformanceCurves:
def curve_type(self):
"""
The type of the fit function from the following
Linear =>>> y = a*x + b
Linear =>>> y = a + b*x
Exponential =>>> y = a*(b**x)
Polynomial =>>> y = a*(x**2) + b*x + c
Second degree polynomial =>>> y = a + b*x + c*(x**2)
Power =>>> y = a*(x**b)
Second degree multivariable =>>> y = a*(x**2) + b*x + c*x*z + d*z + e*(z**2) + f
Bi-Quadratic =>>> y = a + b*x + c*(x**2) + d*z + e*(z**2) + f*x*z
Get the type of function from ['linear', 'exponential', 'polynomial', 'power', 'second degree multivariable']
Get the type of function from ['linear', 'exponential', 'second degree polynomial', 'power', 'bi-quadratic']
:return: string
"""
return self._curve_type

View File

@ -132,7 +132,7 @@
</fuel>
<fuel fuel_type="Gas">
<fixed_monthly cost_unit="currency/month"> 17.71 </fixed_monthly>
<variable cost_unit="currency/kWh"> 0.0640 </variable>
<variable cost_unit="currency/m3"> 0.4 </variable>
<density density_unit="kg/m3"> 0.777 </density>
<lower_heating_value lhv_unit="MJ/kg"> 47.1 </lower_heating_value>
</fuel>

View File

@ -493,7 +493,7 @@
<heat_output_curve/>
<heat_fuel_consumption_curve/>
<heat_efficiency_curve>
<curve_type>second degree multivariable function</curve_type>
<curve_type>bi-quadratic</curve_type>
<dependant_variable>COP</dependant_variable>
<parameters>source_temperature</parameters>
<parameters>supply_temperature</parameters>
@ -538,7 +538,7 @@
<heat_output_curve/>
<heat_fuel_consumption_curve/>
<heat_efficiency_curve>
<curve_type>second degree multivariable function</curve_type>
<curve_type>bi-quadratic</curve_type>
<dependant_variable>COP</dependant_variable>
<parameters>source_temperature</parameters>
<parameters>supply_temperature</parameters>
@ -583,7 +583,7 @@
<heat_output_curve/>
<heat_fuel_consumption_curve/>
<heat_efficiency_curve>
<curve_type>second degree multivariable function</curve_type>
<curve_type>bi-quadratic</curve_type>
<dependant_variable>COP</dependant_variable>
<parameters>source_temperature</parameters>
<parameters>supply_temperature</parameters>
@ -690,7 +690,7 @@
<nominal_heat_output/>
<minimum_heat_output/>
<maximum_heat_output/>
<heat_efficiency>3</heat_efficiency>
<heat_efficiency>2</heat_efficiency>
<reversible>True</reversible>
<fuel_type>electricity</fuel_type>
<source_medium>Air</source_medium>
@ -709,10 +709,22 @@
<minimum_cooling_supply_temperature/>
<heat_output_curve/>
<heat_fuel_consumption_curve/>
<heat_efficiency_curve/>
<heat_efficiency_curve>
<curve_type>bi-quadratic</curve_type>
<dependant_variable>COP</dependant_variable>
<parameters>source_temperature</parameters>
<parameters>supply_temperature</parameters>
<coefficients a="0.132733" b="0.012322" c="0.000032" d="-0.011109" e="-0.000125" f="-0.000123"/>
</heat_efficiency_curve>
<cooling_output_curve/>
<cooling_fuel_consumption_curve/>
<cooling_efficiency_curve/>
<cooling_efficiency_curve>
<curve_type>bi-quadratic</curve_type>
<dependant_variable>COP</dependant_variable>
<parameters>source_temperature</parameters>
<parameters>supply_temperature</parameters>
<coefficients a="0.951894" b="-0.010518" c="0.000126" d="-0.003399" e="0.000183" f="-0.000206"/>
</cooling_efficiency_curve>
<distribution_systems/>
<energy_storage_systems>
<storage_id>6</storage_id>
@ -910,7 +922,13 @@
<minimum_cooling_supply_temperature/>
<heat_output_curve/>
<heat_fuel_consumption_curve/>
<heat_efficiency_curve/>
<heat_efficiency_curve>
<curve_type>bi-quadratic</curve_type>
<dependant_variable>COP</dependant_variable>
<parameters>source_temperature</parameters>
<parameters>supply_temperature</parameters>
<coefficients a="-0.000277" b="0.019639" c="0.000004" d="0.012190" e="-0.00010" f="-0.000277"/>
</heat_efficiency_curve>
<cooling_output_curve/>
<cooling_fuel_consumption_curve/>
<cooling_efficiency_curve/>

View File

@ -66,7 +66,7 @@ class SimplifiedRadiosityAlgorithm:
else:
i = (total_days + day - 1) * 24 + hour - 1
representative_building = self._city.buildings[0]
_global = representative_building.global_horizontal[cte.HOUR][i] * cte.WATTS_HOUR_TO_JULES
_global = representative_building.diffuse[cte.HOUR][i] * cte.WATTS_HOUR_TO_JULES
_beam = representative_building.beam[cte.HOUR][i] * cte.WATTS_HOUR_TO_JULES
content += f'{day} {month} {hour} {_global} {_beam}\n'
with open(file, 'w', encoding='utf-8') as file:

View File

@ -34,7 +34,7 @@ class SimplifiedRadiosityAlgorithm:
for key in self._results:
_irradiance = {}
header_name = key.split(':')
result = [x / cte.WATTS_HOUR_TO_JULES for x in self._results[key]]
result = [x for x in self._results[key]]
city_object_name = header_name[1]
building = self._city.city_object(city_object_name)
surface_id = header_name[2]

View File

@ -1,7 +0,0 @@
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "OBJECTID_12": 142, "gml_id": "1341088", "gml_parent": "fme-gen-57964590-baa9-48a7-99b0-fa11ca012d7c", "citygml_ta": "http://www.opengis.net/citygml/building/2.0", "citygml_fe": "cityObjectMember", "citygml__1": " ", "citygml__2": " ", "gml_descri": " ", "gml_name": " ", "citygml_cr": " ", "citygml_te": " ", "externalRe": " ", "external_1": " ", "external_2": " ", "citygml_ge": " ", "citygml_re": " ", "citygml__3": " ", "citygml_ap": " ", "citygml_cl": " ", "citygml__4": " ", "citygml_fu": " ", "citygml__5": " ", "citygml_us": " ", "citygml__6": " ", "citygml_ye": " ", "citygml__7": " ", "citygml_ro": " ", "citygml__8": " ", "citygml_me": 16.095, "citygml__9": "#m", "citygml_st": " ", "citygml_10": " ", "citygml_11": " ", "citygml_12": " ", "citygml_13": " ", "citygml_14": " ", "citygml_ou": " ", "citygml_in": " ", "citygml_bo": " ", "citygml_le": " ", "citygml_15": " ", "citygml_co": " ", "citygml_ad": " ", "Volume": "2218.190", "parcelle": " ", "OBJECTID": 7562, "gml_id_1": "66b4f621-39d0-4f51-a8e0-1fb7fbf114f8", "gml_pare_1": "1341088", "citygml_16": "http://www.opengis.net/citygml/building/2.0", "citygml_17": "boundedBy", "citygml_18": " ", "citygml_19": " ", "gml_desc_1": " ", "gml_name_1": " ", "citygml_20": " ", "citygml_21": " ", "external_3": " ", "external_4": " ", "external_5": " ", "citygml_22": " ", "citygml_23": " ", "citygml_24": " ", "citygml_25": " ", "citygml_26": " ", "citygml_op": " ", "Area": "161.344", "FID_": 0, "Join_Count": 2, "TARGET_FID": 7567, "gml_id_12": "1341088", "gml_pare_2": "fme-gen-57964590-baa9-48a7-99b0-fa11ca012d7c", "citygml_27": "http://www.opengis.net/citygml/building/2.0", "citygml_28": "cityObjectMember", "citygml_29": " ", "citygml_30": " ", "gml_desc_2": " ", "gml_name_2": " ", "citygml_31": " ", "citygml_32": " ", "external_6": " ", "external_7": " ", "external_8": " ", "citygml_33": " ", "citygml_34": " ", "citygml_35": " ", "citygml_36": " ", "citygml_37": " ", "citygml_38": " ", "citygml_39": " ", "citygml_40": " ", "citygml_41": " ", "citygml_42": " ", "citygml_43": " ", "citygml_44": " ", "citygml_45": " ", "citygml_46": " ", "citygml_47": 16.095, "citygml_48": "#m", "citygml_49": " ", "citygml_50": " ", "citygml_51": " ", "citygml_52": " ", "citygml_53": " ", "citygml_54": " ", "citygml_55": " ", "citygml_56": " ", "citygml_57": " ", "citygml_58": " ", "citygml_59": " ", "citygml_60": " ", "citygml_61": " ", "Volume_1": "2218.190", "Field": 0, "Field1": 0, "OBJECTID_1": 7562, "gml_id_12_": "66b4f621-39d0-4f51-a8e0-1fb7fbf114f8", "gml_pare_3": "1341088", "citygml_62": "http://www.opengis.net/citygml/building/2.0", "citygml_63": "boundedBy", "citygml_64": " ", "citygml_65": " ", "gml_desc_3": " ", "gml_name_3": " ", "citygml_66": " ", "citygml_67": " ", "external_9": " ", "externa_10": " ", "externa_11": " ", "citygml_68": " ", "citygml_69": " ", "citygml_70": " ", "citygml_71": " ", "citygml_72": " ", "citygml_73": " ", "Area_1": "161.344", "cityGML_hi": 0, "Z_Min": 38.4478, "Z_Max": 54.543, "Shape_Leng": 69.646646889099998, "ID_UEV": "01036772", "CIVIQUE_DE": " 1238", "CIVIQUE_FI": " 1238", "NOM_RUE": "rue Bishop (MTL)", "MUNICIPALI": "50", "ETAGE_HORS": 3, "NOMBRE_LOG": 1, "ANNEE_CONS": 1885, "CODE_UTILI": "5010", "LIBELLE_UT": "Immeuble commercial", "CATEGORIE_": "Régulier", "MATRICULE8": "9839-85-7864-5-000-0000", "SUPERFICIE": 281, "SUPERFIC_1": 412, "NO_ARROND_": "REM19", "Shape_Le_1": 0.00096806745949799995, "Shape_Ar_1": 3.2334086871599998e-08, "Z_Min_1": null, "Z_Max_1": null, "Shape_Length": 69.646646889118685, "Shape_Area": 160.22851198241219 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.575671624082659, 45.496112824080043 ], [ -73.575681777019426, 45.496117685511202 ], [ -73.575687462912001, 45.496111805760563 ], [ -73.575689793092337, 45.496112920023506 ], [ -73.575780754475915, 45.496018888973346 ], [ -73.575792190109638, 45.496007066430288 ], [ -73.575812608138278, 45.495985960529921 ], [ -73.575776823258522, 45.49596883324228 ], [ -73.575802901600994, 45.495941883598753 ], [ -73.57583958499842, 45.495903966804626 ], [ -73.575799779972698, 45.495884916526173 ], [ -73.57578777576957, 45.495897319847018 ], [ -73.575775771561226, 45.495909723166633 ], [ -73.575763096560905, 45.495922833307645 ], [ -73.575711834246746, 45.495975814136678 ], [ -73.575705164522105, 45.495982711364753 ], [ -73.575614190275871, 45.496076742363833 ], [ -73.575622832419342, 45.496080875926495 ], [ -73.575614897715738, 45.496089078760853 ], [ -73.575634678641578, 45.496098550023554 ], [ -73.575653153643159, 45.496107392256711 ], [ -73.575657120993768, 45.496103290838278 ], [ -73.575661088343765, 45.496099189419709 ], [ -73.57566769477971, 45.496102343497014 ], [ -73.575662008886027, 45.496108223246658 ], [ -73.575671624082659, 45.496112824080043 ] ] ] } }
]
}

View File

@ -1,7 +0,0 @@
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "OBJECTID_12": 78, "gml_id": "1341084", "gml_parent": "fme-gen-57964590-baa9-48a7-99b0-fa11ca012d7c", "citygml_ta": "http://www.opengis.net/citygml/building/2.0", "citygml_fe": "cityObjectMember", "citygml__1": " ", "citygml__2": " ", "gml_descri": " ", "gml_name": " ", "citygml_cr": " ", "citygml_te": " ", "externalRe": " ", "external_1": " ", "external_2": " ", "citygml_ge": " ", "citygml_re": " ", "citygml__3": " ", "citygml_ap": " ", "citygml_cl": " ", "citygml__4": " ", "citygml_fu": " ", "citygml__5": " ", "citygml_us": " ", "citygml__6": " ", "citygml_ye": " ", "citygml__7": " ", "citygml_ro": " ", "citygml__8": " ", "citygml_me": 28.164, "citygml__9": "#m", "citygml_st": " ", "citygml_10": " ", "citygml_11": " ", "citygml_12": " ", "citygml_13": " ", "citygml_14": " ", "citygml_ou": " ", "citygml_in": " ", "citygml_bo": " ", "citygml_le": " ", "citygml_15": " ", "citygml_co": " ", "citygml_ad": " ", "Volume": "20172.450", "parcelle": " ", "OBJECTID": 7115, "gml_id_1": "25a2efa0-4d04-4eeb-b04c-7ceb338b062c", "gml_pare_1": "1341084", "citygml_16": "http://www.opengis.net/citygml/building/2.0", "citygml_17": "boundedBy", "citygml_18": " ", "citygml_19": " ", "gml_desc_1": " ", "gml_name_1": " ", "citygml_20": " ", "citygml_21": " ", "external_3": " ", "external_4": " ", "external_5": " ", "citygml_22": " ", "citygml_23": " ", "citygml_24": " ", "citygml_25": " ", "citygml_26": " ", "citygml_op": " ", "Area": "716.259", "FID_": 0, "Join_Count": 3, "TARGET_FID": 7120, "gml_id_12": "1341084", "gml_pare_2": "fme-gen-57964590-baa9-48a7-99b0-fa11ca012d7c", "citygml_27": "http://www.opengis.net/citygml/building/2.0", "citygml_28": "cityObjectMember", "citygml_29": " ", "citygml_30": " ", "gml_desc_2": " ", "gml_name_2": " ", "citygml_31": " ", "citygml_32": " ", "external_6": " ", "external_7": " ", "external_8": " ", "citygml_33": " ", "citygml_34": " ", "citygml_35": " ", "citygml_36": " ", "citygml_37": " ", "citygml_38": " ", "citygml_39": " ", "citygml_40": " ", "citygml_41": " ", "citygml_42": " ", "citygml_43": " ", "citygml_44": " ", "citygml_45": " ", "citygml_46": " ", "citygml_47": 28.164, "citygml_48": "#m", "citygml_49": " ", "citygml_50": " ", "citygml_51": " ", "citygml_52": " ", "citygml_53": " ", "citygml_54": " ", "citygml_55": " ", "citygml_56": " ", "citygml_57": " ", "citygml_58": " ", "citygml_59": " ", "citygml_60": " ", "citygml_61": " ", "Volume_1": "20172.450", "Field": 0, "Field1": 0, "OBJECTID_1": 7115, "gml_id_12_": "25a2efa0-4d04-4eeb-b04c-7ceb338b062c", "gml_pare_3": "1341084", "citygml_62": "http://www.opengis.net/citygml/building/2.0", "citygml_63": "boundedBy", "citygml_64": " ", "citygml_65": " ", "gml_desc_3": " ", "gml_name_3": " ", "citygml_66": " ", "citygml_67": " ", "external_9": " ", "externa_10": " ", "externa_11": " ", "citygml_68": " ", "citygml_69": " ", "citygml_70": " ", "citygml_71": " ", "citygml_72": " ", "citygml_73": " ", "Area_1": "716.259", "cityGML_hi": 0, "Z_Min": 39.2444, "Z_Max": 67.408, "Shape_Leng": 140.36783883300001, "ID_UEV": "01002600", "CIVIQUE_DE": " 1420", "CIVIQUE_FI": " 1420", "NOM_RUE": "rue Sainte-Catherine Ouest (MTL+WMT)", "MUNICIPALI": "50", "ETAGE_HORS": 4, "NOMBRE_LOG": 4, "ANNEE_CONS": 1914, "CODE_UTILI": "6000", "LIBELLE_UT": "Immeuble à bureaux", "CATEGORIE_": "Régulier", "MATRICULE8": "9839-85-4994-3-000-0000", "SUPERFICIE": 803, "SUPERFIC_1": 2953, "NO_ARROND_": "REM19", "Shape_Le_1": 0.0013155280635399999, "Shape_Ar_1": 9.24688109061e-08, "Z_Min_1": null, "Z_Max_1": null, "Shape_Length": 140.3678388326679, "Shape_Area": 716.25939654725767 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.576326707327183, 45.496116905446513 ], [ -73.576250734313831, 45.496195431606957 ], [ -73.57635494025277, 45.49624529435664 ], [ -73.57640388728268, 45.496268720567464 ], [ -73.576411543664449, 45.496272386810624 ], [ -73.576562645953913, 45.496116207640782 ], [ -73.576415293070468, 45.496045695530078 ], [ -73.576420653070528, 45.496040157901724 ], [ -73.576426013069508, 45.496034620273157 ], [ -73.576390874544217, 45.496017807691075 ], [ -73.576355736039815, 45.496000995098171 ], [ -73.576350382434597, 45.496006532719178 ], [ -73.576345028828328, 45.496012070339987 ], [ -73.576230158246304, 45.495957103581226 ], [ -73.576199840227886, 45.495942591324486 ], [ -73.57616952222503, 45.495928079059674 ], [ -73.57601853434798, 45.496084140658738 ], [ -73.576148538438346, 45.496146359284836 ], [ -73.576177140896519, 45.496160035843573 ], [ -73.576252998979967, 45.496081635786481 ], [ -73.576326707327183, 45.496116905446513 ] ] ] } }
]
}

View File

@ -1,10 +0,0 @@
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "OBJECTID_12_13": 86522, "ID_UEV": "01027575", "CIVIQUE_DE": " 951", "CIVIQUE_FI": " 959", "NOM_RUE": "rue Napoléon (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 3, "NOMBRE_LOG": 5, "ANNEE_CONS": 1927, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9942-16-9406-0-000-0000", "SUPERFICIE": 189, "SUPERFIC_1": 342, "NO_ARROND_": "REM21", "Shape_Leng": 0.00063207684256600001, "OBJECTID": 86522, "Join_Count": 1, "TARGET_FID": 86522, "feature_id": "bd64c84e-a70a-4112-915e-74b79f16c189", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 2.03, "heightmax": 16.11, "elevmin": 43.98, "elevmax": 46.16, "bldgarea": 2049.47, "comment": "Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.", "OBJECTID_1": 86522, "Shape_Le_1": 0.00063207684256600001, "Shape_Ar_1": 1.6665660222699999e-08, "OBJECTID_12": 86522, "Join_Count_1": 4, "TARGET_FID_1": 86521, "g_objectid": "965958", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM21", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1885186", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "5", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023994216872540000000", "g_sup_tota": "228.4", "g_geometry": "0.000850333", "g_geomet_1": "2.66017e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00063207684256600001, "Shape_Area_1": 1.6665660222699999e-08, "Shape_Length": 0.00063207737081418457, "Shape_Area": 1.6665660222699999e-08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571695571893088, 45.523289546975093 ], [ -73.57169547206837, 45.523289546975093 ], [ -73.57165227223453, 45.523335846771943 ], [ -73.571647173078532, 45.523341318247276 ], [ -73.571852653776887, 45.52343504199365 ], [ -73.571869017840868, 45.523442507265941 ], [ -73.571918636136104, 45.523388576721516 ], [ -73.571695571893088, 45.523289546975093 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 92980, "ID_UEV": "01105693", "CIVIQUE_DE": " 981", "CIVIQUE_FI": " 981", "NOM_RUE": "rue Napoléon (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 1, "NOMBRE_LOG": 1, "ANNEE_CONS": 1927, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Condominium", "MATRICULE8": "9942-26-0726-9-001-0002", "SUPERFICIE": 64, "SUPERFIC_1": 1097, "NO_ARROND_": "REM21", "Shape_Leng": 0.00065357686662100001, "OBJECTID": 92980, "Join_Count": 1, "TARGET_FID": 92980, "feature_id": "bd64c84e-a70a-4112-915e-74b79f16c189", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 2.03, "heightmax": 16.11, "elevmin": 43.98, "elevmax": 46.16, "bldgarea": 2049.47, "comment": "Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.", "OBJECTID_1": 92980, "Shape_Le_1": 0.00065357686662100001, "Shape_Ar_1": 1.6402179526400001e-08, "OBJECTID_12": 92980, "Join_Count_1": 3, "TARGET_FID_1": 92979, "g_objectid": "967849", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM21", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "2316950", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "6", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023994226021950000000", "g_sup_tota": "205.6", "g_geometry": "0.000725388", "g_geomet_1": "2.3681e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00065357686662100001, "Shape_Area_1": 1.6402179526400001e-08, "Shape_Length": 0.00065357702080113384, "Shape_Area": 1.6402179526400001e-08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571531448317671, 45.523465428286954 ], [ -73.571496172410377, 45.523503246577604 ], [ -73.571487672018407, 45.523499347117252 ], [ -73.571464698836735, 45.523523576651769 ], [ -73.571684848377004, 45.523623993152796 ], [ -73.571724172132804, 45.523584846563494 ], [ -73.571633872105451, 45.52354014666048 ], [ -73.571653101409481, 45.523520919155146 ], [ -73.571531448317671, 45.523465428286954 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 146189, "ID_UEV": "01027577", "CIVIQUE_DE": " 961", "CIVIQUE_FI": " 965", "NOM_RUE": "rue Napoléon (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 3, "NOMBRE_LOG": 3, "ANNEE_CONS": 1927, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9942-16-9812-9-000-0000", "SUPERFICIE": 159, "SUPERFIC_1": 313, "NO_ARROND_": "REM21", "Shape_Leng": 0.00060521313674000003, "OBJECTID": 146189, "Join_Count": 1, "TARGET_FID": 146189, "feature_id": "bd64c84e-a70a-4112-915e-74b79f16c189", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 2.03, "heightmax": 16.11, "elevmin": 43.98, "elevmax": 46.16, "bldgarea": 2049.47, "comment": "Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.", "OBJECTID_1": 146189, "Shape_Le_1": 0.00060521313674000003, "Shape_Ar_1": 1.6423338648400002e-08, "OBJECTID_12": 146189, "Join_Count_1": 4, "TARGET_FID_1": 146188, "g_objectid": "967849", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM21", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "2316950", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "6", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023994226021950000000", "g_sup_tota": "205.6", "g_geometry": "0.000725388", "g_geomet_1": "2.3681e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00060521313674000003, "Shape_Area_1": 1.6423338648400002e-08, "Shape_Length": 0.00060521253924615721, "Shape_Area": 1.6423338648400002e-08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571852653776887, 45.52343504199365 ], [ -73.571647173078532, 45.523341318247276 ], [ -73.571594955742569, 45.523397333420235 ], [ -73.571800914880271, 45.523491276601192 ], [ -73.571852653776887, 45.52343504199365 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 156117, "ID_UEV": "01027579", "CIVIQUE_DE": " 967", "CIVIQUE_FI": " 977", "NOM_RUE": "rue Napoléon (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 3, "NOMBRE_LOG": 6, "ANNEE_CONS": 1927, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9942-26-0219-5-000-0000", "SUPERFICIE": 206, "SUPERFIC_1": 360, "NO_ARROND_": "REM21", "Shape_Leng": 0.00067550702330100001, "OBJECTID": 156117, "Join_Count": 1, "TARGET_FID": 156117, "feature_id": "bd64c84e-a70a-4112-915e-74b79f16c189", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 2.03, "heightmax": 16.11, "elevmin": 43.98, "elevmax": 46.16, "bldgarea": 2049.47, "comment": "Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.", "OBJECTID_1": 156117, "Shape_Le_1": 0.00067550702330100001, "Shape_Ar_1": 1.96911729663e-08, "OBJECTID_12": 156117, "Join_Count_1": 5, "TARGET_FID_1": 156116, "g_objectid": "965958", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM21", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1885186", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "5", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023994216872540000000", "g_sup_tota": "228.4", "g_geometry": "0.000850333", "g_geomet_1": "2.66017e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00067550702330100001, "Shape_Area_1": 1.96911729663e-08, "Shape_Length": 0.00067550751676155542, "Shape_Area": 1.96911729663e-08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571811579041082, 45.523504934605114 ], [ -73.571795214977158, 45.523497471131463 ], [ -73.571800914880271, 45.523491276601192 ], [ -73.571594955742569, 45.523397333420235 ], [ -73.57158077163524, 45.523412547251326 ], [ -73.571531448317671, 45.523465428286954 ], [ -73.571653101409481, 45.523520919155146 ], [ -73.571663172017736, 45.523510846748252 ], [ -73.571747371943616, 45.523552647236954 ], [ -73.571751772326365, 45.523548246854148 ], [ -73.571776271657598, 45.523526846586776 ], [ -73.571786209166191, 45.523532507819027 ], [ -73.571811579041082, 45.523504934605114 ] ] ] } }
]
}

View File

@ -1,6 +0,0 @@
{"type":"FeatureCollection", "features": [
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57185265377689,45.52343504199365],[-73.57186901784087,45.52344250726594],[-73.5719186361361,45.523388576721516],[-73.57169557189309,45.52328954697509],[-73.57169547206837,45.52328954697509],[-73.57165227223453,45.52333584677194],[-73.57164717307853,45.523341318247276],[-73.57185265377689,45.52343504199365]]]},"properties":{"OBJECTID_12_13":86522,"ID_UEV":"01027575","CIVIQUE_DE":" 951","CIVIQUE_FI":" 959","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":3,"NOMBRE_LOG":5,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Régulier","MATRICULE8":"9942-16-9406-0-000-0000","SUPERFICIE":189,"SUPERFIC_1":342,"NO_ARROND_":"REM21","Shape_Leng":0.000632076842566,"OBJECTID":86522,"Join_Count":1,"TARGET_FID":86522,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":86522,"Shape_Le_1":0.000632076842566,"Shape_Ar_1":1.66656602227e-8,"OBJECTID_12":86522,"Join_Count_1":4,"TARGET_FID_1":86521,"g_objectid":"965958","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"1885186","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"5","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994216872540000000","g_sup_tota":"228.4","g_geometry":"0.000850333","g_geomet_1":"2.66017e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.000632076842566,"Shape_Area_1":1.66656602227e-8,"Shape_Length":0.0006320773708141846,"Shape_Area":1.66656602227e-8}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57153144831767,45.523465428286954],[-73.57149617241038,45.523503246577604],[-73.5714876720184,45.52349934711725],[-73.57146469883673,45.52352357665177],[-73.571684848377,45.523623993152796],[-73.5717241721328,45.523584846563494],[-73.57163387210545,45.52354014666048],[-73.57165310140948,45.523520919155146],[-73.57153144831767,45.523465428286954]]]},"properties":{"OBJECTID_12_13":92980,"ID_UEV":"01105693","CIVIQUE_DE":" 981","CIVIQUE_FI":" 981","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":1,"NOMBRE_LOG":1,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Condominium","MATRICULE8":"9942-26-0726-9-001-0002","SUPERFICIE":64,"SUPERFIC_1":1097,"NO_ARROND_":"REM21","Shape_Leng":0.000653576866621,"OBJECTID":92980,"Join_Count":1,"TARGET_FID":92980,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":92980,"Shape_Le_1":0.000653576866621,"Shape_Ar_1":1.64021795264e-8,"OBJECTID_12":92980,"Join_Count_1":3,"TARGET_FID_1":92979,"g_objectid":"967849","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"2316950","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"6","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994226021950000000","g_sup_tota":"205.6","g_geometry":"0.000725388","g_geomet_1":"2.3681e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.000653576866621,"Shape_Area_1":1.64021795264e-8,"Shape_Length":0.0006535770208011338,"Shape_Area":1.64021795264e-8}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57185265377689,45.52343504199365],[-73.57164717307853,45.523341318247276],[-73.57159495574257,45.523397333420235],[-73.57180091488027,45.52349127660119],[-73.57185265377689,45.52343504199365]]]},"properties":{"OBJECTID_12_13":146189,"ID_UEV":"01027577","CIVIQUE_DE":" 961","CIVIQUE_FI":" 965","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":3,"NOMBRE_LOG":3,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Régulier","MATRICULE8":"9942-16-9812-9-000-0000","SUPERFICIE":159,"SUPERFIC_1":313,"NO_ARROND_":"REM21","Shape_Leng":0.00060521313674,"OBJECTID":146189,"Join_Count":1,"TARGET_FID":146189,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":146189,"Shape_Le_1":0.00060521313674,"Shape_Ar_1":1.64233386484e-8,"OBJECTID_12":146189,"Join_Count_1":4,"TARGET_FID_1":146188,"g_objectid":"967849","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"2316950","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"6","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994226021950000000","g_sup_tota":"205.6","g_geometry":"0.000725388","g_geomet_1":"2.3681e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.00060521313674,"Shape_Area_1":1.64233386484e-8,"Shape_Length":0.0006052125392461572,"Shape_Area":1.64233386484e-8}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57165310140948,45.523520919155146],[-73.57166317201774,45.52351084674825],[-73.57174737194362,45.523552647236954],[-73.57175177232637,45.52354824685415],[-73.5717762716576,45.523526846586776],[-73.57178620916619,45.52353250781903],[-73.57181157904108,45.523504934605114],[-73.57179521497716,45.52349747113146],[-73.57180091488027,45.52349127660119],[-73.57159495574257,45.523397333420235],[-73.57158077163524,45.523412547251326],[-73.57153144831767,45.523465428286954],[-73.57165310140948,45.523520919155146]]]},"properties":{"OBJECTID_12_13":156117,"ID_UEV":"01027579","CIVIQUE_DE":" 967","CIVIQUE_FI":" 977","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":3,"NOMBRE_LOG":6,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Régulier","MATRICULE8":"9942-26-0219-5-000-0000","SUPERFICIE":206,"SUPERFIC_1":360,"NO_ARROND_":"REM21","Shape_Leng":0.000675507023301,"OBJECTID":156117,"Join_Count":1,"TARGET_FID":156117,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":156117,"Shape_Le_1":0.000675507023301,"Shape_Ar_1":1.96911729663e-8,"OBJECTID_12":156117,"Join_Count_1":5,"TARGET_FID_1":156116,"g_objectid":"965958","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"1885186","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"5","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994216872540000000","g_sup_tota":"228.4","g_geometry":"0.000850333","g_geomet_1":"2.66017e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.000675507023301,"Shape_Area_1":1.96911729663e-8,"Shape_Length":0.0006755075167615554,"Shape_Area":1.96911729663e-8}}
]}

View File

@ -1,6 +0,0 @@
{"type":"FeatureCollection", "features": [
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57185265377689,45.52343504199365],[-73.57186901784087,45.52344250726594],[-73.5719186361361,45.523388576721516],[-73.57169557189309,45.52328954697509],[-73.57164717307853,45.523341318247276],[-73.57185265377689,45.52343504199365]]]},"id":86522, "properties":{"ID_UEV":"01027575","CIVIQUE_DE":" 951","CIVIQUE_FI":" 959","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":3,"NOMBRE_LOG":5,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Régulier","MATRICULE8":"9942-16-9406-0-000-0000","SUPERFICIE":189,"SUPERFIC_1":342,"NO_ARROND_":"REM21","Shape_Leng":0.000632076842566,"OBJECTID":86522,"Join_Count":1,"TARGET_FID":86522,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":86522,"Shape_Le_1":0.000632076842566,"Shape_Ar_1":1.66656602227e-8,"OBJECTID_12":86522,"Join_Count_1":4,"TARGET_FID_1":86521,"g_objectid":"965958","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"1885186","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"5","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994216872540000000","g_sup_tota":"228.4","g_geometry":"0.000850333","g_geomet_1":"2.66017e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.000632076842566,"Shape_Area_1":1.66656602227e-8,"Shape_Length":0.0006320773708141846,"Shape_Area":1.66656602227e-8}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57153144831767,45.523465428286954],[-73.57149617241038,45.523503246577604],[-73.5714876720184,45.52349934711725],[-73.57146469883673,45.52352357665177],[-73.571684848377,45.523623993152796],[-73.5717241721328,45.523584846563494],[-73.57163387210545,45.52354014666048],[-73.57165310140948,45.523520919155146],[-73.57153144831767,45.523465428286954]]]},"id":92980,"properties":{"ID_UEV":"01105693","CIVIQUE_DE":" 981","CIVIQUE_FI":" 981","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":1,"NOMBRE_LOG":1,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Condominium","MATRICULE8":"9942-26-0726-9-001-0002","SUPERFICIE":64,"SUPERFIC_1":1097,"NO_ARROND_":"REM21","Shape_Leng":0.000653576866621,"OBJECTID":92980,"Join_Count":1,"TARGET_FID":92980,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":92980,"Shape_Le_1":0.000653576866621,"Shape_Ar_1":1.64021795264e-8,"OBJECTID_12":92980,"Join_Count_1":3,"TARGET_FID_1":92979,"g_objectid":"967849","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"2316950","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"6","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994226021950000000","g_sup_tota":"205.6","g_geometry":"0.000725388","g_geomet_1":"2.3681e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.000653576866621,"Shape_Area_1":1.64021795264e-8,"Shape_Length":0.0006535770208011338,"Shape_Area":1.64021795264e-8}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57185265377689,45.52343504199365],[-73.57164717307853,45.523341318247276],[-73.57159495574257,45.523397333420235],[-73.57180091488027,45.52349127660119],[-73.57185265377689,45.52343504199365]]]},"id":146189, "properties":{"ID_UEV":"01027577","CIVIQUE_DE":" 961","CIVIQUE_FI":" 965","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":3,"NOMBRE_LOG":3,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Régulier","MATRICULE8":"9942-16-9812-9-000-0000","SUPERFICIE":159,"SUPERFIC_1":313,"NO_ARROND_":"REM21","Shape_Leng":0.00060521313674,"OBJECTID":146189,"Join_Count":1,"TARGET_FID":146189,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":146189,"Shape_Le_1":0.00060521313674,"Shape_Ar_1":1.64233386484e-8,"OBJECTID_12":146189,"Join_Count_1":4,"TARGET_FID_1":146188,"g_objectid":"967849","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"2316950","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"6","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994226021950000000","g_sup_tota":"205.6","g_geometry":"0.000725388","g_geomet_1":"2.3681e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.00060521313674,"Shape_Area_1":1.64233386484e-8,"Shape_Length":0.0006052125392461572,"Shape_Area":1.64233386484e-8}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57165310140948,45.523520919155146],[-73.57166317201774,45.52351084674825],[-73.57174737194362,45.523552647236954],[-73.5717762716576,45.523526846586776],[-73.57178620916619,45.52353250781903],[-73.57181157904108,45.523504934605114],[-73.57180091488027,45.52349127660119],[-73.57159495574257,45.523397333420235],[-73.57153144831767,45.523465428286954],[-73.57165310140948,45.523520919155146]]]},"id":156117,"properties":{"ID_UEV":"01027579","CIVIQUE_DE":" 967","CIVIQUE_FI":" 977","NOM_RUE":"rue Napoléon (MTL)","SUITE_DEBU":" ","MUNICIPALI":"50","ETAGE_HORS":3,"NOMBRE_LOG":6,"ANNEE_CONS":1927,"CODE_UTILI":"1000","LETTRE_DEB":" ","LETTRE_FIN":" ","LIBELLE_UT":"Logement","CATEGORIE_":"Régulier","MATRICULE8":"9942-26-0219-5-000-0000","SUPERFICIE":206,"SUPERFIC_1":360,"NO_ARROND_":"REM21","Shape_Leng":0.000675507023301,"OBJECTID":156117,"Join_Count":1,"TARGET_FID":156117,"feature_id":"bd64c84e-a70a-4112-915e-74b79f16c189","md_id":" ","acqtech":1360,"acqtech_en":"Lidar","acqtech_fr":"Lidar","provider":461,"provideren":"Municipal","providerfr":"Municipal","datemin":"20151124","datemax":"20151208","haccmin":2,"haccmax":2,"vaccmin":1,"vaccmax":1,"heightmin":2.03,"heightmax":16.11,"elevmin":43.98,"elevmax":46.16,"bldgarea":2049.47,"comment":"Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.","OBJECTID_1":156117,"Shape_Le_1":0.000675507023301,"Shape_Ar_1":1.96911729663e-8,"OBJECTID_12":156117,"Join_Count_1":5,"TARGET_FID_1":156116,"g_objectid":"965958","g_co_mrc":"66023","g_code_mun":"66023","g_arrond":"REM21","g_anrole":"2019","g_usag_pre":"Résidentiel","g_no_lot":"1885186","g_nb_poly_":"1","g_utilisat":"1000","g_nb_logem":"5","g_nb_locau":" ","g_descript":"Unité d'évaluation","g_id_provi":"66023994216872540000000","g_sup_tota":"228.4","g_geometry":"0.000850333","g_geomet_1":"2.66017e-008","g_dat_acqu":"2020-02-12T00:00:00","g_dat_char":"2020-02-17T00:00:00","Shape_Leng_1":0.000675507023301,"Shape_Area_1":1.96911729663e-8,"Shape_Length":0.0006755075167615554,"Shape_Area":1.96911729663e-8}}
]}

View File

@ -1,7 +0,0 @@
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "OBJECTID_12_13": 86522, "ID_UEV": "01027575", "CIVIQUE_DE": " 951", "CIVIQUE_FI": " 959", "NOM_RUE": "rue Napoléon (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 3, "NOMBRE_LOG": 5, "ANNEE_CONS": 1927, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9942-16-9406-0-000-0000", "SUPERFICIE": 189, "SUPERFIC_1": 342, "NO_ARROND_": "REM21", "Shape_Leng": 0.00063207684256600001, "OBJECTID": 86522, "Join_Count": 1, "TARGET_FID": 86522, "feature_id": "bd64c84e-a70a-4112-915e-74b79f16c189", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 2.03, "heightmax": 16.11, "elevmin": 43.98, "elevmax": 46.16, "bldgarea": 2049.47, "comment": "Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.", "OBJECTID_1": 86522, "Shape_Le_1": 0.00063207684256600001, "Shape_Ar_1": 1.6665660222699999e-08, "OBJECTID_12": 86522, "Join_Count_1": 4, "TARGET_FID_1": 86521, "g_objectid": "965958", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM21", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1885186", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "5", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023994216872540000000", "g_sup_tota": "228.4", "g_geometry": "0.000850333", "g_geomet_1": "2.66017e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00063207684256600001, "Shape_Area_1": 1.6665660222699999e-08, "Shape_Length": 0.00063207737081418457, "Shape_Area": 1.6665660222699999e-08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571695571893088, 45.523289546975093 ], [ -73.57169547206837, 45.523289546975093 ], [ -73.57165227223453, 45.523335846771943 ], [ -73.571647173078532, 45.523341318247276 ], [ -73.571852653776887, 45.52343504199365 ], [ -73.571869017840868, 45.523442507265941 ], [ -73.571918636136104, 45.523388576721516 ], [ -73.571695571893088, 45.523289546975093 ] ] ] } }
]
}

View File

@ -1,7 +0,0 @@
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "OBJECTID_12_13": 146189, "ID_UEV": "01027577", "CIVIQUE_DE": " 961", "CIVIQUE_FI": " 965", "NOM_RUE": "rue Napoléon (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 3, "NOMBRE_LOG": 3, "ANNEE_CONS": 1927, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9942-16-9812-9-000-0000", "SUPERFICIE": 159, "SUPERFIC_1": 313, "NO_ARROND_": "REM21", "Shape_Leng": 0.00060521313674000003, "OBJECTID": 146189, "Join_Count": 1, "TARGET_FID": 146189, "feature_id": "bd64c84e-a70a-4112-915e-74b79f16c189", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 2.03, "heightmax": 16.11, "elevmin": 43.98, "elevmax": 46.16, "bldgarea": 2049.47, "comment": "Detection of Lidar points classified as ground in the building. Détection de points Lidar classifiés sol dans le bâtiment.", "OBJECTID_1": 146189, "Shape_Le_1": 0.00060521313674000003, "Shape_Ar_1": 1.6423338648400002e-08, "OBJECTID_12": 146189, "Join_Count_1": 4, "TARGET_FID_1": 146188, "g_objectid": "967849", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM21", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "2316950", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "6", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023994226021950000000", "g_sup_tota": "205.6", "g_geometry": "0.000725388", "g_geomet_1": "2.3681e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00060521313674000003, "Shape_Area_1": 1.6423338648400002e-08, "Shape_Length": 0.00060521253924615721, "Shape_Area": 1.6423338648400002e-08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571852653776887, 45.52343504199365 ], [ -73.571647173078532, 45.523341318247276 ], [ -73.571594955742569, 45.523397333420235 ], [ -73.571800914880271, 45.523491276601192 ], [ -73.571852653776887, 45.52343504199365 ] ] ] } }
]
}

View File

@ -1,7 +0,0 @@
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "OBJECTID_12_13": 240615, "ID_UEV": "01041164", "CIVIQUE_DE": " 557", "CIVIQUE_FI": " 557", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-4458-5-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 128, "NO_ARROND_": "REM20", "Shape_Leng": 0.00036787174349400001, "OBJECTID": 240615, "Join_Count": 1, "TARGET_FID": 240615, "feature_id": "bc3bf4ef-e14b-49f4-b4e4-e4d31ba02965", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.02, "heightmax": 9.77, "elevmin": 15.08, "elevmax": 16.38, "bldgarea": 525.0, "comment": " ", "OBJECTID_1": 240615, "Shape_Le_1": 0.00036787174349400001, "Shape_Ar_1": 7.6259761285399998e-09, "OBJECTID_12": 240615, "Join_Count_1": 3, "TARGET_FID_1": 240614, "g_objectid": "951738", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851963", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825505410000000", "g_sup_tota": "148.6", "g_geometry": "0.000647336", "g_geomet_1": "1.71114e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00036787174349400001, "Shape_Area_1": 7.6259761285399998e-09, "Shape_Length": 0.00036787183809048457, "Shape_Area": 7.6259761285399998e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.57107657212606, 45.486866837734453 ], [ -73.57099873400432, 45.486947809993467 ], [ -73.571063372776393, 45.486978497559676 ], [ -73.571141279246604, 45.486897456052816 ], [ -73.57107657212606, 45.486866837734453 ] ] ] } }
]
}

View File

@ -1,37 +0,0 @@
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "OBJECTID_12_13": 240615, "ID_UEV": "01041164", "CIVIQUE_DE": " 557", "CIVIQUE_FI": " 557", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-4458-5-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 128, "NO_ARROND_": "REM20", "Shape_Leng": 0.00036787174349400001, "OBJECTID": 240615, "Join_Count": 1, "TARGET_FID": 240615, "feature_id": "bc3bf4ef-e14b-49f4-b4e4-e4d31ba02965", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.02, "heightmax": 9.77, "elevmin": 15.08, "elevmax": 16.38, "bldgarea": 525.0, "comment": " ", "OBJECTID_1": 240615, "Shape_Le_1": 0.00036787174349400001, "Shape_Ar_1": 7.6259761285399998e-09, "OBJECTID_12": 240615, "Join_Count_1": 3, "TARGET_FID_1": 240614, "g_objectid": "951738", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851963", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825505410000000", "g_sup_tota": "148.6", "g_geometry": "0.000647336", "g_geomet_1": "1.71114e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00036787174349400001, "Shape_Area_1": 7.6259761285399998e-09, "Shape_Length": 0.00036787183809048457, "Shape_Area": 7.6259761285399998e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.57107657212606, 45.486866837734453 ], [ -73.57099873400432, 45.486947809993467 ], [ -73.571063372776393, 45.486978497559676 ], [ -73.571141279246604, 45.486897456052816 ], [ -73.57107657212606, 45.486866837734453 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 240670, "ID_UEV": "01041122", "CIVIQUE_DE": " 544", "CIVIQUE_FI": " 544", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-3214-3-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 129, "NO_ARROND_": "REM20", "Shape_Leng": 0.00037496598782599998, "OBJECTID": 240670, "Join_Count": 1, "TARGET_FID": 240670, "feature_id": "a51643ef-fa4e-40ae-8b0c-5723bc35f0ed", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.01, "heightmax": 10.33, "elevmin": 15.07, "elevmax": 16.81, "bldgarea": 481.33, "comment": " ", "OBJECTID_1": 240670, "Shape_Le_1": 0.00037496598782599998, "Shape_Ar_1": 7.8698289386100005e-09, "OBJECTID_12": 240670, "Join_Count_1": 3, "TARGET_FID_1": 240669, "g_objectid": "951731", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851956", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825401120000000", "g_sup_tota": "267", "g_geometry": "0.000761651", "g_geomet_1": "3.07318e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00037496598782599998, "Shape_Area_1": 7.8698289386100005e-09, "Shape_Length": 0.0003749668016843765, "Shape_Area": 7.8698289386100005e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571222411584984, 45.48648349271906 ], [ -73.571142291883234, 45.486566839188356 ], [ -73.571155369824396, 45.486573140737903 ], [ -73.571206618590509, 45.486597853208423 ], [ -73.5712872230269, 45.486514003118828 ], [ -73.571222411584984, 45.48648349271906 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 240832, "ID_UEV": "01041127", "CIVIQUE_DE": " 564", "CIVIQUE_FI": " 564", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-0532-1-000-0000", "SUPERFICIE": 263, "SUPERFIC_1": 132, "NO_ARROND_": "REM20", "Shape_Leng": 0.00038855689918800002, "OBJECTID": 240832, "Join_Count": 1, "TARGET_FID": 240832, "feature_id": "a51643ef-fa4e-40ae-8b0c-5723bc35f0ed", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.01, "heightmax": 10.33, "elevmin": 15.07, "elevmax": 16.81, "bldgarea": 481.33, "comment": " ", "OBJECTID_1": 240832, "Shape_Le_1": 0.00038855689918800002, "Shape_Ar_1": 8.4968096293999995e-09, "OBJECTID_12": 240832, "Join_Count_1": 2, "TARGET_FID_1": 240831, "g_objectid": "951691", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851852", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825053210000000", "g_sup_tota": "263.1", "g_geometry": "0.000758707", "g_geomet_1": "3.02848e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00038855689918800002, "Shape_Area_1": 8.4968096293999995e-09, "Shape_Length": 0.0003885573512025398, "Shape_Area": 8.4968096293999995e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571614069933332, 45.486667940972723 ], [ -73.571546434620245, 45.486636075294712 ], [ -73.571463914627941, 45.486721919181264 ], [ -73.571531569726119, 45.486754541189157 ], [ -73.571535470085848, 45.48675054100471 ], [ -73.571614069933332, 45.486667940972723 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 240913, "ID_UEV": "01041124", "CIVIQUE_DE": " 552", "CIVIQUE_FI": " 552", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-2221-9-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 129, "NO_ARROND_": "REM20", "Shape_Leng": 0.00037777121642300002, "OBJECTID": 240913, "Join_Count": 1, "TARGET_FID": 240913, "feature_id": "a51643ef-fa4e-40ae-8b0c-5723bc35f0ed", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.01, "heightmax": 10.33, "elevmin": 15.07, "elevmax": 16.81, "bldgarea": 481.33, "comment": " ", "OBJECTID_1": 240913, "Shape_Le_1": 0.00037777121642300002, "Shape_Ar_1": 7.9651493979300005e-09, "OBJECTID_12": 240913, "Join_Count_1": 3, "TARGET_FID_1": 240912, "g_objectid": "951680", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851840", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825222190000000", "g_sup_tota": "148.6", "g_geometry": "0.000647333", "g_geomet_1": "1.71113e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00037777121642300002, "Shape_Area_1": 7.9651493979300005e-09, "Shape_Length": 0.00037777199792304541, "Shape_Area": 7.9651493979300005e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.57135203356944, 45.486544512619218 ], [ -73.571270942599881, 45.486628869926449 ], [ -73.571335266609253, 45.486659885745212 ], [ -73.571416845011356, 45.486575023018929 ], [ -73.57135203356944, 45.486544512619218 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 240914, "ID_UEV": "01041125", "CIVIQUE_DE": " 556", "CIVIQUE_FI": " 556", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-1824-1-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 129, "NO_ARROND_": "REM20", "Shape_Leng": 0.00037914739890200001, "OBJECTID": 240914, "Join_Count": 1, "TARGET_FID": 240914, "feature_id": "a51643ef-fa4e-40ae-8b0c-5723bc35f0ed", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.01, "heightmax": 10.33, "elevmin": 15.07, "elevmax": 16.81, "bldgarea": 481.33, "comment": " ", "OBJECTID_1": 240914, "Shape_Le_1": 0.00037914739890200001, "Shape_Ar_1": 8.0121595467000006e-09, "OBJECTID_12": 240914, "Join_Count_1": 3, "TARGET_FID_1": 240913, "g_objectid": "951680", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851840", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825222190000000", "g_sup_tota": "148.6", "g_geometry": "0.000647333", "g_geomet_1": "1.71113e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00037914739890200001, "Shape_Area_1": 8.0121595467000006e-09, "Shape_Length": 0.00037914766146593382, "Shape_Area": 8.0121595467000006e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571416845011356, 45.486575023018929 ], [ -73.571335266609253, 45.486659885745212 ], [ -73.571399590618569, 45.486690901563918 ], [ -73.57148164116478, 45.486605547807812 ], [ -73.571423470316859, 45.486578140968504 ], [ -73.571416845011356, 45.486575023018929 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 240921, "ID_UEV": "01041157", "CIVIQUE_DE": " 589", "CIVIQUE_FI": " 589", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-0584-2-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 128, "NO_ARROND_": "REM20", "Shape_Leng": 0.000372434967787, "OBJECTID": 240921, "Join_Count": 1, "TARGET_FID": 240921, "feature_id": "54e7af4c-0ec1-4b78-9564-a9912800333f", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.13, "heightmax": 9.76, "elevmin": 14.36, "elevmax": 15.92, "bldgarea": 331.51, "comment": " ", "OBJECTID_1": 240921, "Shape_Le_1": 0.000372434967787, "Shape_Ar_1": 7.79311957432e-09, "OBJECTID_12": 240921, "Join_Count_1": 3, "TARGET_FID_1": 240920, "g_objectid": "951690", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851851", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825058420000000", "g_sup_tota": "148.6", "g_geometry": "0.000647336", "g_geomet_1": "1.71115e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.000372434967787, "Shape_Area_1": 7.79311957432e-09, "Shape_Length": 0.00037243466218523356, "Shape_Area": 7.79311957432e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571577698651822, 45.487103656208831 ], [ -73.571498116744635, 45.487186442400457 ], [ -73.571505769975261, 45.487190141311999 ], [ -73.571562396687227, 45.487217504983903 ], [ -73.57164196960116, 45.487134727785531 ], [ -73.571577698651822, 45.487103656208831 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 240922, "ID_UEV": "01041158", "CIVIQUE_DE": " 585", "CIVIQUE_FI": " 585", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-1081-8-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 128, "NO_ARROND_": "REM20", "Shape_Leng": 0.00037245706028399999, "OBJECTID": 240922, "Join_Count": 1, "TARGET_FID": 240922, "feature_id": "54e7af4c-0ec1-4b78-9564-a9912800333f", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.13, "heightmax": 9.76, "elevmin": 14.36, "elevmax": 15.92, "bldgarea": 331.51, "comment": " ", "OBJECTID_1": 240922, "Shape_Le_1": 0.00037245706028399999, "Shape_Ar_1": 7.7941367415700005e-09, "OBJECTID_12": 240922, "Join_Count_1": 3, "TARGET_FID_1": 240921, "g_objectid": "951690", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851851", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825058420000000", "g_sup_tota": "148.6", "g_geometry": "0.000647336", "g_geomet_1": "1.71115e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00037245706028399999, "Shape_Area_1": 7.7941367415700005e-09, "Shape_Length": 0.00037245683364788083, "Shape_Area": 7.7941367415700005e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571513440293018, 45.487072572041598 ], [ -73.571433844895978, 45.487155371723077 ], [ -73.571448670219922, 45.487162541118437 ], [ -73.571498116744635, 45.487186442400457 ], [ -73.571577698651822, 45.487103656208831 ], [ -73.571571669596835, 45.487100740606763 ], [ -73.571513440293018, 45.487072572041598 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 241082, "ID_UEV": "01041134", "CIVIQUE_DE": " 724", "CIVIQUE_FI": " 724", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-06-0368-0-000-0000", "SUPERFICIE": 222, "SUPERFIC_1": 122, "NO_ARROND_": "REM20", "Shape_Leng": 0.00042795510389500002, "OBJECTID": 241082, "Join_Count": 2, "TARGET_FID": 241082, "feature_id": "d26e5df6-2819-4bc2-a031-720fb26d4fdd", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 0.0, "heightmax": 24.42, "elevmin": 13.15, "elevmax": 14.8, "bldgarea": 190.51, "comment": " ", "OBJECTID_1": 241082, "Shape_Le_1": 0.00042795510389500002, "Shape_Ar_1": 7.4896438445599997e-09, "OBJECTID_12": 241082, "Join_Count_1": 3, "TARGET_FID_1": 241081, "g_objectid": "951533", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851484", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993806036800000000", "g_sup_tota": "222.3", "g_geometry": "0.000758926", "g_geomet_1": "2.55789e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00042795510389500002, "Shape_Area_1": 7.4896438445599997e-09, "Shape_Length": 0.00042795316748283729, "Shape_Area": 7.4896438445599997e-09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.574285791156285, 45.487828028640649 ], [ -73.574281771186747, 45.487832241065121 ], [ -73.574299049861224, 45.487839799866947 ], [ -73.574302592290735, 45.487836193585508 ], [ -73.574285791156285, 45.487828028640649 ] ] ], [ [ [ -73.574157870689135, 45.487902041046425 ], [ -73.574066271141476, 45.487992741272024 ], [ -73.574121638802524, 45.488020409814112 ], [ -73.574195441666234, 45.487945275953791 ], [ -73.574193371426929, 45.487944240834111 ], [ -73.574209770564437, 45.487928041346095 ], [ -73.574157870689135, 45.487902041046425 ] ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 241083, "ID_UEV": "01041135", "CIVIQUE_DE": " 728", "CIVIQUE_FI": " 728", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9838-96-9772-7-000-0000", "SUPERFICIE": 163, "SUPERFIC_1": 122, "NO_ARROND_": "REM20", "Shape_Leng": 0.00049679541303999995, "OBJECTID": 241083, "Join_Count": 2, "TARGET_FID": 241083, "feature_id": "d26e5df6-2819-4bc2-a031-720fb26d4fdd", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 0.0, "heightmax": 24.42, "elevmin": 13.15, "elevmax": 14.8, "bldgarea": 190.51, "comment": " ", "OBJECTID_1": 241083, "Shape_Le_1": 0.00049679541303999995, "Shape_Ar_1": 7.18707783343e-09, "OBJECTID_12": 241083, "Join_Count_1": 4, "TARGET_FID_1": 241082, "g_objectid": "951531", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851482", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023983896917790000000", "g_sup_tota": "249.7", "g_geometry": "0.000776501", "g_geomet_1": "2.87421e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00049679541303999995, "Shape_Area_1": 7.18707783343e-09, "Shape_Length": 0.00049679605617321254, "Shape_Area": 7.18707783343e-09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.574302592290735, 45.487836193585508 ], [ -73.574299049861224, 45.487839799866947 ], [ -73.574363765974965, 45.487868108726275 ], [ -73.5743652192794, 45.487866630240831 ], [ -73.574302592290735, 45.487836193585508 ] ] ], [ [ [ -73.574195441666234, 45.487945275953791 ], [ -73.574121638802524, 45.488020409814112 ], [ -73.574183698318961, 45.488051422934859 ], [ -73.574257505679327, 45.48797628457794 ], [ -73.574195441666234, 45.487945275953791 ] ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 241115, "ID_UEV": "01041130", "CIVIQUE_DE": " 708", "CIVIQUE_FI": " 708", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-06-2553-5-000-0000", "SUPERFICIE": 163, "SUPERFIC_1": 122, "NO_ARROND_": "REM20", "Shape_Leng": 0.00043758407966600001, "OBJECTID": 241115, "Join_Count": 2, "TARGET_FID": 241115, "feature_id": "d3fac2a3-85e8-4906-a535-e8fa9656e809", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 0.0, "heightmax": 26.79, "elevmin": 13.39, "elevmax": 15.28, "bldgarea": 727.33, "comment": " ", "OBJECTID_1": 241115, "Shape_Le_1": 0.00043758407966600001, "Shape_Ar_1": 7.0638366676499999e-09, "OBJECTID_12": 241115, "Join_Count_1": 4, "TARGET_FID_1": 241114, "g_objectid": "951541", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851492", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993806255350000000", "g_sup_tota": "163.3", "g_geometry": "0.000708607", "g_geomet_1": "1.87895e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00043758407966600001, "Shape_Area_1": 7.0638366676499999e-09, "Shape_Length": 0.00043758448048023598, "Shape_Area": 7.0638366676499999e-09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.573944210656748, 45.487662026381486 ], [ -73.573941331027584, 45.487664958171308 ], [ -73.573972470952754, 45.487680841097983 ], [ -73.573977070984995, 45.487683241388538 ], [ -73.573980721333157, 45.487679769106137 ], [ -73.573944210656748, 45.487662026381486 ] ] ], [ [ [ -73.573835571654286, 45.487772623208059 ], [ -73.573762449577373, 45.487847062791786 ], [ -73.573824662877826, 45.487877915833224 ], [ -73.573897848806666, 45.487803412397625 ], [ -73.573835571654286, 45.487772623208059 ] ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 241276, "ID_UEV": "01041138", "CIVIQUE_DE": " 760", "CIVIQUE_FI": " 770", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 3, "NOMBRE_LOG": 17, "ANNEE_CONS": 1932, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9838-97-4900-7-000-0000", "SUPERFICIE": 2090, "SUPERFIC_1": 2148, "NO_ARROND_": "REM20", "Shape_Leng": 0.0012789875897800001, "OBJECTID": 241276, "Join_Count": 1, "TARGET_FID": 241276, "feature_id": "234e3c96-9799-4fb1-b75c-dcaaf3619399", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 2.03, "heightmax": 33.17, "elevmin": 14.7, "elevmax": 15.63, "bldgarea": 733.62, "comment": " ", "OBJECTID_1": 241276, "Shape_Le_1": 0.0012789875897800001, "Shape_Ar_1": 8.4463110006999995e-08, "OBJECTID_12": 241276, "Join_Count_1": 2, "TARGET_FID_1": 241275, "g_objectid": "951522", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851473", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "17", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023983897490070000000", "g_sup_tota": "2658.7", "g_geometry": "0.00250827", "g_geomet_1": "3.0607e-007", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.0012789875897800001, "Shape_Area_1": 8.4463110006999995e-08, "Shape_Length": 0.0012789898361666371, "Shape_Area": 8.4463110006999995e-08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.575061271160678, 45.4882591411465 ], [ -73.574697270562524, 45.488066440713737 ], [ -73.574685671106806, 45.488077341396263 ], [ -73.574669771092999, 45.488068540630707 ], [ -73.574526270770718, 45.48820714144648 ], [ -73.574530270955222, 45.488209140639356 ], [ -73.574572470742908, 45.488229841234215 ], [ -73.574913571004458, 45.48839714121516 ], [ -73.574915170898407, 45.488395641145985 ], [ -73.575061271160678, 45.4882591411465 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 241320, "ID_UEV": "01041159", "CIVIQUE_DE": " 581", "CIVIQUE_FI": " 581", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 3, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-1678-1-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 131, "NO_ARROND_": "REM20", "Shape_Leng": 0.00035209566350399998, "OBJECTID": 241320, "Join_Count": 1, "TARGET_FID": 241320, "feature_id": "54e7af4c-0ec1-4b78-9564-a9912800333f", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.13, "heightmax": 9.76, "elevmin": 14.36, "elevmax": 15.92, "bldgarea": 331.51, "comment": " ", "OBJECTID_1": 241320, "Shape_Le_1": 0.00035209566350399998, "Shape_Ar_1": 6.6034776728700001e-09, "OBJECTID_12": 241320, "Join_Count_1": 2, "TARGET_FID_1": 241319, "g_objectid": "951694", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851855", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825167810000000", "g_sup_tota": "148.6", "g_geometry": "0.000647339", "g_geomet_1": "1.71116e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00035209566350399998, "Shape_Area_1": 6.6034776728700001e-09, "Shape_Length": 0.00035209574967802167, "Shape_Area": 6.6034776728700001e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571460870422811, 45.487047141012795 ], [ -73.571458769606465, 45.487049340754538 ], [ -73.571377469994218, 45.487128041326116 ], [ -73.571381470178665, 45.487130041418311 ], [ -73.571433844895978, 45.487155371723077 ], [ -73.571513440293018, 45.487072572041598 ], [ -73.571460870422811, 45.487047141012795 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 241324, "ID_UEV": "01041136", "CIVIQUE_DE": " 732", "CIVIQUE_FI": " 732", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9838-96-9177-9-000-0000", "SUPERFICIE": 250, "SUPERFIC_1": 126, "NO_ARROND_": "REM20", "Shape_Leng": 0.00043715628750500002, "OBJECTID": 241324, "Join_Count": 2, "TARGET_FID": 241324, "feature_id": "d26e5df6-2819-4bc2-a031-720fb26d4fdd", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 0.0, "heightmax": 24.42, "elevmin": 13.15, "elevmax": 14.8, "bldgarea": 190.51, "comment": " ", "OBJECTID_1": 241324, "Shape_Le_1": 0.00043715628750500002, "Shape_Ar_1": 7.6305818707199997e-09, "OBJECTID_12": 241324, "Join_Count_1": 3, "TARGET_FID_1": 241323, "g_objectid": "951531", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851482", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023983896917790000000", "g_sup_tota": "249.7", "g_geometry": "0.000776501", "g_geomet_1": "2.87421e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00043715628750500002, "Shape_Area_1": 7.6305818707199997e-09, "Shape_Length": 0.00043715622257026784, "Shape_Area": 7.6305818707199997e-09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.574325871241911, 45.488010440829214 ], [ -73.574257505679327, 45.48797628457794 ], [ -73.574183698318961, 45.488051422934859 ], [ -73.574250770656477, 45.488084940667534 ], [ -73.574325871241911, 45.488010440829214 ] ] ], [ [ [ -73.5743652192794, 45.487866630240831 ], [ -73.574363765974965, 45.487868108726275 ], [ -73.574392870734357, 45.487880841327808 ], [ -73.574396870918804, 45.487882740695966 ], [ -73.574397322378502, 45.487882231679691 ], [ -73.5743652192794, 45.487866630240831 ] ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 241787, "ID_UEV": "01041156", "CIVIQUE_DE": " 593", "CIVIQUE_FI": " 593", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-0087-6-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 128, "NO_ARROND_": "REM20", "Shape_Leng": 0.000372407923516, "OBJECTID": 241787, "Join_Count": 1, "TARGET_FID": 241787, "feature_id": "54e7af4c-0ec1-4b78-9564-a9912800333f", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.13, "heightmax": 9.76, "elevmin": 14.36, "elevmax": 15.92, "bldgarea": 331.51, "comment": " ", "OBJECTID_1": 241787, "Shape_Le_1": 0.000372407923516, "Shape_Ar_1": 7.7921812761300005e-09, "OBJECTID_12": 241787, "Join_Count_1": 3, "TARGET_FID_1": 241786, "g_objectid": "951688", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851849", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993815959010000000", "g_sup_tota": "148.6", "g_geometry": "0.000647333", "g_geomet_1": "1.71111e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.000372407923516, "Shape_Area_1": 7.7921812761300005e-09, "Shape_Length": 0.00037240754060266046, "Shape_Area": 7.7921812761300005e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.57164196960116, 45.487134727785531 ], [ -73.571562396687227, 45.487217504983903 ], [ -73.571626676629762, 45.487248567567406 ], [ -73.571706239651178, 45.48716580026155 ], [ -73.57164196960116, 45.487134727785531 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 260133, "ID_UEV": "01041163", "CIVIQUE_DE": " 561", "CIVIQUE_FI": " 561", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-3960-1-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 128, "NO_ARROND_": "REM20", "Shape_Leng": 0.00036806987986700001, "OBJECTID": 260133, "Join_Count": 1, "TARGET_FID": 260133, "feature_id": "bc3bf4ef-e14b-49f4-b4e4-e4d31ba02965", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.02, "heightmax": 9.77, "elevmin": 15.08, "elevmax": 16.38, "bldgarea": 525.0, "comment": " ", "OBJECTID_1": 260133, "Shape_Le_1": 0.00036806987986700001, "Shape_Ar_1": 7.63274002689e-09, "OBJECTID_12": 260133, "Join_Count_1": 3, "TARGET_FID_1": 260132, "g_objectid": "951735", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851960", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825396010000000", "g_sup_tota": "148.6", "g_geometry": "0.000647337", "g_geomet_1": "1.71115e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00036806987986700001, "Shape_Area_1": 7.63274002689e-09, "Shape_Length": 0.00036807029838238159, "Shape_Area": 7.63274002689e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571141279246604, 45.486897456052816 ], [ -73.571063372776393, 45.486978497559676 ], [ -73.571128013347106, 45.487009186924467 ], [ -73.571205987266467, 45.486928074371178 ], [ -73.571141279246604, 45.486897456052816 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 260414, "ID_UEV": "01041131", "CIVIQUE_DE": " 712", "CIVIQUE_FI": " 712", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-06-2056-9-000-0000", "SUPERFICIE": 163, "SUPERFIC_1": 122, "NO_ARROND_": "REM20", "Shape_Leng": 0.00034787911439400002, "OBJECTID": 260414, "Join_Count": 1, "TARGET_FID": 260414, "feature_id": "0fc2642f-2b74-46e6-823f-99e34b0c4326", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.04, "heightmax": 9.97, "elevmin": 13.12, "elevmax": 14.99, "bldgarea": 360.41, "comment": " ", "OBJECTID_1": 260414, "Shape_Le_1": 0.00034787911439400002, "Shape_Ar_1": 6.8961330059700003e-09, "OBJECTID_12": 260414, "Join_Count_1": 3, "TARGET_FID_1": 260413, "g_objectid": "951539", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851490", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993806155930000000", "g_sup_tota": "163.3", "g_geometry": "0.000708607", "g_geomet_1": "1.87897e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00034787911439400002, "Shape_Area_1": 6.8961330059700003e-09, "Shape_Length": 0.00034787878776484915, "Shape_Area": 6.8961330059700003e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.573897848806666, 45.487803412397625 ], [ -73.573824662877826, 45.487877915833224 ], [ -73.573886875279015, 45.487908769773981 ], [ -73.573960125059671, 45.487834199788551 ], [ -73.573897848806666, 45.487803412397625 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 261225, "ID_UEV": "01041132", "CIVIQUE_DE": " 716", "CIVIQUE_FI": " 716", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-06-1559-3-000-0000", "SUPERFICIE": 163, "SUPERFIC_1": 122, "NO_ARROND_": "REM20", "Shape_Leng": 0.00034806442704800002, "OBJECTID": 261225, "Join_Count": 1, "TARGET_FID": 261225, "feature_id": "0fc2642f-2b74-46e6-823f-99e34b0c4326", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.04, "heightmax": 9.97, "elevmin": 13.12, "elevmax": 14.99, "bldgarea": 360.41, "comment": " ", "OBJECTID_1": 261225, "Shape_Le_1": 0.00034806442704800002, "Shape_Ar_1": 6.9023211807699998e-09, "OBJECTID_12": 261225, "Join_Count_1": 3, "TARGET_FID_1": 261224, "g_objectid": "951539", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851490", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993806155930000000", "g_sup_tota": "163.3", "g_geometry": "0.000708607", "g_geomet_1": "1.87897e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00034806442704800002, "Shape_Area_1": 6.9023211807699998e-09, "Shape_Length": 0.00034806411319061571, "Shape_Area": 6.9023211807699998e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.573960125059671, 45.487834199788551 ], [ -73.573886875279015, 45.487908769773981 ], [ -73.573949088579525, 45.487939623714738 ], [ -73.574022402212051, 45.487864989877437 ], [ -73.573960125059671, 45.487834199788551 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 263014, "ID_UEV": "01041123", "CIVIQUE_DE": " 548", "CIVIQUE_FI": " 548", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-2718-4-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 129, "NO_ARROND_": "REM20", "Shape_Leng": 0.000376366359014, "OBJECTID": 263014, "Join_Count": 1, "TARGET_FID": 263014, "feature_id": "a51643ef-fa4e-40ae-8b0c-5723bc35f0ed", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.01, "heightmax": 10.33, "elevmin": 15.07, "elevmax": 16.81, "bldgarea": 481.33, "comment": " ", "OBJECTID_1": 263014, "Shape_Le_1": 0.000376366359014, "Shape_Ar_1": 7.9175048062599998e-09, "OBJECTID_12": 263014, "Join_Count_1": 3, "TARGET_FID_1": 263013, "g_objectid": "951730", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851955", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825321430000000", "g_sup_tota": "148.6", "g_geometry": "0.000647334", "g_geomet_1": "1.71115e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.000376366359014, "Shape_Area_1": 7.9175048062599998e-09, "Shape_Length": 0.00037636618564881467, "Shape_Area": 7.9175048062599998e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.5712872230269, 45.486514003118828 ], [ -73.571206618590509, 45.486597853208423 ], [ -73.571270942599881, 45.486628869926449 ], [ -73.57135203356944, 45.486544512619218 ], [ -73.5712872230269, 45.486514003118828 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 267073, "ID_UEV": "01117560", "CIVIQUE_DE": " 500", "CIVIQUE_FI": " 520", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 3, "NOMBRE_LOG": 18, "ANNEE_CONS": 1978, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-24-7579-8-000-0000", "SUPERFICIE": 1732, "SUPERFIC_1": 1350, "NO_ARROND_": "REM20", "Shape_Leng": 0.0012418799714, "OBJECTID": 267073, "Join_Count": 1, "TARGET_FID": 267073, "feature_id": "0c28ec03-00ae-4bac-b517-616afea07c59", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.69, "heightmax": 11.1, "elevmin": 16.11, "elevmax": 17.12, "bldgarea": 458.69, "comment": " ", "OBJECTID_1": 267073, "Shape_Le_1": 0.0012418799714, "Shape_Ar_1": 5.28322599938e-08, "OBJECTID_12": 267073, "Join_Count_1": 2, "TARGET_FID_1": 267072, "g_objectid": "951733", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851957", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "18", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993824757980000000", "g_sup_tota": "2146.5", "g_geometry": "0.00208189", "g_geomet_1": "2.47064e-007", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.0012418799714, "Shape_Area_1": 5.28322599938e-08, "Shape_Length": 0.0012418810914344943, "Shape_Area": 5.28322599938e-08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.570839368741815, 45.486340040960158 ], [ -73.57073986864998, 45.486292840941928 ], [ -73.570377068646735, 45.486121241302271 ], [ -73.570377169370829, 45.486121341127046 ], [ -73.570301668587092, 45.48619734103454 ], [ -73.570301168564015, 45.486197641408069 ], [ -73.57031206924654, 45.486202941112879 ], [ -73.570762768986583, 45.486419541029022 ], [ -73.570766669346256, 45.486415441019858 ], [ -73.570839368741815, 45.486340040960158 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 268831, "ID_UEV": "01041121", "CIVIQUE_DE": " 540", "CIVIQUE_FI": " 540", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-4011-2-000-0000", "SUPERFICIE": 267, "SUPERFIC_1": 132, "NO_ARROND_": "REM20", "Shape_Leng": 0.000361966156379, "OBJECTID": 268831, "Join_Count": 1, "TARGET_FID": 268831, "feature_id": "a51643ef-fa4e-40ae-8b0c-5723bc35f0ed", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.01, "heightmax": 10.33, "elevmin": 15.07, "elevmax": 16.81, "bldgarea": 481.33, "comment": " ", "OBJECTID_1": 268831, "Shape_Le_1": 0.000361966156379, "Shape_Ar_1": 7.1023747808399998e-09, "OBJECTID_12": 268831, "Join_Count_1": 2, "TARGET_FID_1": 268830, "g_objectid": "951731", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851956", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825401120000000", "g_sup_tota": "267", "g_geometry": "0.000761651", "g_geomet_1": "3.07318e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.000361966156379, "Shape_Area_1": 7.1023747808399998e-09, "Shape_Length": 0.00036196616941704932, "Shape_Area": 7.1023747808399998e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571165370285598, 45.486456640761389 ], [ -73.571163270368572, 45.486458941227227 ], [ -73.571081969857005, 45.486537740724202 ], [ -73.571086470064529, 45.486539941365265 ], [ -73.571142291883234, 45.486566839188356 ], [ -73.571222411584984, 45.48648349271906 ], [ -73.571165370285598, 45.486456640761389 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 269318, "ID_UEV": "01041126", "CIVIQUE_DE": " 560", "CIVIQUE_FI": " 560", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-1227-7-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 129, "NO_ARROND_": "REM20", "Shape_Leng": 0.00038050692149299998, "OBJECTID": 269318, "Join_Count": 1, "TARGET_FID": 269318, "feature_id": "a51643ef-fa4e-40ae-8b0c-5723bc35f0ed", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.01, "heightmax": 10.33, "elevmin": 15.07, "elevmax": 16.81, "bldgarea": 481.33, "comment": " ", "OBJECTID_1": 269318, "Shape_Le_1": 0.00038050692149299998, "Shape_Ar_1": 8.0582598595100006e-09, "OBJECTID_12": 269318, "Join_Count_1": 3, "TARGET_FID_1": 269317, "g_objectid": "951691", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851852", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825053210000000", "g_sup_tota": "263.1", "g_geometry": "0.000758707", "g_geomet_1": "3.02848e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00038050692149299998, "Shape_Area_1": 8.0582598595100006e-09, "Shape_Length": 0.00038050702861706746, "Shape_Area": 8.0582598595100006e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.57148164116478, 45.486605547807812 ], [ -73.571399590618569, 45.486690901563918 ], [ -73.571463914627941, 45.486721919181264 ], [ -73.571546434620245, 45.486636075294712 ], [ -73.57148164116478, 45.486605547807812 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 272126, "ID_UEV": "01041165", "CIVIQUE_DE": " 553", "CIVIQUE_FI": " 553", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-5054-1-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 128, "NO_ARROND_": "REM20", "Shape_Leng": 0.00036767648304499999, "OBJECTID": 272126, "Join_Count": 1, "TARGET_FID": 272126, "feature_id": "bc3bf4ef-e14b-49f4-b4e4-e4d31ba02965", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.02, "heightmax": 9.77, "elevmin": 15.08, "elevmax": 16.38, "bldgarea": 525.0, "comment": " ", "OBJECTID_1": 272126, "Shape_Le_1": 0.00036767648304499999, "Shape_Ar_1": 7.6193963206799992e-09, "OBJECTID_12": 272126, "Join_Count_1": 3, "TARGET_FID_1": 272125, "g_objectid": "951738", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851963", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825505410000000", "g_sup_tota": "148.6", "g_geometry": "0.000647336", "g_geomet_1": "1.71114e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00036767648304499999, "Shape_Area_1": 7.6193963206799992e-09, "Shape_Length": 0.00036767589178952973, "Shape_Area": 7.6193963206799992e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571011864106197, 45.486836220315354 ], [ -73.570934095232246, 45.486917120628675 ], [ -73.57099873400432, 45.486947809993467 ], [ -73.57107657212606, 45.486866837734453 ], [ -73.571011864106197, 45.486836220315354 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 273133, "ID_UEV": "01041161", "CIVIQUE_DE": " 569", "CIVIQUE_FI": " 569", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-2967-7-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 128, "NO_ARROND_": "REM20", "Shape_Leng": 0.00036854269794700002, "OBJECTID": 273133, "Join_Count": 1, "TARGET_FID": 273133, "feature_id": "bc3bf4ef-e14b-49f4-b4e4-e4d31ba02965", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.02, "heightmax": 9.77, "elevmin": 15.08, "elevmax": 16.38, "bldgarea": 525.0, "comment": " ", "OBJECTID_1": 273133, "Shape_Le_1": 0.00036854269794700002, "Shape_Ar_1": 7.6484420968700002e-09, "OBJECTID_12": 273133, "Join_Count_1": 3, "TARGET_FID_1": 273132, "g_objectid": "951696", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851857", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825247020000000", "g_sup_tota": "148.6", "g_geometry": "0.000647334", "g_geomet_1": "1.71111e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00036854269794700002, "Shape_Area_1": 7.6484420968700002e-09, "Shape_Length": 0.00036854227163141476, "Shape_Area": 7.6484420968700002e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571270709675446, 45.486958673803827 ], [ -73.57119265211918, 45.487039876289316 ], [ -73.571257289991877, 45.487070563855468 ], [ -73.571335434782441, 45.486989272337098 ], [ -73.571270709675446, 45.486958673803827 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 273805, "ID_UEV": "01041128", "CIVIQUE_DE": " 700", "CIVIQUE_FI": " 700", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-06-3645-8-000-0000", "SUPERFICIE": 251, "SUPERFIC_1": 126, "NO_ARROND_": "REM20", "Shape_Leng": 0.00041379906358299999, "OBJECTID": 273805, "Join_Count": 2, "TARGET_FID": 273805, "feature_id": "d3fac2a3-85e8-4906-a535-e8fa9656e809", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 0.0, "heightmax": 26.79, "elevmin": 13.39, "elevmax": 15.28, "bldgarea": 727.33, "comment": " ", "OBJECTID_1": 273805, "Shape_Le_1": 0.00041379906358299999, "Shape_Ar_1": 6.4643329021199996e-09, "OBJECTID_12": 273805, "Join_Count_1": 3, "TARGET_FID_1": 273804, "g_objectid": "951538", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851489", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993806124180000000", "g_sup_tota": "225.8", "g_geometry": "0.00103252", "g_geomet_1": "2.59934e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00041379906358299999, "Shape_Area_1": 6.4643329021199996e-09, "Shape_Length": 0.00041379710729140204, "Shape_Area": 6.4643329021199996e-09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.573849576796476, 45.487616035052042 ], [ -73.573848171156158, 45.487617440692361 ], [ -73.57387969059522, 45.487633517872609 ], [ -73.573881584567459, 45.487631589726163 ], [ -73.573849576796476, 45.487616035052042 ] ] ], [ [ [ -73.573716270289594, 45.487713641171638 ], [ -73.573712469754639, 45.487717540632048 ], [ -73.573641569902463, 45.48778714096386 ], [ -73.573647269805633, 45.487789940553341 ], [ -73.573700235377544, 45.48781620795171 ], [ -73.573773293602585, 45.487741833119173 ], [ -73.573716270289594, 45.487713641171638 ] ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 274737, "ID_UEV": "01041160", "CIVIQUE_DE": " 573", "CIVIQUE_FI": " 573", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-2470-2-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 131, "NO_ARROND_": "REM20", "Shape_Leng": 0.00036876371373100001, "OBJECTID": 274737, "Join_Count": 1, "TARGET_FID": 274737, "feature_id": "bc3bf4ef-e14b-49f4-b4e4-e4d31ba02965", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.02, "heightmax": 9.77, "elevmin": 15.08, "elevmax": 16.38, "bldgarea": 525.0, "comment": " ", "OBJECTID_1": 274737, "Shape_Le_1": 0.00036876371373100001, "Shape_Ar_1": 7.6555570163900001e-09, "OBJECTID_12": 274737, "Join_Count_1": 3, "TARGET_FID_1": 274736, "g_objectid": "956963", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Terrain vague", "g_no_lot": "1851859", "g_nb_poly_": "1", "g_utilisat": "9100", "g_nb_logem": " ", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993826290140000000", "g_sup_tota": "3641.6", "g_geometry": "0.00750933", "g_geomet_1": "4.19295e-007", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00036876371373100001, "Shape_Area_1": 7.6555570163900001e-09, "Shape_Length": 0.00036876290165205105, "Shape_Area": 7.6555570163900001e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571335434782441, 45.486989272337098 ], [ -73.571257289991877, 45.487070563855468 ], [ -73.571259770322115, 45.487071741068064 ], [ -73.571321955743599, 45.487101222643389 ], [ -73.571400158990116, 45.48701987087037 ], [ -73.571335434782441, 45.486989272337098 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 275244, "ID_UEV": "01041155", "CIVIQUE_DE": " 597", "CIVIQUE_FI": " 597", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-15-9590-1-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 131, "NO_ARROND_": "REM20", "Shape_Leng": 0.000372379723189, "OBJECTID": 275244, "Join_Count": 1, "TARGET_FID": 275244, "feature_id": "54e7af4c-0ec1-4b78-9564-a9912800333f", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.13, "heightmax": 9.76, "elevmin": 14.36, "elevmax": 15.92, "bldgarea": 331.51, "comment": " ", "OBJECTID_1": 275244, "Shape_Le_1": 0.000372379723189, "Shape_Ar_1": 7.7911943593199995e-09, "OBJECTID_12": 275244, "Join_Count_1": 3, "TARGET_FID_1": 275243, "g_objectid": "956963", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Terrain vague", "g_no_lot": "1851859", "g_nb_poly_": "1", "g_utilisat": "9100", "g_nb_logem": " ", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993826290140000000", "g_sup_tota": "3641.6", "g_geometry": "0.00750933", "g_geomet_1": "4.19295e-007", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.000372379723189, "Shape_Area_1": 7.7911943593199995e-09, "Shape_Length": 0.00037237963616381921, "Shape_Area": 7.7911943593199995e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571706239651178, 45.48716580026155 ], [ -73.571626676629762, 45.487248567567406 ], [ -73.571690955673034, 45.487279630150852 ], [ -73.571770509701196, 45.487196871838194 ], [ -73.571706239651178, 45.48716580026155 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 275245, "ID_UEV": "01041167", "CIVIQUE_DE": " 545", "CIVIQUE_FI": " 545", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-5947-6-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 131, "NO_ARROND_": "REM20", "Shape_Leng": 0.00035124643477299998, "OBJECTID": 275245, "Join_Count": 1, "TARGET_FID": 275245, "feature_id": "bc3bf4ef-e14b-49f4-b4e4-e4d31ba02965", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.02, "heightmax": 9.77, "elevmin": 15.08, "elevmax": 16.38, "bldgarea": 525.0, "comment": " ", "OBJECTID_1": 275245, "Shape_Le_1": 0.00035124643477299998, "Shape_Ar_1": 6.6197186004199996e-09, "OBJECTID_12": 275245, "Join_Count_1": 2, "TARGET_FID_1": 275244, "g_objectid": "951742", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851967", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825594760000000", "g_sup_tota": "148.6", "g_geometry": "0.000647337", "g_geomet_1": "1.71114e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00035124643477299998, "Shape_Area_1": 6.6197186004199996e-09, "Shape_Length": 0.00035124695643161744, "Shape_Area": 6.6197186004199996e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.57089376873239, 45.486780340940015 ], [ -73.570893868557164, 45.48678044076479 ], [ -73.570810168654305, 45.486858241114987 ], [ -73.5708157687327, 45.486860940879751 ], [ -73.57086945556091, 45.486886432163146 ], [ -73.570947156985653, 45.486805601996991 ], [ -73.57089376873239, 45.486780340940015 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 277066, "ID_UEV": "01041162", "CIVIQUE_DE": " 565", "CIVIQUE_FI": " 565", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-3464-4-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 128, "NO_ARROND_": "REM20", "Shape_Leng": 0.00036829552628700002, "OBJECTID": 277066, "Join_Count": 1, "TARGET_FID": 277066, "feature_id": "bc3bf4ef-e14b-49f4-b4e4-e4d31ba02965", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.02, "heightmax": 9.77, "elevmin": 15.08, "elevmax": 16.38, "bldgarea": 525.0, "comment": " ", "OBJECTID_1": 277066, "Shape_Le_1": 0.00036829552628700002, "Shape_Ar_1": 7.6400467474299996e-09, "OBJECTID_12": 277066, "Join_Count_1": 3, "TARGET_FID_1": 277065, "g_objectid": "951735", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851960", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825396010000000", "g_sup_tota": "148.6", "g_geometry": "0.000647337", "g_geomet_1": "1.71115e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00036829552628700002, "Shape_Area_1": 7.6400467474299996e-09, "Shape_Length": 0.00036829436463484995, "Shape_Area": 7.6400467474299996e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.571205987266467, 45.486928074371178 ], [ -73.571128013347106, 45.487009186924467 ], [ -73.57119265211918, 45.487039876289316 ], [ -73.571270709675446, 45.486958673803827 ], [ -73.571212469579791, 45.486931141059358 ], [ -73.571205987266467, 45.486928074371178 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 281348, "ID_UEV": "01041129", "CIVIQUE_DE": " 704", "CIVIQUE_FI": " 704", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-06-3049-3-000-0000", "SUPERFICIE": 163, "SUPERFIC_1": 122, "NO_ARROND_": "REM20", "Shape_Leng": 0.00049315931855300002, "OBJECTID": 281348, "Join_Count": 2, "TARGET_FID": 281348, "feature_id": "d3fac2a3-85e8-4906-a535-e8fa9656e809", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 0.0, "heightmax": 26.79, "elevmin": 13.39, "elevmax": 15.28, "bldgarea": 727.33, "comment": " ", "OBJECTID_1": 281348, "Shape_Le_1": 0.00049315931855300002, "Shape_Ar_1": 7.1092705840200001e-09, "OBJECTID_12": 281348, "Join_Count_1": 4, "TARGET_FID_1": 281347, "g_objectid": "951541", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851492", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993806255350000000", "g_sup_tota": "163.3", "g_geometry": "0.000708607", "g_geomet_1": "1.87895e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00049315931855300002, "Shape_Area_1": 7.1092705840200001e-09, "Shape_Length": 0.00049315827355010742, "Shape_Area": 7.1092705840200001e-09 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.573881584567459, 45.487631589726163 ], [ -73.57387969059522, 45.487633517872609 ], [ -73.573941331027584, 45.487664958171308 ], [ -73.573944210656748, 45.487662026381486 ], [ -73.573881584567459, 45.487631589726163 ] ] ], [ [ [ -73.573773293602585, 45.487741833119173 ], [ -73.573700235377544, 45.48781620795171 ], [ -73.573762449577373, 45.487847062791786 ], [ -73.573835571654286, 45.487772623208059 ], [ -73.573773293602585, 45.487741833119173 ] ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 281349, "ID_UEV": "01041133", "CIVIQUE_DE": " 720", "CIVIQUE_FI": " 720", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-06-0963-8-000-0000", "SUPERFICIE": 222, "SUPERFIC_1": 122, "NO_ARROND_": "REM20", "Shape_Leng": 0.000360993436513, "OBJECTID": 281349, "Join_Count": 1, "TARGET_FID": 281349, "feature_id": "0fc2642f-2b74-46e6-823f-99e34b0c4326", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.04, "heightmax": 9.97, "elevmin": 13.12, "elevmax": 14.99, "bldgarea": 360.41, "comment": " ", "OBJECTID_1": 281349, "Shape_Le_1": 0.000360993436513, "Shape_Ar_1": 7.5279798061600006e-09, "OBJECTID_12": 281349, "Join_Count_1": 2, "TARGET_FID_1": 281348, "g_objectid": "951539", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851490", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993806155930000000", "g_sup_tota": "163.3", "g_geometry": "0.000708607", "g_geomet_1": "1.87897e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.000360993436513, "Shape_Area_1": 7.5279798061600006e-09, "Shape_Length": 0.0003609931681264676, "Shape_Area": 7.5279798061600006e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.574090670647877, 45.48789874143381 ], [ -73.574022402212051, 45.487864989877437 ], [ -73.573949088579525, 45.487939623714738 ], [ -73.574016471183143, 45.487973040723318 ], [ -73.574020071169286, 45.487969440737174 ], [ -73.574090670647877, 45.48789874143381 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 287720, "ID_UEV": "01041166", "CIVIQUE_DE": " 549", "CIVIQUE_FI": " 549", "NOM_RUE": "rue Canning (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9938-25-5451-9-000-0000", "SUPERFICIE": 149, "SUPERFIC_1": 128, "NO_ARROND_": "REM20", "Shape_Leng": 0.000367478264934, "OBJECTID": 287720, "Join_Count": 1, "TARGET_FID": 287720, "feature_id": "bc3bf4ef-e14b-49f4-b4e4-e4d31ba02965", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.02, "heightmax": 9.77, "elevmin": 15.08, "elevmax": 16.38, "bldgarea": 525.0, "comment": " ", "OBJECTID_1": 287720, "Shape_Le_1": 0.000367478264934, "Shape_Ar_1": 7.6126797974199994e-09, "OBJECTID_12": 287720, "Join_Count_1": 3, "TARGET_FID_1": 287719, "g_objectid": "951738", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM20", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1851963", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023993825505410000000", "g_sup_tota": "148.6", "g_geometry": "0.000647336", "g_geomet_1": "1.71114e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.000367478264934, "Shape_Area_1": 7.6126797974199994e-09, "Shape_Length": 0.00036747871907971783, "Shape_Area": 7.6126797974199994e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.570947156985653, 45.486805601996991 ], [ -73.57086945556091, 45.486886432163146 ], [ -73.570881269055292, 45.486892041234796 ], [ -73.570934095232246, 45.486917120628675 ], [ -73.571011864106197, 45.486836220315354 ], [ -73.570947156985653, 45.486805601996991 ] ] ] } }
]
}

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +0,0 @@
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "OBJECTID_12_13": 1, "ID_UEV": "02005824", "CIVIQUE_DE": "12300", "CIVIQUE_FI": "12308", "NOM_RUE": "boulevard Armand-Bombardier (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 5, "ANNEE_CONS": 1977, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9755-31-6579-2-000-0000", "SUPERFICIE": 634, "SUPERFIC_1": 433, "NO_ARROND_": "REM33", "Shape_Leng": 0.00107707306815, "OBJECTID": 1, "Join_Count": 3, "TARGET_FID": 1, "feature_id": "ba163e11-6e5e-465f-9bfe-f150185555ae", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.12, "heightmax": 4.2, "elevmin": 25.25, "elevmax": 25.68, "bldgarea": 60.49, "comment": " ", "OBJECTID_1": 1, "Shape_Le_1": 0.00107707306815, "Shape_Ar_1": 3.1348204997000001e-08, "OBJECTID_12": 1, "Join_Count_1": 6, "TARGET_FID_1": 0, "g_objectid": "1092381", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM33", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1277117", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "5", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023975531776490000000", "g_sup_tota": "634.1", "g_geometry": "0.00115958", "g_geomet_1": "7.31375e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00107707306815, "Shape_Area_1": 3.1348204997000001e-08, "Shape_Length": 0.0010770730176244006, "Shape_Area": 3.1348204997000001e-08 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.595610966073195, 45.636462047185773 ], [ -73.595594521969588, 45.636446629208649 ], [ -73.595585820129429, 45.636438468760389 ], [ -73.595581688643961, 45.63644076562889 ], [ -73.59555158923439, 45.636457466039303 ], [ -73.595577021162569, 45.636479860956854 ], [ -73.595610966073195, 45.636462047185773 ] ] ], [ [ [ -73.595491489340702, 45.636489365891578 ], [ -73.595442689428523, 45.636444066140768 ], [ -73.59536237817116, 45.636369888259765 ], [ -73.595215544961377, 45.63644694397135 ], [ -73.595345488903149, 45.636566566393981 ], [ -73.595351889378151, 45.636562966407837 ], [ -73.595491489340702, 45.636489365891578 ] ] ], [ [ [ -73.595458756716198, 45.636319310387933 ], [ -73.595413374227803, 45.636343126234351 ], [ -73.595472788838094, 45.636390166173271 ], [ -73.5955025887734, 45.6363715663947 ], [ -73.59545498855681, 45.636334166288805 ], [ -73.595466858708505, 45.636326908759884 ], [ -73.595458756716198, 45.636319310387933 ] ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 2, "ID_UEV": "02023776", "CIVIQUE_DE": " 2838", "CIVIQUE_FI": " 2840", "NOM_RUE": "rue Louis-Veuillot (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 2, "ANNEE_CONS": 1910, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "0148-51-4932-0-000-0000", "SUPERFICIE": 195, "SUPERFIC_1": 177, "NO_ARROND_": "REM22", "Shape_Leng": 0.00044117010527899999, "OBJECTID": 2, "Join_Count": 1, "TARGET_FID": 2, "feature_id": "81cf56ee-626b-4f78-b67d-045eecacfb0f", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 1.33, "heightmax": 9.59, "elevmin": 26.35, "elevmax": 28.94, "bldgarea": 1014.02, "comment": " ", "OBJECTID_1": 2, "Shape_Le_1": 0.00044117010527899999, "Shape_Ar_1": 1.14377078999e-08, "OBJECTID_12": 2, "Join_Count_1": 3, "TARGET_FID_1": 1, "g_objectid": "974171", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM22", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1362079", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "3", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023014851562830000000", "g_sup_tota": "198.2", "g_geometry": "0.00069121", "g_geomet_1": "2.2848e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00044117010527899999, "Shape_Area_1": 1.14377078999e-08, "Shape_Length": 0.00044116922650025154, "Shape_Area": 1.14377078999e-08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.541604776938868, 45.573075596361718 ], [ -73.541534994044696, 45.573178953645822 ], [ -73.541565565598319, 45.573190757247687 ], [ -73.541623214839433, 45.573208305718765 ], [ -73.541695487057041, 45.573101263012916 ], [ -73.541604776938868, 45.573075596361718 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 3, "ID_UEV": "02004842", "CIVIQUE_DE": "12074", "CIVIQUE_FI": "12074", "NOM_RUE": "place Joseph-Tassé (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 2, "NOMBRE_LOG": 1, "ANNEE_CONS": 1984, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "9754-37-9664-9-000-0000", "SUPERFICIE": 382, "SUPERFIC_1": 127, "NO_ARROND_": "REM33", "Shape_Leng": 0.00040047137983200001, "OBJECTID": 3, "Join_Count": 1, "TARGET_FID": 3, "feature_id": "979a38ac-be2f-4093-be88-b7e6910a2318", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 0.99, "heightmax": 9.28, "elevmin": 28.06, "elevmax": 29.52, "bldgarea": 143.43, "comment": " ", "OBJECTID_1": 3, "Shape_Le_1": 0.00040047137983200001, "Shape_Ar_1": 9.0417290252199995e-09, "OBJECTID_12": 3, "Join_Count_1": 2, "TARGET_FID_1": 2, "g_objectid": "1092298", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM33", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1277031", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023975437966490000000", "g_sup_tota": "381.8", "g_geometry": "0.00101576", "g_geomet_1": "4.39413e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00040047137983200001, "Shape_Area_1": 9.0417290252199995e-09, "Shape_Length": 0.00040047169145494257, "Shape_Area": 9.0417290252199995e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.594975488028297, 45.632739264905183 ], [ -73.594918016852944, 45.632685286696699 ], [ -73.594810473224697, 45.63274154468661 ], [ -73.594867987567511, 45.632795565163235 ], [ -73.594975488028297, 45.632739264905183 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 4, "ID_UEV": "02039713", "CIVIQUE_DE": "11859", "CIVIQUE_FI": "11859", "NOM_RUE": "rue De La Gauchetière (MTE+PAT)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 1, "NOMBRE_LOG": 1, "ANNEE_CONS": 1983, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Condominium", "MATRICULE8": "0455-94-0659-2-001-0001", "SUPERFICIE": 68, "SUPERFIC_1": 116, "NO_ARROND_": "REM33", "Shape_Leng": 0.00063253165486299996, "OBJECTID": 4, "Join_Count": 1, "TARGET_FID": 4, "feature_id": "c4d1e4f4-c50c-48ec-b9ee-ffab40efbc78", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 6.56, "heightmax": 22.71, "elevmin": 11.1, "elevmax": 12.5, "bldgarea": 207.68, "comment": " ", "OBJECTID_1": 4, "Shape_Le_1": 0.00063253165486299996, "Shape_Ar_1": 2.3974510001599999e-08, "OBJECTID_12": 4, "Join_Count_1": 1, "TARGET_FID_1": 3, "g_objectid": "1955472", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM33", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "PC-00598", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "6", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": " ", "g_sup_tota": "618.94", "g_geometry": "0.0011282", "g_geomet_1": "7.24501e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00063253165486299996, "Shape_Area_1": 2.3974510001599999e-08, "Shape_Length": 0.00063253256047852144, "Shape_Area": 2.3974510001599999e-08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.498772855782647, 45.638940069728505 ], [ -73.498590755658824, 45.638909169922329 ], [ -73.498547956023287, 45.639033670267736 ], [ -73.498729956322393, 45.639064470249139 ], [ -73.498750556193158, 45.639004570004943 ], [ -73.498772855782647, 45.638940069728505 ] ] ] } },
{ "type": "Feature", "properties": { "OBJECTID_12_13": 5, "ID_UEV": "02051310", "CIVIQUE_DE": " 8445", "CIVIQUE_FI": " 8445", "NOM_RUE": "rue Ontario Est (MTE+MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 0, "NOMBRE_LOG": 0, "ANNEE_CONS": 1982, "CODE_UTILI": "5010", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Immeuble commercial", "CATEGORIE_": "Régulier", "MATRICULE8": "0350-67-8601-5-000-0000", "SUPERFICIE": 1149, "SUPERFIC_1": 351, "NO_ARROND_": "REM22", "Shape_Leng": 0.0011917812485, "OBJECTID": 5, "Join_Count": 2, "TARGET_FID": 5, "feature_id": "8355d6f9-d467-4a42-8a96-95d1b41b1534", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 8.78, "heightmax": 10.91, "elevmin": 13.82, "elevmax": 14.44, "bldgarea": 386.01, "comment": " ", "OBJECTID_1": 5, "Shape_Le_1": 0.0011917812485, "Shape_Ar_1": 4.1180184250799998e-08, "OBJECTID_12": 5, "Join_Count_1": 3, "TARGET_FID_1": 4, "g_objectid": "982914", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM22", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "2242330", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "6", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023035066767940000000", "g_sup_tota": "256.3", "g_geometry": "0.000854019", "g_geomet_1": "2.96762e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.0011917812485, "Shape_Area_1": 4.1180184250799998e-08, "Shape_Length": 0.0011917819040299562, "Shape_Area": 4.1180184250799998e-08 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.514480059407163, 45.596209461697356 ], [ -73.514475159001336, 45.596207861803407 ], [ -73.514307759195674, 45.596157561822054 ], [ -73.514186457738788, 45.596356362356289 ], [ -73.514267058577843, 45.596380562213255 ], [ -73.514257678648903, 45.596395502650353 ], [ -73.514327546978677, 45.596416125004225 ], [ -73.514360758941848, 45.596361462411608 ], [ -73.514379358720362, 45.596367162314721 ], [ -73.514381759010917, 45.596363361779765 ], [ -73.514480059407163, 45.596209461697356 ] ] ], [ [ [ -73.514274540937265, 45.596032593829193 ], [ -73.514273458153525, 45.596034461721104 ], [ -73.514271657710822, 45.59603756168417 ], [ -73.514421059384347, 45.59608076241733 ], [ -73.514426859112234, 45.596082561960714 ], [ -73.514429427575976, 45.596078345039643 ], [ -73.514274540937265, 45.596032593829193 ] ] ] ] } }
]
}

File diff suppressed because one or more lines are too long

View File

@ -1,7 +0,0 @@
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "OBJECTID_12_13": 1713, "ID_UEV": "02000668", "CIVIQUE_DE": " 2420", "CIVIQUE_FI": " 2420", "NOM_RUE": "avenue Haig (MTL)", "SUITE_DEBU": " ", "MUNICIPALI": "50", "ETAGE_HORS": 1, "NOMBRE_LOG": 1, "ANNEE_CONS": 1949, "CODE_UTILI": "1000", "LETTRE_DEB": " ", "LETTRE_FIN": " ", "LIBELLE_UT": "Logement", "CATEGORIE_": "Régulier", "MATRICULE8": "0249-51-1200-1-000-0000", "SUPERFICIE": 383, "SUPERFIC_1": 56, "NO_ARROND_": "REM22", "Shape_Leng": 0.00038257288047299998, "OBJECTID": 1713, "Join_Count": 1, "TARGET_FID": 1713, "feature_id": "6d77b02b-970b-45cb-8514-1b7081555bf0", "md_id": " ", "acqtech": 1360, "acqtech_en": "Lidar", "acqtech_fr": "Lidar", "provider": 461, "provideren": "Municipal", "providerfr": "Municipal", "datemin": "20151124", "datemax": "20151208", "haccmin": 2, "haccmax": 2, "vaccmin": 1, "vaccmax": 1, "heightmin": 2.52, "heightmax": 5.76, "elevmin": 19.89, "elevmax": 20.56, "bldgarea": 65.0, "comment": " ", "OBJECTID_1": 1713, "Shape_Le_1": 0.00038257288047299998, "Shape_Ar_1": 7.5033232981599995e-09, "OBJECTID_12": 1713, "Join_Count_1": 1, "TARGET_FID_1": 1712, "g_objectid": "977865", "g_co_mrc": "66023", "g_code_mun": "66023", "g_arrond": "REM22", "g_anrole": "2019", "g_usag_pre": "Résidentiel", "g_no_lot": "1771425", "g_nb_poly_": "1", "g_utilisat": "1000", "g_nb_logem": "1", "g_nb_locau": " ", "g_descript": "Unité d'évaluation", "g_id_provi": "66023024951120010000000", "g_sup_tota": "383", "g_geometry": "0.00087786", "g_geomet_1": "4.37825e-008", "g_dat_acqu": "2020-02-12T00:00:00", "g_dat_char": "2020-02-17T00:00:00", "Shape_Leng_1": 0.00038257288047299998, "Shape_Area_1": 7.5033232981599995e-09, "Shape_Length": 0.00038257078361344913, "Shape_Area": 7.5033232981599995e-09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.529346163094885, 45.581838259428196 ], [ -73.529341662887418, 45.58183705883323 ], [ -73.52930346328418, 45.581824858630398 ], [ -73.529316662633846, 45.58180435858435 ], [ -73.529318762550815, 45.581801658819529 ], [ -73.529280362398765, 45.581789258967206 ], [ -73.529222562071539, 45.581877758551741 ], [ -73.529241161850109, 45.58188375882844 ], [ -73.529305362652337, 45.581903758851468 ], [ -73.529346163094885, 45.581838259428196 ] ] ] } }
]
}

View File

@ -1,129 +0,0 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 1517,
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-73.54892817129803,
45.605145662442396
],
[
-73.54882817118312,
45.6051322616446
],
[
-73.54801127110323,
45.60502336183873
],
[
-73.54801027105714,
45.60502716237369
],
[
-73.54797037083591,
45.60518346184733
],
[
-73.54871467134495,
45.60528626155178
],
[
-73.54888497056493,
45.6053098615609
],
[
-73.54888507128896,
45.6053098615609
],
[
-73.5488997707078,
45.605253962400525
],
[
-73.54892817129803,
45.605145662442396
]
]
]
},
"properties": {
"OBJECTID_12_13": 1517,
"ID_UEV": "02032924",
"CIVIQUE_DE": " 6255",
"CIVIQUE_FI": " 6255",
"NOM_RUE": "boulevard Joseph-Renaud (ANJ)",
"SUITE_DEBU": " ",
"MUNICIPALI": "50",
"ETAGE_HORS": 3,
"NOMBRE_LOG": 55,
"ANNEE_CONS": 1970,
"CODE_UTILI": "1000",
"LETTRE_DEB": " ",
"LETTRE_FIN": " ",
"LIBELLE_UT": "Logement",
"CATEGORIE_": "R\u00c3\u00a9gulier",
"MATRICULE8": "0151-07-1902-2-000-0000",
"SUPERFICIE": 3768,
"SUPERFIC_1": 4028,
"NO_ARROND_": "REM09",
"Shape_Leng": 0.00218341775519,
"OBJECTID": 1517,
"Join_Count": 1,
"TARGET_FID": 1517,
"feature_id": "480476b7-e71a-4190-853a-9e1be235d6a7",
"md_id": " ",
"acqtech": 1360,
"acqtech_en": "Lidar",
"acqtech_fr": "Lidar",
"provider": 461,
"provideren": "Municipal",
"providerfr": "Municipal",
"datemin": "20151124",
"datemax": "20151208",
"haccmin": 2,
"haccmax": 2,
"vaccmin": 1,
"vaccmax": 1,
"heightmin": 0.51,
"heightmax": 12,
"elevmin": 39.79,
"elevmax": 41.27,
"bldgarea": 1332.57,
"comment": "Detection of Lidar points classified as ground in the building. D\u00c3\u00a9tection de points Lidar classifi\u00c3\u00a9s sol dans le b\u00c3\u00a2timent.",
"OBJECTID_1": 1517,
"Shape_Le_1": 0.00218341775519,
"Shape_Ar_1": 1.53729465013e-07,
"OBJECTID_12": 1517,
"Join_Count_1": 1,
"TARGET_FID_1": 1516,
"g_objectid": "897441",
"g_co_mrc": "66023",
"g_code_mun": "66023",
"g_arrond": "REM09",
"g_anrole": "2019",
"g_usag_pre": "R\u00c3\u00a9sidentiel",
"g_no_lot": "1113068",
"g_nb_poly_": "1",
"g_utilisat": "1000",
"g_nb_logem": "55",
"g_nb_locau": " ",
"g_descript": "Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
"g_id_provi": "66023015107190220000000",
"g_sup_tota": "3768.1",
"g_geometry": "0.00308212",
"g_geomet_1": "4.34238e-007",
"g_dat_acqu": "2020-02-12 00:00:00.0000000",
"g_dat_char": "2020-02-17 00:00:00.0000000",
"Shape_Leng_1": 0.00218341775519,
"Shape_Area_1": 1.53729465013e-07,
"Shape_Length": 0.0021834176681906903,
"Shape_Area": 1.53729465013e-07
}
}
]
}

View File

@ -1,113 +0,0 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 1724,
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-73.5526870721506,
45.60216746215872
],
[
-73.55268167172176,
45.60216656193734
],
[
-73.5524855718516,
45.602128962181894
],
[
-73.55245337162575,
45.602211962412184
],
[
-73.55265497174952,
45.60225046238901
],
[
-73.5526870721506,
45.60216746215872
]
]
]
},
"properties": {
"OBJECTID_12_13": 1724,
"ID_UEV": "02034834",
"CIVIQUE_DE": " 6340",
"CIVIQUE_FI": " 6340",
"NOM_RUE": "avenue Goncourt (ANJ)",
"SUITE_DEBU": " ",
"MUNICIPALI": "50",
"ETAGE_HORS": 2,
"NOMBRE_LOG": 1,
"ANNEE_CONS": 1959,
"CODE_UTILI": "1000",
"LETTRE_DEB": " ",
"LETTRE_FIN": " ",
"LIBELLE_UT": "Logement",
"CATEGORIE_": "R\u00c3\u00a9gulier",
"MATRICULE8": "0051-63-9861-7-000-0000",
"SUPERFICIE": 539,
"SUPERFIC_1": 194,
"NO_ARROND_": "REM09",
"Shape_Leng": 0.000588408191063,
"OBJECTID": 1724,
"Join_Count": 1,
"TARGET_FID": 1724,
"feature_id": "b21198f4-f67b-439d-80b4-db24e6f4783f",
"md_id": " ",
"acqtech": 1360,
"acqtech_en": "Lidar",
"acqtech_fr": "Lidar",
"provider": 461,
"provideren": "Municipal",
"providerfr": "Municipal",
"datemin": "20151124",
"datemax": "20151208",
"haccmin": 2,
"haccmax": 2,
"vaccmin": 1,
"vaccmax": 1,
"heightmin": 0.52,
"heightmax": 5.97,
"elevmin": 41.61,
"elevmax": 42.01,
"bldgarea": 155.68,
"comment": " ",
"OBJECTID_1": 1724,
"Shape_Le_1": 0.000588408191063,
"Shape_Ar_1": 1.79531500018e-08,
"OBJECTID_12": 1724,
"Join_Count_1": 1,
"TARGET_FID_1": 1723,
"g_objectid": "898189",
"g_co_mrc": "66023",
"g_code_mun": "66023",
"g_arrond": "REM09",
"g_anrole": "2019",
"g_usag_pre": "R\u00c3\u00a9sidentiel",
"g_no_lot": "1113889",
"g_nb_poly_": "1",
"g_utilisat": "1000",
"g_nb_logem": "1",
"g_nb_locau": " ",
"g_descript": "Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
"g_id_provi": "66023005163986170000000",
"g_sup_tota": "539.4",
"g_geometry": "0.00101107",
"g_geomet_1": "6.23128e-008",
"g_dat_acqu": "2020-02-12 00:00:00.0000000",
"g_dat_char": "2020-02-17 00:00:00.0000000",
"Shape_Leng_1": 0.000588408191063,
"Shape_Area_1": 1.79531500018e-08,
"Shape_Length": 0.0005884092499674609,
"Shape_Area": 1.79531500018e-08
}
}
]
}

View File

@ -1,221 +0,0 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 1780,
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-73.55164817172573,
45.60430406158321
],
[
-73.5516460718087,
45.60433386241789
],
[
-73.55156767161071,
45.60433106192903
],
[
-73.55115097163997,
45.60431646233491
],
[
-73.55114607213346,
45.604385461919605
],
[
-73.55114607213346,
45.60438556174432
],
[
-73.55118367188891,
45.60438766166129
],
[
-73.55115187186135,
45.6046712619692
],
[
-73.55127527233589,
45.60468216175241
],
[
-73.55127347189318,
45.60469216221355
],
[
-73.55127977164409,
45.604692562411856
],
[
-73.55171607233882,
45.60472526176147
],
[
-73.5517165723619,
45.60472526176147
],
[
-73.55171887192836,
45.60470836170157
],
[
-73.55172141880837,
45.60470853077413
],
[
-73.55172300791043,
45.604697359395686
],
[
-73.55172679675422,
45.604670055978374
],
[
-73.55173049386718,
45.60464274716509
],
[
-73.55173409655129,
45.60461543205662
],
[
-73.55173760840387,
45.604588110652855
],
[
-73.55174102672697,
45.604560783853174
],
[
-73.55174435241992,
45.60453345165752
],
[
-73.55174758458332,
45.60450611406594
],
[
-73.55175072591521,
45.60447877107845
],
[
-73.5517537728183,
45.604451421795716
],
[
-73.55175672709123,
45.604424068915705
],
[
-73.551759588734,
45.60439671063972
],
[
-73.55176235774655,
45.60436934786719
],
[
-73.551765034129,
45.60434197969863
],
[
-73.55176761698192,
45.60431460793285
],
[
-73.55176777436327,
45.604312880335215
],
[
-73.55165277175797,
45.60430426213202
],
[
-73.55164817172573,
45.60430406158321
]
]
]
},
"properties": {
"OBJECTID_12_13": 1780,
"ID_UEV": "02033657",
"CIVIQUE_DE": " 6500",
"CIVIQUE_FI": " 6500",
"NOM_RUE": "boulevard Joseph-Renaud (ANJ)",
"SUITE_DEBU": " ",
"MUNICIPALI": "50",
"ETAGE_HORS": 1,
"NOMBRE_LOG": 0,
"ANNEE_CONS": 1958,
"CODE_UTILI": "5411",
"LETTRE_DEB": " ",
"LETTRE_FIN": " ",
"LIBELLE_UT": "Vente au d\u00c3\u00a9tail de produits d'\u00c3\u00a9picerie (avec boucherie)",
"CATEGORIE_": "R\u00c3\u00a9gulier",
"MATRICULE8": "0051-76-9538-3-000-0000",
"SUPERFICIE": 5577,
"SUPERFIC_1": 1871,
"NO_ARROND_": "REM09",
"Shape_Leng": 0.00203390087769,
"OBJECTID": 1780,
"Join_Count": 1,
"TARGET_FID": 1780,
"feature_id": "44a8eb55-55f9-4b37-8d9f-b350db477add",
"md_id": " ",
"acqtech": 1360,
"acqtech_en": "Lidar",
"acqtech_fr": "Lidar",
"provider": 461,
"provideren": "Municipal",
"providerfr": "Municipal",
"datemin": "20151124",
"datemax": "20151208",
"haccmin": 2,
"haccmax": 2,
"vaccmin": 1,
"vaccmax": 1,
"heightmin": 0.5,
"heightmax": 7,
"elevmin": 39.89,
"elevmax": 41.6,
"bldgarea": 5899.16,
"comment": "Detection of Lidar points classified as ground in the building. D\u00c3\u00a9tection de points Lidar classifi\u00c3\u00a9s sol dans le b\u00c3\u00a2timent.",
"OBJECTID_1": 1780,
"Shape_Le_1": 0.00203390087769,
"Shape_Ar_1": 2.21511888038e-07,
"OBJECTID_12": 1780,
"Join_Count_1": 2,
"TARGET_FID_1": 1779,
"g_objectid": "893051",
"g_co_mrc": "66023",
"g_code_mun": "66023",
"g_arrond": "REM09",
"g_anrole": "2019",
"g_usag_pre": "Commercial",
"g_no_lot": "1113649",
"g_nb_poly_": "1",
"g_utilisat": "5002",
"g_nb_logem": " ",
"g_nb_locau": "16",
"g_descript": "Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
"g_id_provi": "66023005176034780000000",
"g_sup_tota": "10342.2",
"g_geometry": "0.00487279",
"g_geomet_1": "1.1974e-006",
"g_dat_acqu": "2020-02-12 00:00:00.0000000",
"g_dat_char": "2020-02-17 00:00:00.0000000",
"Shape_Leng_1": 0.00203390087769,
"Shape_Area_1": 2.21511888038e-07,
"Shape_Length": 0.0020339027874948317,
"Shape_Area": 2.21511888038e-07
}
}
]
}

View File

@ -1,109 +0,0 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 2195,
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-73.56187987465643,
45.603573161871964
],
[
-73.56154997455167,
45.603344761951234
],
[
-73.56133437468162,
45.603498162010624
],
[
-73.56166427478644,
45.60372666175607
],
[
-73.56187987465643,
45.603573161871964
]
]
]
},
"properties": {
"OBJECTID_12_13": 2195,
"ID_UEV": "02036049",
"CIVIQUE_DE": " 7801",
"CIVIQUE_FI": " 7811",
"NOM_RUE": "boulevard Louis-H.-La Fontaine (ANJ+MTL)",
"SUITE_DEBU": " ",
"MUNICIPALI": "50",
"ETAGE_HORS": 0,
"NOMBRE_LOG": 0,
"ANNEE_CONS": 1977,
"CODE_UTILI": "6000",
"LETTRE_DEB": " ",
"LETTRE_FIN": " ",
"LIBELLE_UT": "Immeuble \u00c3\u00a0 bureaux",
"CATEGORIE_": "R\u00c3\u00a9gulier",
"MATRICULE8": "9951-95-9324-0-000-0000",
"SUPERFICIE": 3138,
"SUPERFIC_1": 5154,
"NO_ARROND_": "REM09",
"Shape_Leng": 0.00133181909486,
"OBJECTID": 2195,
"Join_Count": 1,
"TARGET_FID": 2195,
"feature_id": "0450eea8-8539-49b3-8f82-3012ab8a4fbf",
"md_id": " ",
"acqtech": 1360,
"acqtech_en": "Lidar",
"acqtech_fr": "Lidar",
"provider": 461,
"provideren": "Municipal",
"providerfr": "Municipal",
"datemin": "20151124",
"datemax": "20151208",
"haccmin": 2,
"haccmax": 2,
"vaccmin": 1,
"vaccmax": 1,
"heightmin": 0.88,
"heightmax": 12,
"elevmin": 42.22,
"elevmax": 42.79,
"bldgarea": 865.78,
"comment": " ",
"OBJECTID_1": 2195,
"Shape_Le_1": 0.00133181909486,
"Shape_Ar_1": 9.98769750036e-08,
"OBJECTID_12": 2195,
"Join_Count_1": 1,
"TARGET_FID_1": 2194,
"g_objectid": "899552",
"g_co_mrc": "66023",
"g_code_mun": "66023",
"g_arrond": "REM09",
"g_anrole": "2019",
"g_usag_pre": "Service",
"g_no_lot": "1114291",
"g_nb_poly_": "1",
"g_utilisat": "6000",
"g_nb_logem": " ",
"g_nb_locau": "12",
"g_descript": "Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
"g_id_provi": "66023995195932400000000",
"g_sup_tota": "3137.8",
"g_geometry": "0.00248417",
"g_geomet_1": "3.5989e-007",
"g_dat_acqu": "2020-02-12 00:00:00.0000000",
"g_dat_char": "2020-02-17 00:00:00.0000000",
"Shape_Leng_1": 0.00133181909486,
"Shape_Area_1": 9.98769750036e-08,
"Shape_Length": 0.001331818832464929,
"Shape_Area": 9.98769750036e-08
}
}
]
}

View File

@ -1,121 +0,0 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 2864,
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-73.55628837310991,
45.60732526295055
],
[
-73.55628287285629,
45.607324262904456
],
[
-73.55609247288925,
45.607288563416546
],
[
-73.55607107262188,
45.60734486277528
],
[
-73.55612487276466,
45.60735496306114
],
[
-73.55609867281544,
45.60742366317157
],
[
-73.55624087271804,
45.60745026331904
],
[
-73.55628837310991,
45.60732526295055
]
]
]
},
"properties": {
"OBJECTID_12_13": 2864,
"ID_UEV": "02033771",
"CIVIQUE_DE": " 8212",
"CIVIQUE_FI": " 8212",
"NOM_RUE": "avenue Peterborough (ANJ)",
"SUITE_DEBU": " ",
"MUNICIPALI": "50",
"ETAGE_HORS": 1,
"NOMBRE_LOG": 1,
"ANNEE_CONS": 1960,
"CODE_UTILI": "1000",
"LETTRE_DEB": " ",
"LETTRE_FIN": " ",
"LIBELLE_UT": "Logement",
"CATEGORIE_": "R\u00c3\u00a9gulier",
"MATRICULE8": "0051-49-2041-2-000-0000",
"SUPERFICIE": 450,
"SUPERFIC_1": 176,
"NO_ARROND_": "REM09",
"Shape_Leng": 0.000666191644361,
"OBJECTID": 2864,
"Join_Count": 1,
"TARGET_FID": 2864,
"feature_id": "bdd1f0fe-89de-46d2-80dc-87d3636df60a",
"md_id": " ",
"acqtech": 1360,
"acqtech_en": "Lidar",
"acqtech_fr": "Lidar",
"provider": 461,
"provideren": "Municipal",
"providerfr": "Municipal",
"datemin": "20151124",
"datemax": "20151208",
"haccmin": 2,
"haccmax": 2,
"vaccmin": 1,
"vaccmax": 1,
"heightmin": 1.17,
"heightmax": 7.5,
"elevmin": 45.48,
"elevmax": 45.96,
"bldgarea": 193.18,
"comment": " ",
"OBJECTID_1": 2864,
"Shape_Le_1": 0.000666191644361,
"Shape_Ar_1": 2.22753099997e-08,
"OBJECTID_12": 2864,
"Join_Count_1": 1,
"TARGET_FID_1": 2863,
"g_objectid": "897744",
"g_co_mrc": "66023",
"g_code_mun": "66023",
"g_arrond": "REM09",
"g_anrole": "2019",
"g_usag_pre": "R\u00c3\u00a9sidentiel",
"g_no_lot": "1113400",
"g_nb_poly_": "1",
"g_utilisat": "1000",
"g_nb_logem": "1",
"g_nb_locau": " ",
"g_descript": "Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
"g_id_provi": "66023005149204120000000",
"g_sup_tota": "450.1",
"g_geometry": "0.000958907",
"g_geomet_1": "5.20226e-008",
"g_dat_acqu": "2020-02-12 00:00:00.0000000",
"g_dat_char": "2020-02-17 00:00:00.0000000",
"Shape_Leng_1": 0.000666191644361,
"Shape_Area_1": 2.22753099997e-08,
"Shape_Length": 0.0006661919640545334,
"Shape_Area": 2.22753099997e-08
}
}
]
}

View File

@ -1,109 +0,0 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 3212,
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-73.56319817555533,
45.607645262419
],
[
-73.56305237566659,
45.60758216238696
],
[
-73.56292617560246,
45.60772556198515
],
[
-73.56307197639057,
45.60778876184196
],
[
-73.56319817555533,
45.607645262419
]
]
]
},
"properties": {
"OBJECTID_12_13": 3212,
"ID_UEV": "02034223",
"CIVIQUE_DE": " 7950",
"CIVIQUE_FI": " 7960",
"NOM_RUE": "boulevard M\u00c3\u00a9tropolitain Est (ANJ+MTE+MTL+SLN)",
"SUITE_DEBU": " ",
"MUNICIPALI": "50",
"ETAGE_HORS": 0,
"NOMBRE_LOG": 0,
"ANNEE_CONS": 1990,
"CODE_UTILI": "6000",
"LETTRE_DEB": " ",
"LETTRE_FIN": " ",
"LIBELLE_UT": "Immeuble \u00c3\u00a0 bureaux",
"CATEGORIE_": "R\u00c3\u00a9gulier",
"MATRICULE8": "9951-89-7779-0-000-0000",
"SUPERFICIE": 1074,
"SUPERFIC_1": 472,
"NO_ARROND_": "REM09",
"Shape_Leng": 0.000699899255932,
"OBJECTID": 3212,
"Join_Count": 1,
"TARGET_FID": 3212,
"feature_id": "c26f3093-10e8-40fa-a891-5b39a78c13a0",
"md_id": " ",
"acqtech": 1360,
"acqtech_en": "Lidar",
"acqtech_fr": "Lidar",
"provider": 461,
"provideren": "Municipal",
"providerfr": "Municipal",
"datemin": "20151124",
"datemax": "20151208",
"haccmin": 2,
"haccmax": 2,
"vaccmin": 1,
"vaccmax": 1,
"heightmin": 1.12,
"heightmax": 11.43,
"elevmin": 41.2,
"elevmax": 41.56,
"bldgarea": 250.44,
"comment": " ",
"OBJECTID_1": 3212,
"Shape_Le_1": 0.000699899255932,
"Shape_Ar_1": 2.888454e-08,
"OBJECTID_12": 3212,
"Join_Count_1": 1,
"TARGET_FID_1": 3211,
"g_objectid": "899600",
"g_co_mrc": "66023",
"g_code_mun": "66023",
"g_arrond": "REM09",
"g_anrole": "2019",
"g_usag_pre": "Service",
"g_no_lot": "1113835",
"g_nb_poly_": "1",
"g_utilisat": "6000",
"g_nb_logem": " ",
"g_nb_locau": "2",
"g_descript": "Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
"g_id_provi": "66023995189777900000000",
"g_sup_tota": "1074.3",
"g_geometry": "0.00146921",
"g_geomet_1": "1.24096e-007",
"g_dat_acqu": "2020-02-12 00:00:00.0000000",
"g_dat_char": "2020-02-17 00:00:00.0000000",
"Shape_Leng_1": 0.000699899255932,
"Shape_Area_1": 2.888454e-08,
"Shape_Length": 0.0006998985885455892,
"Shape_Area": 2.888454e-08
}
}
]
}

View File

@ -1,145 +0,0 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 4559,
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-73.54161506788103,
45.601481661649416
],
[
-73.5416109678718,
45.601480262304335
],
[
-73.54153516761386,
45.601453861806306
],
[
-73.54158746768746,
45.60137996181584
],
[
-73.54146516798306,
45.60133946174682
],
[
-73.54084306825297,
45.60113376161388
],
[
-73.5406921773021,
45.60108392478338
],
[
-73.54052077461404,
45.60136262198745
],
[
-73.54052156781609,
45.60136286210644
],
[
-73.54137536797879,
45.60162866213312
],
[
-73.54141166821387,
45.60164006193935
],
[
-73.54136246000951,
45.60171796031568
],
[
-73.5414426669455,
45.60174301812583
],
[
-73.54161506788103,
45.601481661649416
]
]
]
},
"properties": {
"OBJECTID_12_13": 4559,
"ID_UEV": "02033470",
"CIVIQUE_DE": " 8200",
"CIVIQUE_FI": " 8200",
"NOM_RUE": "avenue Ch\u00c3\u00a9nier (ANJ)",
"SUITE_DEBU": " ",
"MUNICIPALI": "50",
"ETAGE_HORS": 1,
"NOMBRE_LOG": 0,
"ANNEE_CONS": 1968,
"CODE_UTILI": "7451",
"LETTRE_DEB": " ",
"LETTRE_FIN": " ",
"LIBELLE_UT": "Ar\u00c3\u00a9na et activit\u00c3\u00a9s connexes (patinage sur glace)",
"CATEGORIE_": "R\u00c3\u00a9gulier",
"MATRICULE8": "0151-52-7076-5-000-0000",
"SUPERFICIE": 9352,
"SUPERFIC_1": 2648,
"NO_ARROND_": "REM09",
"Shape_Leng": 0.00286764248284,
"OBJECTID": 4559,
"Join_Count": 1,
"TARGET_FID": 4559,
"feature_id": "7a5f890f-f521-427b-ab99-5865d0c7ec10",
"md_id": " ",
"acqtech": 1360,
"acqtech_en": "Lidar",
"acqtech_fr": "Lidar",
"provider": 461,
"provideren": "Municipal",
"providerfr": "Municipal",
"datemin": "20151124",
"datemax": "20151208",
"haccmin": 2,
"haccmax": 2,
"vaccmin": 1,
"vaccmax": 1,
"heightmin": 0.51,
"heightmax": 11.79,
"elevmin": 33.17,
"elevmax": 36.46,
"bldgarea": 2758.61,
"comment": "Detection of Lidar points classified as ground in the building. D\u00c3\u00a9tection de points Lidar classifi\u00c3\u00a9s sol dans le b\u00c3\u00a2timent.",
"OBJECTID_1": 4559,
"Shape_Le_1": 0.00286764248284,
"Shape_Ar_1": 3.15889298845e-07,
"OBJECTID_12": 4559,
"Join_Count_1": 3,
"TARGET_FID_1": 4558,
"g_objectid": "893321",
"g_co_mrc": "66023",
"g_code_mun": "66023",
"g_arrond": "REM09",
"g_anrole": "2019",
"g_usag_pre": "Institutionnel",
"g_no_lot": "1113274",
"g_nb_poly_": "1",
"g_utilisat": "6813",
"g_nb_logem": " ",
"g_nb_locau": " ",
"g_descript": "Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
"g_id_provi": "66023015153914960000000",
"g_sup_tota": "13058.8",
"g_geometry": "0.00609962",
"g_geomet_1": "1.50601e-006",
"g_dat_acqu": "2020-02-12 00:00:00.0000000",
"g_dat_char": "2020-02-17 00:00:00.0000000",
"Shape_Leng_1": 0.00286764248284,
"Shape_Area_1": 3.15889298845e-07,
"Shape_Length": 0.0028676439122661468,
"Shape_Area": 3.15889298845e-07
}
}
]
}

View File

@ -1,113 +0,0 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 839,
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-73.53597016639003,
45.594489960643216
],
[
-73.5359648657859,
45.594488360749324
],
[
-73.53570136622506,
45.59440716096174
],
[
-73.53559426596257,
45.59457846112713
],
[
-73.53586306612755,
45.59466126080861
],
[
-73.53597016639003,
45.594489960643216
]
]
]
},
"properties": {
"OBJECTID_12_13": 839,
"ID_UEV": "02053563",
"CIVIQUE_DE": " 7744",
"CIVIQUE_FI": " 7744",
"NOM_RUE": "rue Sherbrooke Est (MTE+MTL)",
"SUITE_DEBU": " ",
"MUNICIPALI": "50",
"ETAGE_HORS": 3,
"NOMBRE_LOG": 0,
"ANNEE_CONS": 1984,
"CODE_UTILI": "6000",
"LETTRE_DEB": " ",
"LETTRE_FIN": " ",
"LIBELLE_UT": "Immeuble \u00c3\u00a0 bureaux",
"CATEGORIE_": "R\u00c3\u00a9gulier",
"MATRICULE8": "0250-05-1114-8-000-0000",
"SUPERFICIE": 899,
"SUPERFIC_1": 1470,
"NO_ARROND_": "REM22",
"Shape_Leng": 0.000966577525564,
"OBJECTID": 839,
"Join_Count": 1,
"TARGET_FID": 839,
"feature_id": "47324f3e-be9b-4567-862b-5b790cc29e31",
"md_id": " ",
"acqtech": 1360,
"acqtech_en": "Lidar",
"acqtech_fr": "Lidar",
"provider": 461,
"provideren": "Municipal",
"providerfr": "Municipal",
"datemin": "20151124",
"datemax": "20151208",
"haccmin": 2,
"haccmax": 2,
"vaccmin": 1,
"vaccmax": 1,
"heightmin": 4.5,
"heightmax": 12,
"elevmin": 28.66,
"elevmax": 31.51,
"bldgarea": 476.19,
"comment": " ",
"OBJECTID_1": 839,
"Shape_Le_1": 0.000966577525564,
"Shape_Ar_1": 5.49089399978e-08,
"OBJECTID_12": 839,
"Join_Count_1": 1,
"TARGET_FID_1": 838,
"g_objectid": "1052007",
"g_co_mrc": "66023",
"g_code_mun": "66023",
"g_arrond": "REM22",
"g_anrole": "2019",
"g_usag_pre": "Service",
"g_no_lot": "1323631",
"g_nb_poly_": "1",
"g_utilisat": "6000",
"g_nb_logem": " ",
"g_nb_locau": "5",
"g_descript": "Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
"g_id_provi": "66023025005111480000000",
"g_sup_tota": "899.2",
"g_geometry": "0.00137524",
"g_geomet_1": "1.03313e-007",
"g_dat_acqu": "2020-02-12 00:00:00.0000000",
"g_dat_char": "2020-02-17 00:00:00.0000000",
"Shape_Leng_1": 0.000966577525564,
"Shape_Area_1": 5.49089399978e-08,
"Shape_Length": 0.000966578213732475,
"Shape_Area": 5.49089399978e-08
}
}
]
}

View File

@ -1,311 +0,0 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 9526,
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-73.56037817321408,
45.57755455739698
],
[
-73.56032347284997,
45.5775361572679
],
[
-73.56031137337112,
45.5775311570373
],
[
-73.56026317330674,
45.57750815687598
],
[
-73.56026297275793,
45.57750795722649
],
[
-73.5602523733483,
45.577524556912806
],
[
-73.56017597324251,
45.577500456880614
],
[
-73.56017337330252,
45.57750445706512
],
[
-73.56015697326569,
45.57752955714341
],
[
-73.56011457292914,
45.57751595669612
],
[
-73.5600934730353,
45.57754835657147
],
[
-73.5596595717318,
45.57740905698245
],
[
-73.55965687196704,
45.57741305716689
],
[
-73.55962537231306,
45.577461056682466
],
[
-73.55958387219789,
45.57744765678399
],
[
-73.55957857159376,
45.57744595706532
],
[
-73.55944467243364,
45.57765675725358
],
[
-73.5594445717096,
45.57765685707835
],
[
-73.55948407173247,
45.577669657129036
],
[
-73.55940487203719,
45.57779035693949
],
[
-73.55953937194442,
45.57783385714686
],
[
-73.5595467715662,
45.577822656990065
],
[
-73.55979037182817,
45.57790145738642
],
[
-73.55977687210492,
45.57792215708196
],
[
-73.55973907180066,
45.577909857054294
],
[
-73.55973397174535,
45.577908456809894
],
[
-73.55968977186546,
45.57798675718317
],
[
-73.55965797183791,
45.57797795731693
],
[
-73.55965787201313,
45.57797805714165
],
[
-73.55963357233145,
45.578015857445905
],
[
-73.55966267169492,
45.578025056611125
],
[
-73.5595531720412,
45.57819585675344
],
[
-73.55955067192593,
45.578199657288394
],
[
-73.55969427207293,
45.578245656711715
],
[
-73.55970147204528,
45.57824795717755
],
[
-73.55990817312363,
45.57793315668988
],
[
-73.56008177285548,
45.57798935712316
],
[
-73.5601113731413,
45.577945956740564
],
[
-73.56037817321408,
45.57755455739698
]
]
],
[
[
[
-73.5593626722495,
45.577468457203565
],
[
-73.55935757219419,
45.57746655693609
],
[
-73.55929927184388,
45.57744455682092
],
[
-73.55927227239744,
45.57747985700985
],
[
-73.55933557207896,
45.57750375739255
],
[
-73.5593626722495,
45.577468457203565
]
]
],
[
[
[
-73.55925947234675,
45.57742965685321
],
[
-73.55925397209307,
45.57742815678404
],
[
-73.5592286723653,
45.57742095681175
],
[
-73.55920957166438,
45.577454356733256
],
[
-73.55920737192264,
45.57745815726821
],
[
-73.5592321716274,
45.57746455684389
],
[
-73.55923657201015,
45.57746605691307
],
[
-73.55925947234675,
45.57742965685321
]
]
]
]
},
"properties": {
"OBJECTID_12_13": 9526,
"ID_UEV": "02055359",
"CIVIQUE_DE": " 5750",
"CIVIQUE_FI": " 5750",
"NOM_RUE": "boulevard Rosemont (MTL)",
"SUITE_DEBU": " ",
"MUNICIPALI": "50",
"ETAGE_HORS": 0,
"NOMBRE_LOG": 0,
"ANNEE_CONS": 1923,
"CODE_UTILI": "6911",
"LETTRE_DEB": " ",
"LETTRE_FIN": " ",
"LIBELLE_UT": "\u00c3\u2030glise, synagogue, mosqu\u00c3\u00a9e et temple",
"CATEGORIE_": "R\u00c3\u00a9gulier",
"MATRICULE8": "0048-16-8416-5-000-0000",
"SUPERFICIE": 24793,
"SUPERFIC_1": 0,
"NO_ARROND_": "REM24",
"Shape_Leng": 0.00384776818364,
"OBJECTID": 9526,
"Join_Count": 3,
"TARGET_FID": 9526,
"feature_id": "5bfd7e8c-95aa-4782-9f2f-ed07d1dd2294",
"md_id": " ",
"acqtech": 1360,
"acqtech_en": "Lidar",
"acqtech_fr": "Lidar",
"provider": 461,
"provideren": "Municipal",
"providerfr": "Municipal",
"datemin": "20151124",
"datemax": "20151208",
"haccmin": 2,
"haccmax": 2,
"vaccmin": 1,
"vaccmax": 1,
"heightmin": 2.1,
"heightmax": 12,
"elevmin": 38.08,
"elevmax": 38.57,
"bldgarea": 25,
"comment": " ",
"OBJECTID_1": 9526,
"Shape_Le_1": 0.00384776818364,
"Shape_Ar_1": 3.92694421841e-07,
"OBJECTID_12": 9526,
"Join_Count_1": 1,
"TARGET_FID_1": 9525,
"g_objectid": "1586794",
"g_co_mrc": "66023",
"g_code_mun": "66023",
"g_arrond": "REM24",
"g_anrole": "2019",
"g_usag_pre": "Institutionnel",
"g_no_lot": "1361698",
"g_nb_poly_": "1",
"g_utilisat": "6911",
"g_nb_logem": " ",
"g_nb_locau": "2",
"g_descript": "Unit\u00c3\u00a9 d'\u00c3\u00a9valuation",
"g_id_provi": "66023004816841650000000",
"g_sup_tota": "24792.9",
"g_geometry": "0.00743004",
"g_geomet_1": "2.85762e-006",
"g_dat_acqu": "2020-02-12 00:00:00.0000000",
"g_dat_char": "2020-02-17 00:00:00.0000000",
"Shape_Leng_1": 0.00384776818364,
"Shape_Area_1": 3.92694421841e-07,
"Shape_Length": 0.0038477700316121004,
"Shape_Area": 3.92694421841e-07
}
}
]
}

21
main.py
View File

@ -8,7 +8,6 @@ from hub.imports.construction_factory import ConstructionFactory
from hub.imports.usage_factory import UsageFactory
from hub.imports.weather_factory import WeatherFactory
from hub.imports.results_factory import ResultFactory
from hub.exports.exports_factory import ExportsFactory
from scripts.energy_system_analysis_report import EnergySystemAnalysisReport
from scripts import random_assignation
from hub.imports.energy_systems_factory import EnergySystemsFactory
@ -17,7 +16,7 @@ from scripts.energy_system_retrofit_results import system_results, new_system_re
from scripts.energy_system_sizing_and_simulation_factory import EnergySystemsSimulationFactory
from scripts.costs.cost import Cost
from scripts.costs.constants import SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV
from hub.exports.exports_factory import ExportsFactory
# Specify the GeoJSON file path
geojson_file = process_geojson(x=-73.5681295982132, y=45.49218262677643, diff=0.0001)
file_path = (Path(__file__).parent.parent / 'input_files' / f'{geojson_file}')
@ -32,6 +31,7 @@ city = GeometryFactory('geojson',
function_to_hub=Dictionaries().montreal_function_to_hub_function).city
# Enrich city data
ConstructionFactory('nrcan', city).enrich()
UsageFactory('nrcan', city).enrich()
WeatherFactory('epw', city).enrich()
ExportsFactory('sra', city, output_path).export()
@ -39,19 +39,24 @@ sra_path = (output_path / f'{city.name}_sra.xml').resolve()
subprocess.run(['sra', str(sra_path)])
ResultFactory('sra', city, output_path).enrich()
energy_plus_workflow(city)
ExportsFactory('obj', city, output_path).export()
random_assignation.call_random(city.buildings, random_assignation.residential_systems_percentage)
EnergySystemsFactory('montreal_custom', city).enrich()
SystemSizing(city.buildings).montreal_custom()
current_system = system_results(city.buildings)
current_system = new_system_results(city.buildings)
random_assignation.call_random(city.buildings, random_assignation.residential_new_systems_percentage)
EnergySystemsFactory('montreal_future', city).enrich()
for building in city.buildings:
EnergySystemsSimulationFactory('archetype1', building=building, output_path=output_path).enrich()
new_system = new_system_results(city.buildings)
# EnergySystemAnalysisReport(city, output_path).create_report(current_system, new_system)
# for building in city.buildings:
# costs = Cost(building=building, retrofit_scenario=SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV).life_cycle
# costs.loc['global_operational_costs', f'Scenario {SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV}'].to_csv(output_path / f'{building.name}_op.csv')
new_system = system_results(city.buildings)
EnergySystemAnalysisReport(city, output_path).create_report(current_system, new_system)
for building in city.buildings:
costs = Cost(building=building, retrofit_scenario=SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV).life_cycle
costs.to_csv(output_path / f'{building.name}_lcc.csv')
(costs.loc['global_operational_costs', f'Scenario {SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV}'].
to_csv(output_path / f'{building.name}_op.csv'))
costs.loc['global_capital_costs', f'Scenario {SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV}'].to_csv(
output_path / f'{building.name}_cc.csv')

View File

@ -273,7 +273,7 @@ class CapitalCosts(CostBase):
if generation_system.system_type != cte.PHOTOVOLTAIC:
heating_capacity = generation_system.nominal_heat_output or 0
cooling_capacity = generation_system.nominal_cooling_output or 0
installed_capacity = max(heating_capacity, cooling_capacity)
installed_capacity = max(heating_capacity, cooling_capacity) / 1000
if cte.DOMESTIC_HOT_WATER in demand_types and cte.HEATING not in demand_types:
component_categories.append('dhw')
sizes.append(installed_capacity)

View File

@ -127,7 +127,7 @@ class Cost:
life_cycle_costs_capital_skin = self._npv_from_list(df_capital_costs_skin.values.tolist())
life_cycle_costs_capital_systems = self._npv_from_list(df_capital_costs_systems.values.tolist())
life_cycle_costs_end_of_life_costs = self._npv_from_list(df_end_of_life_costs.values.tolist())
life_cycle_operational_costs = self._npv_from_list([df_operational_costs])
life_cycle_operational_costs = self._npv_from_list(df_operational_costs)
life_cycle_maintenance_costs = self._npv_from_list(df_maintenance_costs.values.tolist())
life_cycle_operational_incomes = self._npv_from_list(df_operational_incomes.values.tolist())
life_cycle_capital_incomes = self._npv_from_list(df_capital_incomes.values.tolist())

View File

@ -45,7 +45,7 @@ class PeakLoad:
conditioning_peak[i] = self._building.heating_peak_load[cte.MONTH][i] * heating
else:
conditioning_peak[i] = self._building.cooling_peak_load[cte.MONTH][i] * cooling
monthly_electricity_peak[i] += 0.8 * conditioning_peak[i]
monthly_electricity_peak[i] += 0.8 * conditioning_peak[i] / 3600
electricity_peak_load_results = pd.DataFrame(
monthly_electricity_peak,

View File

@ -51,7 +51,7 @@ class TotalOperationalCosts(CostBase):
if fuel.type in fuel_consumption_breakdown.keys():
if fuel.type == cte.ELECTRICITY:
variable_electricity_cost_year_0 = (
total_electricity_consumption / cte.WATTS_HOUR_TO_JULES * fuel.variable[0]
total_electricity_consumption * fuel.variable[0] / 1000
)
peak_electricity_cost_year_0 = peak_electricity_demand * fuel.fixed_power * 12
monthly_electricity_cost_year_0 = fuel.fixed_monthly * 12 * factor

View File

@ -197,9 +197,9 @@ class EnergySystemAnalysisReport:
def building_system_retrofit_results(self, building_name, current_system, new_system):
current_system_archetype = current_system[f'{building_name}']['Energy System Archetype']
current_system_heating = current_system[f'{building_name}']['Heating System']
current_system_cooling = current_system[f'{building_name}']['Cooling System']
current_system_dhw = current_system[f'{building_name}']['DHW System']
current_system_heating = current_system[f'{building_name}']['Heating Equipments']
current_system_cooling = current_system[f'{building_name}']['Cooling Equipments']
current_system_dhw = current_system[f'{building_name}']['DHW Equipments']
current_system_pv = current_system[f'{building_name}']['Photovoltaic System Capacity']
current_system_heating_fuel = current_system[f'{building_name}']['Heating Fuel']
current_system_hvac_consumption = current_system[f'{building_name}']['Yearly HVAC Energy Consumption (MWh)']
@ -209,9 +209,9 @@ class EnergySystemAnalysisReport:
current_operational = current_system[f'{building_name}']['Energy System Average Yearly Operational Cost (CAD)']
current_lcc = current_system[f'{building_name}']['Energy System Life Cycle Cost (CAD)']
new_system_archetype = new_system[f'{building_name}']['Energy System Archetype']
new_system_heating = new_system[f'{building_name}']['Heating System']
new_system_cooling = new_system[f'{building_name}']['Cooling System']
new_system_dhw = new_system[f'{building_name}']['DHW System']
new_system_heating = new_system[f'{building_name}']['Heating Equipments']
new_system_cooling = new_system[f'{building_name}']['Cooling Equipments']
new_system_dhw = new_system[f'{building_name}']['DHW Equipments']
new_system_pv = new_system[f'{building_name}']['Photovoltaic System Capacity']
new_system_heating_fuel = new_system[f'{building_name}']['Heating Fuel']
new_system_hvac_consumption = new_system[f'{building_name}']['Yearly HVAC Energy Consumption (MWh)']
@ -224,9 +224,9 @@ class EnergySystemAnalysisReport:
energy_system_table_data = [
["Detail", "Existing System", "Proposed System"],
["Energy System Archetype", current_system_archetype, new_system_archetype],
["Heating System", current_system_heating, new_system_heating],
["Cooling System", current_system_cooling, new_system_cooling],
["DHW System", current_system_dhw, new_system_dhw],
["Heating Equipments", current_system_heating, new_system_heating],
["Cooling Equipments", current_system_cooling, new_system_cooling],
["DHW Equipments", current_system_dhw, new_system_dhw],
["Photovoltaic System Capacity", current_system_pv, new_system_pv],
["Heating Fuel", current_system_heating_fuel, new_system_heating_fuel],
["Yearly HVAC Energy Consumption (MWh)", current_system_hvac_consumption, new_system_hvac_consumption],

View File

@ -3,9 +3,9 @@ import hub.helpers.constants as cte
def system_results(buildings):
system_performance_summary = {}
fields = ["Energy System Archetype", "Heating System", "Cooling System", "DHW System",
fields = ["Energy System Archetype", "Heating Equipments", "Cooling Equipments", "DHW Equipments",
"Photovoltaic System Capacity", "Heating Fuel", "Yearly HVAC Energy Consumption (MWh)",
"DHW Energy Consumption (MWH)", "PV Yearly Production (kWh)",
"DHW Energy Consumption (MWH)", "PV Yearly Production (kWh)", "LCC Analysis Duration (Years)",
"Energy System Capital Cost (CAD)", "Energy System Average Yearly Operational Cost (CAD)",
"Energy System Life Cycle Cost (CAD)"]
for building in buildings:
@ -19,19 +19,28 @@ def system_results(buildings):
energy_systems = building.energy_systems
for energy_system in energy_systems:
demand_types = energy_system.demand_types
if cte.HEATING and cte.DOMESTIC_HOT_WATER in demand_types:
system_performance_summary[f'{building.name}']['Heating System'] = energy_system.name
system_performance_summary[f'{building.name}']['DHW System'] = energy_system.name
for generation_system in energy_system.generation_systems:
fuels.append(generation_system.fuel_type)
elif cte.DOMESTIC_HOT_WATER in energy_system.demand_types:
system_performance_summary[f'{building.name}']['DHW System'] = energy_system.name
elif cte.HEATING in energy_system.demand_types:
system_performance_summary[f'{building.name}']['Heating System'] = energy_system.name
for generation_system in energy_system.generation_systems:
fuels.append(generation_system.fuel_type)
elif cte.COOLING in energy_system.demand_types:
system_performance_summary[f'{building.name}']['Cooling System'] = energy_system.name
for demand_type in demand_types:
if demand_type == cte.COOLING:
equipments = []
for generation_system in energy_system.generation_systems:
if generation_system.fuel_type == cte.ELECTRICITY:
equipments.append(generation_system.name or generation_system.system_type)
cooling_equipments = ", ".join(equipments)
system_performance_summary[f'{building.name}']['Cooling Equipments'] = cooling_equipments
elif demand_type == cte.HEATING:
equipments = []
for generation_system in energy_system.generation_systems:
if generation_system.nominal_heat_output is not None:
equipments.append(generation_system.name or generation_system.system_type)
fuels.append(generation_system.fuel_type)
heating_equipments = ", ".join(equipments)
system_performance_summary[f'{building.name}']['Heating Equipments'] = heating_equipments
elif demand_type == cte.DOMESTIC_HOT_WATER:
equipments = []
for generation_system in energy_system.generation_systems:
equipments.append(generation_system.name or generation_system.system_type)
dhw_equipments = ", ".join(equipments)
system_performance_summary[f'{building.name}']['DHW Equipments'] = dhw_equipments
for generation_system in energy_system.generation_systems:
if generation_system.system_type == cte.PHOTOVOLTAIC:
system_performance_summary[f'{building.name}'][
@ -47,9 +56,9 @@ def system_results(buildings):
def new_system_results(buildings):
new_system_performance_summary = {}
fields = ["Energy System Archetype", "Heating System", "Cooling System", "DHW System",
fields = ["Energy System Archetype", "Heating Equipments", "Cooling Equipments", "DHW Equipments",
"Photovoltaic System Capacity", "Heating Fuel", "Yearly HVAC Energy Consumption (MWh)",
"DHW Energy Consumption (MWH)", "PV Yearly Production (kWh)",
"DHW Energy Consumption (MWH)", "PV Yearly Production (kWh)", "LCC Analysis Duration (Years)",
"Energy System Capital Cost (CAD)", "Energy System Average Yearly Operational Cost (CAD)",
"Energy System Life Cycle Cost (CAD)"]
for building in buildings:

View File

@ -15,8 +15,8 @@ from hub.city_model_structure.building import Building
energy_systems_format = 'montreal_custom'
# parameters:
residential_systems_percentage = {'system 1 gas': 100,
'system 1 electricity': 0,
residential_systems_percentage = {'system 1 gas': 44,
'system 1 electricity': 6,
'system 2 gas': 0,
'system 2 electricity': 0,
'system 3 and 4 gas': 0,
@ -25,8 +25,8 @@ residential_systems_percentage = {'system 1 gas': 100,
'system 5 electricity': 0,
'system 6 gas': 0,
'system 6 electricity': 0,
'system 8 gas': 0,
'system 8 electricity': 0}
'system 8 gas': 44,
'system 8 electricity': 6}
residential_new_systems_percentage = {'PV+ASHP+GasBoiler+TES': 100,
'PV+4Pipe+DHW': 0,

View File

@ -1,9 +1,4 @@
import subprocess
import hub.helpers.constants as cte
import matplotlib.pyplot as plt
import random
import matplotlib.colors as mcolors
from matplotlib import cm
import datetime
class LatexReport:

View File

@ -18,7 +18,7 @@ class Archetype1:
self._hourly_cooling_demand = [demand / 3600 for demand in building.cooling_demand[cte.HOUR]]
self._hourly_dhw_demand = building.domestic_hot_water_heat_demand[cte.HOUR]
self._output_path = output_path
self._t_out = building.external_temperature[cte.HOUR]
self._t_out = [0] + building.external_temperature[cte.HOUR]
def hvac_sizing(self):
storage_factor = 3
@ -32,11 +32,11 @@ class Archetype1:
(self._heating_peak_load * storage_factor) / (cte.WATER_HEAT_CAPACITY * cte.WATER_DENSITY * 30))
return heat_pump, boiler, thermal_storage
def hvac_simulation(self):
def heating_system_simulation(self):
hp, boiler, tes = self.hvac_sizing()
cop_curve_coefficients = [float(coefficient) for coefficient in hp.heat_efficiency_curve.coefficients]
demand = self._hourly_heating_demand
if hp.source_medium == cte.AIR:
hp.source_temperature = self._t_out
hp.source_temperature = self._t_out
# Heating System Simulation
variable_names = ["t_sup_hp", "t_tank", "t_ret", "m_ch", "m_dis", "q_hp", "q_boiler", "hp_cop",
"hp_electricity", "boiler_gas", "boiler_consumption", "t_sup_boiler", "heating_consumption"]
@ -45,7 +45,6 @@ class Archetype1:
(t_sup_hp, t_tank, t_ret, m_ch, m_dis, q_hp, q_boiler, hp_cop,
hp_electricity, boiler_gas, boiler_consumption, t_sup_boiler, heating_consumption) = [variables[name] for name in
variable_names]
t_tank[0] = 30
dt = 3600
hp_heating_cap = hp.nominal_heat_output
@ -66,7 +65,7 @@ class Archetype1:
m_dis[i] * (t_tank[i] - t_ret[i])) * (dt / (cte.WATER_DENSITY * v)))
if t_tank[i + 1] < 40:
q_hp[i + 1] = hp_heating_cap
m_ch[i + 1] = q_hp[i + 1] / (cte.WATER_HEAT_CAPACITY * 7)
m_ch[i + 1] = q_hp[i + 1] / (cte.WATER_HEAT_CAPACITY * 5)
t_sup_hp[i + 1] = (q_hp[i + 1] / (m_ch[i + 1] * cte.WATER_HEAT_CAPACITY)) + t_tank[i + 1]
elif 40 <= t_tank[i + 1] < 55 and q_hp[i] == 0:
q_hp[i + 1] = 0
@ -78,54 +77,116 @@ class Archetype1:
t_sup_hp[i + 1] = (q_hp[i + 1] / (m_ch[i + 1] * cte.WATER_HEAT_CAPACITY)) + t_tank[i + 1]
else:
q_hp[i + 1], m_ch[i + 1], t_sup_hp[i + 1] = 0, 0, t_tank[i + 1]
hp_electricity[i + 1] = q_hp[i + 1] / hp_efficiency
t_sup_hp_fahrenheit = 1.8 * t_sup_hp[i + 1] + 32
t_out_fahrenheit = 1.8 * self._t_out[i + 1] + 32
if q_hp[i + 1] > 0:
hp_cop[i + 1] = (cop_curve_coefficients[0] +
cop_curve_coefficients[1] * t_sup_hp_fahrenheit +
cop_curve_coefficients[2] * t_sup_hp_fahrenheit ** 2 +
cop_curve_coefficients[3] * t_out_fahrenheit +
cop_curve_coefficients[4] * t_out_fahrenheit ** 2 +
cop_curve_coefficients[5] * t_sup_hp_fahrenheit * t_out_fahrenheit)
hp_electricity[i + 1] = q_hp[i + 1] / hp_cop[i + 1]
else:
hp_cop[i + 1] = 0
hp_electricity[i + 1] = 0
if demand[i + 1] == 0:
m_dis[i + 1], t_return, t_ret[i + 1] = 0, t_tank[i + 1], t_tank[i + 1]
else:
if demand[i + 1] > 0.5 * self._heating_peak_load:
if demand[i + 1] > 0.5 * self._heating_peak_load / dt:
factor = 8
else:
factor = 4
m_dis[i + 1] = self._heating_peak_load / (cte.WATER_HEAT_CAPACITY * factor * dt)
t_return = t_tank[i + 1] - demand[i + 1] / (m_dis[i + 1] * cte.WATER_HEAT_CAPACITY * dt)
if m_dis[i + 1] == 0 or (m_dis[i + 1] > 0 and t_return < 25):
t_ret[i + 1] = max(25, t_tank[i + 1])
else:
t_ret[i + 1] = t_tank[i + 1] - demand[i + 1] / (m_dis[i + 1] * cte.WATER_HEAT_CAPACITY * dt)
tes_output = m_dis[i + 1] * cte.WATER_HEAT_CAPACITY * (t_tank[i + 1] - t_ret[i + 1])
if tes_output < (demand[i + 1] / dt):
q_boiler[i + 1] = (demand[i + 1] / dt) - tes_output
boiler_gas[i + 1] = (q_boiler[i + 1] * dt) / cte.NATURAL_GAS_LHV
if q_boiler[i + 1] > 0:
t_sup_boiler[i + 1] = q_boiler[i + 1] / (m_dis[i + 1] * cte.WATER_HEAT_CAPACITY) + t_tank[i + 1]
else:
t_sup_boiler[i + 1] = t_tank[i + 1]
t_return = t_tank[i + 1] - demand[i + 1] / (m_dis[i + 1] * cte.WATER_HEAT_CAPACITY)
if t_return >= 25:
t_ret[i + 1] = t_tank[i + 1] - demand[i + 1] / (m_dis[i + 1] * cte.WATER_HEAT_CAPACITY)
q_boiler[i + 1] = 0
t_sup_boiler[i + 1] = t_tank[i + 1]
else:
t_ret[i + 1] = 25
t_sup_boiler[i + 1] = t_ret[i + 1] + (demand[i + 1] / (m_dis[i + 1] * cte.WATER_HEAT_CAPACITY))
q_boiler[i + 1] = m_dis[i + 1] * cte.WATER_HEAT_CAPACITY * (t_sup_boiler[i + 1] - t_tank[i + 1])
boiler_gas[i + 1] = (q_boiler[i + 1] * dt) / cte.NATURAL_GAS_LHV
boiler_consumption[i + 1] = q_boiler[i + 1] / boiler_efficiency
heating_consumption[i + 1] = boiler_consumption[i + 1] + hp_electricity[i + 1]
data = list(zip(q_hp, hp_electricity, hp_cop, m_ch, t_sup_hp, t_tank, m_dis, q_boiler,
data = list(zip(self._t_out, q_hp, hp_electricity, hp_cop, m_ch, t_sup_hp, t_tank, m_dis, q_boiler,
boiler_gas, t_sup_boiler, t_ret, demand))
file_name = f'simulation_results_{self._name}.csv'
file_name = f'heating_system_simulation_results_{self._name}.csv'
with open(self._output_path / file_name, 'w', newline='') as csvfile:
output_file = csv.writer(csvfile)
# Write header
output_file.writerow(['HP_heat_output(W)', 'HP_electricity_consumption(W)', 'HP_COP',
'TES_charge_flow_rate(kg/s)', 'TES_supply_temperature(C)', 'TES_temperature(C)',
output_file.writerow(['Outside_air_temperature', 'HP_heat_output(W)', 'HP_heating_electricity_consumption(W)',
'HP_COP', 'TES_charge_flow_rate(kg/s)', 'TES_supply_temperature(C)', 'TES_temperature(C)',
'TES_discharge_flow_rate(kg/s)', 'Boiler_heat_output(W)', 'Boiler_gas_consumption(m3)',
'Boiler_supply_temperature(C)', 'Return_temperature(C)', 'heating_demand'])
'Boiler_supply_temperature(C)', 'Heating_loop_return_temperature(C)', 'Heating_demand (W)'])
# Write data
output_file.writerows(data)
return heating_consumption, hp_electricity, boiler_consumption, t_sup_hp, t_sup_boiler
def cooling_system_simulation(self):
hp = self.hvac_sizing()[0]
eer_curve_coefficients = [float(coefficient) for coefficient in hp.cooling_efficiency_curve.coefficients]
demand = self._hourly_heating_demand
hp.source_temperature = self._t_out
variable_names = ["t_sup_hp", "t_ret", "m", "q_hp", "hp_electricity", "hp_eer"]
num_hours = len(demand)
variables = {name: [0] * num_hours for name in variable_names}
(t_sup_hp, t_ret, m, q_hp, hp_electricity, hp_eer) = [variables[name] for name in variable_names]
t_ret[0] = 13
dt = 3600
for i in range(len(demand) - 1):
if demand[i] > 0:
m[i] = self._cooling_peak_load / (cte.WATER_HEAT_CAPACITY * 5 * dt)
if t_ret[i] > 13:
q_hp[i] = hp.nominal_cooling_output
t_sup_hp[i] = t_ret[i] - q_hp[i] / (m[i] * cte.WATER_HEAT_CAPACITY)
else:
q_hp[i] = 0
t_sup_hp[i] = t_ret[i]
t_ret[i + 1] = t_sup_hp[i] + demand[i] / (m[i] * cte.WATER_HEAT_CAPACITY)
else:
m[i] = 0
q_hp[i] = 0
t_sup_hp[i] = t_ret[i]
t_ret[i + 1] = t_ret[i]
t_sup_hp_fahrenheit = 1.8 * t_sup_hp[i] + 32
t_out_fahrenheit = 1.8 * self._t_out[i] + 32
if q_hp[i] > 0:
hp_eer[i] = 1/((eer_curve_coefficients[0] +
eer_curve_coefficients[1] * t_sup_hp_fahrenheit +
eer_curve_coefficients[2] * t_sup_hp_fahrenheit ** 2 +
eer_curve_coefficients[3] * t_out_fahrenheit +
eer_curve_coefficients[4] * t_out_fahrenheit ** 2 +
eer_curve_coefficients[5] * t_sup_hp_fahrenheit * t_out_fahrenheit))
hp_electricity[i] = q_hp[i] / hp_eer[i]
else:
hp_eer[i] = 0
hp_electricity[i] = 0
data = list(zip(q_hp, hp_electricity, hp_eer, m, t_sup_hp, t_ret, demand, self._t_out))
file_name = f'cooling_system_simulation_results_{self._name}.csv'
with open(self._output_path / file_name, 'w', newline='') as csvfile:
output_file = csv.writer(csvfile)
# Write header
output_file.writerow(['HP_cooling_output (W)', 'HP_cooling_electricity_consumption (W)', 'HP_EER',
'Cooling_loop_flow_rate(kg/s)', 'Cooling_supply_temperature(C)',
'Cooling_loop_return_temperature(C)', 'Cooling_demand (W)', 'Outside_Air_Temperature'])
# Write data
output_file.writerows(data)
return hp_electricity, t_sup_hp
def enrich_buildings(self):
(self._building.heating_consumption[cte.HOUR], hp_electricity,
boiler_consumption, t_sup_hp, t_sup_boiler) = self.hvac_simulation()
(self._building.heating_consumption[cte.HOUR], hp_electricity_heating,
boiler_consumption, t_sup_hp, t_sup_boiler) = self.heating_system_simulation()
hp_electricity_cooling, t_sup_hp_cooling = self.cooling_system_simulation()
self._building.heating_consumption[cte.MONTH] = MonthlyValues.get_total_month(
self._building.heating_consumption[cte.HOUR])
self._building.heating_consumption[cte.YEAR] = [sum(self._building.heating_consumption[cte.MONTH])]
self._hvac_system.generation_systems[0].energy_consumption[cte.HEATING] = {}
self._hvac_system.generation_systems[1].energy_consumption[cte.HEATING] = {}
self._hvac_system.generation_systems[0].energy_consumption[cte.HEATING][cte.HOUR] = hp_electricity
self._hvac_system.generation_systems[0].energy_consumption[cte.HEATING][cte.HOUR] = hp_electricity_heating
self._hvac_system.generation_systems[0].energy_consumption[cte.HEATING][cte.MONTH] = MonthlyValues.get_total_month(
self._hvac_system.generation_systems[0].energy_consumption[cte.HEATING][cte.HOUR])
self._hvac_system.generation_systems[0].energy_consumption[cte.HEATING][cte.YEAR] = \
@ -137,5 +198,12 @@ class Archetype1:
[sum(self._hvac_system.generation_systems[1].energy_consumption[cte.HEATING][cte.MONTH])]
self._hvac_system.generation_systems[0].heat_supply_temperature = t_sup_hp
self._hvac_system.generation_systems[1].heat_supply_temperature = t_sup_boiler
self._hvac_system.generation_systems[0].energy_consumption[cte.COOLING] = self._building.cooling_consumption
self._dhw_system.generation_systems[0].energy_consumption[cte.DOMESTIC_HOT_WATER] = self._building.domestic_hot_water_consumption
self._hvac_system.generation_systems[0].energy_consumption[cte.COOLING] = {}
self._hvac_system.generation_systems[0].energy_consumption[cte.COOLING][cte.HOUR] = hp_electricity_cooling
self._hvac_system.generation_systems[0].energy_consumption[cte.COOLING][cte.MONTH] = MonthlyValues.get_total_month(
self._hvac_system.generation_systems[0].energy_consumption[cte.COOLING][cte.HOUR])
self._hvac_system.generation_systems[0].energy_consumption[cte.COOLING][cte.YEAR] = \
[sum(self._hvac_system.generation_systems[0].energy_consumption[cte.COOLING][cte.MONTH])]
self._hvac_system.generation_systems[0].cooling_supply_temperature = t_sup_hp_cooling
self._dhw_system.generation_systems[0].energy_consumption[cte.DOMESTIC_HOT_WATER] = (
self._building.domestic_hot_water_consumption)